/* ===== RESET & VARIABLES ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --bg: #0A0A0F;
    --bg-elevated: rgba(255,255,255,0.04);
    --border: rgba(255,255,255,0.08);
    --border-hover: rgba(0,167,138,0.4);
    --accent: #00a78a;
    --accent-dark: #0c7762;
    --accent-light: #0fcea9;
    --text: #F8F8F8;
    --text-secondary: #94A3B8;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --max-w: 1200px;
    --glow: 0 0 20px rgba(0,167,138,0.15), 0 0 60px rgba(15,206,169,0.06);
}

[data-theme="light"] {
    --bg: #F5F5F7;
    --bg-elevated: rgba(0,0,0,0.04);
    --border: rgba(0,0,0,0.08);
    --border-hover: rgba(0,167,138,0.35);
    --text: #1A1A2E;
    --text-secondary: #64748B;
    --glow: 0 0 20px rgba(0,167,138,0.12), 0 0 60px rgba(15,206,169,0.04);
}

/* Light-mode overrides for elements with hardcoded rgba */
[data-theme="light"] .btn-secondary:hover {
    border-color: rgba(0,0,0,0.15);
    background: rgba(0,0,0,0.06);
}
[data-theme="light"] .nav-dropdown-menu a:hover {
    background: rgba(0,0,0,0.05);
}
[data-theme="light"] .glass {
    box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 4px 12px rgba(0,0,0,0.04);
}
[data-theme="light"] .nav-hamburger span {
    background: var(--text);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; }

/* ===== LAYOUT ===== */
.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
}

.section { padding: 100px 0; }

.section-label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 560px;
    line-height: 1.7;
}

.divider { height: 1px; background: var(--border); }

/* ===== SCROLL REVEAL ===== */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }
.reveal-d5 { transition-delay: 0.40s; }

/* ===== GLASS CARD ===== */
.glass {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 14px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: border-color 0.3s, box-shadow 0.3s;
}
.glass:hover {
    border-color: var(--border-hover);
    box-shadow: var(--glow);
}

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    background: var(--accent);
    border-radius: 10px;
    transition: background 0.2s, box-shadow 0.3s, transform 0.2s;
}
.btn-primary:hover {
    background: var(--accent-dark);
    box-shadow: 0 0 30px rgba(0,167,138,0.35);
    transform: translateY(-1px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 10px;
    transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.btn-secondary:hover {
    border-color: rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.07);
    transform: translateY(-1px);
}

/* ===== NAV ===== */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: 64px;
    display: flex;
    align-items: center;
    padding: 0 24px;
    background: var(--theme-nav-bg, rgba(10,10,15,0.82));
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transition: border-color 0.3s, background-color 0.3s;
}

.nav-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo img { height: 30px; width: auto; }

.nav-links {
    display: none;
    align-items: center;
    gap: 32px;
    list-style: none;
}
.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }

/* Desktop dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-trigger {
    display: flex; align-items: center; gap: 4px;
    font-size: 14px; font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer; transition: color 0.2s;
}
.nav-dropdown-trigger:hover { color: var(--text); }
.nav-dropdown-trigger svg {
    width: 14px; height: 14px; transition: transform 0.2s;
}
.nav-dropdown.open .nav-dropdown-trigger svg { transform: rotate(180deg); }

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%; min-width: 220px;
    background: var(--theme-dropdown-bg, rgba(18,18,28,0.95));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 8px;
    opacity: 0; visibility: hidden;
    transform: translateX(-50%) translateY(8px);
    transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
}
.nav-dropdown.open .nav-dropdown-menu {
    opacity: 1; visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
    display: block; padding: 10px 14px;
    font-size: 14px; font-weight: 500;
    color: var(--text-secondary);
    border-radius: 8px;
    transition: background 0.15s, color 0.15s;
}
.nav-dropdown-menu a:hover {
    background: rgba(255,255,255,0.06);
    color: var(--text);
}

/* Nav right wrapper (CTA + theme toggle + hamburger) */
.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Nav CTA */
.nav-cta {
    display: none;
    padding: 8px 20px;
    font-size: 14px; font-weight: 600;
    color: #fff;
    background: var(--accent);
    border-radius: 8px;
    transition: background 0.2s, box-shadow 0.2s;
}
.nav-cta:hover {
    background: var(--accent-dark);
    box-shadow: 0 0 20px rgba(0,167,138,0.3);
}
.nav-lang {
    font-size: 13px; font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 0.05em;
    padding: 6px 10px;
    border: 1px solid var(--border);
    border-radius: 6px;
    transition: color 0.2s, border-color 0.2s;
}
.nav-lang:hover {
    color: var(--accent);
    border-color: var(--accent);
}

/* Hamburger */
.nav-hamburger {
    display: flex; flex-direction: column;
    gap: 5px; width: 24px;
    cursor: pointer; padding: 4px 0;
}
.nav-hamburger span {
    display: block; height: 2px; width: 100%;
    background: var(--text); border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.nav-mobile {
    display: none;
    position: fixed;
    top: 64px; left: 0; right: 0; bottom: 0;
    background: var(--theme-mobile-bg, rgba(10,10,15,0.97));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 999;
    padding: 32px 24px;
}
.nav-mobile.open { display: flex; flex-direction: column; gap: 8px; }
.nav-mobile a, .nav-mobile-dropdown-trigger {
    display: block; font-size: 18px; font-weight: 600;
    color: var(--text-secondary); padding: 14px 0;
    border-bottom: 1px solid var(--border);
    transition: color 0.2s;
}
.nav-mobile a:hover, .nav-mobile-dropdown-trigger:hover { color: var(--text); }

.nav-mobile-dropdown-trigger {
    display: flex; align-items: center;
    justify-content: space-between;
    cursor: pointer; background: none; width: 100%;
}
.nav-mobile-dropdown-trigger svg {
    width: 18px; height: 18px; transition: transform 0.3s;
}

.nav-mobile-submenu { display: none; padding-left: 16px; }
.nav-mobile-submenu.open { display: block; }
.nav-mobile-submenu a {
    font-size: 16px; font-weight: 500;
    border-bottom: none; padding: 10px 0;
}

.nav-mobile-cta {
    display: inline-flex; align-items: center; justify-content: center;
    margin-top: 24px; padding: 14px 28px;
    font-size: 16px; font-weight: 600;
    color: #fff; background: var(--accent);
    border-radius: 10px; text-align: center;
}

@media (min-width: 768px) {
    .nav-links { display: flex; }
    .nav-cta { display: inline-flex; }
    .nav-hamburger { display: none; }
}

/* ===== HERO ===== */
.hero {
    position: relative;
    padding: 160px 0 80px;
    text-align: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(0,167,138,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,167,138,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 70%);
}

.hero::after {
    content: '';
    position: absolute;
    top: -20%; left: 50%;
    transform: translateX(-50%);
    width: 800px; height: 600px;
    background: radial-gradient(ellipse,
        rgba(0,167,138,0.08) 0%,
        rgba(15,206,169,0.04) 40%,
        transparent 70%);
    pointer-events: none;
}

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

.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 16px 6px 8px;
    font-size: 13px; font-weight: 500;
    color: var(--accent-light);
    background: rgba(0,167,138,0.08);
    border: 1px solid rgba(0,167,138,0.15);
    border-radius: 100px;
    margin-bottom: 28px;
}

.hero-badge-dot {
    width: 8px; height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(0,167,138,0.4); }
    50% { opacity: 0.8; box-shadow: 0 0 0 6px rgba(0,167,138,0); }
}

.hero h1 {
    font-size: clamp(32px, 5.5vw, 60px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    max-width: 800px;
    margin: 0 auto 24px;
}

.hero h1 .highlight {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: clamp(16px, 2vw, 18px);
    color: var(--text-secondary);
    max-width: 540px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero-ctas {
    display: flex; flex-wrap: wrap;
    gap: 14px; justify-content: center;
    margin-bottom: 64px;
}

/* Client logos */
.hero-logos {
    display: flex; flex-wrap: wrap;
    align-items: center; justify-content: center;
    gap: 32px 40px;
}
.hero-logos-label {
    width: 100%;
    font-size: 13px; font-weight: 500;
    color: var(--text-secondary); opacity: 0.6;
    text-transform: uppercase; letter-spacing: 0.06em;
    margin-bottom: 4px;
}
.hero-logo {
    font-size: 16px; font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--text); opacity: 0.35;
    filter: grayscale(1);
    transition: opacity 0.3s, filter 0.3s;
    user-select: none;
}
.hero-logo:hover { opacity: 1; filter: grayscale(0); }

/* ===== NUMBERS ===== */
.numbers {
    position: relative;
    padding: 60px 0;
    overflow: hidden;
}
.numbers::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg,
        transparent 0%,
        rgba(0,167,138,0.03) 30%,
        rgba(15,206,169,0.03) 70%,
        transparent 100%);
    pointer-events: none;
}

.numbers-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--border);
    border-radius: 16px;
    overflow: hidden;
}

.number-item {
    background: var(--bg);
    padding: 36px 24px;
    text-align: center;
}

.number-value {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--text) 50%, var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.number-label {
    font-size: 14px; font-weight: 500;
    color: var(--text-secondary);
}

@media (min-width: 768px) {
    .numbers-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ===== PRODUCT CARDS ===== */
.product-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 48px;
}
.product-card { padding: 28px; }

.product-card-icon {
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(0,167,138,0.1);
    border-radius: 10px;
    margin-bottom: 18px;
    color: var(--accent);
}
.product-card-icon svg { width: 22px; height: 22px; }

.product-card h3 {
    font-size: 17px; font-weight: 700;
    margin-bottom: 8px; letter-spacing: -0.01em;
}
.product-card p {
    font-size: 14px; color: var(--text-secondary); line-height: 1.65;
}

@media (min-width: 768px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }

/* ===== CASES ===== */
.cases-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 48px;
}
.case-card {
    padding: 28px;
    display: flex; flex-direction: column; gap: 14px;
}
.case-card-header {
    display: flex; align-items: center; gap: 14px;
}
.case-logo {
    font-size: 15px; font-weight: 800;
    letter-spacing: 0.01em;
    white-space: nowrap;
}
.case-country {
    font-size: 12px; font-weight: 500;
    color: var(--accent);
    background: rgba(0,167,138,0.1);
    padding: 3px 10px; border-radius: 100px;
}
.case-result {
    font-size: 14px; color: var(--text-secondary); line-height: 1.6;
}
a.case-card-link {
    text-decoration: none; color: inherit;
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
a.case-card-link:hover {
    border-color: var(--border-hover);
    box-shadow: 0 0 24px rgba(0,167,138,0.15);
    transform: translateY(-4px);
}
.case-card-cta {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 13px; font-weight: 600;
    color: var(--accent);
    margin-top: auto;
    transition: gap 0.2s;
}
a.case-card-link:hover .case-card-cta { gap: 10px; }

@media (min-width: 768px) { .cases-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .cases-grid { grid-template-columns: repeat(3, 1fr); } }

/* ===== DOCUMENTATION ===== */
.docs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 48px;
}
.docs-card {
    padding: 24px;
    display: flex; flex-direction: column; gap: 12px;
}
.docs-card-icon {
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(0,167,138,0.1);
    border-radius: 10px;
    color: var(--accent);
}
.docs-card-icon svg { width: 20px; height: 20px; }
.docs-card h3 { font-size: 15px; font-weight: 700; }
.docs-card p { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }
.docs-card-link {
    font-size: 13px; font-weight: 600;
    color: var(--accent);
    display: inline-flex; align-items: center;
    gap: 4px; transition: gap 0.2s;
}
.docs-card:hover .docs-card-link { gap: 8px; }
.docs-cta { text-align: center; margin-top: 36px; }

@media (min-width: 768px) { .docs-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .docs-grid { grid-template-columns: repeat(3, 1fr); } }

/* ===== FAQ ===== */
.faq {
    margin-top: 64px;
    max-width: 720px;
    margin-left: auto; margin-right: auto;
}
.faq-title {
    font-size: 22px; font-weight: 700;
    margin-bottom: 24px; text-align: center;
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
    width: 100%;
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 0;
    font-size: 15px; font-weight: 600;
    color: var(--text); text-align: left;
    cursor: pointer; transition: color 0.2s;
}
.faq-question:hover { color: var(--accent); }
.faq-question svg {
    width: 18px; height: 18px; flex-shrink: 0;
    color: var(--text-secondary);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-item.open .faq-question svg { transform: rotate(45deg); }
.faq-answer {
    max-height: 0; overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-answer-inner {
    padding: 0 0 20px;
    font-size: 14px; color: var(--text-secondary); line-height: 1.7;
}

/* ===== PRODUCTS SUITE ===== */
.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 48px;
}
.product-suite-card {
    padding: 32px;
    display: flex; flex-direction: column; gap: 16px;
}
.product-suite-card h3 {
    font-size: 19px; font-weight: 700; letter-spacing: -0.01em;
}
.product-suite-card p {
    font-size: 14px; color: var(--text-secondary); line-height: 1.65;
}
.product-suite-link {
    font-size: 14px; font-weight: 600;
    color: var(--accent);
    display: inline-flex; align-items: center;
    gap: 6px; transition: gap 0.2s;
}
.product-suite-card:hover .product-suite-link { gap: 10px; }

.badge-soon {
    display: inline-flex; align-items: center;
    padding: 4px 12px;
    font-size: 12px; font-weight: 600;
    color: var(--accent-light);
    background: rgba(15,206,169,0.12);
    border-radius: 100px;
    margin-left: 8px;
}

@media (min-width: 768px) { .products-grid { grid-template-columns: repeat(2, 1fr); } }

/* ===== TEAM ===== */
.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px; margin-top: 48px;
}
.team-card { padding: 32px; text-align: center; }
.team-avatar {
    width: 72px; height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 18px;
    font-size: 26px; font-weight: 800; color: #fff;
}
.team-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 4px; }
.team-role { font-size: 14px; color: var(--accent); font-weight: 500; margin-bottom: 4px; }
.team-company { font-size: 13px; color: var(--text-secondary); }

@media (min-width: 768px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }

/* ===== CONTACT ===== */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px; margin-top: 48px;
}
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
    font-size: 13px; font-weight: 600; color: var(--text-secondary);
}
.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    font-size: 14px; color: var(--text);
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 10px; outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(0,167,138,0.1);
}
.form-group select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2394A3B8' viewBox='0 0 16 16'%3E%3Cpath d='M4.5 6l3.5 3.5L11.5 6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}
.form-group select option { background: #14141f; color: var(--text); }
.form-row { display: grid; grid-template-columns: 1fr; gap: 16px; }

.form-submit {
    padding: 14px 28px;
    font-size: 15px; font-weight: 600;
    color: #fff; background: var(--accent);
    border: none; border-radius: 10px;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.3s;
    margin-top: 8px;
}
.form-submit:hover {
    background: var(--accent-dark);
    box-shadow: 0 0 30px rgba(0,167,138,0.3);
}

.contact-aside { display: flex; flex-direction: column; gap: 24px; }
.contact-whatsapp {
    padding: 28px;
    display: flex; align-items: center; gap: 16px;
}
.whatsapp-icon {
    width: 48px; height: 48px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(37,211,102,0.1);
    border-radius: 12px; flex-shrink: 0;
}
.whatsapp-icon svg { width: 24px; height: 24px; color: #25D366; }
.contact-whatsapp h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.contact-whatsapp p { font-size: 13px; color: var(--text-secondary); }

@media (min-width: 768px) { .form-row { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .contact-layout { grid-template-columns: 1fr 360px; } }

/* ===== FOOTER ===== */
.footer {
    border-top: 1px solid var(--border);
    padding: 48px 0 32px;
}
.footer-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}
.footer-logo {
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 12px;
}
.footer-logo img { height: 26px; width: auto; }
.footer-desc {
    font-size: 13px; color: var(--text-secondary);
    line-height: 1.6; max-width: 300px;
}
.footer-col h4 {
    font-size: 13px; font-weight: 600;
    margin-bottom: 14px;
    text-transform: uppercase; letter-spacing: 0.05em;
}
.footer-col a {
    display: block; font-size: 14px;
    color: var(--text-secondary);
    padding: 5px 0; transition: color 0.2s;
}
.footer-col a:hover { color: var(--text); }
.footer-bottom {
    margin-top: 40px; padding-top: 24px;
    border-top: 1px solid var(--border);
    display: flex; flex-wrap: wrap;
    justify-content: space-between; gap: 12px;
    font-size: 13px; color: var(--text-secondary);
}

@media (min-width: 768px) {
    .footer-inner { grid-template-columns: 2fr 1fr 1fr 1fr; }
}
