@import "../site-core.css";

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

:root {
    /* Colors */
    --bg-primary: #0a0a0f;
    --bg-secondary: #111118;
    --bg-card: #16161f;
    --bg-card-hover: #1c1c28;
    --bg-glass: rgba(22, 22, 31, 0.7);

    --text-primary: #f0f0f5;
    --text-secondary: #a0a0b8;
    --text-muted: #6a6a80;

    --accent-primary: #6366f1;
    --accent-secondary: #818cf8;
    --accent-glow: rgba(99, 102, 241, 0.3);
    --accent-gradient: linear-gradient(135deg, #6366f1, #a78bfa, #818cf8);

    --green: #22c55e;
    --green-bg: rgba(34, 197, 94, 0.1);
    --red: #ef4444;
    --red-bg: rgba(239, 68, 68, 0.1);
    --yellow: #eab308;
    --yellow-bg: rgba(234, 179, 8, 0.1);

    --whatsapp: #25d366;
    --whatsapp-hover: #20bd5a;

    --border: rgba(255, 255, 255, 0.06);
    --border-light: rgba(255, 255, 255, 0.1);

    /* Spacing */
    --container-width: 1200px;
    --section-padding: 120px 0;
    --navbar-height: 88px;
    --section-drawer-width: 0px;
    --section-drawer-toggle-size: 44px;

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    /* Transitions */
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

img { max-width: 100%; }
a { color: inherit; text-decoration: none; }


/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 12px 0;
    background: var(--bg-glass);
    border-bottom: 1px solid var(--border);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-family: 'Segoe UI Semibold', 'Segoe UI', Tahoma, sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.logo-bracket {
    color: var(--accent-primary);
    font-weight: 400;
}

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

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.nav-link-cta {
    color: var(--text-primary) !important;
    background: var(--accent-primary) !important;
    margin-left: 8px;
}

.nav-link-cta:hover {
    background: var(--accent-secondary) !important;
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}


/* ===== SECTION DRAWER ===== */
.section-drawer-toggle {
    position: fixed;
    top: 50%;
    left: calc(var(--section-drawer-toggle-size) / -2);
    transform: translateY(-50%);
    z-index: 950;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: var(--section-drawer-toggle-size);
    height: var(--section-drawer-toggle-size);
    border: 1px solid var(--border-light);
    border-radius: 999px;
    background: rgba(10, 10, 15, 0.92);
    color: var(--text-primary);
    cursor: pointer;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(14px);
    transition: left var(--transition-slow), width var(--transition), background var(--transition), border-color var(--transition), border-radius var(--transition), transform var(--transition);
}

.section-drawer-toggle:hover {
    border-color: rgba(129, 140, 248, 0.35);
    background: rgba(17, 17, 24, 0.98);
}

.section-drawer-toggle svg {
    transform: translateX(6px);
    transition: transform var(--transition);
}

.section-drawer-toggle:not(.is-open) svg {
    transform: translateX(9px);
}

.section-drawer-toggle.is-open svg {
    transform: translateX(6px) rotate(180deg);
}

body.section-drawer-open .section-drawer-toggle {
    left: var(--section-drawer-width);
    width: calc(var(--section-drawer-toggle-size) / 2);
    border-radius: 0 999px 999px 0;
    background: rgba(17, 17, 24, 0.96);
    border-left: none;
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.32);
}

body.section-drawer-open .section-drawer-toggle svg {
    transform: translateX(-1px) rotate(180deg);
}

.section-drawer {
    position: fixed;
    top: var(--navbar-height);
    left: 0;
    height: calc(100vh - var(--navbar-height));
    height: calc(100dvh - var(--navbar-height));
    width: max-content;
    max-width: min(320px, calc(100vw - 8px));
    padding: 16px calc(14px + (var(--section-drawer-toggle-size) / 2)) 16px 14px;
    display: flex;
    flex-direction: column;
    background: rgba(17, 17, 24, 0.96);
    border: 1px solid var(--border);
    border-left: none;
    border-radius: 0 var(--radius-xl) var(--radius-xl) 0;
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.32);
    overflow-y: auto;
    overflow-x: hidden;
    -ms-overflow-style: none;
    scrollbar-width: none;
    transform: translateX(calc(-100% - 2px));
    opacity: 0;
    pointer-events: none;
    z-index: 940;
    transition: transform var(--transition-slow), opacity var(--transition);
}

.section-drawer::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
}

.section-drawer.open {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
}

.section-drawer-nav {
    display: grid;
    gap: 8px;
}

.section-drawer-indicator {
    position: sticky;
    left: 0;
    right: 0;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(129, 140, 248, 0.92);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
    z-index: 1;
}

.section-drawer-indicator.is-visible {
    opacity: 1;
}

.section-drawer-indicator svg {
    width: 14px;
    height: 14px;
}

.section-drawer-indicator-top {
    top: 0;
    margin-bottom: -12px;
    background: linear-gradient(180deg, rgba(17, 17, 24, 0.96), rgba(17, 17, 24, 0));
}

.section-drawer-indicator-bottom {
    bottom: 0;
    margin-top: -12px;
    background: linear-gradient(0deg, rgba(17, 17, 24, 0.96), rgba(17, 17, 24, 0));
}

.section-drawer-link {
    display: block;
    padding: 10px 14px;
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1.2;
    white-space: nowrap;
    transition: var(--transition);
}

.section-drawer-link:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}


/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-bottom: 24px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(99, 102, 241, 0.15), transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 50%, rgba(167, 139, 250, 0.08), transparent 50%),
        radial-gradient(ellipse 60% 50% at 20% 80%, rgba(99, 102, 241, 0.06), transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    padding: 120px 24px 148px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--accent-secondary);
    background: rgba(99, 102, 241, 0.08);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 100px;
    margin-bottom: 32px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
}

.hero-title {
    font-family: 'Segoe UI Semibold', 'Segoe UI', Tahoma, sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 24px;
}

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

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 40px;
}

.hero-subtitle strong {
    color: var(--text-primary);
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--accent-primary);
    color: white;
    box-shadow: 0 4px 20px var(--accent-glow);
}

.btn-primary:hover {
    background: var(--accent-secondary);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--accent-glow);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border: 1px solid var(--border-light);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: var(--whatsapp);
    color: white;
}

.btn-whatsapp:hover {
    background: var(--whatsapp-hover);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 18px 36px;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: 'Segoe UI Semibold', 'Segoe UI', Tahoma, sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-primary);
}

.stat-suffix {
    font-family: 'Segoe UI Semibold', 'Segoe UI', Tahoma, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-primary);
}

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

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

/* Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, var(--accent-primary), transparent);
}


/* ===== SECTIONS ===== */
.section {
    padding: var(--section-padding);
    position: relative;
}

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

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent-primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 16px;
}

.section-title {
    font-family: 'Segoe UI Semibold', 'Segoe UI', Tahoma, sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

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

.section-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
}


/* ===== SERVICES ===== */
.services {
    background: var(--bg-secondary);
}

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

.service-card {
    padding: 36px 28px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-light);
    transform: translateY(-4px);
}

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

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: rgba(99, 102, 241, 0.1);
    color: var(--accent-primary);
    margin-bottom: 20px;
}

.service-card h3 {
    font-family: 'Segoe UI Semibold', 'Segoe UI', Tahoma, sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}


/* ===== WHY ONLINE ===== */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-content .section-title {
    text-align: left;
}

.why-content .section-tag {
    text-align: left;
}

.why-text {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
}

.why-text strong {
    color: var(--text-primary);
}

.why-points {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.why-point {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.point-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.point-icon-red {
    background: var(--red-bg);
    color: var(--red);
}

.point-icon-yellow {
    background: var(--yellow-bg);
    color: var(--yellow);
}

.point-icon-green {
    background: var(--green-bg);
    color: var(--green);
}

.why-point strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.why-point p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Comparison Card */
.comparison-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
}

.comparison-side {
    padding: 32px;
}

.comparison-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.comparison-without {
    background: rgba(239, 68, 68, 0.03);
}

.comparison-without .comparison-header {
    color: var(--red);
}

.comparison-with {
    background: rgba(34, 197, 94, 0.03);
}

.comparison-with .comparison-header {
    color: var(--green);
}

.comparison-side ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.comparison-side li {
    font-size: 0.9rem;
    color: var(--text-secondary);
    padding-left: 20px;
    position: relative;
}

.comparison-without li::before {
    content: '✕';
    position: absolute;
    left: 0;
    color: var(--red);
    font-size: 0.7rem;
    font-weight: bold;
}

.comparison-with li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: bold;
}

.comparison-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    position: relative;
}

.comparison-divider::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--border);
}

.comparison-divider span {
    position: relative;
    z-index: 1;
    background: var(--bg-card);
    padding: 8px 16px;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--text-muted);
    letter-spacing: 2px;
    border-radius: 100px;
    border: 1px solid var(--border);
}


/* ===== FEATURES ===== */
.functionalities {
    background: var(--bg-secondary);
}

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

.feature-card {
    padding: 28px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    text-align: center;
}

.feature-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-light);
    transform: translateY(-4px);
}

.feature-icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(99, 102, 241, 0.1);
    color: var(--accent-primary);
    margin-bottom: 16px;
}

.feature-card h4 {
    font-family: 'Segoe UI Semibold', 'Segoe UI', Tahoma, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}


/* ===== PRICING ===== */
.pricing {
    background: var(--bg-primary);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.pricing-card {
    position: relative;
    padding: 32px 28px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.pricing-card-featured {
    border-color: rgba(129, 140, 248, 0.4);
    box-shadow: 0 16px 40px rgba(99, 102, 241, 0.12);
}

.pricing-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--text-primary);
    background: rgba(99, 102, 241, 0.14);
    border: 1px solid rgba(129, 140, 248, 0.25);
}

.pricing-plan {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--accent-secondary);
}

.pricing-price {
    font-family: 'Segoe UI Semibold', 'Segoe UI', Tahoma, sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.25rem);
    line-height: 1;
    color: var(--text-primary);
}

.pricing-price span {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-left: 6px;
}

.pricing-lead {
    font-size: 0.98rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.pricing-features {
    list-style: none;
    display: grid;
    gap: 12px;
}

.pricing-features li {
    position: relative;
    padding-left: 20px;
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.6;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--green);
    font-weight: 700;
}

.pricing-note {
    margin-top: 24px;
    padding: 20px 24px;
    border-radius: var(--radius-lg);
    background: rgba(99, 102, 241, 0.08);
    border: 1px solid rgba(99, 102, 241, 0.18);
    color: var(--text-secondary);
    line-height: 1.7;
}

.pricing-note strong {
    color: var(--text-primary);
}

.addons-card {
    margin-top: 28px;
    padding: 32px;
    border-radius: var(--radius-xl);
    background: var(--bg-card);
    border: 1px solid var(--border);
}

.addons-header {
    max-width: 760px;
    margin-bottom: 24px;
}

.addons-header h3 {
    font-family: 'Segoe UI Semibold', 'Segoe UI', Tahoma, sans-serif;
    font-size: 1.35rem;
    margin-bottom: 10px;
}

.addons-header p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.addons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.addon-item {
    padding: 22px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.addon-item strong,
.benefit-card h3,
.roi-card h3,
.faq-item summary {
    font-family: 'Segoe UI Semibold', 'Segoe UI', Tahoma, sans-serif;
}

.addon-item strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1rem;
}

.addon-item span {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--accent-secondary);
    font-weight: 700;
}

.addon-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.65;
}


/* ===== BENEFITS ===== */
.benefits {
    background: var(--bg-secondary);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}

.benefit-card {
    padding: 26px 22px;
    border-radius: var(--radius-lg);
    background: var(--bg-card);
    border: 1px solid var(--border);
}

.benefit-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    margin-bottom: 16px;
    color: var(--accent-secondary);
    background: rgba(99, 102, 241, 0.12);
    font-size: 0.85rem;
    font-weight: 700;
}

.benefit-card h3 {
    font-size: 1.05rem;
    margin-bottom: 10px;
}

.benefit-card p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.65;
}


/* ===== ROI ===== */
.roi {
    background: var(--bg-primary);
}

.roi-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 24px;
    align-items: stretch;
}

.roi-card {
    padding: 36px 32px;
    border-radius: var(--radius-xl);
    background: var(--bg-card);
    border: 1px solid var(--border);
}

.roi-card-accent {
    background: linear-gradient(180deg, rgba(22, 22, 31, 1) 0%, rgba(17, 17, 24, 1) 100%);
}

.roi-summary-sticky {
    position: sticky;
    top: 104px;
}

.roi-equation {
    margin: 28px 0 22px;
    display: grid;
    gap: 14px;
}

.roi-line-static {
    background: rgba(255, 255, 255, 0.04);
}

.roi-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 18px;
    border-radius: var(--radius-md);
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    color: var(--text-secondary);
}

.roi-line strong {
    color: var(--text-primary);
    font-size: 1.05rem;
}

.roi-line-accent {
    border-color: rgba(34, 197, 94, 0.24);
    background: rgba(34, 197, 94, 0.08);
}

.roi-line-accent strong {
    color: var(--green);
}

.roi-control {
    padding: 18px;
    border-radius: var(--radius-md);
    background: var(--bg-secondary);
    border: 1px solid var(--border);
}

.roi-control-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 14px;
}

.roi-control-head label {
    font-weight: 600;
    line-height: 1.5;
}

.roi-control-copy {
    display: grid;
    gap: 6px;
    flex: 1;
}

.roi-control-description {
    margin: 0;
    color: rgba(226, 232, 240, 0.72);
    font-size: 0.82rem;
    line-height: 1.55;
}

.roi-number-wrap {
    display: inline-flex;
    align-items: center;
    min-width: 132px;
    padding: 0 14px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-light);
    background: rgba(255, 255, 255, 0.03);
}

.roi-number {
    width: 100%;
    padding: 10px 0;
    border: none;
    background: transparent;
    color: var(--text-primary);
    font: inherit;
    outline: none;
}

.roi-number::-webkit-outer-spin-button,
.roi-number::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.roi-number-suffix,
.roi-control-value {
    color: var(--accent-secondary);
    font-weight: 700;
    white-space: nowrap;
}

.roi-number-wrap:focus-within {
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.roi-range {
    width: 100%;
    height: 6px;
    margin: 0;
    accent-color: var(--accent-primary);
    cursor: pointer;
    background: transparent;
}

.roi-range::-webkit-slider-runnable-track {
    height: 6px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(99, 102, 241, 0.88), rgba(129, 140, 248, 0.38));
}

.roi-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    margin-top: -6px;
    border: 2px solid rgba(255, 255, 255, 0.82);
    border-radius: 50%;
    background: var(--accent-primary);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.18);
}

.roi-range::-moz-range-track {
    height: 6px;
    border: none;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(99, 102, 241, 0.88), rgba(129, 140, 248, 0.38));
}

.roi-range::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.82);
    border-radius: 50%;
    background: var(--accent-primary);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.18);
}

.roi-range:focus-visible,
.roi-number:focus-visible {
    outline: none;
}

.roi-control-scale {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 10px;
    color: rgba(226, 232, 240, 0.68);
    font-size: 0.76rem;
    line-height: 1.4;
}

.roi-control-scale span:last-child {
    text-align: right;
}

.roi-control-help {
    margin-top: 12px;
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.65;
}

.roi-list {
    list-style: none;
    display: grid;
    gap: 12px;
    margin: 22px 0 28px;
}

.roi-list li {
    position: relative;
    padding-left: 20px;
    color: var(--text-secondary);
    line-height: 1.65;
}

.roi-list li::before {
    content: '>'; 
    position: absolute;
    left: 0;
    color: var(--accent-secondary);
    font-weight: 700;
}

.roi-metric {
    padding: 24px;
    border-radius: var(--radius-lg);
    background: rgba(99, 102, 241, 0.08);
    border: 1px solid rgba(129, 140, 248, 0.2);
    text-align: center;
    margin-bottom: 18px;
}

.roi-metric-label,
.roi-metric-sub,
.roi-footnote {
    color: var(--text-secondary);
}

.roi-metric-label {
    display: block;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 8px;
}

.roi-metric strong {
    display: block;
    font-family: 'Segoe UI Semibold', 'Segoe UI', Tahoma, sans-serif;
    font-size: clamp(2.2rem, 5vw, 3rem);
    line-height: 1;
    margin-bottom: 8px;
}

.roi-metric.is-positive strong {
    color: var(--green);
}

.roi-metric.is-negative {
    background: var(--red-bg);
    border-color: rgba(239, 68, 68, 0.22);
}

.roi-metric.is-negative strong {
    color: var(--red);
}

.roi-results {
    display: grid;
    gap: 12px;
    margin-bottom: 18px;
}

.roi-result {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 18px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
}

.roi-result span {
    color: var(--text-secondary);
}

.roi-result strong {
    font-size: 1rem;
}

.roi-metric-sub,
.roi-footnote {
    font-size: 0.92rem;
    line-height: 1.7;
}

.roi-toast {
    position: fixed;
    left: 50%;
    bottom: 24px;
    width: min(760px, calc(100% - 32px));
    transform: translate(-50%, calc(100% + 24px));
    opacity: 0;
    pointer-events: none;
    z-index: 1100;
    transition: transform var(--transition), opacity var(--transition);
}

.roi-toast.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.roi-toast-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 20px;
    border-radius: 24px;
    border: 1px solid rgba(129, 140, 248, 0.28);
    background: rgba(9, 11, 20, 0.94);
    box-shadow: 0 24px 60px rgba(2, 6, 23, 0.42);
    backdrop-filter: blur(16px);
}

.roi-toast[data-state="engaged"] .roi-toast-shell {
    border-color: rgba(34, 197, 94, 0.28);
    background: rgba(9, 17, 20, 0.95);
}

.roi-toast-message {
    margin: 0;
    color: var(--text-primary);
    font-size: 0.94rem;
    line-height: 1.65;
}

.roi-toast-action {
    flex-shrink: 0;
    white-space: nowrap;
}


/* ===== FAQ ===== */
.faq {
    background: var(--bg-secondary);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 14px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 0 22px;
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 20px 34px 20px 0;
    position: relative;
    font-size: 1rem;
    line-height: 1.5;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 18px;
    color: var(--accent-secondary);
    font-size: 1.4rem;
    font-weight: 400;
}

.faq-item[open] summary::after {
    content: '−';
}

.faq-item p {
    padding: 0 0 20px;
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.94rem;
}


/* ===== PROCESS ===== */
.process-timeline {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 38px;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--accent-primary), transparent);
}

.process-step {
    display: flex;
    gap: 32px;
    padding: 32px 0;
    position: relative;
}

.step-number {
    flex-shrink: 0;
    width: 78px;
    font-family: 'Segoe UI Semibold', 'Segoe UI', Tahoma, sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-primary);
    position: relative;
    z-index: 1;
}

.step-number::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 34px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent-primary);
    box-shadow: 0 0 12px var(--accent-glow);
}

.step-content h3 {
    font-family: 'Segoe UI Semibold', 'Segoe UI', Tahoma, sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.step-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}


/* ===== GROWTH LOOP ===== */
.growth-loop {
    background:
        radial-gradient(circle at top, rgba(99, 102, 241, 0.08), transparent 46%),
        var(--bg-secondary);
}

.growth-loop-shell {
    position: relative;
    max-width: 1100px;
    min-height: 900px;
    margin: 0 auto;
    --growth-ring-outer-size: min(82vw, 736px);
    --growth-ring-inner-size: min(68vw, 612px);
    --growth-arrow-side-offset: 337px;
    --growth-arrow-diagonal-x: 198px;
    --growth-arrow-diagonal-y: 272px;
}

.growth-loop-track {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.growth-loop-center {
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(360px, calc(100% - 56px));
    padding: 30px 28px;
    --base-transform: translate(-50%, -50%);
    transform: var(--base-transform);
    text-align: center;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(19, 19, 28, 0.98) 0%, rgba(14, 14, 21, 0.98) 100%);
    border: 1px solid rgba(129, 140, 248, 0.2);
    box-shadow: 0 24px 60px rgba(5, 8, 20, 0.34);
    z-index: 3;
}

.growth-loop-kicker {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 0.74rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent-secondary);
}

.growth-loop-center h3 {
    font-family: 'Segoe UI Semibold', 'Segoe UI', Tahoma, sans-serif;
    font-size: 1.55rem;
    line-height: 1.2;
    margin-bottom: 12px;
}

.growth-loop-center p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.94rem;
}

.growth-loop-orbit {
    position: relative;
    min-height: 900px;
    margin: 0;
    padding: 0;
    list-style: none;
    z-index: 2;
}

.growth-loop-ring {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.growth-loop-ring-outer {
    width: var(--growth-ring-outer-size);
    aspect-ratio: 1;
    border: 2px solid rgba(129, 140, 248, 0.22);
    box-shadow:
        0 0 0 14px rgba(99, 102, 241, 0.04),
        0 30px 90px rgba(5, 8, 20, 0.22);
}

.growth-loop-ring-inner {
    width: var(--growth-ring-inner-size);
    aspect-ratio: 1;
    border: 1px dashed rgba(165, 180, 252, 0.28);
}

.growth-loop-arrow {
    position: absolute;
    top: 50%;
    left: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    color: rgba(191, 219, 254, 0.92);
    background: rgba(17, 24, 39, 0.92);
    border: 1px solid rgba(129, 140, 248, 0.28);
    box-shadow: 0 12px 30px rgba(2, 6, 23, 0.28);
    transform: translate(-50%, -50%);
    z-index: 2;
}

.growth-loop-arrow svg {
    width: 18px;
    height: 18px;
}

.growth-loop-arrow-1 {
    transform: translate(-50%, -50%) translate(var(--growth-arrow-diagonal-x), calc(var(--growth-arrow-diagonal-y) * -1)) rotate(34deg);
}

.growth-loop-arrow-2 {
    transform: translate(-50%, -50%) translate(var(--growth-arrow-side-offset), -20px) rotate(90deg);
}

.growth-loop-arrow-3 {
    transform: translate(-50%, -50%) translate(var(--growth-arrow-diagonal-x), var(--growth-arrow-diagonal-y)) rotate(146deg);
}

.growth-loop-arrow-4 {
    transform: translate(-50%, -50%) translate(calc(var(--growth-arrow-diagonal-x) * -1), var(--growth-arrow-diagonal-y)) rotate(214deg);
}

.growth-loop-arrow-5 {
    transform: translate(-50%, -50%) translate(calc(var(--growth-arrow-side-offset) * -1), 20px) rotate(270deg);
}

.growth-loop-arrow-6 {
    transform: translate(-50%, -50%) translate(calc(var(--growth-arrow-diagonal-x) * -1), calc(var(--growth-arrow-diagonal-y) * -1)) rotate(326deg);
}

.growth-node {
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(232px, calc(100% - 48px));
    padding: 20px 18px;
    border-radius: var(--radius-lg);
    background: rgba(11, 11, 17, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 18px 40px rgba(4, 7, 18, 0.22);
    transform: var(--base-transform, translate(-50%, -50%));
    display: grid;
    gap: 10px;
    z-index: 2;
}

.growth-node-step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    color: var(--accent-secondary);
    background: rgba(99, 102, 241, 0.14);
    font-size: 0.78rem;
    font-weight: 700;
}

.growth-node h3 {
    font-size: 1rem;
    margin-bottom: 0;
}

.growth-node p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.65;
}

.growth-node-1 {
    --base-transform: translate(-50%, -50%) translate(0, -334px);
}

.growth-node-2 {
    --base-transform: translate(-50%, -50%) translate(314px, -184px);
}

.growth-node-3 {
    --base-transform: translate(-50%, -50%) translate(314px, 184px);
}

.growth-node-4 {
    --base-transform: translate(-50%, -50%) translate(0, 334px);
}

.growth-node-5 {
    --base-transform: translate(-50%, -50%) translate(-314px, 184px);
}

.growth-node-6 {
    --base-transform: translate(-50%, -50%) translate(-314px, -184px);
}

@media (min-width: 1025px) {
    .growth-loop-center[data-animate],
    .growth-node[data-animate] {
        transform: var(--base-transform) translateY(30px);
    }

    .growth-loop-center[data-animate].animate-in,
    .growth-node[data-animate].animate-in {
        transform: var(--base-transform);
    }
}

.growth-node-center {
    text-align: center;
}

.growth-node-left {
    text-align: left;
}

.growth-node-right {
    text-align: right;
}

.growth-node-center .growth-node-step {
    justify-self: center;
}

.growth-node-left .growth-node-step {
    justify-self: start;
}

.growth-node-right .growth-node-step {
    justify-self: end;
}

.growth-loop-summary {
    max-width: 760px;
    margin: 8px auto 0;
    padding: 22px 24px;
    text-align: center;
    border-radius: var(--radius-lg);
    background: rgba(99, 102, 241, 0.08);
    border: 1px solid rgba(129, 140, 248, 0.16);
}

.growth-loop-summary p {
    color: var(--text-secondary);
    line-height: 1.75;
}

.growth-loop-summary strong {
    color: var(--text-primary);
}


/* ===== EXTRA SERVICES ===== */
.addons-actions {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

.addons-actions p {
    max-width: 640px;
    color: var(--text-secondary);
}

.subpage-hero {
    position: relative;
    padding: 152px 0 92px;
    overflow: hidden;
    background:
        radial-gradient(circle at top, rgba(99, 102, 241, 0.14), transparent 44%),
        linear-gradient(180deg, rgba(17, 17, 24, 0.92) 0%, rgba(10, 10, 15, 1) 100%);
}

.subpage-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(129, 140, 248, 0.08), transparent 24%),
        radial-gradient(circle at 80% 30%, rgba(99, 102, 241, 0.08), transparent 24%);
    pointer-events: none;
}

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

.subpage-backlink {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    color: var(--text-secondary);
    font-size: 0.92rem;
    transition: var(--transition);
}

.subpage-backlink:hover {
    color: var(--text-primary);
}

.subpage-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    margin-bottom: 24px;
    border-radius: 999px;
    border: 1px solid rgba(129, 140, 248, 0.2);
    background: rgba(99, 102, 241, 0.08);
    color: var(--accent-secondary);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.subpage-eyebrow::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
}

.services-hero-copy {
    max-width: 860px;
}

.services-hero-copy .hero-subtitle {
    max-width: 720px;
    margin: 0 0 36px;
}

.services-hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.services-proof {
    padding-top: 0;
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.proof-card,
.service-family,
.workflow-card {
    padding: 30px 28px;
    border-radius: var(--radius-xl);
    background: var(--bg-card);
    border: 1px solid var(--border);
}

.proof-card strong,
.workflow-card h3 {
    display: block;
    font-family: 'Segoe UI Semibold', 'Segoe UI', Tahoma, sans-serif;
    font-size: 1.08rem;
    margin-bottom: 10px;
}

.proof-card p,
.service-family-header p,
.workflow-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.services-extended {
    background: var(--bg-primary);
}

.services-page-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    align-items: start;
}

.service-family-header {
    margin-bottom: 22px;
}

.service-family-tag,
.workflow-kicker {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--accent-secondary);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.service-family h3 {
    font-size: 1.28rem;
    margin-bottom: 10px;
}

.service-family-items {
    display: grid;
    gap: 14px;
}

.service-detail {
    padding: 16px 18px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.service-detail-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 8px;
}

.service-detail-head strong {
    font-size: 0.98rem;
    line-height: 1.5;
}

.service-detail-head span {
    flex-shrink: 0;
    color: var(--accent-secondary);
    font-weight: 700;
    white-space: nowrap;
}

.service-detail p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.65;
}

.services-workflow {
    background: var(--bg-secondary);
}

.workflow-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.workflow-step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 16px;
    border-radius: 50%;
    color: var(--accent-secondary);
    background: rgba(99, 102, 241, 0.14);
    font-weight: 700;
}

.services-faq {
    background: var(--bg-primary);
}

.services-faq .faq-list {
    max-width: 960px;
}


/* ===== CTA ===== */
.cta-section {
    padding: 80px 0;
}

.cta-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 80px 60px;
    text-align: center;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse, var(--accent-glow), transparent 70%);
    pointer-events: none;
}

.cta-card h2 {
    position: relative;
    font-family: 'Segoe UI Semibold', 'Segoe UI', Tahoma, sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.cta-card p {
    position: relative;
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 36px;
}

.cta-buttons {
    position: relative;
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}


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

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info .section-title {
    text-align: left;
}

.contact-info .section-tag {
    text-align: left;
}

.contact-info > p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
}

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

.contact-method {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.contact-method:hover {
    border-color: var(--border-light);
    background: var(--bg-card-hover);
}

.method-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: rgba(99, 102, 241, 0.1);
    color: var(--accent-primary);
    flex-shrink: 0;
}

.method-icon-whatsapp {
    background: rgba(37, 211, 102, 0.1);
    color: var(--whatsapp);
}

.method-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.method-value {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* Form */
.contact-form-wrap {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 40px;
}

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

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

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

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition);
    outline: none;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%236a6a80' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-success {
    display: none;
    text-align: center;
    padding: 32px;
    color: var(--green);
}

.form-success.show {
    display: block;
    animation: fade-in 0.5s ease;
}

.form-success h4 {
    font-size: 1.2rem;
    margin: 16px 0 8px;
    color: var(--text-primary);
}

.form-success p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Required field asterisk */
.required {
    color: var(--red);
    font-weight: 400;
}

/* Radio Button Group */
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.radio-option:hover {
    border-color: var(--border-light);
    background: var(--bg-card-hover);
    color: var(--text-primary);
}

.radio-option input[type="radio"] {
    display: none;
}

.radio-custom {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid var(--text-muted);
    flex-shrink: 0;
    transition: var(--transition);
    position: relative;
}

.radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-primary);
    transition: var(--transition);
}

.radio-option input[type="radio"]:checked ~ .radio-custom {
    border-color: var(--accent-primary);
}

.radio-option input[type="radio"]:checked ~ .radio-custom::after {
    transform: translate(-50%, -50%) scale(1);
}

.radio-option:has(input[type="radio"]:checked) {
    border-color: var(--accent-primary);
    background: rgba(99, 102, 241, 0.05);
    color: var(--text-primary);
}

/* Form Error Message */
.form-error {
    text-align: center;
    padding: 16px;
    background: var(--red-bg);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: var(--radius-md);
    margin-top: 8px;
}

.form-error p {
    color: var(--red);
    font-size: 0.9rem;
}

/* Hide Brevo's injected message panels — we use our own styled ones */
.sib-form-message-panel,
#success-message,
#error-message {
    display: none !important;
}

/* Hide reCAPTCHA v3 badge — attribution text is shown near the form instead */
.grecaptcha-badge { visibility: hidden; }

.recaptcha-notice {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 16px;
    line-height: 1.5;
}

.recaptcha-notice a {
    color: var(--text-secondary);
    text-decoration: underline;
}


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

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

.footer-brand p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 8px;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: var(--transition);
}

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

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--text-muted);
}


/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--whatsapp);
    color: white;
    border-radius: 50%;
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.28);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(37, 211, 102, 0.34);
}


/* ===== ANIMATIONS ===== */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-animate="fade-right"] {
    transform: translateX(-30px);
}

[data-animate="fade-left"] {
    transform: translateX(30px);
}

[data-animate].animate-in {
    opacity: 1;
    transform: translate(0, 0);
}

@keyframes fade-in {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}


/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .pricing-grid,
    .addons-grid,
    .benefits-grid,
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .roi-grid,
    .why-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .roi-summary-sticky {
        position: static;
        top: auto;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .proof-grid,
    .services-page-grid,
    .workflow-grid {
        grid-template-columns: 1fr;
    }

    .growth-loop-shell {
        display: grid;
        gap: 28px;
        min-height: auto;
    }

    .growth-loop-track {
        display: none;
    }

    .growth-loop-center {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        width: 100%;
        max-width: 520px;
        margin: 0 auto;
    }

    .growth-loop-orbit {
        min-height: auto;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }

    .growth-node {
        position: relative;
        width: 100%;
        top: auto;
        left: auto;
        transform: none;
        text-align: left;
    }

    .growth-node .growth-node-step {
        justify-self: start;
    }

    .section-drawer {
        padding: 12px calc(12px + (var(--section-drawer-toggle-size) / 2)) 12px 12px;
        max-width: min(280px, calc(100vw - 8px));
    }

    .section-drawer-nav {
        gap: 4px;
    }

    .section-drawer-link {
        padding: 6px 12px;
        font-size: 0.86rem;
        line-height: 1.1;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px 0;
    }

    .nav-container {
        flex-wrap: wrap;
        gap: 10px 16px;
        align-items: center;
    }

    .nav-links {
        position: static;
        width: auto;
        height: auto;
        margin-left: auto;
        padding: 0;
        background: none;
        border-left: none;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .nav-link {
        width: auto;
        padding: 8px 14px;
    }

    .nav-link-cta {
        margin-left: 0;
    }

    .nav-toggle {
        display: none;
    }

    .section-drawer-toggle {
        left: calc(var(--section-drawer-toggle-size) / -2);
    }

    .section-drawer {
        top: var(--navbar-height);
        left: 0;
        height: calc(100vh - var(--navbar-height));
        height: calc(100dvh - var(--navbar-height));
        max-width: calc(100vw - 8px);
        padding: 8px calc(10px + (var(--section-drawer-toggle-size) / 2)) 8px 10px;
    }

    .section-drawer-nav {
        gap: 3px;
    }

    .section-drawer-link {
        padding: 5px 10px;
        font-size: 0.82rem;
        line-height: 1.1;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .stat-divider {
        width: 40px;
        height: 1px;
    }

    .services-grid,
    .pricing-grid,
    .addons-grid,
    .benefits-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card,
    .addons-card,
    .roi-card,
    .faq-item,
    .growth-loop-summary {
        padding-left: 20px;
        padding-right: 20px;
    }

    .pricing-badge {
        position: static;
        align-self: flex-start;
        margin-bottom: 4px;
    }

    .roi-line {
        flex-direction: column;
        align-items: flex-start;
    }

    .roi-control-head,
    .roi-result {
        flex-direction: column;
        align-items: flex-start;
    }

    .roi-number-wrap {
        width: 100%;
    }

    .roi-control-scale {
        gap: 12px;
        font-size: 0.72rem;
    }

    .roi-toast {
        width: calc(100% - 24px);
        bottom: 16px;
    }

    .roi-toast-shell {
        flex-direction: column;
        align-items: stretch;
        padding: 16px 16px calc(16px + env(safe-area-inset-bottom));
    }

    .roi-toast-action {
        width: 100%;
        justify-content: center;
    }

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

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

    .cta-card {
        padding: 48px 28px;
    }

    .contact-form-wrap {
        padding: 28px;
    }

    .process-timeline::before {
        left: 16px;
    }

    .step-number {
        width: 50px;
        font-size: 1.2rem;
    }

    .step-number::after {
        left: 12px;
    }

    .hero-content {
        padding: 100px 24px 178px;
    }

    .subpage-hero {
        padding: 128px 0 72px;
    }

    .services-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-scroll {
        bottom: 14px;
    }

    .growth-loop-orbit {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .nav-logo {
        font-size: 1.05rem;
    }

    .nav-links {
        width: 100%;
        margin-left: 0;
        justify-content: flex-start;
    }

    .nav-link {
        padding: 8px 12px;
        font-size: 0.85rem;
    }

    .hero-title {
        letter-spacing: -1px;
    }

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

    .hero-actions .btn {
        justify-content: center;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        justify-content: center;
    }

    .service-detail-head {
        flex-direction: column;
    }

    .faq-item summary {
        font-size: 0.95rem;
    }

    .growth-loop-center {
        padding: 24px 20px;
    }

    .growth-node {
        padding: 18px 16px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *, *::before, *::after {
        animation: none !important;
        transition: none !important;
    }
}
