/* ============================================================
   OxtrysSaas.ai — Main Stylesheet
   File: style.css
   
   TABLE OF CONTENTS
   -----------------
   01. CSS Variables (colours, fonts, shadows)
   02. Reset & Base
   03. Top Bar
   04. Navigation
   05. Hero Section
   06. Hero Visual Dashboard Widget
   07. Hero Lead Form
   08. Wave Divider
   09. Section Utilities
   10. Trust Band
   11. Services Grid
   12. Pricing Cards
   13. Process / Steps
   14. India Block (Why Us)
   15. Testimonials
   16. Social Proof Numbers
   17. Contact Section
   18. FAQ Accordion
   19. Final CTA
   20. Footer
   21. WhatsApp Floating Button
   22. Sticky Bottom Bar
   23. Responsive / Mobile
   ============================================================ */


/* ============================================================
   01. CSS VARIABLES
   Change colours here to retheme the entire site instantly.
   ============================================================ */
:root {
    /* ── Brand Colours ── */
    --blue: #1A6FFF; /* Primary brand blue */
    --blue-dark: #1155CC; /* Hover / darker shade */
    --blue-light: #EBF3FF; /* Light blue tint for backgrounds */
    --blue-pale: #F0F6FF; /* Very pale blue for section backgrounds */
    --navy: #0A1628; /* Dark navy for hero / footer */
    --navy-light: #142240; /* Slightly lighter navy */
    /* ── Neutral Colours ── */
    --white: #FFFFFF;
    --off-white: #F8FAFF; /* Alternate section background */
    --text: #0D1B2A; /* Main body text */
    --muted: #5A6880; /* Secondary / label text */
    --border: #DDE8FF; /* Default border colour */
    --border-dark: #C5D8FF; /* Stronger border */
    /* ── Typography ── */
    --serif: 'Clash Display', Georgia, serif; /* Headings */
    --sans: 'Plus Jakarta Sans', system-ui, sans-serif; /* Body */
    /* ── Shadows ── */
    --shadow-sm: 0 2px 8px rgba(26, 111, 255, 0.08);
    --shadow-md: 0 8px 32px rgba(26, 111, 255, 0.14);
    --shadow-lg: 0 20px 60px rgba(26, 111, 255, 0.18);
}


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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--white);
    color: var(--text);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}


/* ============================================================
   03. TOP BAR
   ============================================================ */
.topbar {
    background: var(--blue);
    color: #fff;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    padding: 9px 16px;
    letter-spacing: 0.2px;
}

    .topbar span {
        background: rgba(255, 255, 255, 0.2);
        border-radius: 4px;
        padding: 2px 8px;
        margin: 0 4px;
    }


/* ============================================================
   04. NAVIGATION
   ============================================================ */
nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid var(--border);
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
    backdrop-filter: blur(12px);
}

.logo {
    font-family: var(--serif);
    font-weight: 700;
    font-size: 22px;
    color: var(--navy);
    text-decoration: none;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 34px;
    height: 34px;
    background: var(--blue);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    font-family: var(--serif);
}

.logo-text {
    display: flex;
    align-items: baseline;
    gap: 0;
}

.logo-oxtrys {
    color: var(--navy);
}

.logo-saas {
    color: var(--blue);
}

.logo-ai {
    color: var(--blue);
    font-size: 18px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

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

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

.nav-cta {
    background: var(--blue);
    color: #fff;
    font-family: var(--sans);
    font-weight: 700;
    font-size: 14px;
    padding: 10px 22px;
    border-radius: 8px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-block;
    box-shadow: 0 4px 14px rgba(26, 111, 255, 0.3);
}

    .nav-cta:hover {
        background: var(--blue-dark);
        transform: translateY(-1px);
        box-shadow: 0 6px 20px rgba(26, 111, 255, 0.4);
    }


/* ============================================================
   05. HERO SECTION
   ============================================================ */
.hero-section {
    background: linear-gradient(135deg, var(--navy) 0%, #0D2550 50%, #0A1E45 100%);
    padding: 80px 5% 72px;
    position: relative;
    overflow: hidden;
}

    /* Glowing radial light top-right */
    .hero-section::before {
        content: '';
        position: absolute;
        top: -200px;
        right: -200px;
        width: 700px;
        height: 700px;
        background: radial-gradient(circle, rgba(26, 111, 255, 0.25) 0%, transparent 65%);
        pointer-events: none;
    }

    /* Glowing radial light bottom-left */
    .hero-section::after {
        content: '';
        position: absolute;
        bottom: -100px;
        left: -100px;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(26, 111, 255, 0.1) 0%, transparent 65%);
        pointer-events: none;
    }

/* Subtle grid overlay */
.grid-pattern {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(26, 111, 255, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(26, 111, 255, 0.06) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
    position: relative;
    z-index: 2;
}

/* Animated badge pill */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(26, 111, 255, 0.2);
    border: 1px solid rgba(26, 111, 255, 0.4);
    color: #7CB9FF;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

    .hero-badge::before {
        content: '';
        width: 6px;
        height: 6px;
        background: #7CB9FF;
        border-radius: 50%;
        animation: blink 2s infinite;
    }

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

h1 {
    font-family: var(--serif);
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -1.5px;
    color: #fff;
    margin-bottom: 20px;
}

    h1 .accent {
        color: #4D9FFF;
        display: block;
        font-size: 30px;
    }

.hero-desc {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 28px;
    line-height: 1.7;
    max-width: 500px;
}

/* ── Stats row ── */
.stat-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.stat {
    text-align: center;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    min-width: 90px;
}

.stat-num {
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.stat-lbl {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-top: 4px;
}

/* ── Technology pills ── */
.trust-logos {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.trust-logo {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    padding: 7px 14px;
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.5px;
}


/* ============================================================
   06. HERO VISUAL (CSS Dashboard Widget — no image)
   ============================================================ */
.hero-visual {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hv-metric {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hv-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

.hv-value {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 700;
    color: #fff;
}

.hv-badge {
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 100px;
}

    .hv-badge.green {
        background: rgba(46, 213, 115, 0.2);
        color: #2ED573;
        border: 1px solid rgba(46, 213, 115, 0.3);
    }

    .hv-badge.blue {
        background: rgba(26, 111, 255, 0.2);
        color: #7CB9FF;
        border: 1px solid rgba(26, 111, 255, 0.3);
    }

.hv-bar-wrap {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hv-bar-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.hv-bar {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 3px;
    overflow: hidden;
}

.hv-bar-fill {
    height: 100%;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--blue), #5AB0FF);
}


/* ============================================================
   07. HERO LEAD FORM
   ============================================================ */
.hero-form-wrap {
    background: #fff;
    border-radius: 20px;
    padding: 36px 32px;
    box-shadow: var(--shadow-lg), 0 0 0 1px rgba(26, 111, 255, 0.1);
    position: sticky;
    top: 80px;
}

.form-header {
    text-align: center;
    margin-bottom: 20px;
}

    .form-header h3 {
        font-family: var(--serif);
        font-size: 22px;
        font-weight: 700;
        color: var(--navy);
        margin-bottom: 6px;
        letter-spacing: -0.3px;
    }

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

.form-urgency {
    background: var(--blue-light);
    border: 1px solid var(--border-dark);
    border-radius: 8px;
    padding: 9px 14px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--blue-dark);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* ── Form fields ── */
.fld {
    margin-bottom: 13px;
}

    .fld label {
        display: block;
        font-size: 11px;
        font-weight: 700;
        color: var(--muted);
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 5px;
    }

    .fld input,
    .fld select,
    .fld textarea {
        width: 100%;
        background: #F8FAFF;
        border: 1.5px solid var(--border);
        border-radius: 10px;
        color: var(--text);
        font-family: var(--sans);
        font-size: 14px;
        padding: 10px 13px;
        outline: none;
        transition: border-color 0.2s, background 0.2s;
        appearance: none;
    }

        .fld input:focus,
        .fld select:focus,
        .fld textarea:focus {
            border-color: var(--blue);
            background: #fff;
            box-shadow: 0 0 0 3px rgba(26, 111, 255, 0.1);
        }

    .fld textarea {
        resize: vertical;
        min-height: 76px;
        font-size: 13px;
    }

    .fld select option {
        color: var(--text);
    }

.fgrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 11px;
}

.btn-submit {
    width: 100%;
    background: var(--blue);
    color: #fff;
    font-family: var(--sans);
    font-size: 16px;
    font-weight: 700;
    padding: 14px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    margin-top: 4px;
    transition: all 0.2s;
    box-shadow: 0 4px 20px rgba(26, 111, 255, 0.3);
    letter-spacing: 0.2px;
}

    .btn-submit:hover {
        background: var(--blue-dark);
        transform: translateY(-2px);
        box-shadow: 0 8px 28px rgba(26, 111, 255, 0.4);
    }

    .btn-submit:disabled {
        opacity: 0.6;
        cursor: not-allowed;
        transform: none;
    }

.form-foot {
    text-align: center;
    font-size: 12px;
    color: var(--muted);
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.form-mini-badges {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 8px;
}

.fmb {
    font-size: 11px;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 3px;
}

/* ── Form states ── */
.success-box {
    display: none;
    text-align: center;
    padding: 28px 0;
}

    .success-box h3 {
        font-family: var(--serif);
        font-size: 20px;
        color: var(--navy);
        margin-bottom: 8px;
    }

    .success-box p {
        font-size: 14px;
        color: var(--muted);
        margin-bottom: 16px;
    }

.error-msg {
    background: #FFF0F0;
    border: 1px solid #FFCDD2;
    color: #C62828;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 13px;
    margin-bottom: 12px;
    display: none;
}


/* ============================================================
   08. WAVE DIVIDER
   ============================================================ */
.wave {
    background: var(--navy);
    line-height: 0;
}

    .wave svg {
        display: block;
        width: 100%;
    }


/* ============================================================
   09. SECTION UTILITIES
   ============================================================ */
section {
    padding: 80px 5%;
}

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

.sec-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--blue);
    margin-bottom: 12px;
}

h2 {
    font-family: var(--serif);
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.8px;
    color: var(--navy);
    margin-bottom: 14px;
}

.sec-desc {
    font-size: 17px;
    color: var(--muted);
    max-width: 560px;
    margin-bottom: 48px;
    line-height: 1.7;
}


/* ============================================================
   10. TRUST BAND
   ============================================================ */
.trust-band {
    background: var(--blue-pale);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 28px 5%;
}

.trust-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
}

.tbadge-icon {
    width: 36px;
    height: 36px;
    background: var(--blue);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.trust-sep {
    width: 1px;
    height: 36px;
    background: var(--border);
}


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

.svc-card {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 18px;
    padding: 32px;
    transition: all 0.25s;
    position: relative;
    overflow: hidden;
}

    /* Blue top-edge accent on hover */
    .svc-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--blue), #5AB0FF);
        opacity: 0;
        transition: opacity 0.25s;
    }

    .svc-card:hover {
        border-color: var(--blue);
        box-shadow: var(--shadow-md);
        transform: translateY(-4px);
    }

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

.svc-icon {
    width: 52px;
    height: 52px;
    background: var(--blue-light);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 18px;
}

.svc-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.svc-card p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
}

.svc-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: var(--blue-light);
    color: var(--blue);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 100px;
    margin-top: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


/* ============================================================
   12. PRICING CARDS
   ============================================================ */
.pricing-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: start;
}

.price-card {
    background: #fff;
    border: 2px solid var(--border);
    border-radius: 24px;
    padding: 44px 40px;
    position: relative;
    overflow: hidden;
}

    .price-card.featured {
        border-color: var(--blue);
        box-shadow: var(--shadow-lg);
    }

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--blue);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-num {
    font-family: var(--serif);
    font-size: 60px;
    font-weight: 700;
    color: var(--blue);
    line-height: 1;
    letter-spacing: -2px;
    margin: 16px 0 4px;
}

.price-per {
    font-size: 18px;
    color: var(--muted);
}

.price-compare {
    font-size: 14px;
    color: var(--muted);
    background: var(--blue-pale);
    border-radius: 6px;
    padding: 6px 12px;
    display: inline-block;
    margin-bottom: 24px;
}

    .price-compare s {
        color: #E24B4A;
        font-weight: 600;
    }

.price-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

    .price-list li {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        font-size: 15px;
        color: var(--text);
    }

        .price-list li::before {
            content: '✓';
            color: var(--blue);
            font-weight: 700;
            font-size: 14px;
            flex-shrink: 0;
            margin-top: 1px;
        }

/* ── Shared button styles ── */
.btn-blue {
    background: var(--blue);
    color: #fff;
    font-family: var(--sans);
    font-size: 16px;
    font-weight: 700;
    padding: 15px 28px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s;
    box-shadow: 0 4px 16px rgba(26, 111, 255, 0.3);
    width: 100%;
    text-align: center;
}

    .btn-blue:hover {
        background: var(--blue-dark);
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(26, 111, 255, 0.4);
    }

.btn-outline {
    background: #fff;
    color: var(--blue);
    font-family: var(--sans);
    font-size: 16px;
    font-weight: 700;
    padding: 15px 28px;
    border-radius: 12px;
    border: 2px solid var(--blue);
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s;
    width: 100%;
    text-align: center;
}

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


/* ============================================================
   13. PROCESS / STEPS
   ============================================================ */
.process-bg {
    background: var(--navy);
    border-radius: 32px;
    padding: 64px 56px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    position: relative;
}

    /* Connecting line between steps */
    .steps-grid::before {
        content: '';
        position: absolute;
        top: 28px;
        left: 10%;
        right: 10%;
        height: 2px;
        background: linear-gradient(90deg, var(--blue), #5AB0FF);
        z-index: 0;
    }

.step-item {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 8px;
}

.step-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 0 auto 20px;
    border: 3px solid #1a2a45;
    box-shadow: 0 0 0 3px var(--blue);
}

.step-item h3 {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
    line-height: 1.3;
}

.step-item p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
}


/* ============================================================
   14. INDIA BLOCK (Why Us)
   ============================================================ */
.india-block {
    background: linear-gradient(135deg, var(--blue) 0%, #1155CC 100%);
    border-radius: 24px;
    padding: 56px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

    .india-block h2 {
        color: #fff;
        margin-bottom: 12px;
        font-size: clamp(26px, 3.5vw, 38px);
    }

    .india-block p {
        color: rgba(255, 255, 255, 0.8);
        font-size: 17px;
        max-width: 500px;
        margin-bottom: 0;
    }

.india-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.india-tag {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}

.btn-white {
    background: #fff;
    color: var(--blue);
    font-family: var(--sans);
    font-size: 16px;
    font-weight: 700;
    padding: 15px 36px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s;
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

    .btn-white:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    }


/* ============================================================
   15. TESTIMONIALS
   ============================================================ */
.testi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.testi-card {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 18px;
    padding: 28px;
    transition: box-shadow 0.2s;
}

    .testi-card:hover {
        box-shadow: var(--shadow-md);
    }

.stars {
    color: #FFC107;
    font-size: 16px;
    margin-bottom: 14px;
    letter-spacing: 2px;
}

.testi-card blockquote {
    font-size: 15px;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 18px;
    font-style: italic;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    color: #fff;
    flex-shrink: 0;
}

.testi-name {
    font-weight: 700;
    font-size: 14px;
    color: var(--navy);
}

.testi-role {
    font-size: 12px;
    color: var(--muted);
}


/* ============================================================
   16. SOCIAL PROOF NUMBERS
   ============================================================ */
.numbers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
    margin-top: 48px;
}

.num-card {
    padding: 28px;
    background: #fff;
    border-radius: 14px;
    border: 1.5px solid var(--border);
    text-align: center;
}

    .num-card .big {
        font-family: var(--serif);
        font-size: 40px;
        font-weight: 700;
        color: var(--blue);
    }

    .num-card .lbl {
        font-size: 14px;
        color: var(--muted);
        margin-top: 4px;
    }


/* ============================================================
   17. CONTACT SECTION
   ============================================================ */
.contact-section {
    background: var(--navy);
    padding: 80px 5%;
}

.contact-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
}

.contact-info h2 {
    color: #fff;
    margin-bottom: 14px;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 16px;
    margin-bottom: 32px;
    line-height: 1.7;
}

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

.cinfo-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.cinfo-icon {
    width: 36px;
    height: 36px;
    background: rgba(26, 111, 255, 0.2);
    border: 1px solid rgba(26, 111, 255, 0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 1px;
}

.cinfo-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

    .cinfo-item a:hover {
        color: var(--blue);
    }

.wa-inline {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #25D366;
    color: #fff;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    margin-top: 8px;
    transition: all 0.2s;
}

    .wa-inline:hover {
        background: #1db954;
        transform: translateY(-1px);
    }

.contact-form-wrap {
    background: #fff;
    border-radius: 20px;
    padding: 36px 32px;
    box-shadow: var(--shadow-lg);
}

    .contact-form-wrap h3 {
        font-family: var(--serif);
        font-size: 22px;
        font-weight: 700;
        color: var(--navy);
        margin-bottom: 6px;
    }

    .contact-form-wrap .sub {
        font-size: 14px;
        color: var(--muted);
        margin-bottom: 24px;
    }


/* ============================================================
   18. FAQ ACCORDION
   ============================================================ */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 760px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color 0.2s;
}

    .faq-item.open {
        border-color: var(--blue);
    }

.faq-q {
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    gap: 16px;
}

    .faq-q span {
        font-size: 16px;
        font-weight: 600;
        color: var(--navy);
    }

.faq-arrow {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--blue-light);
    border: none;
    color: var(--blue);
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s;
    cursor: pointer;
}

.faq-item.open .faq-arrow {
    transform: rotate(180deg);
    background: var(--blue);
    color: #fff;
}

.faq-a {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.3s;
}

.faq-item.open .faq-a {
    max-height: 200px;
    padding-bottom: 20px;
}

.faq-a p {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.7;
}


/* ============================================================
   19. FINAL CTA
   ============================================================ */
.final-cta {
    background: var(--off-white);
    padding: 72px 5%;
    text-align: center;
}

    .final-cta .container {
        max-width: 660px;
        margin: 0 auto;
    }

    .final-cta h2 {
        margin-bottom: 16px;
    }

    .final-cta p {
        font-size: 18px;
        color: var(--muted);
        margin-bottom: 36px;
    }

.final-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-wa {
    background: #25D366;
    color: #fff;
    font-family: var(--sans);
    font-size: 17px;
    font-weight: 700;
    padding: 16px 32px;
    border-radius: 12px;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}

    .btn-wa:hover {
        background: #1db954;
        transform: translateY(-2px);
    }


/* ============================================================
   20. FOOTER
   ============================================================ */
footer {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.7);
}

.footer-top {
    padding: 60px 5% 40px;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 14px;
    max-width: 280px;
}

.footer-logo {
    font-family: var(--serif);
    font-weight: 700;
    font-size: 20px;
    color: #fff;
    text-decoration: none;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

    .footer-logo .logo-icon {
        background: var(--blue);
    }

    .footer-logo .logo-saas {
        color: #7CB9FF;
    }

.footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.footer-col a {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.2s;
}

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

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
}

    .footer-contact-item a {
        color: rgba(255, 255, 255, 0.55);
        text-decoration: none;
    }

        .footer-contact-item a:hover {
            color: #7CB9FF;
        }

    .footer-contact-item .icon {
        flex-shrink: 0;
        margin-top: 1px;
        font-size: 14px;
    }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

.footer-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.fbadge {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 4px 12px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
}


/* ============================================================
   21. WHATSAPP FLOATING BUTTON
   ============================================================ */
.wa-btn {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 200;
    width: 62px;
    height: 62px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    text-decoration: none;
    transition: all 0.25s;
    animation: wapulse 3s infinite;
}

    .wa-btn:hover {
        background: #1db954;
        transform: scale(1.08);
    }

@keyframes wapulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 32px rgba(37, 211, 102, 0.7);
    }
}

.wa-btn svg {
    width: 32px;
    height: 32px;
    fill: #fff;
}

.wa-tooltip {
    position: absolute;
    right: 74px;
    background: var(--navy);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 8px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
    top: 50%;
    transform: translateY(-50%);
}

.wa-btn:hover .wa-tooltip {
    opacity: 1;
}


/* ============================================================
   22. STICKY BOTTOM BAR
   ============================================================ */
.sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 98;
    background: rgba(255, 255, 255, 0.97);
    border-top: 1.5px solid var(--border);
    padding: 14px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    backdrop-filter: blur(10px);
    transform: translateY(100%);
    transition: transform 0.4s ease;
    box-shadow: 0 -4px 24px rgba(26, 111, 255, 0.1);
}

    .sticky-bar.visible {
        transform: translateY(0);
    }

    .sticky-bar p {
        font-size: 15px;
        font-weight: 600;
        color: var(--navy);
    }

        .sticky-bar p span {
            color: var(--blue);
        }


/* ============================================================
   23. RESPONSIVE / MOBILE BREAKPOINTS
   ============================================================ */

/* Tablet and below */
@media (max-width: 960px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-visual {
        display: none;
    }
    /* hide dashboard widget on mobile */
    .pricing-wrapper {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

        .steps-grid::before {
            display: none;
        }
    /* hide connecting line */
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .india-block {
        flex-direction: column;
    }

    .nav-links {
        display: none;
    }
    /* hide nav links, keep CTA button */
    .trust-sep {
        display: none;
    }

    .process-bg {
        padding: 40px 28px;
    }

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

/* Mobile */
@media (max-width: 600px) {
    .fgrid {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .hero-form-wrap {
        padding: 28px 20px;
    }

    .trust-inner {
        justify-content: center;
    }

    .final-btns {
        flex-direction: column;
        align-items: center;
    }
}
