/* Aditech - Ultra-Modern AI Architects Website */

:root {
    --primary: #0ea5e9;
    --primary-dark: #0284c7;
    --primary-light: #38bdf8;
    --secondary: #06b6d4;
    --accent: #8b5cf6;
    --accent-light: #a78bfa;
    
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    
    --bg-white: #ffffff;
    --bg-light: #f8fafc;
    --bg-subtle: #f1f5f9;
    --bg-card: #ffffff;
    
    --border-light: #e2e8f0;
    --border-subtle: #f1f5f9;
    
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -4px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    
    --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    --transition: 0.2s ease;
    --transition-slow: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.65;
    color: var(--text-primary);
    background: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font);
    font-weight: 700;
    line-height: 1.15;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.75rem, 5.5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

p { color: var(--text-secondary); }

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover { color: var(--primary-dark); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: var(--font);
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: all var(--transition-slow);
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    box-shadow: 0 4px 14px rgba(14, 165, 233, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(14, 165, 233, 0.4);
    color: white;
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1.5px solid var(--border-light);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(14, 165, 233, 0.04);
}

.btn-hero-outline {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(4px);
}

.btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
}

.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn-full { width: 100%; }

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.3s ease;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.logo-text {
    font-family: var(--font);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.03em;
}

.nav {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color var(--transition);
    letter-spacing: -0.01em;
}

.nav-link:hover { color: var(--primary); }

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.aus-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: var(--bg-subtle);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: -0.01em;
}

.aus-badge svg { border-radius: 2px; }

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(15, 23, 42, 0.85) 0%,
        rgba(15, 23, 42, 0.6) 40%,
        rgba(15, 23, 42, 0.3) 100%
    );
}

.hero .container {
    position: relative;
    z-index: 2;
    padding-top: 72px;
}

.hero-content {
    max-width: 680px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(14, 165, 233, 0.15);
    border: 1px solid rgba(14, 165, 233, 0.3);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-light);
    margin-bottom: 28px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    backdrop-filter: blur(4px);
}

.hero-title {
    color: white;
    margin-bottom: 24px;
    line-height: 1.1;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary) 40%, var(--accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 36px;
    max-width: 540px;
    line-height: 1.7;
    font-weight: 400;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    gap: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.stat { display: flex; flex-direction: column; }

.stat-value {
    font-family: var(--font);
    font-size: 2.25rem;
    font-weight: 800;
    color: white;
    letter-spacing: -0.03em;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 500;
}

/* Section Styles */
section { padding: 100px 0; }

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 64px;
}

.section-header.light .section-title,
.section-header.light .section-subtitle { color: white; }
.section-header.light .section-subtitle { opacity: 0.85; }

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(14, 165, 233, 0.08);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.section-title { margin-bottom: 16px; }

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 400;
}

/* Solutions Section */
.solutions { background: var(--bg-white); }

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.solution-card {
    padding: 36px;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    transition: all var(--transition-slow);
}

.solution-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-xl);
    transform: translateY(-6px);
}

.solution-card.featured {
    grid-column: span 2;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.04) 0%, rgba(139, 92, 246, 0.04) 100%);
    border-color: rgba(14, 165, 233, 0.15);
}

.solution-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    color: var(--primary);
}

.solution-icon svg { width: 26px; height: 26px; }

.solution-card h3 { margin-bottom: 12px; font-weight: 700; }

.solution-card p { font-size: 0.925rem; line-height: 1.7; }

.solution-features {
    list-style: none;
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.solution-features li {
    padding: 6px 14px;
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-secondary);
}

/* Showcase (Image Gallery) */
.showcase {
    padding: 0;
    overflow: hidden;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 3px;
    height: 520px;
}

.showcase-image {
    position: relative;
    overflow: hidden;
    min-height: 0;
}

.showcase-image.large {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
}

.showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.showcase-image:hover img {
    transform: scale(1.06);
}

.showcase-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(15, 23, 42, 0.35) 100%);
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.showcase-image:hover::after { opacity: 0; }

.showcase-label {
    position: absolute;
    bottom: 16px;
    left: 16px;
    z-index: 2;
    padding: 6px 16px;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(8px);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* AI Products Section */
.ai-products { background: var(--bg-light); }

.products-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.product-card {
    padding: 44px;
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-subtle);
    transition: all var(--transition-slow);
}

.product-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-6px);
}

.product-header { margin-bottom: 24px; }

.product-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 16px;
}

.product-icon svg { width: 100%; height: 100%; }

.product-card h3 {
    font-size: 1.75rem;
    margin-bottom: 4px;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.product-tagline {
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 600;
}

.product-card > p {
    font-size: 0.925rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.product-features {
    list-style: none;
    margin-bottom: 24px;
}

.product-features li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
    font-size: 0.925rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.product-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
}

.product-badge {
    display: inline-block;
    padding: 8px 16px;
    background: var(--bg-subtle);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
}

.product-card.chatterbox .product-features li::before { background: var(--accent); }

/* Platforms Section */
.platforms {
    background-color: #0f172a;
    background-size: cover;
    background-position: center;
    color: white;
    position: relative;
}

.platforms::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.88) 0%, rgba(30, 41, 59, 0.82) 100%);
    z-index: 0;
}

.platforms > .container {
    position: relative;
    z-index: 1;
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.platform-card {
    display: flex;
    flex-direction: column;
    padding: 32px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: all var(--transition-slow);
}

.platform-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.16);
    transform: translateY(-6px);
}

.platform-logo { margin-bottom: 20px; }

.platform-logo-text {
    font-family: var(--font);
    font-size: 1.2rem;
    font-weight: 800;
    color: white;
    letter-spacing: -0.02em;
}

.platform-logo-text span { color: var(--primary-light); }

.platform-card.axitraq .platform-logo-text { color: #fbbf24; }
.platform-card.axitraq .platform-logo-text span { color: white; }

.platform-content h3 { color: white; margin-bottom: 4px; }

.platform-tagline {
    font-size: 0.85rem;
    color: var(--primary-light);
    margin-bottom: 16px;
    font-weight: 500;
}

.platform-content p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.65;
    margin-bottom: 16px;
    flex-grow: 1;
}

.platform-features {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
}

.platform-features span {
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    font-size: 0.725rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
}

.platform-link {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-light);
    margin-top: auto;
}

/* Heritage Section */
.heritage {
    background: var(--bg-white);
}

.heritage .container {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 60px;
    align-items: start;
}

.heritage-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.heritage-tiles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    width: 100%;
    max-width: 420px;
}

.heritage-tiles img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    display: block;
    border-radius: var(--radius-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.heritage-tiles img:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
    z-index: 1;
    position: relative;
}

.heritage-brands {
    max-width: 420px;
}

.heritage-brands-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    margin-bottom: 12px;
    text-align: center;
}

.heritage-brands-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    align-items: center;
}

.heritage-brands-grid img {
    height: 56px;
    width: auto;
    object-fit: contain;
    border-radius: 6px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    filter: grayscale(30%);
}

.heritage-brands-grid img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.heritage-text { margin-bottom: 40px; }

.heritage-text p {
    margin-bottom: 18px;
    font-size: 1rem;
    line-height: 1.8;
}

.heritage-text strong { color: var(--text-primary); font-weight: 600; }

.heritage-timeline {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.timeline-item {
    position: relative;
    padding: 20px;
    background: var(--bg-subtle);
    border-radius: var(--radius-md);
    text-align: center;
    transition: all var(--transition);
}

.timeline-item.active {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.08) 0%, rgba(139, 92, 246, 0.08) 100%);
    border: 1px solid rgba(14, 165, 233, 0.15);
}

.timeline-era {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.timeline-title {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2px;
    letter-spacing: -0.01em;
}

.timeline-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Australian Section */
.australian {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.04) 0%, rgba(6, 182, 212, 0.04) 100%);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.aus-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    text-align: center;
    flex-direction: column;
}

.aus-flag svg {
    width: 80px;
    height: 48px;
    border-radius: 4px;
    box-shadow: var(--shadow-md);
}

.aus-text h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.aus-text p { max-width: 560px; margin: 0 auto; }

/* Contact Section */
.contact { background: var(--bg-light); }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info { padding-right: 24px; }
.contact-info .section-title { text-align: left; }
.contact-info > p { margin-bottom: 32px; font-size: 1.05rem; }

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.contact-item svg {
    width: 22px;
    height: 22px;
    color: var(--primary);
    flex-shrink: 0;
}

.contact-item a {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
}

.contact-item a:hover { color: var(--primary); }

.contact-form {
    padding: 40px;
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-subtle);
}

.form-group { margin-bottom: 20px; }

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 18px;
    font-family: var(--font);
    font-size: 0.9375rem;
    color: var(--text-primary);
    background: var(--bg-subtle);
    border: 1.5px solid transparent;
    border-radius: var(--radius-md);
    transition: all var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--bg-white);
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.08);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    padding: 80px 0 40px;
    background: #0f172a;
    color: white;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand .logo { margin-bottom: 16px; }
.footer-brand .logo-text { color: white; }

.footer-brand p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-links h4 {
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer-links a {
    display: block;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin-bottom: 12px;
    transition: color var(--transition);
    font-weight: 400;
}

.footer-links a:hover { color: white; }

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    margin-bottom: 4px;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content { max-width: 100%; }
    
    .platforms-grid { grid-template-columns: 1fr; }
    
    .heritage .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .heritage-sidebar {
        justify-self: center;
    }
    .heritage-tiles {
        max-width: 100%;
    }
    .heritage-brands {
        max-width: 100%;
    }
    
    .showcase-grid {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .nav,
    .header-actions .aus-badge {
        display: none;
    }
    
    .mobile-menu-btn { display: flex; }
    
    .hero { min-height: 100svh; }
    
    .hero-cta { flex-direction: column; }
    
    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 24px;
    }
    
    .solutions-grid { grid-template-columns: 1fr; }
    .solution-card.featured { grid-column: span 1; }
    
    .products-showcase { grid-template-columns: 1fr; }
    
    .showcase-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        height: auto;
    }
    .showcase-image.large {
        grid-column: span 2;
        grid-row: span 1;
    }
    .showcase-image { min-height: 140px; }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info { padding-right: 0; text-align: center; }
    .contact-details { align-items: center; }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    
    .footer-brand { grid-column: span 2; }
    
    .heritage-timeline { grid-template-columns: 1fr 1fr; }
    
    .heritage-tiles {
        max-width: 320px;
    }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    section { padding: 64px 0; }
    .product-card { padding: 28px; }
    .contact-form { padding: 24px; }
    .showcase-grid {
        grid-template-columns: 1fr 1fr;
        height: auto;
    }
    .showcase-image.large { grid-column: span 2; }
    
    .footer-grid { grid-template-columns: 1fr; }
    .footer-brand { grid-column: span 1; }
}
