        /* =============================================
           CSS VARIABLES & BASE
        ============================================= */
        :root {
            --primary:       #1a6fbd;
            --primary-dark:  #124e8a;
            --primary-light: #3b8fd4;
            --accent:        #f0a500;
            --accent-dark:   #c98800;
            --dark:          #0d1b2a;
            --dark-2:        #162539;
            --mid:           #2d4a6b;
            --light-bg:      #f0f5fb;
            --light-bg-2:    #e4eef8;
            --text:          #1e2e40;
            --text-muted:    #5a7490;
            --white:         #ffffff;
            --border:        #d0dded;
            --success:       #28a86e;

            --font-display: 'Plus Jakarta Sans', sans-serif;
            --font-body:    'DM Sans', sans-serif;

            --radius:    8px;
            --radius-lg: 16px;
            --shadow:    0 4px 24px rgba(13,27,42,.10);
            --shadow-lg: 0 12px 48px rgba(13,27,42,.16);
        }

        *, *::before, *::after { box-sizing: border-box; }

        html { scroll-behavior: smooth; }

        body {
            font-family: var(--font-body);
            color: var(--text);
            background: var(--white);
            font-size: 16px;
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

        h1,h2,h3,h4,h5,h6 {
            font-family: var(--font-display);
            font-weight: 700;
            line-height: 1.15;
        }

        a { color: var(--primary); text-decoration: none; }
        a:hover { color: var(--primary-dark); }

        img { max-width: 100%; }

        .text-primary-custom { color: var(--primary) !important; }
        .text-accent         { color: var(--accent) !important; }
        .bg-primary-custom   { background-color: var(--primary) !important; }
        .bg-dark-custom      { background-color: var(--dark) !important; }
        .bg-light-custom     { background-color: var(--light-bg) !important; }

        /* =============================================
           BUTTONS
        ============================================= */
        .btn-placed-primary {
            background: var(--accent);
            color: var(--dark);
            font-family: var(--font-display);
            font-weight: 700;
            font-size: .95rem;
            letter-spacing: .03em;
            padding: .75rem 2rem;
            border-radius: var(--radius);
            border: 2px solid var(--accent);
            transition: all .25s ease;
            display: inline-block;
        }
        .btn-placed-primary:hover {
            background: var(--accent-dark);
            border-color: var(--accent-dark);
            color: var(--dark);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(240,165,0,.35);
        }

        .btn-placed-outline {
            background: transparent;
            color: var(--white);
            font-family: var(--font-display);
            font-weight: 600;
            font-size: .95rem;
            letter-spacing: .03em;
            padding: .72rem 1.8rem;
            border-radius: var(--radius);
            border: 2px solid rgba(255,255,255,.5);
            transition: all .25s ease;
            display: inline-block;
        }
        .btn-placed-outline:hover {
            border-color: var(--white);
            background: rgba(255,255,255,.12);
            color: var(--white);
        }

        .btn-placed-dark {
            background: var(--dark);
            color: var(--white);
            font-family: var(--font-display);
            font-weight: 700;
            font-size: .95rem;
            padding: .75rem 2rem;
            border-radius: var(--radius);
            border: 2px solid var(--dark);
            transition: all .25s ease;
            display: inline-block;
        }
        .btn-placed-dark:hover {
            background: var(--dark-2);
            color: var(--white);
            transform: translateY(-2px);
            box-shadow: var(--shadow);
        }

        .btn-lg-placed { padding: .9rem 2.4rem; font-size: 1.05rem; }

        /* =============================================
           NAVBAR
        ============================================= */
        #mainNav {
            background: rgba(255,255,255,.97);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border);
            padding: 0;
            transition: box-shadow .3s ease, padding .3s ease;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        #mainNav.scrolled {
            box-shadow: 0 2px 20px rgba(13,27,42,.10);
        }
        #mainNav .navbar-brand {
            padding: .5rem 0;
            line-height: 1;
        }
        #mainNav .navbar-brand .brand-placed {
            font-family: var(--font-display);
            font-weight: 800;
            font-size: 1.7rem;
            color: var(--primary);
            letter-spacing: -.02em;
        }
        #mainNav .navbar-brand .brand-placed span {
            color: var(--accent);
        }
        #mainNav .navbar-brand img.logo-img {
            height: 40px;
            width: auto;
            max-width: 220px;
            object-fit: contain;
        }

        #mainNav .nav-link {
            font-family: var(--font-display);
            font-weight: 600;
            font-size: .9rem;
            letter-spacing: .04em;
            color: var(--text) !important;
            padding: 1.5rem .9rem !important;
            position: relative;
            transition: color .2s ease;
			 text-transform: uppercase;
        }
        #mainNav .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0; left: .9rem; right: .9rem;
            height: 2px;
            background: var(--primary);
            transform: scaleX(0);
            transition: transform .25s ease;
        }
        #mainNav .nav-link:hover,
        #mainNav .nav-link.active { color: var(--primary) !important; }
        #mainNav .nav-link:hover::after,
        #mainNav .nav-link.active::after { transform: scaleX(1); }

        #mainNav .nav-cta {
            margin-left: .5rem;
            padding: .5rem 1.3rem !important;
            background: var(--accent);
            color: var(--dark) !important;
            border-radius: var(--radius);
            border: 2px solid var(--accent);
            font-family: var(--font-display);
            font-weight: 700;
            font-size: .88rem;
            transition: all .25s ease;
        }
        #mainNav .nav-cta::after { display: none; }
        #mainNav .nav-cta:hover {
            background: var(--accent-dark);
            border-color: var(--accent-dark);
            transform: translateY(-1px);
        }

        .navbar-toggler {
            border: 2px solid var(--border);
            border-radius: var(--radius);
            padding: .4rem .7rem;
        }
        .navbar-toggler:focus { box-shadow: none; }

        /* =============================================
           HERO
        ============================================= */
        #hero {
            background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 40%, var(--mid) 100%);
            min-height: 90vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            padding: 6rem 0 4rem;
        }

        /* Subtle grid texture overlay */
        #hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
            background-size: 60px 60px;
            pointer-events: none;
        }

        /* Glowing orb */
        #hero::after {
            content: '';
            position: absolute;
            top: -10%;
            right: -5%;
            width: 55%;
            height: 120%;
            background: radial-gradient(ellipse at center, rgba(26,111,189,.35) 0%, transparent 65%);
            pointer-events: none;
        }

        .hero-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: .5rem;
            background: rgba(240,165,0,.15);
            border: 1px solid rgba(240,165,0,.35);
            color: var(--accent);
            font-family: var(--font-display);
            font-weight: 700;
            font-size: .8rem;
            letter-spacing: .1em;
            text-transform: uppercase;
            padding: .35rem 1rem;
            border-radius: 100px;
            margin-bottom: 1.5rem;
        }

        .hero-headline {
            font-family: var(--font-display);
            font-weight: 800;
            font-size: clamp(2.4rem, 5vw, 3.8rem);
            color: var(--white);
            line-height: 1.1;
            margin-bottom: 1.5rem;
            letter-spacing: -.02em;
        }
        .hero-headline .highlight {
            color: var(--accent);
            position: relative;
        }

        .hero-sub {
            font-size: 1.15rem;
            color: rgba(255,255,255,.72);
            line-height: 1.7;
            margin-bottom: 2.2rem;
            max-width: 520px;
            font-weight: 300;
        }

        .hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }

        .hero-stat-row {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,.12);
        }
        .hero-stat { }
        .hero-stat .stat-number {
            font-family: var(--font-display);
            font-weight: 800;
            font-size: 1.8rem;
            color: var(--white);
            line-height: 1;
            margin-bottom: .2rem;
        }
        .hero-stat .stat-number span { color: var(--accent); }
        .hero-stat .stat-label {
            font-size: .8rem;
            color: rgba(255,255,255,.55);
            text-transform: uppercase;
            letter-spacing: .06em;
            font-weight: 500;
        }

        .hero-visual {
            position: relative;
            z-index: 2;
        }
        .hero-visual .main-screen {
            border-radius: var(--radius-lg);
            box-shadow: 0 24px 80px rgba(0,0,0,.5), 0 0 0 1px rgba(255,255,255,.08);
            width: 100%;
        }
        .hero-visual .float-card {
            position: absolute;
            background: var(--white);
            border-radius: var(--radius);
            padding: .8rem 1.1rem;
            box-shadow: var(--shadow-lg);
            font-size: .82rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: .6rem;
            white-space: nowrap;
            animation: floatCard 3s ease-in-out infinite alternate;
        }
        .hero-visual .float-card.card-1 { bottom: 14%; left: -6%; }
        .hero-visual .float-card.card-2 { top: 12%; right: -4%; animation-delay: 1.5s; }
        .hero-visual .float-card i { font-size: 1.1rem; }
        .hero-visual .float-card .fc-label { font-size: .7rem; color: var(--text-muted); font-weight: 400; display: block; line-height: 1.1; }
        .hero-visual .float-card .fc-value { font-family: var(--font-display); font-weight: 700; font-size: .95rem; color: var(--text); line-height: 1.1; }

        @keyframes floatCard {
            from { transform: translateY(0); }
            to   { transform: translateY(-8px); }
        }

        /* =============================================
           ALERT BANNER (social proof bar)
        ============================================= */
        .proof-bar {
            background: linear-gradient(90deg, var(--primary-dark), var(--primary));
            padding: .9rem 0;
            overflow: hidden;
        }
        .proof-bar p {
            margin: 0;
            color: var(--white);
            font-size: .92rem;
            font-weight: 400;
            text-align: center;
        }
        .proof-bar p strong { font-weight: 700; }
        .proof-bar .proof-icon {
            color: var(--accent);
            margin-right: .5rem;
        }

        /* =============================================
           SECTION BASICS
        ============================================= */
        section { padding: 5rem 0; }

        .section-eyebrow {
            font-family: var(--font-display);
            font-weight: 700;
            font-size: .78rem;
            letter-spacing: .12em;
            text-transform: uppercase;
            color: var(--primary);
            margin-bottom: .75rem;
            display: block;
        }

        .section-title {
            font-family: var(--font-display);
            font-weight: 800;
            font-size: clamp(1.8rem, 3vw, 2.6rem);
            color: var(--text);
            letter-spacing: -.02em;
            margin-bottom: 1rem;
            line-height: 1.15;
        }
        .section-title.light { color: var(--white); }

        .section-lead {
            font-size: 1.05rem;
            color: var(--text-muted);
            line-height: 1.75;
            max-width: 620px;
        }
        .section-lead.light { color: rgba(255,255,255,.7); }

        .section-divider {
            width: 48px;
            height: 4px;
            background: var(--accent);
            border-radius: 2px;
            margin: 1rem 0 1.5rem;
        }
        .section-divider.center { margin: 1rem auto 1.5rem; }

        /* =============================================
           ABOUT SECTION
        ============================================= */
        #about { background: var(--white); }

        .about-img-wrap {
            position: relative;
        }
        .about-img-wrap img {
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-lg);
        }
        .about-badge {
            position: absolute;
            bottom: -1.5rem;
            left: -1.5rem;
            background: var(--primary);
            color: var(--white);
            border-radius: var(--radius);
            padding: 1.2rem 1.5rem;
            box-shadow: var(--shadow-lg);
            font-family: var(--font-display);
            text-align: center;
        }
        .about-badge .ab-num {
            font-size: 2rem;
            font-weight: 800;
            line-height: 1;
            color: var(--accent);
        }
        .about-badge .ab-text {
            font-size: .75rem;
            font-weight: 600;
            opacity: .85;
            letter-spacing: .04em;
        }

        .about-check {
            display: flex;
            align-items: flex-start;
            gap: .75rem;
            margin-bottom: 1rem;
        }
        .about-check i {
            color: var(--success);
            font-size: 1rem;
            margin-top: .2rem;
            flex-shrink: 0;
        }
        .about-check p { margin: 0; font-size: .97rem; line-height: 1.6; }

        /* =============================================
           FEATURES
        ============================================= */
        #features { background: var(--light-bg); }

        .feature-card {
            background: var(--white);
            border-radius: var(--radius-lg);
            padding: 2rem;
            height: 100%;
            border: 1px solid var(--border);
            transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
            position: relative;
            overflow: hidden;
        }
        .feature-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform .35s ease;
        }
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
            border-color: transparent;
        }
        .feature-card:hover::before { transform: scaleX(1); }

        .feature-icon {
            width: 52px;
            height: 52px;
            border-radius: var(--radius);
            background: var(--light-bg-2);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.35rem;
            color: var(--primary);
            margin-bottom: 1.2rem;
            transition: background .3s, color .3s;
        }
        .feature-card:hover .feature-icon {
            background: var(--primary);
            color: var(--white);
        }

        .feature-card h4 {
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 1.05rem;
            color: var(--text);
            margin-bottom: .6rem;
        }
        .feature-card p {
            font-size: .9rem;
            color: var(--text-muted);
            margin: 0;
            line-height: 1.65;
        }

        /* =============================================
           DEEP FEATURE ROWS (alternating)
        ============================================= */
        #platform { background: var(--white); }

        .platform-row {
            padding: 4rem 0;
            border-bottom: 1px solid var(--border);
        }
        .platform-row:last-child { border-bottom: none; }

        .platform-img {
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-lg);
            border: 1px solid var(--border);
            width: 100%;
        }

        .platform-label {
            display: inline-block;
            background: var(--light-bg-2);
            color: var(--primary);
            font-family: var(--font-display);
            font-weight: 700;
            font-size: .75rem;
            letter-spacing: .1em;
            text-transform: uppercase;
            padding: .3rem .85rem;
            border-radius: 100px;
            margin-bottom: 1rem;
        }

        .platform-title {
            font-family: var(--font-display);
            font-weight: 800;
            font-size: 1.7rem;
            color: var(--text);
            margin-bottom: .9rem;
            letter-spacing: -.01em;
        }

        .platform-body {
            font-size: .97rem;
            color: var(--text-muted);
            line-height: 1.75;
            margin-bottom: 1.5rem;
        }

        .platform-bullets {
            list-style: none;
            padding: 0;
            margin: 0 0 1.8rem;
        }
        .platform-bullets li {
            display: flex;
            align-items: center;
            gap: .6rem;
            font-size: .93rem;
            color: var(--text);
            padding: .35rem 0;
        }
        .platform-bullets li i {
            color: var(--primary);
            font-size: .85rem;
            flex-shrink: 0;
        }

        /* =============================================
           MYSCF ADVANTAGE
        ============================================= */
        #advantage {
            background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 60%, var(--mid) 100%);
            position: relative;
            overflow: hidden;
        }
        #advantage::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
            background-size: 50px 50px;
        }
        .advantage-img {
            border-radius: var(--radius-lg);
            box-shadow: 0 20px 60px rgba(0,0,0,.4);
            width: 100%;
        }
        .advantage-pill {
            display: inline-flex;
            align-items: center;
            gap: .5rem;
            background: rgba(240,165,0,.15);
            border: 1px solid rgba(240,165,0,.35);
            color: var(--accent);
            font-family: var(--font-display);
            font-weight: 700;
            font-size: .78rem;
            letter-spacing: .1em;
            text-transform: uppercase;
            padding: .3rem .9rem;
            border-radius: 100px;
            margin-bottom: 1.2rem;
        }
        .advantage-check {
            display: flex;
            align-items: flex-start;
            gap: .75rem;
            margin-bottom: .9rem;
        }
        .advantage-check i { color: var(--accent); font-size: .95rem; margin-top: .25rem; flex-shrink: 0; }
        .advantage-check p { margin: 0; font-size: .95rem; color: rgba(255,255,255,.75); line-height: 1.6; }

        /* =============================================
           STATS BAND
        ============================================= */
        .stats-band {
            background: var(--primary);
            padding: 3.5rem 0;
        }
        .stat-item { text-align: center; }
        .stat-item .s-num {
            font-family: var(--font-display);
            font-weight: 800;
            font-size: 2.8rem;
            color: var(--white);
            line-height: 1;
            margin-bottom: .35rem;
        }
        .stat-item .s-num em { color: var(--accent); font-style: normal; }
        .stat-item .s-label {
            font-size: .85rem;
            color: rgba(255,255,255,.7);
            font-weight: 400;
            letter-spacing: .04em;
        }
        .stat-divider {
            width: 1px;
            background: rgba(255,255,255,.2);
            align-self: stretch;
        }

        /* =============================================
           TESTIMONIALS
        ============================================= */
        #testimonials { background: var(--light-bg); }

        .testimonial-tabs .nav-link {
            font-family: var(--font-display);
            font-weight: 600;
            font-size: .88rem;
            color: var(--text-muted);
            border: 2px solid var(--border);
            border-radius: 100px;
            padding: .5rem 1.2rem;
            margin: 0 .3rem;
            transition: all .25s ease;
            background: var(--white);
        }
        .testimonial-tabs .nav-link.active,
        .testimonial-tabs .nav-link:hover {
            background: var(--primary);
            border-color: var(--primary);
            color: var(--white);
        }

        .testimonial-card {
            background: var(--white);
            border-radius: var(--radius-lg);
            padding: 2.2rem;
            border: 1px solid var(--border);
            position: relative;
            height: 100%;
        }
        .testimonial-card::before {
            content: '\201C';
            font-family: Georgia, serif;
            font-size: 5rem;
            color: var(--light-bg-2);
            position: absolute;
            top: .8rem;
            left: 1.5rem;
            line-height: 1;
        }
        .testimonial-card .tc-text {
            font-size: .95rem;
            color: var(--text);
            line-height: 1.75;
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 1;
        }
        .testimonial-card .tc-text .highlight {
            color: var(--primary);
            font-weight: 600;
        }
        .testimonial-card .tc-author {
            font-family: 'Dancing Script', cursive;
            font-size: 1.3rem;
            color: var(--text);
            font-weight: 700;
            line-height: 1.2;
        }
        .testimonial-card .tc-role {
            font-size: .82rem;
            color: var(--text-muted);
        }
        .testimonial-card .stars { color: var(--accent); font-size: .85rem; margin-bottom: .75rem; }

        /* =============================================
           DEMO / CTA SECTION
        ============================================= */
        #demo {
            background: linear-gradient(135deg, var(--dark-2), var(--dark));
            position: relative;
            overflow: hidden;
        }
        #demo::after {
            content: '';
            position: absolute;
            bottom: -20%;
            left: -5%;
            width: 45%;
            height: 120%;
            background: radial-gradient(ellipse, rgba(240,165,0,.12) 0%, transparent 65%);
            pointer-events: none;
        }

        .demo-form-wrap {
            background: var(--white);
            border-radius: var(--radius-lg);
            padding: 2.5rem;
            box-shadow: 0 24px 64px rgba(0,0,0,.3);
        }

        .demo-form-wrap label {
            font-weight: 600;
            font-size: .85rem;
            color: var(--text);
            margin-bottom: .35rem;
            display: block;
        }

        .demo-form-wrap .form-control,
        .demo-form-wrap .form-select {
            border: 1.5px solid var(--border);
            border-radius: var(--radius);
            font-size: .93rem;
            color: var(--text);
            padding: .6rem .9rem;
            transition: border-color .2s;
        }
        .demo-form-wrap .form-control:focus,
        .demo-form-wrap .form-select:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(26,111,189,.12);
        }

        .demo-form-wrap .form-section-title {
            font-family: var(--font-display);
            font-weight: 700;
            font-size: .8rem;
            letter-spacing: .1em;
            text-transform: uppercase;
            color: var(--text-muted);
            border-bottom: 1px solid var(--border);
            padding-bottom: .6rem;
            margin-bottom: 1.2rem;
            margin-top: 1.5rem;
        }

        .time-btn {
            background: var(--light-bg);
            border: 1.5px solid var(--border);
            color: var(--text);
            border-radius: var(--radius);
            font-size: .85rem;
            font-weight: 600;
            padding: .45rem .8rem;
            width: 100%;
            cursor: pointer;
            transition: all .2s;
            text-align: center;
        }
        .time-btn:hover,
        .time-btn.selected {
            background: var(--primary);
            border-color: var(--primary);
            color: var(--white);
        }

        .demo-submit-btn {
            background: var(--accent);
            color: var(--dark);
            font-family: var(--font-display);
            font-weight: 800;
            font-size: 1rem;
            border: none;
            padding: .85rem 2.5rem;
            border-radius: var(--radius);
            width: 100%;
            cursor: pointer;
            transition: all .25s ease;
            letter-spacing: .02em;
        }
        .demo-submit-btn:hover {
            background: var(--accent-dark);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(240,165,0,.35);
        }

        /* Demo success */
        #demoSuccess {
            display: none;
            text-align: center;
            padding: 3rem 1rem;
        }
        #demoSuccess i { font-size: 3.5rem; color: var(--success); margin-bottom: 1rem; }
        #demoSuccess h4 { font-family: var(--font-display); font-weight: 700; color: var(--text); }

        /* =============================================
           FOOTER
        ============================================= */
        #footer {
            background: var(--dark);
            padding: 4rem 0 2rem;
        }
        .footer-brand .brand-placed {
            font-family: var(--font-display);
            font-weight: 800;
            font-size: 1.6rem;
            color: var(--white);
            letter-spacing: -.02em;
        }
        .footer-brand .brand-placed span { color: var(--accent); }
        .footer-tagline {
            font-size: .88rem;
            color: rgba(255,255,255,.45);
            margin-top: .5rem;
            max-width: 260px;
        }
        .footer-heading {
            font-family: var(--font-display);
            font-weight: 700;
            font-size: .78rem;
            letter-spacing: .12em;
            text-transform: uppercase;
            color: rgba(255,255,255,.45);
            margin-bottom: 1.2rem;
        }
        .footer-links { list-style: none; padding: 0; margin: 0; }
        .footer-links li { margin-bottom: .55rem; }
        .footer-links a {
            color: rgba(255,255,255,.6);
            font-size: .9rem;
            transition: color .2s;
        }
        .footer-links a:hover { color: var(--white); }
        .footer-divider {
            border-top: 1px solid rgba(255,255,255,.1);
            margin: 2.5rem 0 1.5rem;
        }
        .footer-copy {
            font-size: .83rem;
            color: rgba(255,255,255,.35);
        }
        .footer-copy a { color: rgba(255,255,255,.5); }
        .footer-copy a:hover { color: var(--white); }


        /* =============================================
           CALENDAR / EMAIL INTEGRATION SECTION
        ============================================= */
        #integration { background: var(--light-bg); }

        .integration-screen {
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-lg);
            border: 1px solid var(--border);
            width: 100%;
        }

        .integration-pill-row {
            display: flex;
            flex-wrap: wrap;
            gap: .6rem;
            margin-bottom: 1.5rem;
        }
        .integration-pill {
            display: inline-flex;
            align-items: center;
            gap: .45rem;
            background: var(--white);
            border: 1.5px solid var(--border);
            border-radius: 100px;
            padding: .35rem 1rem;
            font-size: .82rem;
            font-weight: 600;
            color: var(--text);
            box-shadow: 0 2px 8px rgba(13,27,42,.06);
        }
        .integration-pill i { color: var(--primary); font-size: .85rem; }
        .integration-pill.accent-pill { border-color: rgba(240,165,0,.5); }
        .integration-pill.accent-pill i { color: var(--accent-dark); }

        .crm-badge-row {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            margin-top: 1.8rem;
            padding-top: 1.5rem;
            border-top: 1px solid var(--border);
        }
        .crm-badge {
            background: var(--white);
            border: 1.5px solid var(--border);
            border-radius: var(--radius);
            padding: .9rem 1.2rem;
            text-align: center;
            flex: 1;
            min-width: 90px;
            box-shadow: 0 2px 8px rgba(13,27,42,.05);
        }
        .crm-badge i { font-size: 1.4rem; color: var(--primary); display: block; margin-bottom: .4rem; }
        .crm-badge span { font-size: .72rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: .05em; }

        /* =============================================
           EMAIL TEMPLATES SECTION
        ============================================= */
        #emailtemplates { background: var(--white); }

        .template-card {
            background: var(--white);
            border: 1.5px solid var(--border);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: transform .3s, box-shadow .3s;
            height: 100%;
        }
        .template-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
        .template-card-header {
            background: linear-gradient(135deg, var(--primary-dark), var(--primary));
            padding: 1rem 1.2rem;
            display: flex;
            align-items: center;
            gap: .7rem;
        }
        .template-card-header i { color: rgba(255,255,255,.85); font-size: 1.1rem; }
        .template-card-header span { font-family: var(--font-display); font-weight: 700; font-size: .85rem; color: var(--white); }
        .template-card-body { padding: 1.2rem; }
        .template-tag {
            display: inline-block;
            background: rgba(26,111,189,.1);
            color: var(--primary);
            border-radius: 4px;
            font-family: monospace;
            font-size: .78rem;
            font-weight: 700;
            padding: .15rem .5rem;
            margin: .2rem .2rem .2rem 0;
        }
        .template-tag.gold { background: rgba(240,165,0,.12); color: var(--accent-dark); }
        .template-preview-text {
            font-size: .85rem;
            color: var(--text-muted);
            line-height: 1.65;
            margin-top: .8rem;
            border-top: 1px solid var(--border);
            padding-top: .8rem;
        }

        .variable-engine-box {
            background: linear-gradient(135deg, var(--dark), var(--dark-2));
            border-radius: var(--radius-lg);
            padding: 2.2rem;
            position: relative;
            overflow: hidden;
        }
        .variable-engine-box::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
            background-size: 30px 30px;
        }
        .variable-engine-box .ve-title { font-family: var(--font-display); font-weight: 800; font-size: 1.1rem; color: var(--white); margin-bottom: .5rem; position: relative; }
        .variable-engine-box .ve-sub { font-size: .88rem; color: rgba(255,255,255,.6); margin-bottom: 1.2rem; line-height: 1.65; position: relative; }
        .tag-cloud { display: flex; flex-wrap: wrap; gap: .5rem; position: relative; }
        .tag-item {
            background: rgba(26,111,189,.25);
            border: 1px solid rgba(26,111,189,.5);
            color: #7dc8ff;
            border-radius: 6px;
            font-family: monospace;
            font-size: .8rem;
            font-weight: 700;
            padding: .3rem .7rem;
        }
        .tag-item.gold { background: rgba(240,165,0,.2); border-color: rgba(240,165,0,.45); color: var(--accent); }

        /* =============================================
           WHY PLACED WINS (Differentiator)
        ============================================= */
        #whyplaced {
            background: linear-gradient(160deg, var(--dark) 0%, var(--dark-2) 50%, #1a3a5c 100%);
            position: relative;
            overflow: hidden;
        }
        #whyplaced::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: linear-gradient(rgba(255,255,255,.015) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.015) 1px, transparent 1px);
            background-size: 60px 60px;
        }
        #whyplaced::after {
            content: '';
            position: absolute;
            top: -20%; right: -10%;
            width: 50%; height: 140%;
            background: radial-gradient(ellipse, rgba(26,111,189,.2) 0%, transparent 65%);
            pointer-events: none;
        }
        .win-card {
            background: rgba(255,255,255,.05);
            border: 1px solid rgba(255,255,255,.1);
            border-radius: var(--radius-lg);
            padding: 1.8rem;
            height: 100%;
            transition: background .3s, border-color .3s, transform .3s;
            position: relative;
            overflow: hidden;
        }
        .win-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-light), var(--accent));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform .35s ease;
        }
        .win-card:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.2); transform: translateY(-4px); }
        .win-card:hover::before { transform: scaleX(1); }
        .win-icon {
            width: 48px; height: 48px;
            background: rgba(26,111,189,.25);
            border: 1px solid rgba(26,111,189,.4);
            border-radius: var(--radius);
            display: flex; align-items: center; justify-content: center;
            font-size: 1.2rem;
            color: #7dc8ff;
            margin-bottom: 1.1rem;
        }
        .win-card h4 { font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: var(--white); margin-bottom: .6rem; }
        .win-card p { font-size: .88rem; color: rgba(255,255,255,.62); line-height: 1.7; margin: 0; }
        .win-card p strong { color: rgba(255,255,255,.88); }
        .win-headline-badge {
            display: inline-flex;
            align-items: center;
            gap: .5rem;
            background: rgba(240,165,0,.15);
            border: 1px solid rgba(240,165,0,.35);
            color: var(--accent);
            font-family: var(--font-display);
            font-weight: 700;
            font-size: .78rem;
            letter-spacing: .1em;
            text-transform: uppercase;
            padding: .3rem .9rem;
            border-radius: 100px;
            margin-bottom: 1.2rem;
        }

        /* =============================================
           ANIMATIONS (simple fade-in on scroll)
        ============================================= */
        .fade-up {
            opacity: 0;
            transform: translateY(28px);
            transition: opacity .6s ease, transform .6s ease;
        }
        .fade-up.visible {
            opacity: 1;
            transform: translateY(0);
        }
        .fade-up.delay-1 { transition-delay: .1s; }
        .fade-up.delay-2 { transition-delay: .2s; }
        .fade-up.delay-3 { transition-delay: .3s; }
        .fade-up.delay-4 { transition-delay: .4s; }

        /* =============================================
           RESPONSIVE
        ============================================= */
        @media (max-width: 991px) {
            #hero { min-height: auto; padding: 4rem 0 3rem; }
            .hero-visual { margin-top: 3rem; }
            .hero-visual .float-card { display: none; }
            .about-badge { left: 0; bottom: -1rem; }
            section { padding: 3.5rem 0; }
            .platform-row { padding: 2.5rem 0; }
			
			#navMenu .nav-link {
				padding-top: 0.4rem!important;
				padding-bottom: 0.4rem!important;
			}			
			
			    #mainNav .nav-cta {
					padding: 0.4rem 0 !important;
					margin-left: 0 !important;
					background: none !important;
					border: none !important;
					color: var(--dark) !important;
					border-radius: 0 !important;
					padding-left: 1rem !important;
				}			
			
			
        }
        @media (max-width: 767px) {
            .hero-stat-row { gap: 1.2rem; }
            .hero-stat .stat-number { font-size: 1.4rem; }
            .stats-band .stat-item { margin-bottom: 1.5rem; }
            .demo-form-wrap { padding: 1.5rem; }
        }

