:root {
    --bg: #0a0a0f;
    --surface: #12121a;
    --surface2: #1a1a26;
    --accent: #00e5ff;
    --accent2: #7c3aed;
    --accent3: #f59e0b;
    --text: #f0f0f8;
    --text-muted: #8888aa;
    --border: rgba(255, 255, 255, 0.07);
    --glow: rgba(0, 229, 255, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    cursor: default;
}

/* GRID BACKGROUND */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 229, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 229, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}

/* LANG SWITCHER */
.lang-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    justify-content: flex-end;
    padding: 12px 24px;
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.lang-switcher {
    display: flex;
    gap: 4px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 3px;
}

.lang-btn {
    padding: 5px 14px;
    border: none;
    background: transparent;
    color: var(--text-muted);
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.2s;
    text-transform: uppercase;
}

.lang-btn.active {
    background: var(--accent);
    color: #000;
    font-weight: 700;
}

.lang-btn:hover:not(.active) {
    color: var(--text);
}

/* NAV */
nav {
    position: fixed;
    top: 45px;
    left: 0;
    right: 0;
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 5%;
    background: rgba(10, 10, 15, 0.7);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.nav-logo {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 18px;
    letter-spacing: -0.02em;
    color: var(--text);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--accent);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 8px var(--accent);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 0 20px var(--accent);
        transform: scale(1.2);
    }
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-cta {
    background: var(--accent);
    color: #000 !important;
    padding: 8px 20px;
    border-radius: 6px;
    font-weight: 600 !important;
    font-size: 13px !important;
    transition: all 0.2s !important;
}

.nav-cta:hover {
    background: #fff !important;
    color: #000 !important;
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.4);
}

/* HERO */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 5% 80px;
    position: relative;
    z-index: 1;
}

.hero-glow {
    position: absolute;
    top: 20%;
    right: 0;
    width: 60%;
    height: 80%;
    background: radial-gradient(ellipse at 80% 30%, rgba(124, 58, 237, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse at 60% 70%, rgba(0, 229, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    max-width: 780px;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 229, 255, 0.08);
    border: 1px solid rgba(0, 229, 255, 0.2);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 500;
    color: var(--accent);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 32px;
    animation: fadeUp 0.6s ease forwards;
    opacity: 0;
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

.hero-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(48px, 7vw, 88px);
    font-weight: 800;
    line-height: 1.0;
    letter-spacing: -0.03em;
    margin-bottom: 28px;
    animation: fadeUp 0.6s 0.1s ease forwards;
    opacity: 0;
}

.hero-title .accent-word {
    color: var(--accent);
    position: relative;
}

.hero-title .accent-word::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent);
    opacity: 0.4;
    border-radius: 2px;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.65;
    color: var(--text-muted);
    max-width: 560px;
    margin-bottom: 48px;
    font-weight: 300;
    animation: fadeUp 0.6s 0.2s ease forwards;
    opacity: 0;
}

.hero-subtitle strong {
    color: var(--text);
    font-weight: 500;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeUp 0.6s 0.3s ease forwards;
    opacity: 0;
}

.btn-primary {
    background: var(--accent);
    color: #000;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'DM Sans', sans-serif;
}

.btn-primary:hover {
    background: #fff;
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.35);
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    color: var(--text);
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 15px;
    text-decoration: none;
    border: 1px solid var(--border);
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'DM Sans', sans-serif;
}

.btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-1px);
}

/* STATS BAR */
.stats-bar {
    position: relative;
    z-index: 1;
    padding: 0 5% 80px;
    animation: fadeUp 0.6s 0.4s ease forwards;
    opacity: 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
}

.stat-item {
    background: var(--surface);
    padding: 32px 28px;
    text-align: center;
    transition: background 0.2s;
}

.stat-item:hover {
    background: var(--surface2);
}

.stat-value {
    font-family: 'Syne', sans-serif;
    font-size: 40px;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 400;
    line-height: 1.4;
}

/* CONCEPT SECTION */
.section {
    padding: 100px 5%;
    position: relative;
    z-index: 1;
}

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

.section-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.025em;
    margin-bottom: 20px;
}

.section-desc {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 600px;
    font-weight: 300;
}

/* LOCAL CONCEPT */
.concept-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.concept-visual {
    position: relative;
}

.map-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.map-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(0, 229, 255, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.map-title {
    font-family: 'Syne', sans-serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text);
}

.map-subtitle {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 32px;
}

/* Animated target rings */
.target-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 220px;
    position: relative;
}

.ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(0, 229, 255, 0.2);
    animation: expandRing 3s infinite;
}

.ring:nth-child(1) {
    width: 60px;
    height: 60px;
    border-color: rgba(0, 229, 255, 0.8);
    animation-delay: 0s;
}

.ring:nth-child(2) {
    width: 110px;
    height: 110px;
    border-color: rgba(0, 229, 255, 0.5);
    animation-delay: 0.4s;
}

.ring:nth-child(3) {
    width: 165px;
    height: 165px;
    border-color: rgba(0, 229, 255, 0.3);
    animation-delay: 0.8s;
}

.ring:nth-child(4) {
    width: 220px;
    height: 220px;
    border-color: rgba(0, 229, 255, 0.15);
    animation-delay: 1.2s;
}

@keyframes expandRing {
    0% {
        transform: scale(0.95);
        opacity: 0.3;
    }

    50% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(0.95);
        opacity: 0.3;
    }
}

.target-center {
    width: 28px;
    height: 28px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 30px var(--accent), 0 0 60px rgba(0, 229, 255, 0.3);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.map-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 24px;
}

.map-tag {
    background: rgba(0, 229, 255, 0.08);
    border: 1px solid rgba(0, 229, 255, 0.2);
    color: var(--accent);
    padding: 5px 14px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 500;
}

.concept-text .concept-list {
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.concept-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.concept-icon {
    width: 40px;
    height: 40px;
    background: rgba(0, 229, 255, 0.08);
    border: 1px solid rgba(0, 229, 255, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.concept-item-title {
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 4px;
}

.concept-item-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* TRIDENTE */
.tridente-section {
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.tridente-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    margin-top: 64px;
    border-radius: 16px;
    overflow: hidden;
}

.tridente-item {
    background: var(--bg);
    padding: 48px 36px;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
}

.tridente-item:hover {
    background: var(--surface2);
}

.tridente-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.tridente-item:hover::before {
    opacity: 1;
}

.tridente-num {
    font-family: 'Syne', sans-serif;
    font-size: 72px;
    font-weight: 800;
    color: rgba(0, 229, 255, 0.07);
    line-height: 1;
    margin-bottom: -20px;
    display: block;
}

.tridente-icon {
    font-size: 36px;
    margin-bottom: 20px;
    display: block;
}

.tridente-name {
    font-family: 'Syne', sans-serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text);
}

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

.tridente-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

.tridente-arrow {
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    color: var(--accent);
    font-size: 24px;
    opacity: 0.3;
    z-index: 2;
}

/* SERVICES */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 60px;
}

.service-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 36px 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform 0.3s;
    transform-origin: left;
}

.service-card:hover {
    border-color: rgba(0, 229, 255, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-card:hover::after {
    transform: scaleX(1);
}

.service-badge {
    display: inline-block;
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.25);
    color: var(--accent3);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 100px;
    margin-bottom: 20px;
}

.service-icon {
    font-size: 32px;
    margin-bottom: 20px;
    display: block;
}

.service-name {
    font-family: 'Syne', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
}

.service-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-list li {
    font-size: 13px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-list li::before {
    content: '→';
    color: var(--accent);
    font-size: 12px;
    flex-shrink: 0;
}

/* RESULTS */
.results-section {
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 56px;
}

.results-note {
    font-size: 13px;
    color: var(--text-muted);
    max-width: 280px;
    text-align: right;
    line-height: 1.6;
}

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

.result-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px 28px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.result-card:hover {
    border-color: rgba(0, 229, 255, 0.25);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 229, 255, 0.05);
}

.result-value {
    font-family: 'Syne', sans-serif;
    font-size: 44px;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 10px;
}

.result-label {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.4;
}

.result-detail {
    font-size: 11px;
    color: rgba(136, 136, 170, 0.6);
    margin-top: 6px;
}

/* PROCESS */
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    margin-top: 60px;
    border-radius: 16px;
    overflow: hidden;
}

.step {
    background: var(--surface);
    padding: 40px 32px;
    position: relative;
    transition: background 0.2s;
}

.step:hover {
    background: var(--surface2);
}

.step-num {
    font-family: 'Syne', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: rgba(0, 229, 255, 0.08);
    line-height: 1;
    margin-bottom: -10px;
}

.step-icon {
    font-size: 28px;
    margin-bottom: 16px;
    display: block;
}

.step-title {
    font-family: 'Syne', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.step-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* CONTACT */
.contact-section {
    background: var(--bg);
}

.contact-wrapper {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}

.contact-wrapper .section-label {
    justify-content: center;
    display: flex;
}

.wa-box {
    margin-top: 48px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px 48px 36px;
    position: relative;
    overflow: hidden;
}

.wa-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #25d366, transparent);
}

.wa-chat-preview {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 20px;
    margin-bottom: 20px;
    text-align: left;
    position: relative;
}

.wa-chat-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.wa-chat-label::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #25d366;
    border-radius: 50%;
    box-shadow: 0 0 8px #25d366;
    flex-shrink: 0;
}

.wa-textarea {
    width: 100%;
    background: transparent;
    border: none;
    color: var(--text);
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    line-height: 1.65;
    resize: none;
    outline: none;
    min-height: 90px;
    caret-color: var(--accent);
}

.wa-textarea::placeholder {
    color: rgba(136, 136, 170, 0.45);
}

.wa-char-hint {
    font-size: 11px;
    color: rgba(136, 136, 170, 0.4);
    margin-top: 10px;
    text-align: right;
}

.wa-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    background: #25d366;
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 16px 32px;
    font-family: 'Syne', sans-serif;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.22s;
    text-decoration: none;
    letter-spacing: 0.01em;
}

.wa-btn:hover {
    background: #1ebe5a;
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.3);
}

.wa-btn svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.wa-disclaimer {
    font-size: 12px;
    color: rgba(136, 136, 170, 0.5);
    margin-top: 16px;
    line-height: 1.5;
}

.wa-disclaimer a {
    color: #25d366;
    text-decoration: none;
}

/* FOOTER */
footer {
    padding: 40px 5%;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.footer-logo {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 16px;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-text {
    font-size: 13px;
    color: var(--text-muted);
}

/* ANIMATIONS */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: all 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* HAMBURGER BUTTON */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    cursor: pointer;
    padding: 10px;
    z-index: 101;
    flex-shrink: 0;
}

.nav-hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.nav-hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.nav-hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.nav-hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* MOBILE MENU OVERLAY */
.nav-mobile-menu {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10, 10, 15, 0.97);
    backdrop-filter: blur(20px);
    z-index: 98;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 40px 24px;
}

.nav-mobile-menu.open {
    display: flex;
}

.nav-mobile-menu a {
    font-family: 'Syne', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--text-muted);
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: color 0.2s;
    padding: 8px 0;
    text-align: center;
}

.nav-mobile-menu a:hover {
    color: var(--accent);
}

.nav-mobile-cta {
    margin-top: 12px;
    background: var(--accent) !important;
    color: #000 !important;
    padding: 14px 40px !important;
    border-radius: 10px;
    font-size: 18px !important;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .concept-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .tridente-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .results-header {
        flex-direction: column;
        gap: 16px;
    }

    .results-note {
        text-align: left;
        max-width: 100%;
    }

    nav .nav-links {
        display: none;
    }

    .nav-hamburger {
        display: flex;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    footer {
        flex-direction: column;
        gap: 16px;
        text-align: center;
        padding: 32px 5%;
    }

    .footer-text {
        font-size: 12px;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .results-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .hero-ctas {
        flex-direction: column;
    }

    .wa-box {
        padding: 28px 20px 24px;
    }
}

/* LANG CONTENT */
[data-lang="en"] {
    display: none;
}

body.lang-en [data-lang="es"] {
    display: none;
}

body.lang-en [data-lang="en"] {
    display: unset;
}

body.lang-en [data-lang-block="en"] {
    display: block;
}

body.lang-en [data-lang-block="es"] {
    display: none;
}

[data-lang-block="en"] {
    display: none;
}