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

:root {
    --bg: #F2EDE8;
    --bg-dark: #0D0D0D;
    --fg: #0D0D0D;
    --fg-light: #F2EDE8;
    --red: #FF3B1D;
    --gold: #F5C63D;
    --blue: #2B6CB0;
    --lime: #C5FF4A;
    --gray: #8A8580;
    --light-gray: #D9D4CF;
    --font-display: 'Plus Jakarta Sans', sans-serif;
    --font-serif: 'Cormorant Garamond', serif;
    --font-mono: 'JetBrains Mono', monospace;
    --font-body: 'Outfit', sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
    background: var(--bg);
    color: var(--fg);
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Grain overlay */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.028;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ===== NAV ===== */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 3rem;
    transition: background 0.4s, padding 0.4s, box-shadow 0.4s;
}
nav.scrolled {
    background: rgba(242, 237, 232, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 1rem 3rem;
    box-shadow: 0 1px 0 var(--light-gray);
}
.nav-logo {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.4rem;
    letter-spacing: -0.02em;
    text-decoration: none;
    color: var(--fg);
}
.nav-logo span { color: var(--red); }
.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}
.nav-links a {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none;
    color: var(--fg);
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--red); }
.nav-cta {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    text-decoration: none;
    color: var(--bg);
    background: var(--fg);
    padding: 0.65rem 1.4rem;
    border-radius: 100px;
    transition: background 0.3s, transform 0.2s;
}
.nav-cta:hover { background: var(--red); transform: translateY(-1px); }
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}
.nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--fg);
    transition: transform 0.3s, opacity 0.3s;
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 8rem 3rem 4rem;
    gap: 4rem;
    position: relative;
}
.hero-content { max-width: 620px; }
.hero-label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gray);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}
.hero-label::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--lime);
    box-shadow: 0 0 8px var(--lime);
    animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; box-shadow: 0 0 8px var(--lime); }
    50% { opacity: 0.6; box-shadow: 0 0 16px var(--lime); }
}
.hero h1 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(3.2rem, 6vw, 5.5rem);
    line-height: 0.95;
    letter-spacing: -0.03em;
    margin-bottom: 2rem;
}
.hero h1 .line-2 {
    display: block;
    color: var(--red);
}
.hero-desc {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--gray);
    max-width: 480px;
    margin-bottom: 2.5rem;
    font-weight: 300;
}
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 2.2rem;
    background: var(--fg);
    color: var(--bg);
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    text-decoration: none;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
}
.btn:hover {
    background: var(--red);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 59, 29, 0.25);
}
.btn .arrow { transition: transform 0.3s; }
.btn:hover .arrow { transform: translateX(4px); }

.hero-status {
    position: absolute;
    bottom: 2.5rem;
    left: 3rem;
    font-family: var(--font-mono);
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 2rem;
}
.hero-status strong {
    color: var(--fg);
    font-weight: 500;
}
.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    right: 3rem;
    font-family: var(--font-mono);
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray);
    text-align: right;
}
.hero-scroll strong {
    display: block;
    color: var(--fg);
    font-weight: 500;
}

/* ===== GEOMETRIC GRID ===== */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.geo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1;
}
.geo-cell {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    background: var(--bg);
}
.geo-cell .shape {
    position: absolute;
    border-radius: 50%;
}
.geo-cell.solid { border-radius: 0; }

/* Shape positions */
.q-tl { width: 200%; height: 200%; top: 0; left: 0; }
.q-tr { width: 200%; height: 200%; top: 0; right: 0; }
.q-bl { width: 200%; height: 200%; bottom: 0; left: 0; }
.q-br { width: 200%; height: 200%; bottom: 0; right: 0; }
.hc-r { width: 100%; height: 100%; left: 50%; top: 0; }
.hc-l { width: 100%; height: 100%; right: 50%; top: 0; }
.hc-b { width: 100%; height: 100%; left: 0; top: 50%; }
.hc-t { width: 100%; height: 100%; left: 0; bottom: 50%; }
.fc { width: 82%; height: 82%; top: 9%; left: 9%; }
.leaf {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 0 70% 0 70%;
}

.c-black { background: var(--fg); }
.c-red { background: var(--red); }
.c-gold { background: var(--gold); }
.c-blue { background: var(--blue); }

/* Geo grid entrance animation */
.geo-cell {
    opacity: 0;
    transform: scale(0.7);
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.geo-grid.visible .geo-cell { opacity: 1; transform: scale(1); }
.geo-grid.visible .geo-cell:nth-child(1) { transition-delay: 0.02s; }
.geo-grid.visible .geo-cell:nth-child(2) { transition-delay: 0.06s; }
.geo-grid.visible .geo-cell:nth-child(3) { transition-delay: 0.10s; }
.geo-grid.visible .geo-cell:nth-child(4) { transition-delay: 0.14s; }
.geo-grid.visible .geo-cell:nth-child(5) { transition-delay: 0.08s; }
.geo-grid.visible .geo-cell:nth-child(6) { transition-delay: 0.12s; }
.geo-grid.visible .geo-cell:nth-child(7) { transition-delay: 0.16s; }
.geo-grid.visible .geo-cell:nth-child(8) { transition-delay: 0.20s; }
.geo-grid.visible .geo-cell:nth-child(9) { transition-delay: 0.14s; }
.geo-grid.visible .geo-cell:nth-child(10) { transition-delay: 0.18s; }
.geo-grid.visible .geo-cell:nth-child(11) { transition-delay: 0.22s; }
.geo-grid.visible .geo-cell:nth-child(12) { transition-delay: 0.26s; }
.geo-grid.visible .geo-cell:nth-child(13) { transition-delay: 0.20s; }
.geo-grid.visible .geo-cell:nth-child(14) { transition-delay: 0.24s; }
.geo-grid.visible .geo-cell:nth-child(15) { transition-delay: 0.28s; }
.geo-grid.visible .geo-cell:nth-child(16) { transition-delay: 0.32s; }

/* Gradient orb */
.hero-orb {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,59,29,0.15) 0%, rgba(43,108,176,0.12) 45%, rgba(197,255,74,0.06) 75%, transparent 100%);
    filter: blur(60px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    animation: orb-float 8s ease-in-out infinite;
}
@keyframes orb-float {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -52%) scale(1.05); }
}

/* ===== SECTION SHARED ===== */
.section-pad { padding: 6rem 3rem; }
.section-pad-lg { padding: 8rem 3rem; }
.section-label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--gray);
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}
.section-label::before {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--light-gray);
}
.section-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

/* ===== AGENTS ===== */
.agents {
    padding: 6rem 3rem;
    background: var(--bg-dark);
    color: var(--fg-light);
    position: relative;
    overflow: hidden;
}
.agents .section-label { color: rgba(255,255,255,0.4); }
.agents .section-label::before { background: rgba(255,255,255,0.15); }

/* Orchestrator tier */
.agents-orchestrators {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
}
.orch-card {
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    padding: 2.2rem;
    position: relative;
    transition: border-color 0.3s, transform 0.3s;
    background: rgba(255,255,255,0.03);
}
.orch-card:hover {
    border-color: var(--lime);
    transform: translateY(-3px);
}
.orch-badge {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--bg-dark);
    background: var(--lime);
    padding: 0.25rem 0.7rem;
    border-radius: 100px;
    margin-bottom: 1rem;
}
.orch-card h3 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.6rem;
    margin-bottom: 0.6rem;
    letter-spacing: -0.01em;
}
.orch-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.55);
    font-weight: 300;
}
.orch-icon {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 36px;
    height: 36px;
    opacity: 0.3;
}

/* Connector line */
.agents-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 0;
    position: relative;
}
.agents-connector::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, var(--lime), rgba(255,255,255,0.1));
}
.connector-label {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--lime);
    background: var(--bg-dark);
    padding: 0.3rem 1rem;
    position: relative;
    z-index: 1;
}

/* Execution tier */
.agents-execution {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
}
.exec-card {
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 1.8rem;
    position: relative;
    transition: border-color 0.3s, transform 0.3s;
    background: rgba(255,255,255,0.02);
}
.exec-card:hover {
    border-color: rgba(255,255,255,0.25);
    transform: translateY(-3px);
}
.exec-num {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    color: rgba(255,255,255,0.25);
    display: block;
    margin-bottom: 1rem;
}
.exec-card h4 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}
.exec-card p {
    font-size: 0.82rem;
    line-height: 1.5;
    color: rgba(255,255,255,0.45);
    font-weight: 300;
}
.exec-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    position: absolute;
    top: 1.8rem;
    right: 1.8rem;
}
.exec-dot.dot-red { background: var(--red); }
.exec-dot.dot-gold { background: var(--gold); }
.exec-dot.dot-lime { background: var(--lime); }
.exec-dot.dot-blue { background: var(--blue); }
.exec-dot.dot-white { background: rgba(255,255,255,0.5); }

/* ===== ADVANTAGES ===== */
.advantages {
    border-top: 1px solid var(--light-gray);
}
.adv-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
}
.adv-item {}
.adv-num {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--gray);
    display: block;
    margin-bottom: 1rem;
}
.adv-item h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 0.6rem;
    letter-spacing: -0.01em;
}
.adv-item p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.5;
    font-weight: 300;
}

/* ===== CLIENTS ===== */
.clients {
    border-top: 1px solid var(--light-gray);
    border-bottom: 1px solid var(--light-gray);
}
.client-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    gap: 3rem;
}
.client-logo {
    display: block;
    width: 100%;
    height: 44px;
    object-fit: contain;
    filter: brightness(0);
    opacity: 0.3;
    transition: opacity 0.3s;
}
.client-logo:hover { opacity: 0.6; }

/* ===== CUSTOM VS SAAS ===== */
.custom-saas {
    background: var(--bg-dark);
    color: var(--fg-light);
}
.custom-saas .section-label { color: rgba(255,255,255,0.4); }
.custom-saas .section-label::before { background: rgba(255,255,255,0.15); }
.custom-saas-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}
.custom-saas-statement {
    font-family: var(--font-serif);
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.4;
    color: rgba(255,255,255,0.85);
}
.custom-saas-points ul {
    list-style: none;
    margin-bottom: 2rem;
}
.custom-saas-points li {
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-size: 0.95rem;
    font-weight: 300;
    color: rgba(255,255,255,0.7);
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}
.custom-saas-points li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--lime);
    flex-shrink: 0;
    margin-top: 0.5rem;
}
.custom-saas-closing {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--lime);
}

/* ===== TECH ===== */
.tech { border-bottom: 1px solid var(--light-gray); }
.tech-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
}
.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem 1rem;
    border: 1px solid var(--light-gray);
    border-radius: 12px;
    transition: border-color 0.3s, transform 0.3s;
}
.tech-item:hover {
    border-color: var(--gray);
    transform: translateY(-4px);
}
.tech-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tech-icon svg,
.tech-icon img { width: 100%; height: 100%; }
.tech-name {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 400;
    text-align: center;
    letter-spacing: 0.02em;
    color: var(--fg);
}

/* ===== WHY US ===== */
.why-us {}
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}
.why-item {
    padding: 2.5rem;
    border: 1px solid var(--light-gray);
    border-radius: 16px;
    transition: border-color 0.3s;
}
.why-item:hover { border-color: var(--red); }
.why-num {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 2.5rem;
    color: var(--red);
    line-height: 1;
    margin-bottom: 1rem;
    display: block;
}
.why-item h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    letter-spacing: -0.01em;
}
.why-item p {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--gray);
    font-weight: 300;
}

/* ===== PRICING ===== */
.pricing { border-top: 1px solid var(--light-gray); }
.pricing-tagline {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-style: italic;
    color: var(--gray);
    margin-bottom: 3rem;
}
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.price-card {
    padding: 2.5rem;
    border: 1px solid var(--light-gray);
    border-radius: 16px;
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
    position: relative;
}
.price-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}
.price-card.featured {
    border-color: var(--red);
    background: linear-gradient(135deg, rgba(255,59,29,0.03) 0%, transparent 60%);
}
.price-card.featured::before {
    content: 'Popular';
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--red);
    color: white;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.3rem 0.8rem;
    border-radius: 100px;
}
.price-card-label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray);
    margin-bottom: 1rem;
    display: block;
}
.price-card h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}
.price-amount {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 2.2rem;
    color: var(--red);
    margin-bottom: 0.3rem;
    display: block;
}
.price-period {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
    display: block;
}
.price-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--gray);
    font-weight: 300;
}
.price-card ul {
    list-style: none;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--light-gray);
}
.price-card li {
    font-size: 0.85rem;
    color: var(--gray);
    padding: 0.35rem 0;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 300;
}
.price-card li::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--red);
    flex-shrink: 0;
}

/* ===== FOOTER CTA ===== */
.footer-cta {
    background: var(--bg-dark);
    color: var(--fg-light);
    text-align: center;
    padding: 8rem 3rem;
}
.footer-cta h2 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
}
.footer-cta p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 2.5rem;
    font-weight: 300;
}
.btn-lime {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 2.2rem;
    background: var(--lime);
    color: var(--bg-dark);
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    text-decoration: none;
    border-radius: 100px;
    transition: transform 0.2s, box-shadow 0.3s;
}
.btn-lime:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(197, 255, 74, 0.3);
}

/* ===== CONTACT FORM ===== */
.contact-form {
    max-width: 520px;
    margin: 0 auto;
    text-align: left;
}
.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    color: var(--fg-light);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 300;
    outline: none;
    transition: border-color 0.3s, background 0.3s;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255,255,255,0.3);
}
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--lime);
    background: rgba(255,255,255,0.08);
}
.contact-form textarea {
    min-height: 120px;
    resize: vertical;
    margin-bottom: 1rem;
}
.contact-form .btn-lime {
    width: 100%;
    justify-content: center;
    border: none;
    cursor: pointer;
    font-size: 0.8rem;
    padding: 1rem;
}
.form-success {
    display: none;
    text-align: center;
    padding: 2rem 0;
}
.form-success.show { display: block; }
.form-success h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--lime);
    margin-bottom: 0.5rem;
}
.form-success p {
    color: rgba(255,255,255,0.5);
    font-size: 0.95rem;
}

footer {
    background: var(--bg-dark);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 2rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
footer span {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: rgba(255,255,255,0.3);
}
footer a {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: rgba(255,255,255,0.3);
    text-decoration: none;
    transition: color 0.2s;
}
footer a:hover { color: rgba(255,255,255,0.7); }
.footer-links { display: flex; gap: 2rem; }

/* ===== ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }
.reveal-d5 { transition-delay: 0.5s; }

/* Hero text entrance */
.hero-content .reveal {
    opacity: 0;
    transform: translateY(30px);
}
.hero-content .reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
    .tech-grid { grid-template-columns: repeat(3, 1fr); }
    .adv-grid { grid-template-columns: repeat(3, 1fr); }
    .agents-execution { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
    nav { padding: 1.2rem 1.5rem; }
    nav.scrolled { padding: 0.8rem 1.5rem; }
    .nav-links { display: none; }
    .nav-cta { display: none; }
    .nav-hamburger { display: flex; }
    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg);
        padding: 1.5rem 2rem 2rem;
        gap: 1.2rem;
        border-bottom: 1px solid var(--light-gray);
        box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    }
    .hero {
        grid-template-columns: 1fr;
        padding: 6rem 2rem 4rem;
        min-height: auto;
        gap: 2.5rem;
    }
    .hero-visual { order: -1; max-width: 300px; margin: 0 auto; }
    .hero-orb { width: 250px; height: 250px; }
    .hero h1 { font-size: clamp(2.4rem, 9vw, 3.2rem); }
    .hero-desc { font-size: 1rem; }
    .hero-status { display: none; }
    .hero-scroll { display: none; }
    .section-pad { padding: 4rem 2rem; }
    .section-pad-lg { padding: 5rem 2rem; }
    .section-label { margin-bottom: 2rem; }
    .agents { padding: 4rem 2rem; }
    .agents-orchestrators { grid-template-columns: 1fr; gap: 1.2rem; }
    .orch-card { padding: 1.8rem; }
    .orch-card h3 { font-size: 1.3rem; }
    .agents-execution { grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
    .exec-card { padding: 1.4rem; }
    .adv-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .custom-saas-grid { grid-template-columns: 1fr; gap: 2rem; }
    .tech-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
    .why-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .why-item { padding: 2rem; }
    .pricing-cards { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
    .price-card { padding: 2rem; }
    .client-row { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
    .footer-cta { padding: 5rem 2rem; }
    .contact-form .form-row { grid-template-columns: 1fr; }
    footer { padding: 2rem 1.5rem; }
}
@media (max-width: 600px) {
    nav { padding: 1rem 1.2rem; }
    nav.scrolled { padding: 0.7rem 1.2rem; }
    .nav-logo { font-size: 1.2rem; }
    .hero {
        padding: 5.5rem 1.2rem 3rem;
        gap: 2rem;
    }
    .hero-visual { max-width: 240px; }
    .hero-orb { width: 180px; height: 180px; filter: blur(40px); }
    .hero h1 { font-size: clamp(2rem, 10vw, 2.8rem); margin-bottom: 1.5rem; }
    .hero-desc { font-size: 0.95rem; margin-bottom: 2rem; }
    .btn { padding: 0.85rem 1.8rem; font-size: 0.75rem; }
    .section-pad { padding: 3rem 1.2rem; }
    .section-pad-lg { padding: 3.5rem 1.2rem; }
    .section-label { margin-bottom: 1.5rem; font-size: 0.62rem; }
    .section-title { font-size: clamp(1.6rem, 6vw, 2.2rem); }
    .agents { padding: 3rem 1.2rem; }
    .orch-card { padding: 1.5rem; }
    .orch-card h3 { font-size: 1.2rem; }
    .orch-card p { font-size: 0.85rem; }
    .orch-icon { width: 28px; height: 28px; top: 1.5rem; right: 1.5rem; }
    .agents-execution { grid-template-columns: 1fr 1fr; gap: 0.8rem; }
    .exec-card { padding: 1.2rem; }
    .exec-card h4 { font-size: 0.95rem; }
    .exec-card p { font-size: 0.78rem; }
    .exec-dot { top: 1.2rem; right: 1.2rem; width: 6px; height: 6px; }
    .adv-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .adv-item h3 { font-size: 1.15rem; }
    .client-row { gap: 1.5rem; }
    .client-logo { height: 32px; }
    .custom-saas-statement { font-size: 1.3rem; }
    .custom-saas-points li { font-size: 0.88rem; }
    .tech-grid { grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }
    .tech-item { padding: 1.4rem 0.8rem; }
    .tech-icon { width: 36px; height: 36px; }
    .tech-name { font-size: 0.65rem; }
    .why-item { padding: 1.5rem; }
    .why-num { font-size: 2rem; }
    .why-item h3 { font-size: 1.15rem; }
    .why-item p { font-size: 0.88rem; }
    .pricing-tagline { font-size: 1.15rem; margin-bottom: 2rem; }
    .price-card { padding: 1.5rem; }
    .price-amount { font-size: 1.8rem; }
    .footer-cta { padding: 4rem 1.2rem; }
    .footer-cta h2 { font-size: clamp(2rem, 8vw, 3rem); }
    .footer-cta p { font-size: 0.95rem; }
    .contact-form { max-width: 100%; }
    .contact-form input,
    .contact-form textarea { padding: 0.8rem 1rem; font-size: 0.88rem; }
    .contact-form .btn-lime { padding: 0.85rem; font-size: 0.75rem; }
    .btn-lime { padding: 0.85rem 1.8rem; font-size: 0.75rem; }
    footer { flex-direction: column; gap: 1rem; text-align: center; padding: 1.5rem 1.2rem; }
}
/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    max-width: 480px;
    background: var(--bg-dark);
    color: var(--fg-light);
    padding: 1.5rem 2rem;
    border-radius: 14px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    box-shadow: 0 12px 40px rgba(0,0,0,0.25);
    transform: translateY(120%);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner.hide { transform: translateY(120%); }
.cookie-banner p {
    font-size: 0.85rem;
    line-height: 1.55;
    color: rgba(255,255,255,0.65);
    font-weight: 300;
}
.cookie-banner a {
    color: var(--lime);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.cookie-actions {
    display: flex;
    gap: 0.8rem;
}
.cookie-accept {
    padding: 0.55rem 1.4rem;
    background: var(--lime);
    color: var(--bg-dark);
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    transition: transform 0.2s;
}
.cookie-accept:hover { transform: translateY(-1px); }
.cookie-decline {
    padding: 0.55rem 1.2rem;
    background: transparent;
    color: rgba(255,255,255,0.5);
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 100px;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
}
.cookie-decline:hover { border-color: rgba(255,255,255,0.4); color: rgba(255,255,255,0.8); }

@media (max-width: 380px) {
    .hero h1 { font-size: 1.8rem; }
    .hero-visual { max-width: 200px; }
    .agents-execution { grid-template-columns: 1fr; }
    .tech-grid { grid-template-columns: 1fr 1fr; }
    .geo-grid { gap: 3px; }
}