/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font);
    background: #fff;
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ===== CSS VARIABLES ===== */
:root {
    --bg:        #ffffff;
    --bg-2:      #f8fafc;
    --bg-3:      #f1f5f9;
    --bg-purple: #f5f3ff;
    --border:    #e2e8f0;
    --border-2:  #cbd5e1;
    --primary:   #4f46e5;
    --primary-h: #4338ca;
    --primary-lt:#ede9fe;
    --cta:       #f97316;
    --cta-h:     #ea580c;
    --green:     #16a34a;
    --text:      #0f172a;
    --text-m:    #475569;
    --text-s:    #94a3b8;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.07), 0 1px 2px rgba(0,0,0,0.05);
    --shadow:    0 4px 16px rgba(0,0,0,0.08);
    --shadow-md: 0 8px 28px rgba(0,0,0,0.1);
    --shadow-lg: 0 16px 48px rgba(0,0,0,0.12);
    --radius:    12px;
    --radius-lg: 20px;
    --font:      'Inter', system-ui, -apple-system, sans-serif;
    --font-d:    'Plus Jakarta Sans', var(--font);
    --ease:      cubic-bezier(0.4,0,0.2,1);
}

/* ===== TYPOGRAPHY ===== */
h1,h2,h3,h4 {
    font-family: var(--font-d);
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text);
}
.gradient-text {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== LAYOUT ===== */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }

/* ===== SECTION HEADERS ===== */
.section-header { text-align: center; margin-bottom: 60px; }
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    border-radius: 100px;
    background: var(--primary-lt);
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.section-badge-light {
    background: rgba(255,255,255,0.18);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.25);
}
.section-title {
    font-size: clamp(1.9rem, 4vw, 2.6rem);
    margin-bottom: 14px;
    color: var(--text);
}
.section-desc {
    font-size: 1.05rem;
    color: var(--text-m);
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.18s var(--ease);
    white-space: nowrap;
    line-height: 1;
}
/* Orange CTA — the main action button */
.btn-cta {
    background: var(--cta);
    color: #fff;
    box-shadow: 0 4px 16px rgba(249,115,22,0.35);
}
.btn-cta:hover {
    background: var(--cta-h);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(249,115,22,0.45);
}
.btn-cta:active { transform: translateY(0); }
/* Indigo outline secondary */
.btn-outline {
    background: #fff;
    color: var(--primary);
    border: 2px solid var(--primary);
}
.btn-outline:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(79,70,229,0.25);
}
/* Indigo filled */
.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 16px rgba(79,70,229,0.3);
}
.btn-primary:hover {
    background: var(--primary-h);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(79,70,229,0.4);
}

/* ===== HEADER / NAV ===== */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.header.scrolled {
    border-bottom-color: var(--border);
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.logo-text {
    font-family: var(--font-d);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.03em;
}
.logo-accent { color: var(--primary); }
.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}
.nav-link {
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-m);
    transition: color 0.15s, background 0.15s;
}
.nav-link:hover { color: var(--text); background: var(--bg-2); }
.nav-cta {
    padding: 10px 20px;
    border-radius: 9px;
    background: var(--cta);
    color: #fff !important;
    font-weight: 700;
    font-size: 0.88rem;
    box-shadow: 0 3px 12px rgba(249,115,22,0.3);
    margin-left: 6px;
}
.nav-cta:hover {
    background: var(--cta-h) !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(249,115,22,0.4);
}
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: var(--bg);
}
.nav-toggle span {
    width: 20px; height: 2px;
    background: var(--text);
    border-radius: 2px;
    display: block;
    transition: all 0.25s var(--ease);
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 110px 0 80px;
    background: linear-gradient(150deg, #f5f3ff 0%, #eff6ff 55%, #fff7ed 100%);
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}
.hero-blob-1 {
    width: 550px; height: 550px;
    top: -200px; left: -100px;
    background: radial-gradient(circle, rgba(79,70,229,0.14), transparent 65%);
}
.hero-blob-2 {
    width: 450px; height: 450px;
    bottom: -150px; right: -50px;
    background: radial-gradient(circle, rgba(249,115,22,0.1), transparent 65%);
}
.hero-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(79,70,229,0.12) 1px, transparent 1px);
    background-size: 32px 32px;
    mask-image: radial-gradient(ellipse 75% 75% at 50% 50%, black 20%, transparent 100%);
}
.hero-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.hero-content { max-width: 580px; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    border-radius: 100px;
    background: rgba(79,70,229,0.1);
    border: 1px solid rgba(79,70,229,0.2);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 24px;
}
.badge-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--cta);
    animation: blink 2s infinite;
}
@keyframes blink {
    0%,100% { opacity:1; transform:scale(1); }
    50%      { opacity:0.5; transform:scale(1.4); }
}
.hero-title {
    font-size: clamp(2.4rem, 5.5vw, 4rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.08;
    color: var(--text);
    margin-bottom: 22px;
}
.hero-desc {
    font-size: 1.08rem;
    color: var(--text-m);
    line-height: 1.75;
    margin-bottom: 36px;
    max-width: 520px;
}
.hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.hero-trust {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.875rem;
    color: var(--text-m);
    font-weight: 500;
}
.trust-item svg { color: var(--green); flex-shrink: 0; }

/* Hero floating cards */
.hero-cards {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: flex-end;
}
.hcard {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    width: 260px;
    animation: cardFloat 4s ease-in-out infinite;
}
.hcard-1 { animation-delay: 0s; width: 230px; }
.hcard-2 { animation-delay: 0.8s; width: 245px; }
.hcard-3 { animation-delay: 1.6s; width: 255px; }
.hcard-4 { animation-delay: 0.4s; width: 235px; }
@keyframes cardFloat {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(-7px); }
}
.hcard-icon {
    width: 40px; height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.hci-seo   { background: #ede9fe; color: var(--primary); }
.hci-speed { background: #dbeafe; color: #2563eb; }
.hci-conv  { background: #dcfce7; color: #16a34a; }
.hci-ai    { background: #fef3c7; color: #d97706; }
.hcard-label { font-size: 0.72rem; color: var(--text-s); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.hcard-value { font-size: 1.1rem; font-weight: 800; color: var(--text); }
.hcard-badge {
    margin-left: auto;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 6px;
    flex-shrink: 0;
}
.hcard-badge-green  { background: #dcfce7; color: #15803d; }
.hcard-badge-blue   { background: #dbeafe; color: #1d4ed8; }
.hcard-badge-orange { background: #ffedd5; color: #c2410c; }
.hcard-badge-purple { background: #ede9fe; color: #6d28d9; }

/* ===== STATS SECTION ===== */
.stats-section {
    padding: 56px 0;
    background: var(--bg-purple);
    border-top: 1px solid #ddd6fe;
    border-bottom: 1px solid #ddd6fe;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 32px;
    text-align: center;
}
.stat-item { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.stat-row {
    display: flex;
    align-items: baseline;
    gap: 2px;
}
.stat-number {
    font-family: var(--font-d);
    font-size: clamp(2.2rem, 4.5vw, 3rem);
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
}
.stat-suffix {
    font-family: var(--font-d);
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-weight: 800;
    color: var(--primary);
}
.stat-label { font-size: 0.875rem; color: var(--text-m); font-weight: 500; }

/* ===== SERVICES ===== */
.services-section { background: var(--bg); }
.services-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
}
.service-card {
    position: relative;
    padding: 28px;
    border-radius: var(--radius-lg);
    background: var(--bg);
    border: 1.5px solid var(--border);
    transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.service-card:hover {
    border-color: #c7d2fe;
    transform: translateY(-5px);
    box-shadow: 0 12px 36px rgba(79,70,229,0.1);
}
.sc-featured {
    border-color: var(--primary);
    background: linear-gradient(160deg, #f5f3ff, #fff);
}
.sc-featured:hover { box-shadow: 0 16px 48px rgba(79,70,229,0.18); }
.sc-popular-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 100px;
    background: var(--primary);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.sc-icon {
    width: 52px; height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}
.sci-1 { background: #ede9fe; color: #7c3aed; }
.sci-2 { background: #dbeafe; color: #2563eb; }
.sci-3 { background: #f3e8ff; color: #9333ea; }
.sci-4 { background: #fce7f3; color: #db2777; }
.sci-5 { background: #dcfce7; color: #16a34a; }
.sci-6 { background: #fef9c3; color: #ca8a04; }
.service-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text);
}
.service-card p {
    font-size: 0.88rem;
    color: var(--text-m);
    line-height: 1.65;
    margin-bottom: 16px;
}
.sc-list {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 20px;
}
.sc-list li {
    font-size: 0.82rem;
    color: var(--text-m);
    padding-left: 16px;
    position: relative;
    font-weight: 500;
}
.sc-list li::before {
    content: '';
    position: absolute;
    left: 0; top: 50%;
    transform: translateY(-50%);
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--primary);
}
.sc-link {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary);
    transition: gap 0.15s;
    display: inline-flex;
    align-items: center;
}
.sc-link:hover { color: var(--primary-h); text-decoration: underline; }

/* ===== PROCESS ===== */
.process-section { background: var(--bg-2); }
.process-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
    position: relative;
}
.process-grid::before {
    content: '';
    position: absolute;
    top: 46px;
    left: calc(12.5% + 24px);
    right: calc(12.5% + 24px);
    height: 2px;
    background: linear-gradient(90deg, transparent, #c7d2fe 20%, #c7d2fe 80%, transparent);
}
.process-step {
    position: relative;
    text-align: center;
    padding: 28px 16px;
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1.5px solid var(--border);
    z-index: 1;
    transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.process-step:hover {
    border-color: #c7d2fe;
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}
.ps-num {
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 0.1em;
    margin-bottom: 12px;
    font-family: var(--font-d);
}
.ps-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: var(--primary-lt);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}
.process-step h3 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text);
}
.process-step p {
    font-size: 0.85rem;
    color: var(--text-m);
    line-height: 1.6;
}

/* ===== WHY US ===== */
.why-section { background: var(--bg); }
.why-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}
.why-list { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.why-item { display: flex; gap: 14px; align-items: flex-start; }
.wi-icon {
    width: 38px; height: 38px;
    border-radius: 10px;
    background: var(--primary-lt);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.why-item h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 3px;
}
.why-item p {
    font-size: 0.875rem;
    color: var(--text-m);
    line-height: 1.6;
}
/* Metrics card */
.metrics-card {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-md);
}
.mc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}
.mc-title { font-weight: 700; font-size: 0.95rem; color: var(--text); }
.mc-period {
    font-size: 0.75rem;
    color: var(--text-m);
    padding: 4px 10px;
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: 6px;
}
.mc-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}
.mc-row:last-child { margin-bottom: 0; }
.mc-label {
    font-size: 0.82rem;
    color: var(--text-m);
    white-space: nowrap;
    min-width: 130px;
    font-weight: 500;
}
.mc-bar-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
}
.mc-bar {
    flex: 1;
    height: 8px;
    border-radius: 100px;
    background: var(--bg-3);
    overflow: hidden;
}
.mc-fill {
    height: 100%;
    border-radius: 100px;
    background: linear-gradient(90deg, var(--primary), #7c3aed);
    width: 0;
    animation: barFill 1.6s var(--ease) forwards;
    animation-play-state: paused;
}
@keyframes barFill { to { width: var(--w); } }
.mc-val {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--primary);
    min-width: 52px;
    text-align: right;
}

/* ===== PRICING ===== */
.pricing-section { background: var(--bg-2); }
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
    align-items: start;
}
.pricing-card {
    position: relative;
    padding: 32px 28px;
    border-radius: var(--radius-lg);
    background: #fff;
    border: 1.5px solid var(--border);
    transition: transform 0.25s, box-shadow 0.25s;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pc-featured {
    border-color: var(--primary);
    transform: scale(1.02);
    box-shadow: 0 8px 40px rgba(79,70,229,0.15);
    background: linear-gradient(160deg, var(--primary) 0%, #6d28d9 100%);
    color: #fff;
}
.pc-featured:hover { transform: scale(1.02) translateY(-4px); }
.pc-featured .pc-name { color: rgba(255,255,255,0.75); }
.pc-featured .pc-price { color: #fff; }
.pc-featured .pc-period { color: rgba(255,255,255,0.6); }
.pc-featured .pricing-note-inner { display: none; }
.pc-popular {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 100px;
    background: rgba(255,255,255,0.2);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 16px;
    border: 1px solid rgba(255,255,255,0.3);
}
.pc-name {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-m);
    margin-bottom: 10px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.pc-price {
    font-family: var(--font-d);
    font-size: clamp(2rem, 3.5vw, 2.5rem);
    font-weight: 900;
    color: var(--text);
    line-height: 1;
    margin-bottom: 4px;
    display: flex;
    align-items: flex-start;
    gap: 3px;
}
.pc-cur { font-size: 1.1rem; font-weight: 700; padding-top: 4px; }
.pc-period { font-size: 0.78rem; color: var(--text-s); margin-bottom: 24px; }
.pc-features {
    display: flex;
    flex-direction: column;
    gap: 11px;
    margin-bottom: 28px;
}
.pc-features li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 0.875rem;
    font-weight: 500;
}
.pf-yes { color: var(--text); }
.pf-no  { color: var(--text-s); }
.pf-yes::before {
    content: '';
    width: 18px; height: 18px;
    border-radius: 50%;
    background: #dcfce7;
    border: 1px solid #bbf7d0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%2316a34a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
}
.pf-no::before {
    content: '';
    width: 18px; height: 18px;
    border-radius: 50%;
    background: #f1f5f9;
    border: 1px solid var(--border);
    flex-shrink: 0;
}
.pc-featured .pf-yes { color: rgba(255,255,255,0.9); }
.pc-featured .pf-no  { color: rgba(255,255,255,0.35); }
.pc-featured .pf-yes::before {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.35);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2 6l3 3 5-5' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}
.pc-featured .pf-no::before { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.2); }
.pc-btn { width: 100%; justify-content: center; }
.pricing-note {
    text-align: center;
    margin-top: 28px;
    font-size: 0.82rem;
    color: var(--text-s);
}

/* ===== FAQ ===== */
.faq-section { background: var(--bg); }
.faq-section .section-header { margin-bottom: 44px; }
.faq-list {
    max-width: 740px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.faq-item {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.faq-item[open] {
    border-color: #a5b4fc;
    box-shadow: 0 4px 16px rgba(79,70,229,0.08);
}
.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 22px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    list-style: none;
    gap: 16px;
    -webkit-user-select: none;
    user-select: none;
    transition: background 0.15s;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q:hover { background: var(--bg-2); }
.faq-arr {
    flex-shrink: 0;
    color: var(--text-s);
    transition: transform 0.25s var(--ease);
}
details[open] .faq-arr { transform: rotate(180deg); color: var(--primary); }
.faq-a {
    padding: 0 22px 18px;
    border-top: 1px solid var(--border);
}
.faq-a p {
    font-size: 0.9rem;
    color: var(--text-m);
    line-height: 1.7;
    padding-top: 14px;
}

/* ===== CTA / CONTACT ===== */
.cta-section { background: var(--bg-purple); }
.cta-box {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    border-radius: 24px;
    border: 1.5px solid #ddd6fe;
    padding: 56px 60px;
    box-shadow: 0 12px 48px rgba(79,70,229,0.1);
}
.cta-title {
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    color: var(--text);
    margin: 14px 0;
}
.cta-title span { color: var(--primary); }
.cta-desc {
    font-size: 1rem;
    color: var(--text-m);
    margin-bottom: 36px;
    line-height: 1.7;
    max-width: 520px;
}
.contact-form { width: 100%; }
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 14px;
}
.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
}
.req { color: var(--cta); }
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 11px 14px;
    border-radius: 9px;
    background: var(--bg-2);
    border: 1.5px solid var(--border);
    color: var(--text);
    font-size: 0.9rem;
    transition: border-color 0.18s, box-shadow 0.18s;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
}
.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 38px;
}
.form-group select option { background: #fff; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-s); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(79,70,229,0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit { margin-top: 4px; font-size: 1rem; padding: 15px 32px; }
.form-success {
    display: none;
    margin-top: 14px;
    padding: 14px 18px;
    border-radius: 9px;
    background: #dcfce7;
    border: 1px solid #bbf7d0;
    color: var(--green);
    font-size: 0.9rem;
    font-weight: 600;
}
.form-success.show { display: block; }

/* ===== FOOTER ===== */
.footer {
    background: #0f172a;
    color: #94a3b8;
    padding: 60px 0 28px;
}
.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 56px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #1e293b;
}
.footer-tagline {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.65;
    margin-bottom: 20px;
    margin-top: 4px;
}
.social-links { display: flex; gap: 8px; }
.social-link {
    width: 36px; height: 36px;
    border-radius: 9px;
    background: #1e293b;
    border: 1px solid #334155;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    transition: color 0.18s, background 0.18s, border-color 0.18s, transform 0.18s;
}
.social-link:hover {
    color: #f1f5f9;
    background: #334155;
    border-color: #475569;
    transform: translateY(-2px);
}
.footer-nav {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 32px;
}
.footer-col h4 {
    font-size: 0.78rem;
    font-weight: 700;
    color: #e2e8f0;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col a {
    font-size: 0.875rem;
    color: #64748b;
    transition: color 0.15s;
    font-weight: 500;
}
.footer-col a:hover { color: #e2e8f0; }
.footer-col li:not(:has(a)) { font-size: 0.875rem; color: #64748b; }
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.8rem; color: #475569; }
.footer-legal { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-legal a { font-size: 0.8rem; color: #475569; transition: color 0.15s; }
.footer-legal a:hover { color: #94a3b8; }

/* ===== WHATSAPP BUTTON ===== */
.wa-btn {
    position: fixed;
    bottom: 28px;
    left: 28px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 20px 0 16px;
    height: 52px;
    border-radius: 100px;
    background: #25d366;
    color: #fff;
    box-shadow: 0 4px 20px rgba(37,211,102,0.45);
    z-index: 900;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s;
    position: fixed;
    animation: waEntrance 0.5s 1.5s var(--ease) both;
}
@keyframes waEntrance {
    from { opacity: 0; transform: translateY(20px) scale(0.9); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}
.wa-btn:hover {
    background: #20bd5a;
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(37,211,102,0.55);
}
.wa-btn:active { transform: scale(0.96); }
.wa-label { white-space: nowrap; letter-spacing: 0.01em; }
.wa-pulse {
    position: absolute;
    top: -4px; left: -4px;
    width: calc(100% + 8px);
    height: calc(100% + 8px);
    border-radius: 100px;
    border: 2px solid rgba(37,211,102,0.5);
    animation: waPulse 2.5s ease-out infinite;
    pointer-events: none;
}
@keyframes waPulse {
    0%   { opacity: 1; transform: scale(1); }
    70%  { opacity: 0; transform: scale(1.2); }
    100% { opacity: 0; transform: scale(1.2); }
}
@media (max-width: 480px) {
    .wa-btn { left: 16px; bottom: 18px; padding: 0 14px; height: 48px; }
    .wa-label { display: none; }
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
    position: fixed;
    bottom: 28px; right: 28px;
    width: 44px; height: 44px;
    border-radius: 10px;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(79,70,229,0.35);
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.3s, transform 0.3s;
    pointer-events: none;
    z-index: 900;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.scroll-top:hover { background: var(--primary-h); transform: translateY(-2px) !important; }

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal:nth-child(4) { transition-delay: 0.08s; }
.reveal:nth-child(5) { transition-delay: 0.16s; }
.reveal:nth-child(6) { transition-delay: 0.24s; }

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
    .reveal { opacity: 1; transform: none; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1060px) {
    .hero-layout { grid-template-columns: 1fr; }
    .hero-cards {
        display: grid;
        grid-template-columns: repeat(2,1fr);
        flex-direction: unset;
        align-items: unset;
        order: -1;
        max-width: 480px;
        margin: 0 auto 20px;
    }
    .hcard { width: 100% !important; }
    .hero-content { max-width: 100%; }
    .why-inner { grid-template-columns: 1fr; gap: 48px; }
    .why-visual { order: -1; }
}
@media (max-width: 900px) {
    .services-grid { grid-template-columns: repeat(2,1fr); }
    .stats-grid { grid-template-columns: repeat(2,1fr); gap: 28px; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
    .pc-featured { transform: none; }
    .pc-featured:hover { transform: translateY(-4px); }
    .process-grid { grid-template-columns: repeat(2,1fr); }
    .process-grid::before { display: none; }
    .footer-top { grid-template-columns: 1fr; gap: 36px; }
    .footer-nav { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
    .section { padding: 64px 0; }
    .nav-menu {
        position: fixed;
        top: 70px; left: 0; right: 0;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(16px);
        flex-direction: column;
        padding: 20px;
        gap: 4px;
        border-bottom: 1px solid var(--border);
        box-shadow: 0 8px 24px rgba(0,0,0,0.08);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
        z-index: 999;
    }
    .nav-menu.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
    .nav-link { padding: 11px 16px; width: 100%; }
    .nav-cta { text-align: center; margin-left: 0; margin-top: 8px; }
    .nav-toggle { display: flex; }
    .hero { padding: 96px 0 56px; }
    .hero-title { font-size: clamp(2.1rem, 7.5vw, 3.2rem); }
    .hero-actions { flex-direction: column; align-items: flex-start; }
    .hero-cards { grid-template-columns: 1fr; max-width: 280px; }
    .services-grid { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .cta-box { padding: 32px 24px; }
    .footer-nav { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
    .scroll-top { bottom: 18px; right: 18px; }
}
@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .stats-grid { grid-template-columns: repeat(2,1fr); }
    .hero-cards { display: none; }
}
