/* =============================================
           DESIGN TOKENS
           ============================================= */
:root {
    --brand-50: #effaf2;
    --brand-100: #daf6e1;
    --brand-200: #b8ebc6;
    --brand-300: #8ddca5;
    --brand-400: #5bc67a;
    --brand-500: #35ad5b;
    --brand-600: #248847;
    --brand-700: #1f6d3c;
    --brand-800: #1d5633;
    --brand-900: #19472d;
    --dark-900: #0f172a;
    --dark-800: #172033;
    --dark-700: #334155;
    --gray-100: #f8fafc;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --amber-400: #fbbf24;
    --amber-500: #f59e0b;
    --amber-600: #d97706;
    --radius-xl: 1.25rem;
    --radius-2xl: 1.75rem;
    --shadow-soft: 0 14px 40px rgba(15, 23, 42, 0.08);
    --shadow-card: 0 12px 30px rgba(15, 23, 42, 0.08);
    --shadow-hero: 0 24px 60px rgba(12, 74, 36, 0.16);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark-900);
    background: #fff;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

h1,
h2,
h3,
h4 {
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.text-gradient {
    background: linear-gradient(135deg, var(--brand-600), #16a34a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* =============================================
           NAVBAR
           ============================================= */
.navbar-glass {
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(203, 213, 225, 0.55);
    transition: box-shadow 0.3s ease;
}

.navbar-glass.scrolled {
    box-shadow: var(--shadow-soft);
}

.brand-badge {
    width: 48px;
    height: 48px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--brand-500), var(--brand-700));
    color: #fff;
    box-shadow: 0 14px 30px rgba(36, 136, 71, 0.24);
    font-size: 1.35rem;
}

.nav-link {
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--dark-700) !important;
    border-radius: 999px;
    padding: 0.5rem 1rem !important;
    transition: all 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--brand-700) !important;
    background: rgba(53, 173, 91, 0.07);
}

/* =============================================
           BUTTONS
           ============================================= */
.btn-brand {
    background: linear-gradient(135deg, var(--brand-500), var(--brand-700));
    border: none;
    color: #fff;
    border-radius: 999px;
    padding: 0.85rem 1.5rem;
    font-weight: 700;
    font-size: 0.92rem;
    box-shadow: 0 12px 28px rgba(36, 136, 71, 0.24);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    position: relative;
    overflow: hidden;
}

.btn-brand::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-brand:hover {
    transform: translateY(-2px);
    color: #fff;
    box-shadow: 0 18px 36px rgba(36, 136, 71, 0.32);
}

.btn-brand:hover::after {
    opacity: 1;
}

.btn-brand:active {
    transform: translateY(0);
}

.btn-soft {
    border-radius: 999px;
    padding: 0.85rem 1.5rem;
    font-weight: 600;
    font-size: 0.92rem;
    border: 1.5px solid rgba(36, 136, 71, 0.18);
    background: rgba(255, 255, 255, 0.92);
    color: var(--dark-900);
    transition: all 0.3s ease;
}

.btn-soft:hover {
    background: var(--brand-50);
    border-color: var(--brand-400);
    color: var(--brand-700);
    transform: translateY(-1px);
}

.btn-white {
    background: #fff;
    color: var(--brand-700);
    border: none;
    border-radius: 999px;
    padding: 0.85rem 1.5rem;
    font-weight: 700;
    font-size: 0.92rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.16);
    color: var(--brand-800);
}

/* =============================================
           ANIMATIONS — CSS-only, GPU-accelerated
           ============================================= */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translate3d(0, 32px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeRight {
    from {
        opacity: 0;
        transform: translate3d(-40px, 0, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeLeft {
    from {
        opacity: 0;
        transform: translate3d(40px, 0, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.92);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.9);
        opacity: 0.6;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

@keyframes count-up {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

@keyframes slide-in-left {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }

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

@keyframes slide-in-right {
    from {
        opacity: 0;
        transform: translateX(60px);
    }

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

@keyframes bounce-subtle {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

/* Scroll-reveal base */
.reveal {
    opacity: 0;
    transform: translate3d(0, 32px, 0);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal.from-left {
    transform: translate3d(-50px, 0, 0);
}

.reveal.from-right {
    transform: translate3d(50px, 0, 0);
}

.reveal.from-scale {
    transform: scale(0.9);
}

.reveal.visible {
    opacity: 1 !important;
    transform: translate3d(0, 0, 0) scale(1) !important;
}

/* Stagger children */
.stagger>.reveal:nth-child(1) {
    transition-delay: 0.05s;
}

.stagger>.reveal:nth-child(2) {
    transition-delay: 0.12s;
}

.stagger>.reveal:nth-child(3) {
    transition-delay: 0.19s;
}

.stagger>.reveal:nth-child(4) {
    transition-delay: 0.26s;
}

.stagger>.reveal:nth-child(5) {
    transition-delay: 0.33s;
}

.stagger>.reveal:nth-child(6) {
    transition-delay: 0.40s;
}

/* Hero animations — instant, no observer needed */
.hero-anim {
    animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-anim-d1 {
    animation-delay: 0.1s;
}

.hero-anim-d2 {
    animation-delay: 0.2s;
}

.hero-anim-d3 {
    animation-delay: 0.35s;
}

.hero-anim-d4 {
    animation-delay: 0.5s;
}

.hero-anim-d5 {
    animation-delay: 0.65s;
}

.hero-card-anim {
    animation: fadeLeft 1s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}

/* =============================================
           HERO SECTION
           ============================================= */
.hero {
    padding: 9rem 0 5rem;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(ellipse at 15% -5%, rgba(53, 173, 91, 0.1), transparent 45%),
        radial-gradient(ellipse at 85% 110%, rgba(34, 197, 94, 0.06), transparent 35%);
}

.hero-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 1rem;
    border-radius: 999px;
    background: rgba(53, 173, 91, 0.08);
    border: 1px solid rgba(53, 173, 91, 0.12);
    color: var(--brand-700);
    font-weight: 600;
    font-size: 0.85rem;
}

.hero-chip .pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--brand-500);
    position: relative;
}

.hero-chip .pulse::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 2px solid var(--brand-400);
    animation: pulse-ring 2s ease-out infinite;
}

.hero h1 {
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    letter-spacing: -0.04em;
    line-height: 1.05;
    max-width: 620px;
}

.hero .lead {
    font-size: 1.08rem;
    line-height: 1.8;
    color: var(--gray-600);
    max-width: 520px;
}

.trust-strip {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.trust-strip .item {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.78rem;
    color: var(--gray-500);
    font-weight: 500;
}

.trust-strip .item i {
    color: var(--brand-400);
}

.trust-strip .sep {
    width: 1px;
    height: 14px;
    background: var(--gray-300);
}

/* Hero mockup */
.mockup-card {
    border: 1px solid rgba(226, 232, 240, 0.7);
    border-radius: var(--radius-2xl);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-hero);
    overflow: hidden;
}

.mockup-header {
    background: linear-gradient(180deg, var(--brand-50), #fff);
    border-bottom: 1px solid var(--gray-200);
    padding: 1rem 1.3rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mockup-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gray-300);
}

.mockup-body {
    padding: 1.3rem;
}

.mini-stat {
    text-align: center;
    padding: 0.8rem 0.5rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-200);
    background: #fff;
}

.mini-stat .num {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark-900);
    line-height: 1;
}

.mini-stat .lbl {
    font-size: 0.7rem;
    color: var(--gray-500);
    margin-top: 0.2rem;
}

/* Floating elements in hero */
.hero-float-1 {
    position: absolute;
    top: 18%;
    right: 5%;
    width: 65px;
    height: 65px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-card);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--brand-600);
    animation: float 4s ease-in-out infinite;
    z-index: 3;
}

.hero-float-2 {
    position: absolute;
    bottom: 5%;
    right: 3%;
    width: 55px;
    height: 55px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-card);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--amber-500);
    animation: float 5s ease-in-out 1s infinite;
    z-index: 3;
}

/* =============================================
           SECTIONS
           ============================================= */
.section {
    padding: 5.5rem 0;
}

.section-alt {
    background: var(--gray-100);
    border-top: 1px solid rgba(226, 232, 240, 0.5);
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
}

.section-dark {
    background: linear-gradient(180deg, var(--dark-900), #0e1e30);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.section-dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 0%, rgba(34, 197, 94, 0.12), transparent 30%),
        radial-gradient(circle at 85% 100%, rgba(34, 197, 94, 0.08), transparent 25%);
    pointer-events: none;
}

.section-dark h2,
.section-dark h3 {
    color: #fff;
}

.section-dark p,
.section-dark .text-sub {
    color: rgba(255, 255, 255, 0.65);
}

.section-label {
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--brand-700);
}

.section-dark .section-label {
    color: #86efac;
}

.section-head {
    max-width: 580px;
    margin: 0 auto 3.5rem;
    text-align: center;
}

.section-head h2 {
    font-size: clamp(1.9rem, 3.5vw, 2.8rem);
    margin-bottom: 0.8rem;
}

.section-head p {
    font-size: 1.02rem;
    color: var(--gray-500);
    line-height: 1.7;
}

.section-dark .section-head p {
    color: rgba(255, 255, 255, 0.6);
}

/* =============================================
           CARDS
           ============================================= */
.card-tz {
    border: 1px solid rgba(226, 232, 240, 0.85);
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.96);
    padding: 1.75rem;
    height: 100%;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}

.card-tz:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
}

.section-dark .card-tz {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    box-shadow: none;
}

.section-dark .card-tz:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-3px);
}

.section-dark .card-tz p {
    color: rgba(255, 255, 255, 0.6);
}

.icon-box {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(53, 173, 91, 0.14), rgba(36, 136, 71, 0.06));
    color: var(--brand-700);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-tz:hover .icon-box {
    transform: scale(1.1) rotate(-3deg);
}

.section-dark .icon-box {
    background: rgba(134, 239, 172, 0.1);
    color: #86efac;
}

.icon-box.amber {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.14), rgba(217, 119, 6, 0.06));
    color: var(--amber-600);
}

.card-tz h3 {
    font-size: 1.08rem;
    margin-bottom: 0.4rem;
}

.card-tz p {
    font-size: 0.88rem;
    margin: 0;
    line-height: 1.6;
    color: var(--gray-500);
}

/* Steps */
.step-num {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--brand-500), var(--brand-700));
    color: #fff;
    font-weight: 800;
    font-size: 1.05rem;
    box-shadow: 0 10px 24px rgba(36, 136, 71, 0.2);
    margin-bottom: 0.8rem;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.card-tz:hover .step-num {
    transform: scale(1.15) rotate(-5deg);
}

/* =============================================
           METRICS — animated counters
           ============================================= */
.metric-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

@media(max-width:767.98px) {
    .metric-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.metric-box {
    text-align: center;
    padding: 1.4rem 1rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-200);
    background: #fff;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.metric-box:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-card);
}

.metric-box .val {
    font-size: 2rem;
    font-weight: 900;
    color: var(--dark-900);
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.metric-box .lbl {
    font-size: 0.78rem;
    color: var(--gray-500);
    margin-top: 0.3rem;
}

/* =============================================
           TESTIMONIALS — sliding
           ============================================= */
.testimonial-track {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding-bottom: 0.5rem;
}

.testimonial-track::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    flex: 0 0 340px;
    scroll-snap-align: start;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    background: #fff;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-card);
}

.testimonial-card .quote {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-card .author {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.testimonial-card .avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-200), var(--brand-400));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
}

.testimonial-card .name {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--dark-900);
}

.testimonial-card .role {
    font-size: 0.75rem;
    color: var(--gray-500);
}

.testimonial-card .stars {
    color: var(--amber-400);
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

/* =============================================
           LOGOS
           ============================================= */
.logo-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    opacity: 0.4;
}

.logo-strip .fake-logo {
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--dark-900);
    letter-spacing: -0.02em;
    transition: opacity 0.3s ease;
}

.logo-strip:hover .fake-logo {
    opacity: 0.7;
}

/* =============================================
           PRICING
           ============================================= */
.price-card {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-2xl);
    background: #fff;
    padding: 2.2rem 1.8rem;
    text-align: center;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.price-card.featured {
    border-color: var(--brand-400);
    box-shadow: var(--shadow-hero);
    transform: scale(1.02);
}

.price-card:hover {
    transform: scale(1.02) translateY(-4px);
}

.price-card.featured:hover {
    transform: scale(1.04) translateY(-4px);
}

.plan-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    display: inline-block;
}

.plan-label.green {
    background: rgba(53, 173, 91, 0.08);
    color: var(--brand-700);
}

.plan-label.amber {
    background: rgba(245, 158, 11, 0.08);
    color: var(--amber-600);
}

.price-card .amount {
    font-size: 3.2rem;
    font-weight: 900;
    color: var(--dark-900);
    line-height: 1;
    margin: 0.6rem 0 0.2rem;
}

.price-card .amount small {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-500);
}

.price-card .period {
    font-size: 0.82rem;
    color: var(--gray-500);
}

.price-card ul {
    list-style: none;
    padding: 0;
    margin: 1.3rem 0;
    text-align: left;
}

.price-card ul li {
    padding: 0.45rem 0;
    font-size: 0.87rem;
    color: var(--gray-600);
    display: flex;
    align-items: center;
    gap: 0.55rem;
}

.price-card ul li i {
    color: var(--brand-400);
    font-size: 0.95rem;
    flex-shrink: 0;
}

/* =============================================
           FAQ
           ============================================= */
.faq .accordion-item {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl) !important;
    margin-bottom: 0.6rem;
    overflow: hidden;
    background: #fff;
}

.faq .accordion-button {
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--dark-900);
    background: transparent;
    padding: 1rem 1.2rem;
    box-shadow: none !important;
}

.faq .accordion-button:not(.collapsed) {
    color: var(--brand-700);
    background: rgba(53, 173, 91, 0.04);
}

.faq .accordion-body {
    font-size: 0.87rem;
    color: var(--gray-600);
    padding: 0.4rem 1.2rem 1rem;
    line-height: 1.7;
}

/* =============================================
           CTA BANNER
           ============================================= */
.cta-banner {
    border-radius: var(--radius-2xl);
    background: linear-gradient(135deg, var(--brand-600), #0f9b53);
    color: #fff;
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(22, 101, 52, 0.2);
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.14), transparent 25%),
        radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.1), transparent 22%);
    pointer-events: none;
}

.cta-banner h2 {
    color: #fff;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.8);
    max-width: 440px;
    margin: 0 auto 1.5rem;
}

/* Urgency badge */
.urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    padding: 0.4rem 0.9rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
    animation: bounce-subtle 2s ease-in-out infinite;
}

/* =============================================
           INLINE FORM (newsletter / lead)
           ============================================= */
.inline-form {
    display: flex;
    gap: 0.5rem;
    max-width: 440px;
    margin: 0 auto;
}

.inline-form .form-control {
    border-radius: 999px;
    border: 2px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    padding: 0.8rem 1.2rem;
    font-size: 0.9rem;
    box-shadow: none !important;
    min-height: auto;
}

.inline-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.inline-form .form-control:focus {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.18);
}

@media(max-width:575.98px) {
    .inline-form {
        flex-direction: column;
    }
}

/* =============================================
           FLOATING SUPPORT BUTTON
           ============================================= */
.fab-support {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 1060;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}

.fab-support .fab-menu {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    align-items: flex-end;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

.fab-support.open .fab-menu {
    max-height: 300px;
    opacity: 1;
}

.fab-support .fab-option {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.65rem 1rem;
    border-radius: 999px;
    background: #fff;
    color: var(--dark-900);
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.12);
    font-size: 0.82rem;
    font-weight: 600;
    white-space: nowrap;
    border: 1px solid var(--gray-200);
    transition: all 0.25s ease;
    text-decoration: none;
    transform: translateX(20px);
    opacity: 0;
}

.fab-support.open .fab-option {
    transform: translateX(0);
    opacity: 1;
}

.fab-support.open .fab-option:nth-child(1) {
    transition-delay: 0.05s;
}

.fab-support.open .fab-option:nth-child(2) {
    transition-delay: 0.1s;
}

.fab-support.open .fab-option:nth-child(3) {
    transition-delay: 0.15s;
}

.fab-support .fab-option:hover {
    background: var(--brand-50);
    border-color: var(--brand-300);
}

.fab-support .fab-option i {
    font-size: 1.1rem;
}

.fab-option .whatsapp-icon {
    color: #25d366;
}

.fab-option .email-icon {
    color: var(--brand-600);
}

.fab-option .chat-icon {
    color: var(--amber-500);
}

.fab-trigger {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-500), var(--brand-700));
    color: #fff;
    border: none;
    font-size: 1.5rem;
    box-shadow: 0 8px 28px rgba(36, 136, 71, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.fab-trigger::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid var(--brand-400);
    animation: pulse-ring 2.5s ease-out infinite;
}

.fab-trigger:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 36px rgba(36, 136, 71, 0.4);
}

.fab-trigger .icon-open,
.fab-trigger .icon-close {
    transition: transform 0.35s ease, opacity 0.25s ease;
    position: absolute;
}

.fab-trigger .icon-close {
    opacity: 0;
    transform: rotate(-90deg);
}

.fab-support.open .fab-trigger .icon-open {
    opacity: 0;
    transform: rotate(90deg);
}

.fab-support.open .fab-trigger .icon-close {
    opacity: 1;
    transform: rotate(0);
}

.fab-support.open .fab-trigger::before {
    animation: none;
}

/* =============================================
           FOOTER
           ============================================= */
.footer-soft {
    border-top: 1px solid rgba(226, 232, 240, 0.85);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    padding: 3.5rem 0 1.5rem;
}

.footer-soft h6 {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--dark-900);
    margin-bottom: 0.8rem;
}

.footer-soft a {
    color: var(--gray-500);
    font-size: 0.85rem;
    transition: color 0.2s ease;
}

.footer-soft a:hover {
    color: var(--brand-600);
}

.footer-soft ul {
    list-style: none;
    padding: 0;
}

.footer-soft ul li {
    margin-bottom: 0.35rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--dark-900);
    margin-bottom: 0.6rem;
}

.footer-brand .brand-badge {
    width: 36px;
    height: 36px;
    font-size: 1rem;
    border-radius: 12px;
}

.footer-bottom {
    border-top: 1px solid var(--gray-200);
    padding-top: 1.2rem;
    margin-top: 2.5rem;
    font-size: 0.75rem;
    color: var(--gray-400);
}

/* =============================================
           RESPONSIVE
           ============================================= */
@media(max-width:991.98px) {
    .hero {
        padding: 7rem 0 3.5rem;
    }

    .hero-float-1,
    .hero-float-2 {
        display: none;
    }
}

@media(max-width:767.98px) {
    .hero {
        padding: 5.5rem 0 3rem;
    }

    .section {
        padding: 3.5rem 0;
    }

    .price-card.featured {
        transform: none;
    }

    .cta-banner {
        padding: 2.5rem 1.5rem;
    }

    .testimonial-card {
        flex: 0 0 85vw;
    }
}

/* =============================================
           DARK THEME
           ============================================= */
body.theme-dark {
    background: linear-gradient(180deg, #0b1320 0%, #0f172a 55%, #0b1320 100%);
    color: #e2e8f0;

    /* Override gray tokens so inline style="var(--gray-X)" auto-adapts to dark */
    --gray-100: #141d2b;
    --gray-200: rgba(51, 65, 85, 0.7);
    --gray-300: rgba(51, 65, 85, 0.9);
}

body.theme-dark .navbar-glass {
    background: rgba(15, 23, 42, 0.82);
    border-bottom-color: rgba(51, 65, 85, 0.8);
}

body.theme-dark .nav-link {
    color: #cbd5e1 !important;
}

body.theme-dark .nav-link:hover,
body.theme-dark .nav-link.active {
    color: #d8f7e2 !important;
    background: rgba(53, 173, 91, 0.12);
}

body.theme-dark .btn-soft {
    background: rgba(15, 23, 42, 0.72);
    border-color: rgba(51, 65, 85, 0.9);
    color: #e2e8f0;
}

body.theme-dark .btn-soft:hover {
    background: rgba(53, 173, 91, 0.12);
    border-color: rgba(53, 173, 91, 0.18);
    color: #d8f7e2;
}

.theme-toggle {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    border: 1px solid rgba(226, 232, 240, 0.95);
    background: rgba(255, 255, 255, 0.92);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-900);
    box-shadow: none;
    transition: all 0.22s ease;
    cursor: pointer;
}

.theme-toggle:hover {
    transform: translateY(-1px);
    border-color: rgba(53, 173, 91, 0.2);
    color: var(--brand-700);
}

body.theme-dark .theme-toggle {
    background: rgba(15, 23, 42, 0.72);
    border-color: rgba(51, 65, 85, 0.9);
    color: #e2e8f0;
}

body.theme-dark .hero {
    background:
        radial-gradient(ellipse at 15% -5%, rgba(53, 173, 91, 0.12), transparent 45%),
        radial-gradient(ellipse at 85% 110%, rgba(34, 197, 94, 0.08), transparent 35%);
}

body.theme-dark .hero .lead {
    color: #94a3b8;
}

body.theme-dark .hero-chip {
    background: rgba(53, 173, 91, 0.12);
    border-color: rgba(53, 173, 91, 0.18);
    color: #86efac;
}

body.theme-dark .trust-strip .item {
    color: #94a3b8;
}

body.theme-dark .hero-float-1,
body.theme-dark .hero-float-2 {
    background: rgba(15, 23, 42, 0.85);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

body.theme-dark .mockup-card {
    background: rgba(15, 23, 42, 0.92);
    border-color: rgba(51, 65, 85, 0.85);
}

body.theme-dark .mockup-header {
    background: linear-gradient(180deg, rgba(53, 173, 91, 0.06), rgba(15, 23, 42, 0.92));
    border-bottom-color: rgba(51, 65, 85, 0.85);
}

body.theme-dark .mockup-header .fw-bold {
    color: #e2e8f0 !important;
}

body.theme-dark .mini-stat {
    background: rgba(15, 23, 42, 0.72);
    border-color: rgba(51, 65, 85, 0.85);
}

body.theme-dark .mini-stat .num {
    color: #f8fafc;
}

body.theme-dark .mini-stat .lbl {
    color: #94a3b8;
}

body.theme-dark .section-alt {
    background: rgba(15, 23, 42, 0.5);
    border-color: rgba(51, 65, 85, 0.5);
}

body.theme-dark .card-tz {
    background: rgba(15, 23, 42, 0.82);
    border-color: rgba(51, 65, 85, 0.85);
    box-shadow: none;
}

body.theme-dark .card-tz:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

body.theme-dark .card-tz h3 {
    color: #f8fafc;
}

body.theme-dark .card-tz p {
    color: #94a3b8;
}

body.theme-dark .metric-box {
    background: rgba(15, 23, 42, 0.82);
    border-color: rgba(51, 65, 85, 0.85);
    box-shadow: none;
}

body.theme-dark .metric-box .val {
    color: #f8fafc;
}

body.theme-dark .metric-box .lbl {
    color: #94a3b8;
}

body.theme-dark .section-head p {
    color: #94a3b8;
}

body.theme-dark .section-head h2 {
    color: #f8fafc;
}

body.theme-dark .testimonial-card {
    background: rgba(15, 23, 42, 0.82);
    border-color: rgba(51, 65, 85, 0.85);
}

body.theme-dark .testimonial-card .quote {
    color: #94a3b8;
}

body.theme-dark .testimonial-card .name {
    color: #f8fafc;
}

body.theme-dark .testimonial-card .role {
    color: #94a3b8;
}

body.theme-dark .logo-strip .fake-logo {
    color: #94a3b8;
}

body.theme-dark .price-card {
    background: rgba(15, 23, 42, 0.82);
    border-color: rgba(51, 65, 85, 0.85);
    box-shadow: none;
}

body.theme-dark .price-card.featured {
    border-color: var(--brand-400);
}

body.theme-dark .price-card .amount {
    color: #f8fafc;
}

body.theme-dark .price-card .period {
    color: #94a3b8;
}

body.theme-dark .price-card ul li {
    color: #cbd5e1;
}

body.theme-dark .faq .accordion-item {
    background: rgba(15, 23, 42, 0.82);
    border-color: rgba(51, 65, 85, 0.85);
}

body.theme-dark .faq .accordion-button {
    color: #e2e8f0;
    background: transparent;
}

body.theme-dark .faq .accordion-button:not(.collapsed) {
    color: #86efac;
    background: rgba(53, 173, 91, 0.08);
}

body.theme-dark .faq .accordion-body {
    color: #94a3b8;
}

body.theme-dark .footer-soft {
    background: rgba(15, 23, 42, 0.8);
    border-top-color: rgba(51, 65, 85, 0.85);
}

body.theme-dark .footer-soft h6 {
    color: #f8fafc;
}

body.theme-dark .footer-brand {
    color: #f8fafc;
}

body.theme-dark .footer-bottom {
    border-top-color: rgba(51, 65, 85, 0.85);
    color: #64748b;
}

body.theme-dark .fab-option {
    background: rgba(15, 23, 42, 0.92);
    border-color: rgba(51, 65, 85, 0.85);
    color: #e2e8f0;
}

body.theme-dark .fab-option:hover {
    background: rgba(53, 173, 91, 0.12);
    border-color: rgba(53, 173, 91, 0.18);
}

body.theme-dark .navbar-brand span:not(.brand-badge) {
    color: #f8fafc;
}

body.theme-dark .text-secondary {
    color: #94a3b8 !important;
}

body.theme-dark .fw-semibold {
    color: #f8fafc;
}

/* Dark theme: mockup internal text */
body.theme-dark .mockup-body p,
body.theme-dark .mockup-body small {
    color: #94a3b8 !important;
}