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

:root {
    --bg: #0a0a16;
    --bg-2: #11112a;
    --surface: rgba(255, 255, 255, 0.04);
    --surface-2: rgba(255, 255, 255, 0.06);
    --border: rgba(255, 255, 255, 0.08);
    --border-strong: rgba(255, 255, 255, 0.14);
    --text: #f4f4ff;
    --text-muted: #a0a0c0;
    --text-dim: #6b6b8c;

    --primary: #6366f1;
    --primary-2: #8b5cf6;
    --accent: #ec4899;
    --green: #10b981;

    --gradient: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
    --gradient-soft: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(236, 72, 153, 0.15));

    --shadow-lg: 0 30px 60px -20px rgba(99, 102, 241, 0.3);
    --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.5);

    --radius-sm: 10px;
    --radius: 16px;
    --radius-lg: 24px;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

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

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

/* ============ BACKGROUND ORBS ============ */
.bg-orbs {
    position: fixed;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.5;
    animation: floatOrb 20s ease-in-out infinite;
}

.orb-1 {
    width: 500px; height: 500px;
    background: #6366f1;
    top: -100px; left: -150px;
}

.orb-2 {
    width: 600px; height: 600px;
    background: #ec4899;
    top: 30%; right: -200px;
    animation-delay: -7s;
}

.orb-3 {
    width: 450px; height: 450px;
    background: #8b5cf6;
    bottom: -100px; left: 30%;
    animation-delay: -14s;
}

@keyframes floatOrb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(40px, -40px) scale(1.1); }
    66% { transform: translate(-30px, 30px) scale(0.95); }
}

main, .header, .footer { position: relative; z-index: 1; }

/* ============ HEADER ============ */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: rgba(10, 10, 22, 0.7);
    border-bottom: 1px solid var(--border);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 18px 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 22px;
}

.logo-mark {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 900;
    font-size: 20px;
    box-shadow: 0 6px 20px -6px rgba(99, 102, 241, 0.6);
}

.logo-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    gap: 28px;
    margin-left: auto;
}

.nav-links a {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s;
}

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

.nav-cta { font-size: 14px; padding: 10px 18px; }

.burger { display: none; flex-direction: column; gap: 5px; }
.burger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: 0.3s; }

/* ============ BUTTONS ============ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.25s ease;
    cursor: pointer;
    white-space: nowrap;
    border: 1px solid transparent;
}

.btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: 0 10px 30px -10px rgba(99, 102, 241, 0.6);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px -10px rgba(99, 102, 241, 0.8);
}

.btn-ghost {
    background: var(--surface);
    border: 1px solid var(--border-strong);
    color: var(--text);
}

.btn-ghost:hover {
    background: var(--surface-2);
    border-color: var(--text-muted);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border-strong);
    color: var(--text);
}

.btn-outline:hover {
    background: var(--surface);
    border-color: var(--primary);
}

.btn-lg { padding: 16px 28px; font-size: 16px; }
.btn-block { width: 100%; }

/* ============ HERO ============ */
.hero {
    padding: 80px 0 60px;
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 60px;
    align-items: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--gradient-soft);
    border: 1px solid var(--border-strong);
    border-radius: 100px;
    font-size: 13px;
    color: var(--text);
    font-weight: 500;
    margin-bottom: 24px;
}

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

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.2); }
}

.hero-title {
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 22px;
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 540px;
    margin-bottom: 36px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.stat-value {
    font-size: 36px;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 4px;
}

/* ============ HERO VISUAL ============ */
.hero-visual {
    position: relative;
    min-height: 480px;
}

.glass {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.hero-card {
    padding: 24px;
}

.hero-card-main {
    position: relative;
    z-index: 2;
    transform: rotate(-2deg);
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 20px;
}

.card-dots {
    display: flex;
    gap: 6px;
}

.card-dots span {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--border-strong);
}

.card-dots span:nth-child(1) { background: #ef4444; }
.card-dots span:nth-child(2) { background: #eab308; }
.card-dots span:nth-child(3) { background: #22c55e; }

.card-title {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}

.metric { margin-bottom: 20px; }
.metric-label { font-size: 13px; color: var(--text-muted); margin-bottom: 4px; }
.metric-value { font-size: 32px; font-weight: 800; letter-spacing: -0.02em; }
.metric-trend {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    margin-top: 4px;
}
.metric-trend.up { color: var(--green); }

.metric-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 24px;
    padding: 14px;
    background: var(--surface);
    border-radius: var(--radius-sm);
}

.mini-metric { display: flex; flex-direction: column; gap: 2px; }
.mini-label { font-size: 11px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.05em; }
.mini-value { font-size: 15px; font-weight: 700; }

.chart {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 100px;
}

.bar {
    flex: 1;
    background: var(--gradient);
    border-radius: 4px 4px 0 0;
    height: var(--h);
    opacity: 0.85;
    animation: barRise 0.8s ease-out backwards;
}

.chart .bar:nth-child(1) { animation-delay: 0.05s; }
.chart .bar:nth-child(2) { animation-delay: 0.1s; }
.chart .bar:nth-child(3) { animation-delay: 0.15s; }
.chart .bar:nth-child(4) { animation-delay: 0.2s; }
.chart .bar:nth-child(5) { animation-delay: 0.25s; }
.chart .bar:nth-child(6) { animation-delay: 0.3s; }
.chart .bar:nth-child(7) { animation-delay: 0.35s; }
.chart .bar:nth-child(8) { animation-delay: 0.4s; }
.chart .bar:nth-child(9) { animation-delay: 0.45s; }
.chart .bar:nth-child(10) { animation-delay: 0.5s; }
.chart .bar:nth-child(11) { animation-delay: 0.55s; }
.chart .bar:nth-child(12) { animation-delay: 0.6s; }

@keyframes barRise {
    from { height: 0; opacity: 0; }
    to { height: var(--h); opacity: 0.85; }
}

.hero-card-float, .hero-card-float-2 {
    position: absolute;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 3;
}

.hero-card-float {
    top: 12px;
    right: -10px;
    transform: rotate(4deg);
}

.hero-card-float-2 {
    bottom: 20px;
    left: -20px;
    transform: rotate(-3deg);
}

.float-icon {
    width: 38px; height: 38px;
    border-radius: 12px;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 18px;
}

.float-icon.green { background: rgba(16, 185, 129, 0.15); color: var(--green); border: 1px solid var(--green); }

.float-title { font-size: 14px; font-weight: 600; }
.float-sub { font-size: 12px; color: var(--text-muted); }

.float-anim { animation: floatY 4s ease-in-out infinite; }
.float-anim-2 { animation: floatY 5s ease-in-out infinite reverse; }

@keyframes floatY {
    0%, 100% { transform: rotate(4deg) translateY(0); }
    50% { transform: rotate(4deg) translateY(-12px); }
}

/* ============ LOGOS BAND ============ */
.logos {
    padding: 32px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.logos-title {
    text-align: center;
    font-size: 13px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 24px;
}

.logos-row {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 32px;
}

.logo-item {
    font-weight: 700;
    font-size: 18px;
    color: var(--text-muted);
    opacity: 0.6;
    letter-spacing: 0.05em;
    transition: opacity 0.3s, color 0.3s;
}

.logo-item:hover { opacity: 1; color: var(--text); }

/* ============ SECTIONS ============ */
.section {
    padding: 100px 0;
}

.section-alt {
    background: linear-gradient(180deg, transparent, rgba(99, 102, 241, 0.03), transparent);
}

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

.eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-2);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 12px;
}

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

.section-subtitle {
    font-size: 17px;
    color: var(--text-muted);
}

/* ============ SERVICES ============ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

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

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-soft);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-strong);
    box-shadow: var(--shadow-card);
}

.service-card:hover::before { opacity: 1; }

.service-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.service-card h3 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.service-card p {
    color: var(--text-muted);
    font-size: 15px;
    position: relative;
    z-index: 1;
}

/* ============ FEATURES ============ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.feature {
    padding: 32px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all 0.3s;
}

.feature:hover {
    border-color: var(--border-strong);
    transform: translateY(-4px);
}

.feature-num {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-2);
    margin-bottom: 12px;
    letter-spacing: 0.05em;
}

.feature h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature p {
    color: var(--text-muted);
    font-size: 15px;
}

/* ============ PRICING ============ */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    padding: 36px 32px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-strong);
}

.pricing-card-featured {
    background: linear-gradient(180deg, rgba(99, 102, 241, 0.12), rgba(236, 72, 153, 0.06));
    border-color: rgba(99, 102, 241, 0.4);
    box-shadow: 0 30px 60px -20px rgba(99, 102, 241, 0.3);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    color: white;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 100px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.pricing-name {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 6px;
}

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

.pricing-price {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 24px;
}

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

.price-value {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.pricing-list {
    flex-grow: 1;
    margin-bottom: 28px;
}

.pricing-list li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    font-size: 15px;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
}

.pricing-list li:last-child { border-bottom: none; }

.pricing-list li::before {
    content: '';
    position: absolute;
    left: 0; top: 14px;
    width: 18px; height: 18px;
    border-radius: 50%;
    background: var(--gradient);
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/14px no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/14px no-repeat;
}

/* ============ CASES ============ */
.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.case-card {
    padding: 32px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all 0.3s;
}

.case-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-strong);
}

.case-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-2);
    background: rgba(99, 102, 241, 0.12);
    padding: 6px 12px;
    border-radius: 100px;
    margin-bottom: 18px;
    letter-spacing: 0.03em;
}

.case-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
}

.case-card > p {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 24px;
}

.case-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.case-metrics > div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.case-metrics strong {
    font-size: 22px;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.case-metrics span {
    font-size: 12px;
    color: var(--text-muted);
}

/* ============ STEPS ============ */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    position: relative;
}

.step {
    padding: 32px 24px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    position: relative;
    transition: all 0.3s;
}

.step:hover {
    transform: translateY(-4px);
    border-color: var(--border-strong);
}

.step-num {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: var(--gradient);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
    margin-bottom: 16px;
    box-shadow: 0 8px 20px -6px rgba(99, 102, 241, 0.6);
}

.step h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.step p {
    color: var(--text-muted);
    font-size: 14px;
}

/* ============ CTA / CONTACT ============ */
.cta {
    padding: 60px;
    border-radius: var(--radius-lg);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.cta-content .eyebrow { margin-bottom: 12px; }
.cta-content .section-title { font-size: clamp(28px, 3.5vw, 38px); margin-bottom: 16px; text-align: left; }
.cta-content .section-subtitle { text-align: left; margin-bottom: 36px; }

.cta .section-head { text-align: left; margin: 0; max-width: none; }

.contacts-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    border-radius: var(--radius);
    transition: background 0.2s;
}

a.contact-item:hover { background: var(--surface); }

.contact-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: var(--gradient-soft);
    border: 1px solid var(--border-strong);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-2);
    flex-shrink: 0;
}

.contact-label {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.contact-value {
    font-size: 15px;
    font-weight: 600;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-field span {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}

.form-field input,
.form-field textarea {
    padding: 14px 16px;
    background: var(--surface);
    border: 1px solid var(--border-strong);
    border-radius: 12px;
    color: var(--text);
    font-size: 15px;
    transition: all 0.2s;
    resize: vertical;
    font-family: inherit;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--surface-2);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.15);
}

.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--text-dim); }

.form-note {
    font-size: 12px;
    color: var(--text-dim);
    text-align: center;
    margin-top: 4px;
}

/* ============ FOOTER ============ */
.footer {
    padding: 60px 0 30px;
    border-top: 1px solid var(--border);
    margin-top: 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border);
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 14px;
    margin-top: 16px;
    max-width: 280px;
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }

.footer-col a, .footer-col li {
    font-size: 14px;
    color: var(--text-muted);
    transition: color 0.2s;
}

.footer-col a:hover { color: var(--text); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 30px;
    font-size: 13px;
    color: var(--text-dim);
    flex-wrap: wrap;
    gap: 10px;
}

/* ============ ANIMATIONS ============ */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ============ RESPONSIVE ============ */
@media (max-width: 960px) {
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-visual { min-height: 360px; max-width: 480px; margin: 0 auto; }
    .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 16px; }
    .stat-value { font-size: 28px; }
    .cta { grid-template-columns: 1fr; padding: 40px 28px; gap: 40px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 720px) {
    .nav-links { display: none; }
    .nav-cta { display: none; }
    .burger { display: flex; }
    .section { padding: 70px 0; }
    .hero { padding: 50px 0 30px; }
    .section-head { margin-bottom: 40px; }
    .cta { padding: 32px 22px; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
    .hero-card-float { right: 0; }
    .hero-card-float-2 { left: 0; }
}

@media (max-width: 480px) {
    .hero-stats { grid-template-columns: 1fr; text-align: center; }
    .footer-grid { grid-template-columns: 1fr; }
    .case-metrics { grid-template-columns: 1fr; }
}
