/* ================================================================
   BHRTSOFT Technology Solution Pvt. Ltd. — Main Stylesheet
   ================================================================ */

/* ── CSS Variables ─────────────────────────────────────────────── */
:root {
    --primary: #1a3c8f;
    --primary-dk: #0d1b4b;
    --primary-lt: #2d5bc4;
    --secondary: #f47820;
    --secondary-dk: #d4631a;
    --accent: #ffc107;
    --success: #2ecc71;
    --danger: #e74c3c;
    --info: #00b4d8;

    --text-900: #0d1117;
    --text-700: #1a202c;
    --text-500: #4a5568;
    --text-300: #718096;
    --text-inv: #ffffff;

    --bg-white: #ffffff;
    --bg-light: #f7fafc;
    --bg-mid: #edf2f7;
    --bg-dark: #0d1b4b;

    --border: #e2e8f0;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --radius-xl: 40px;

    --shadow-sm: 0 1px 4px rgba(0, 0, 0, .08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, .10);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, .14);
    --shadow-xl: 0 24px 64px rgba(0, 0, 0, .18);

    --grad-hero: linear-gradient(135deg, #0d1b4b 0%, #1a3c8f 60%, #2d5bc4 100%);
    --grad-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-lt) 100%);
    --grad-orange: linear-gradient(135deg, #f47820 0%, #ffc107 100%);
    --grad-mixed: linear-gradient(135deg, #1a3c8f 0%, #f47820 100%);

    --nav-h: 88px;
    --section-py: 100px;
    --transition: .3s ease;
}

/* ── Dark Theme Overrides  (default = light; dark-theme class flips everything dark) ── */
body.dark-theme {
    --bg-white: #080c18;
    --bg-light: #0d1220;
    --bg-mid:   #111928;
    --bg-dark:  #05070f;
    --text-900: #f0f4ff;
    --text-700: #9fb4d4;
    --text-500: #607898;
    --text-300: #3d5272;
    --text-inv: #f0f4ff;
    --border:   rgba(255,255,255,.07);
    --shadow-md: 0 4px 20px rgba(0,0,0,.55);
    --shadow-lg: 0 12px 48px rgba(0,0,0,.70);
    --grad-hero: linear-gradient(135deg, #020408 0%, #050a12 50%, #070d18 100%);
    background: #080c18;
}

/* Navbar */
body.dark-theme .navbar          { background: rgba(8,12,24,.96)  !important; }
body.dark-theme .navbar.scrolled { background: rgba(8,12,24,.99)  !important; }

/* Section badge */
body.dark-theme .section-badge {
    background: rgba(91,138,255,.12);
    color: #7eaaff;
    border-color: rgba(91,138,255,.2);
}

/* Ticker */
body.dark-theme .ticker-strip {
    background: linear-gradient(90deg, #05070f 0%, #080c18 35%, #0d1220 65%, #05070f 100%) !important;
    border-color: rgba(255,255,255,.06) !important;
}
body.dark-theme .ticker-label { background: rgba(91,138,255,.1); border-color: rgba(91,138,255,.15); }
body.dark-theme .ticker-viewport::before { background: linear-gradient(90deg, #080c18, transparent); }
body.dark-theme .ticker-viewport::after  { background: linear-gradient(-90deg, #080c18, transparent); }
body.dark-theme .ticker-track span { color: rgba(159,180,212,.85); }

/* Theme toggle button */
body.dark-theme .theme-toggle {
    border-color: rgba(255,255,255,.3);
    color: rgba(255,255,255,.75);
    background: rgba(255,255,255,.05);
}

/* Captcha */
body.dark-theme .captcha-box {
    background: rgba(255,255,255,.04);
    border-color: rgba(255,255,255,.08);
}
body.dark-theme .captcha-label,
body.dark-theme .captcha-logo { color: rgba(255,255,255,.55); }

/* ── Section backgrounds — two-tone depth ── */
body.dark-theme .hero-section {
    background: #080c18 radial-gradient(ellipse 80% 55% at 50% -10%, rgba(91,138,255,.09) 0%, transparent 65%) !important;
}
body.dark-theme .services-section,
body.dark-theme .about-section,
body.dark-theme .faq-section,
body.dark-theme .why-section {
    background: #080c18 !important;
}
body.dark-theme .trending-section,
body.dark-theme .pricing-section,
body.dark-theme .testimonials-section,
body.dark-theme .process-section,
body.dark-theme .features-section {
    background: #060a14 !important;
}
body.dark-theme .contact-section,
body.dark-theme .newsletter-section {
    background: #080c18 !important;
}
body.dark-theme footer {
    background: #05070f !important;
}

/* ── Why Us icons ── */
body.dark-theme .wf-icon {
    background: rgba(91,138,255,.12) !important;
    border-color: rgba(91,138,255,.2) !important;
}
body.dark-theme .wf-icon i { color: #7eaaff !important; }

/* ── Cards — professional dark surface with electric-blue accent stripe ── */
body.dark-theme .service-card,
body.dark-theme .pricing-card,
body.dark-theme .testi-card,
body.dark-theme .faq-item,
body.dark-theme .val-card,
body.dark-theme .contact-card,
body.dark-theme .cb-card,
body.dark-theme .form-card,
body.dark-theme .about-stat-card,
body.dark-theme .process-step {
    background: #0d1220 !important;
    border: 1px solid rgba(255,255,255,.07) !important;
    color: var(--text-700) !important;
    box-shadow: 0 2px 16px rgba(0,0,0,.35) !important;
    position: relative;
    overflow: hidden;
}

/* Blue accent stripe on card top edge */
body.dark-theme .service-card::before,
body.dark-theme .pricing-card::before,
body.dark-theme .testi-card::before,
body.dark-theme .val-card::before,
body.dark-theme .process-step::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #5b8aff 0%, #818cf8 100%);
    opacity: .45;
    transition: opacity .3s;
}
body.dark-theme .service-card:hover::before,
body.dark-theme .pricing-card:hover::before,
body.dark-theme .testi-card:hover::before,
body.dark-theme .val-card:hover::before,
body.dark-theme .process-step:hover::before { opacity: 1; }

/* Card hover — lift + blue glow */
body.dark-theme .service-card:hover,
body.dark-theme .val-card:hover,
body.dark-theme .process-step:hover {
    transform: translateY(-5px) !important;
    border-color: rgba(91,138,255,.28) !important;
    box-shadow: 0 12px 40px rgba(91,138,255,.15), 0 2px 8px rgba(0,0,0,.4) !important;
}

/* Featured card: orange accent */
body.dark-theme .pricing-card.featured,
body.dark-theme .service-card.featured {
    border-color: rgba(244,120,32,.28) !important;
    box-shadow: 0 12px 40px rgba(244,120,32,.12), 0 2px 8px rgba(0,0,0,.4) !important;
}
body.dark-theme .pricing-card.featured::before,
body.dark-theme .service-card.featured::before {
    background: linear-gradient(90deg, #f47820 0%, #ffc107 100%);
    opacity: 1;
}

/* Card headings — keep bright against dark surface */
body.dark-theme .service-card h3,
body.dark-theme .service-card h4,
body.dark-theme .pricing-card h3,
body.dark-theme .pricing-card h4,
body.dark-theme .testi-card h3,
body.dark-theme .testi-card h4,
body.dark-theme .val-card h3,
body.dark-theme .val-card h4,
body.dark-theme .process-step h3,
body.dark-theme .process-step h4,
body.dark-theme .about-stat-card h3,
body.dark-theme .about-stat-card h4 { color: var(--text-900) !important; }

/* Section titles */
body.dark-theme .section-title,
body.dark-theme h1, body.dark-theme h2,
body.dark-theme h3, body.dark-theme h4 { color: var(--text-900); }

/* feat-showcase text content area */
body.dark-theme .feat-content h3         { color: var(--text-900) !important; }
body.dark-theme .feat-content p          { color: var(--text-700) !important; }
body.dark-theme .feat-list li            { color: var(--text-700) !important; }
body.dark-theme .feat-visual             { background: transparent !important; }

/* Navbar links */
body.dark-theme .nav-link                { color: var(--text-700) !important; }
body.dark-theme .nav-link:hover,
body.dark-theme .nav-link.active         { color: #7eaaff !important; }

/* ── Trending Features cards ── */
body.dark-theme .feat-showcase {
    background: #0d1220 !important;
    border: 1px solid rgba(255,255,255,.07) !important;
    color: var(--text-700) !important;
    box-shadow: 0 2px 16px rgba(0,0,0,.35) !important;
}
body.dark-theme .feat-showcase:hover {
    border-color: rgba(91,138,255,.25) !important;
    box-shadow: 0 10px 36px rgba(91,138,255,.12) !important;
}
body.dark-theme .feat-showcase h3,
body.dark-theme .feat-showcase p,
body.dark-theme .feat-showcase .feat-title,
body.dark-theme .feat-showcase .feat-desc { color: var(--text-700) !important; }

/* ── Contact info cards ── */
body.dark-theme .ci-item {
    background: #0d1220 !important;
    border: 1px solid rgba(255,255,255,.07) !important;
    color: var(--text-700) !important;
}
body.dark-theme .ci-item h4,
body.dark-theme .ci-item p,
body.dark-theme .ci-item a { color: var(--text-700) !important; }
body.dark-theme .ci-item:hover { transform: translateX(3px); }

/* Contact form wrapper */
body.dark-theme .cform {
    background: #0d1220 !important;
    border: 1px solid rgba(255,255,255,.07) !important;
}
body.dark-theme .ftab {
    background: rgba(255,255,255,.04);
    color: var(--text-500);
    border-color: rgba(255,255,255,.07);
}
body.dark-theme .ftab.active {
    background: rgba(91,138,255,.18) !important;
    color: #7eaaff !important;
    border-color: rgba(91,138,255,.3) !important;
}

/* ── FAQ ── */
body.dark-theme .faq-q {
    background: #0d1220 !important;
    color: var(--text-900) !important;
    border-color: rgba(255,255,255,.07) !important;
}
body.dark-theme .faq-q:hover {
    background: rgba(91,138,255,.08) !important;
    border-color: rgba(91,138,255,.22) !important;
    color: var(--text-900) !important;
}
body.dark-theme .faq-q[aria-expanded="true"] {
    background: rgba(91,138,255,.12) !important;
    color: #7eaaff !important;
    border-color: rgba(91,138,255,.25) !important;
}
body.dark-theme .faq-a {
    background: rgba(13,18,32,.6) !important;
    border-color: rgba(255,255,255,.05) !important;
}
body.dark-theme .faq-a p,
body.dark-theme .faq-a li { color: var(--text-700) !important; }

/* ── Pricing Limited Offer banner ── */
body.dark-theme .discount-banner {
    background: linear-gradient(135deg, #1a2a08 0%, #22350a 100%) !important;
    border-color: rgba(180,120,20,.3) !important;
}
body.dark-theme .discount-banner h3,
body.dark-theme .discount-banner p,
body.dark-theme .discount-banner .db-title,
body.dark-theme .discount-banner .db-sub { color: #f0c96a !important; }

/* ── Testimonial nav buttons ── */
body.dark-theme .testi-btn {
    background: #0d1220 !important;
    border-color: rgba(255,255,255,.07) !important;
    color: var(--text-700) !important;
}
body.dark-theme .testi-btn:hover,
body.dark-theme .testi-btn.active {
    background: rgba(91,138,255,.2) !important;
    border-color: rgba(91,138,255,.35) !important;
    color: #7eaaff !important;
}

/* ── Form inputs ── */
body.dark-theme input:not([type="checkbox"]):not([type="radio"]):not(.captcha-check),
body.dark-theme select,
body.dark-theme textarea {
    background: #111928 !important;
    color: var(--text-700) !important;
    border-color: rgba(255,255,255,.08) !important;
}
body.dark-theme input::placeholder,
body.dark-theme textarea::placeholder { color: var(--text-300) !important; }
body.dark-theme select option {
    background: #111928;
    color: var(--text-700);
}
body.dark-theme .fg input:focus,
body.dark-theme .fg select:focus,
body.dark-theme .fg textarea:focus {
    border-color: rgba(91,138,255,.5) !important;
    box-shadow: 0 0 0 3px rgba(91,138,255,.18) !important;
}

/* ── Modals ── */
body.dark-theme .modal-content,
body.dark-theme .mcm-box,
body.dark-theme .email-modal-inner {
    background: #0d1220 !important;
    color: var(--text-700) !important;
    border: 1px solid rgba(255,255,255,.07) !important;
}
body.dark-theme .mcm-box h4,
body.dark-theme .legal-modal-content h2,
body.dark-theme .legal-content-body h3 { color: var(--text-900); }

/* ── Social link hovers ── */
body.dark-theme .social-row a:hover {
    background: rgba(91,138,255,.2) !important;
    border-color: rgba(91,138,255,.35) !important;
    box-shadow: 0 6px 18px rgba(91,138,255,.25) !important;
}
body.dark-theme .footer-social a:hover {
    background: linear-gradient(135deg, #d4631a 0%, #f47820 100%) !important;
    border-color: transparent !important;
    box-shadow: 0 6px 18px rgba(244,120,32,.4) !important;
}

/* ── Trending Features — mockup visual dark overrides ── */

/* Chat mockup */
body.dark-theme .chat-mockup             { background: #111928 !important; border-color: rgba(255,255,255,.07) !important; }
body.dark-theme .cm-messages             { background: #0d1220 !important; }
body.dark-theme .cm-msg.bot              { background: #1a2438 !important; border-color: rgba(255,255,255,.07) !important; color: var(--text-700) !important; }
body.dark-theme .cm-msg.user             { background: rgba(91,138,255,.22) !important; color: #c8d8ff !important; }
body.dark-theme .cm-typing               { background: #1a2438 !important; border-color: rgba(255,255,255,.07) !important; }
body.dark-theme .cm-input                { background: #111928 !important; border-top-color: rgba(255,255,255,.06) !important; }
body.dark-theme .cm-input input          { background: #0d1220 !important; border-color: rgba(255,255,255,.08) !important; color: var(--text-700) !important; }

/* Order tracking mockup */
body.dark-theme .order-mockup            { background: #111928 !important; border-color: rgba(255,255,255,.07) !important; }
body.dark-theme .om-circle               { background: rgba(255,255,255,.06) !important; color: var(--text-500) !important; }
body.dark-theme .om-step small           { color: var(--text-500) !important; }
body.dark-theme .om-eta                  { background: rgba(255,255,255,.04) !important; color: var(--text-500) !important; }
body.dark-theme .om-id                   { color: var(--text-900) !important; }

/* Payment mockup */
body.dark-theme .payment-mockup          { background: #111928 !important; border-color: rgba(255,255,255,.07) !important; }
body.dark-theme .pm-method               { background: rgba(255,255,255,.05) !important; border-color: rgba(255,255,255,.08) !important; color: var(--text-700) !important; }
body.dark-theme .pm-method i             { color: #7eaaff !important; }
body.dark-theme .pm-method:hover         { border-color: rgba(91,138,255,.35) !important; background: rgba(91,138,255,.1) !important; }
body.dark-theme .pm-secure               { color: var(--text-500) !important; }

/* Map mockup */
body.dark-theme .map-mockup              { background: #1a2535 !important; border-color: rgba(255,255,255,.07) !important; }
body.dark-theme .mm-road                 { background: rgba(255,255,255,.07) !important; }
body.dark-theme .mm-block                { background: rgba(255,255,255,.04) !important; }

/* Contact form mockup */
body.dark-theme .form-mockup-card        { background: #111928 !important; border-color: rgba(255,255,255,.07) !important; }
body.dark-theme .fmc-title               { color: #7eaaff !important; }
body.dark-theme .fmc-field label         { color: var(--text-500) !important; }
body.dark-theme .fmc-input               { background: #0d1220 !important; border-color: rgba(255,255,255,.08) !important; color: var(--text-500) !important; }

/* Newsletter mockup */
body.dark-theme .nl-mockup               { background: #111928 !important; border-color: rgba(255,255,255,.07) !important; }
body.dark-theme .nlm-icon                { color: #7eaaff !important; }
body.dark-theme .nl-mockup h4            { color: var(--text-900) !important; }
body.dark-theme .nl-mockup p             { color: var(--text-500) !important; }
body.dark-theme .nlm-form                { border-color: rgba(255,255,255,.08) !important; }
body.dark-theme .nlm-form input          { background: #0d1220 !important; color: var(--text-700) !important; }
body.dark-theme .nlm-stats               { color: var(--text-500) !important; }
body.dark-theme .nlm-stats strong        { color: #7eaaff !important; }

/* Sitemap mockup */
body.dark-theme .sitemap-mockup          { background: transparent !important; }
body.dark-theme .sm-node                 { background: rgba(91,138,255,.14) !important; border-color: rgba(91,138,255,.22) !important; color: #7eaaff !important; }
body.dark-theme .sm-leaf                 { background: rgba(255,255,255,.05) !important; border-color: rgba(255,255,255,.08) !important; color: var(--text-500) !important; }

/* Email picker mockup */
body.dark-theme .email-picker-mockup     { background: #111928 !important; border-color: rgba(255,255,255,.07) !important; }
body.dark-theme .epm-title               { color: var(--text-900) !important; }
body.dark-theme .epm-address             { background: #0d1220 !important; border-color: rgba(255,255,255,.08) !important; color: var(--text-500) !important; }
body.dark-theme .epm-btn.gmail           { background: rgba(234,67,53,.12) !important; border-color: rgba(234,67,53,.2) !important; color: #ff7b6b !important; }
body.dark-theme .epm-btn.outlook         { background: rgba(0,120,212,.12) !important; border-color: rgba(0,120,212,.2) !important; color: #5aadff !important; }
body.dark-theme .epm-btn.yahoo           { background: rgba(114,14,158,.12) !important; border-color: rgba(114,14,158,.2) !important; color: #c466ff !important; }
body.dark-theme .epm-btn.default         { background: rgba(255,255,255,.05) !important; border-color: rgba(255,255,255,.08) !important; color: var(--text-700) !important; }
body.dark-theme .epm-note                { color: var(--text-500) !important; }

/* Call & WhatsApp connect mockup */
body.dark-theme .connect-mockup          { background: #111928 !important; border-color: rgba(255,255,255,.07) !important; }
body.dark-theme .cxm-label               { color: var(--text-700) !important; }
body.dark-theme .cxm-number              { color: var(--text-900) !important; }
body.dark-theme .cxm-preview             { background: rgba(37,211,102,.07) !important; color: var(--text-500) !important; }
body.dark-theme .cxm-btn.call            { background: rgba(91,138,255,.1) !important; border-color: rgba(91,138,255,.2) !important; color: #7eaaff !important; }
body.dark-theme .cxm-divider             { color: var(--text-300) !important; }

/* ── Reset & Base ───────────────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: auto;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-700);
    background: var(--bg-white);
    overflow-x: hidden;
    min-width: 320px;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    font-family: inherit;
    border: none;
    background: none;
}

input,
select,
textarea {
    font-family: inherit;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
}

/* ── Utility ─────────────────────────────────────────────────────── */
/* ── Global hidden enforcement ───────────────────────────────── */
[hidden] {
    display: none !important;
}

.container {
    width: 100%;
    margin: 0 auto;
    padding: 0 clamp(12px, 1.8vw, 28px);
}

.section {
    padding: var(--section-py) 0;
}

.highlight {
    background: var(--grad-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: .95rem;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-sm {
    padding: 9px 20px;
    font-size: .875rem;
}

.btn-lg {
    padding: 15px 36px;
    font-size: 1.05rem;
}

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

.btn-primary {
    background: linear-gradient(135deg, #1a3c8f 0%, #2d5bc4 50%, #1a3c8f 100%);
    background-size: 200% auto;
    color: #fff;
    box-shadow: 0 6px 20px rgba(26, 60, 143, .35);
    transition: background-position .5s ease, transform .3s ease, box-shadow .3s ease;
}

.btn-primary:hover {
    background-position: right center;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(26, 60, 143, .5);
}

.btn-secondary {
    background: linear-gradient(135deg, #f47820 0%, #ffc107 50%, #f47820 100%);
    background-size: 200% auto;
    color: #fff;
    box-shadow: 0 6px 20px rgba(244, 120, 32, .35);
    transition: background-position .5s ease, transform .3s ease, box-shadow .3s ease;
}

.btn-secondary:hover {
    background-position: right center;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(244, 120, 32, .5);
}

.btn-success {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: #fff;
    box-shadow: 0 6px 20px rgba(46, 204, 113, .35);
}

.btn-success:hover {
    transform: translateY(-2px);
}

.btn-danger {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: #fff;
    box-shadow: 0 6px 20px rgba(231, 76, 60, .35);
}

.btn-danger:hover {
    transform: translateY(-2px);
}

.btn-ghost {
    background: rgba(255, 255, 255, .15);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, .4);
    backdrop-filter: blur(8px);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, .25);
    border-color: rgba(255, 255, 255, .7);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--grad-primary);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 6px 20px rgba(26,60,143,.3);
}

.btn-gradient {
    background: var(--grad-mixed);
    color: #fff;
    box-shadow: 0 6px 20px rgba(26, 60, 143, .3);
}

.btn-gradient {
    background: linear-gradient(135deg, #1a3c8f 0%, #f47820 50%, #1a3c8f 100%);
    background-size: 200% auto;
    transition: background-position .5s ease, transform .3s ease, box-shadow .3s ease;
}

.btn-gradient:hover {
    background-position: right center;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(26,60,143,.4);
}

/* ── Section header ──────────────────────────────────────────────── */
.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 64px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(26, 60, 143, .1);
    color: var(--primary);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: .8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    border: 1px solid rgba(26, 60, 143, .2);
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    color: var(--text-900);
    margin-bottom: 14px;
}

.section-sub {
    color: var(--text-500);
    font-size: 1.05rem;
}

/* ══════════════════════════════════════════════════════════════════
   PRELOADER
══════════════════════════════════════════════════════════════════ */
#preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .5s, visibility .5s;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-inner {
    text-align: center;
}

.preloader-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.preloader-logo img {
    height: 120px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 16px rgba(0, 0, 0, .4));
}

.preloader-bar {
    width: 240px;
    height: 4px;
    background: rgba(255, 255, 255, .15);
    border-radius: 4px;
    overflow: hidden;
    margin: 0 auto 20px;
}

.preloader-fill {
    height: 100%;
    width: 0;
    border-radius: 4px;
    background: var(--grad-orange);
    animation: preload 2s ease forwards;
}

@keyframes preload {
    to {
        width: 100%;
    }
}

.preloader-inner>p {
    color: rgba(255, 255, 255, .5);
    font-size: .85rem;
}

/* ══════════════════════════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════════════════════════ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 8px 0;
    transition: background .3s, box-shadow .3s, padding .3s;
}

.navbar.scrolled {
    background: rgba(13, 27, 75, .97);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 24px rgba(0, 0, 0, .25);
    padding: 10px 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.nav-logo-img {
    height: 72px;
    width: auto;
    object-fit: contain;
    display: block;
    transition: opacity .3s;
}

.nav-logo-img:hover {
    opacity: .88;
}

.nav-logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
    gap: 3px;
    padding-left: 2px;
    border-left: 1.5px solid rgba(244, 120, 32, .35);
    margin-left: 4px;
}

.nav-logo-tech {
    font-family: 'Plus Jakarta Sans', 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    background: linear-gradient(90deg, #f47820 0%, #ffb347 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.nav-logo-sol {
    font-family: 'Plus Jakarta Sans', 'Poppins', sans-serif;
    font-size: .7rem;
    font-weight: 300;
    color: rgba(200, 210, 230, .8);
    letter-spacing: .28em;
    text-transform: uppercase;
    line-height: 1;
}

.logo-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: var(--grad-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1rem;
    color: #fff;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-brand {
    font-family: 'Montserrat', sans-serif;
    font-size: .95rem;
    font-weight: 700;
    color: #fff;
}

.logo-sub {
    font-size: .68rem;
    color: rgba(255, 255, 255, .65);
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
}

.nav-link {
    padding: 7px 14px;
    border-radius: 8px;
    color: rgba(255, 255, 255, .8);
    font-size: .9rem;
    font-weight: 500;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: #fff;
    background: linear-gradient(135deg, rgba(255,255,255,.18) 0%, rgba(255,255,255,.08) 100%);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.nav-cta {
    padding: 10px 22px !important;
    font-size: .9rem !important;
}

.theme-toggle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,.4);
    background: rgba(255,255,255,.06);
    color: rgba(255,255,255,.85);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color var(--transition), background var(--transition), color var(--transition), transform .2s ease;
    flex-shrink: 0;
}

.theme-toggle:hover {
    border-color: var(--secondary);
    background: rgba(244,120,32,.15);
    color: var(--secondary);
    transform: rotate(20deg);
}

#themeIcon {
    transition: transform .25s ease;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ══════════════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--grad-hero);
    overflow: hidden;
    padding-top: var(--nav-h);
}

#heroCanvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(ellipse at 70% 50%, rgba(244, 120, 32, .08) 0%, transparent 60%),
        radial-gradient(ellipse at 20% 80%, rgba(45, 91, 196, .15) 0%, transparent 50%);
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 80px 24px;
}

/* Hero content */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(244, 120, 32, .2);
    color: #ffc107;
    border: 1px solid rgba(244, 120, 32, .4);
    padding: 7px 18px;
    border-radius: 50px;
    font-size: .82rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-title {
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.15;
}

.hero-typewriter {
    display: block;
    background: var(--grad-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-typewriter::after {
    content: '|';
    -webkit-text-fill-color: var(--secondary);
    animation: blink .7s steps(1) infinite;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

.hero-subtitle {
    color: rgba(255, 255, 255, .75);
    font-size: 1.05rem;
    margin-bottom: 36px;
    max-width: 540px;
    line-height: 1.7;
}

.hero-subtitle strong {
    color: #fff;
}

.hero-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 0;
}

.hero-stat {
    text-align: center;
    padding: 0 20px;
}

.h-num {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
}

.h-lbl {
    font-size: .75rem;
    color: rgba(255, 255, 255, .6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.h-divider {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, .2);
}

/* Hero visual */
.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-card-stack {
    position: relative;
    width: 440px;
    height: 440px;
}

.hero-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: var(--grad-orange);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 60px rgba(244, 120, 32, .5);
    z-index: 5;
}

.circle-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.circle-sub {
    font-size: .65rem;
    color: rgba(255, 255, 255, .8);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hcard {
    position: absolute;
    background: rgba(255, 255, 255, .12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: .8rem;
    font-weight: 600;
    box-shadow: var(--shadow-md);
    animation: floatCard 4s ease-in-out infinite;
}

.hcard i {
    font-size: 1.4rem;
}

.hcard-1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.hcard-2 {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    animation-delay: .5s;
}

.hcard-3 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 1s;
}

.hcard-4 {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    animation-delay: 1.5s;
}

@keyframes floatCard {

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

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

.hcard-2 {
    animation-name: floatCard2;
}

.hcard-4 {
    animation-name: floatCard4;
}

@keyframes floatCard2 {

    0%,
    100% {
        transform: translateY(-50%) translateX(0)
    }

    50% {
        transform: translateY(-50%) translateX(10px)
    }
}

@keyframes floatCard4 {

    0%,
    100% {
        transform: translateY(-50%) translateX(0)
    }

    50% {
        transform: translateY(-50%) translateX(-10px)
    }
}

/* ══════════════════════════════════════════════════════════════════
   HERO VISUAL — Professional IT Dashboard Mockup
══════════════════════════════════════════════════════════════════ */
.hv-scene {
    position: relative;
    width: 100%;
    max-width: 510px;
    margin: 0 auto;
    padding: 44px 20px;
}

/* Ambient glow orbs */
.hv-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    pointer-events: none;
    z-index: 0;
}
.hv-orb-blue   { width: 320px; height: 320px; background: rgba(91,138,255,.16); top: -40px; left: -60px; }
.hv-orb-orange { width: 230px; height: 230px; background: rgba(244,120,32,.12); bottom: -10px; right: -40px; }

/* Main glass dashboard card */
.hv-main-card {
    position: relative;
    z-index: 2;
    background: rgba(255,255,255,.09);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0,0,0,.45), inset 0 1px 0 rgba(255,255,255,.12);
}

/* Window chrome bar */
.hv-card-chrome {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 18px;
    background: rgba(0,0,0,.22);
    border-bottom: 1px solid rgba(255,255,255,.07);
}
.hv-chrome-dots { display: flex; gap: 6px; }
.hvc-dot { width: 10px; height: 10px; border-radius: 50%; }
.hvc-dot.r { background: #ff5f57; }
.hvc-dot.y { background: #ffbd2e; }
.hvc-dot.g { background: #28c841; }
.hv-chrome-title {
    font-size: .75rem;
    font-weight: 600;
    color: rgba(255,255,255,.48);
    margin-left: 8px;
    letter-spacing: .04em;
}

/* Card body */
.hv-card-body { padding: 22px; }

/* Key metrics row */
.hv-metrics-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 22px;
}
.hv-metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 12px;
    padding: 14px 8px;
}
.hvm-val {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}
.hvm-lbl {
    font-size: .62rem;
    color: rgba(255,255,255,.48);
    text-transform: uppercase;
    letter-spacing: .07em;
    text-align: center;
}

/* Progress bars */
.hv-bars {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 20px;
}
.hv-bar-label {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 6px;
    font-size: .76rem;
    color: rgba(255,255,255,.65);
}
.hv-bar-label i { font-size: .78rem; opacity: .8; width: 14px; text-align: center; }
.hv-bar-pct { margin-left: auto; font-size: .74rem; font-weight: 700; color: rgba(255,255,255,.9); }
.hv-bar-track { height: 6px; background: rgba(255,255,255,.1); border-radius: 50px; overflow: hidden; }
.hv-bar-fill {
    height: 100%;
    border-radius: 50px;
    width: 0;
    animation: hvBarGrow 1.6s cubic-bezier(.25,.8,.25,1) forwards;
    animation-delay: .9s;
}
@keyframes hvBarGrow { to { width: var(--w, 80%); } }
.hv-bar-blue   { background: linear-gradient(90deg, #5b8aff 0%, #818cf8 100%); }
.hv-bar-purple { background: linear-gradient(90deg, #a855f7 0%, #c084fc 100%); }
.hv-bar-orange { background: linear-gradient(90deg, #f47820 0%, #ffc107 100%); }
.hv-bar-green  { background: linear-gradient(90deg, #10b981 0%, #34d399 100%); }

/* Tech stack icon pills */
.hv-tech-row { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.hv-tech-pill {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: background .2s, transform .2s, border-color .2s;
}
.hv-tech-pill:hover {
    background: rgba(91,138,255,.18);
    border-color: rgba(91,138,255,.35);
    transform: translateY(-3px);
}

/* Floating notification chips */
.hv-chip {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,.11);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 50px;
    padding: 10px 16px 10px 10px;
    box-shadow: 0 8px 32px rgba(0,0,0,.32);
    white-space: nowrap;
    z-index: 3;
}
.hv-chip-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .88rem;
    flex-shrink: 0;
}
.hv-chip-text { display: flex; flex-direction: column; gap: 1px; }
.hv-chip-text strong { font-size: .78rem; color: #fff; line-height: 1.2; }
.hv-chip-text span   { font-size: .67rem; color: rgba(255,255,255,.55); }

.hv-chip-deploy {
    top: 14px; right: -4px;
    animation: hvFloat1 3s ease-in-out infinite;
}
.hv-chip-deploy .hv-chip-icon { background: rgba(40,200,65,.2); color: #28c841; }

.hv-chip-client {
    bottom: 14px; left: -4px;
    animation: hvFloat2 3.5s ease-in-out infinite;
}
.hv-chip-client .hv-chip-icon { background: rgba(255,193,7,.2); color: #ffc107; }

@keyframes hvFloat1 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@keyframes hvFloat2 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(9px); } }

/* Scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, .5);
    font-size: .72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-line {
    width: 2px;
    height: 44px;
    background: rgba(255, 255, 255, .15);
    border-radius: 2px;
    overflow: hidden;
}

.scroll-dot {
    width: 100%;
    height: 40%;
    background: rgba(255, 255, 255, .7);
    border-radius: 2px;
    animation: scrollDot 1.8s ease-in-out infinite;
}

@keyframes scrollDot {
    0% {
        transform: translateY(-100%)
    }

    100% {
        transform: translateY(280%)
    }
}

/* ══════════════════════════════════════════════════════════════════
   TICKER
══════════════════════════════════════════════════════════════════ */
.ticker-strip {
    position: relative;
    display: flex;
    align-items: stretch;
    background: linear-gradient(90deg, #0d1b4b 0%, #1a3c8f 35%, #1565c0 65%, #0d1b4b 100%);
    background-size: 200% auto;
    animation: ticker-bg-shift 8s linear infinite alternate;
    overflow: hidden;
    height: 48px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

@keyframes ticker-bg-shift {
    from { background-position: 0% center; }
    to   { background-position: 100% center; }
}

.ticker-label {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 0 18px;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .1em;
    color: #fff;
    text-transform: uppercase;
    background: rgba(255, 255, 255, .12);
    border-right: 1px solid rgba(255, 255, 255, .18);
    white-space: nowrap;
    z-index: 2;
}

.ticker-label i { color: var(--accent); font-size: .8rem; }

.ticker-viewport {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.ticker-viewport::before,
.ticker-viewport::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px;
    z-index: 1;
    pointer-events: none;
}

.ticker-viewport::before {
    left: 0;
    background: linear-gradient(90deg, #0d1b4b, transparent);
}

.ticker-viewport::after {
    right: 0;
    background: linear-gradient(-90deg, #0d1b4b, transparent);
}

.ticker-track {
    display: flex;
    align-items: center;
    width: max-content;
    height: 100%;
    animation: ticker 35s linear infinite;
}

.ticker-track:hover {
    animation-play-state: paused;
}

.ticker-track span {
    padding: 0 20px;
    font-size: .82rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .92);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: .01em;
    transition: color .2s ease;
}

.ticker-track span:hover { color: var(--accent); }
.ticker-track span i { font-size: .78rem; color: rgba(255, 255, 255, .65); }
.ticker-track span:hover i { color: var(--accent); }

.ticker-track .ticker-sep {
    padding: 0 4px;
    font-size: .5rem;
    color: rgba(255, 255, 255, .3);
    flex: 0 0 auto;
    display: flex;
    align-items: center;
}

@keyframes ticker {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════════════════════════════
   SERVICES
══════════════════════════════════════════════════════════════════ */
.services-section {
    background: var(--bg-light);
}

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

.service-card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 32px 24px;
    border: 1.5px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--grad-primary);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

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

.service-card.featured {
    border-color: var(--secondary);
    background: linear-gradient(135deg, #fff9f5, #fff);
}

.service-card.featured::before {
    background: var(--grad-orange);
    opacity: 1;
}

.sc-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--grad-orange);
    color: #fff;
    font-size: .7rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
}

.sc-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 1.4rem;
    background: rgba(100, 120, 200, .1);
}

.sc-icon i {
    color: var(--ic, #4a90d9);
}

.service-card h3 {
    font-size: 1.05rem;
    margin-bottom: 10px;
    color: var(--text-900);
}

.service-card p {
    color: var(--text-500);
    font-size: .88rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.sc-list {
    margin-bottom: 20px;
}

.sc-list li {
    font-size: .82rem;
    color: var(--text-500);
    padding: 3px 0;
    display: flex;
    align-items: center;
    gap: 7px;
}

.sc-list li i {
    color: var(--success);
    font-size: .75rem;
    flex-shrink: 0;
}

.sc-link {
    font-size: .85rem;
    font-weight: 600;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
}

.sc-link:hover {
    color: var(--secondary);
    gap: 9px;
}

/* ══════════════════════════════════════════════════════════════════
   STATS
══════════════════════════════════════════════════════════════════ */
.stats-section {
    background: var(--grad-hero);
    padding: 70px 0;
}

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

.stat-item {}

.stat-icon {
    font-size: 2.2rem;
    color: var(--secondary);
    margin-bottom: 12px;
}

.stat-value {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: .85rem;
    color: rgba(255, 255, 255, .6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ══════════════════════════════════════════════════════════════════
   WHY CHOOSE US
══════════════════════════════════════════════════════════════════ */
.why-section {
    background: #fff;
}

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

.why-content .section-badge {
    display: inline-flex;
}

.why-content .section-title {
    text-align: left;
    margin-bottom: 16px;
}

.why-intro {
    color: var(--text-500);
    margin-bottom: 32px;
}

.why-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.wf-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.wf-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: var(--radius-sm);
    background: rgba(26, 60, 143, .1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.wf-text h4 {
    font-size: .95rem;
    margin-bottom: 4px;
    color: var(--text-900);
}

.wf-text p {
    font-size: .85rem;
    color: var(--text-500);
}

/* Tech bubbles */
.why-visual {}

.tech-bubble-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.tb-item {
    background: var(--bg-light);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    padding: 18px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: .78rem;
    font-weight: 600;
    color: var(--text-700);
    transition: var(--transition);
}

.tb-item:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.tb-item i {
    font-size: 1.8rem;
}

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

.why-badge {
    flex: 1;
    background: var(--grad-primary);
    color: #fff;
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .85rem;
    font-weight: 600;
}

.why-badge i {
    font-size: 1.2rem;
    color: var(--accent);
}

/* ══════════════════════════════════════════════════════════════════
   TRENDING FEATURES
══════════════════════════════════════════════════════════════════ */
.features-section {
    background: var(--bg-light);
}

.feat-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 60px;
    margin-bottom: 32px;
    border: 1.5px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    min-width: 0;
}

.feat-showcase > * {
    min-width: 0;
}

.feat-visual {
    overflow: hidden;
    width: 100%;
}

.feat-showcase::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--grad-orange);
    opacity: 0;
    transition: var(--transition);
}

.feat-showcase:hover {
    box-shadow: var(--shadow-lg);
    border-color: rgba(26, 60, 143, .15);
}

.feat-showcase:hover::before { opacity: 1; }

.feat-showcase.reverse {
    grid-template-columns: 1fr 1fr;
}

.feat-showcase.reverse .feat-visual {
    order: -1;
}

/* ── 3-per-row compact features grid ── */
.feat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feat-grid .feat-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    padding: 28px 22px;
    margin-bottom: 0;
    gap: 20px;
    min-width: 0;
}

.feat-grid .feat-showcase > * {
    min-width: 0;
}

.feat-grid .feat-showcase.reverse .feat-visual {
    order: 0;
}

.feat-grid .feat-showcase .feat-visual {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    overflow: hidden;
    width: 100%;
}

.feat-grid .feat-showcase .feat-content h3 {
    font-size: 1.2rem;
}

.feat-grid .feat-showcase .feat-content p {
    font-size: .87rem;
    margin-bottom: 14px;
}

.feat-grid .feat-showcase .feat-list {
    margin-bottom: 14px;
}

.feat-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(108, 99, 255, .1);
    color: #6c63ff;
    background-color: rgba(var(--tc), .1);
    color: var(--tc);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: .78rem;
    font-weight: 600;
    margin-bottom: 16px;
    border: 1px solid rgba(var(--tc), .2);
}

.feat-content h3 {
    font-size: 1.7rem;
    color: var(--text-900);
    margin-bottom: 14px;
}

.feat-content p {
    color: var(--text-500);
    margin-bottom: 24px;
    line-height: 1.7;
}

.feat-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
}

.feat-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .9rem;
    color: var(--text-700);
}

.feat-list li i {
    color: var(--primary);
    flex-shrink: 0;
}

/* ── Chatbot Mockup ── */
.chat-mockup {
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    border: 1px solid var(--border);
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
}

.cm-header {
    background: var(--grad-primary);
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.cm-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
}

.cm-info {
    display: flex;
    align-items: center;
    gap: 6px;
}

.cm-info strong {
    color: #fff;
    font-size: .9rem;
}

.cm-info small {
    color: rgba(255, 255, 255, .7);
    font-size: .75rem;
}

.online-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2ecc71;
    flex-shrink: 0;
    animation: pulse 2s ease infinite;
}

@keyframes pulse {

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

    50% {
        transform: scale(1.3);
        opacity: .7
    }
}

.cm-messages {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-height: 160px;
    background: #f8fafc;
}

.cm-msg {
    padding: 10px 14px;
    border-radius: 14px;
    font-size: .82rem;
    max-width: 80%;
    line-height: 1.5;
}

.cm-msg.bot {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 0 14px 14px 14px;
    align-self: flex-start;
}

.cm-msg.user {
    background: var(--grad-primary);
    color: #fff;
    border-radius: 14px 0 14px 14px;
    align-self: flex-end;
}

.cm-typing {
    display: flex;
    gap: 4px;
    padding: 12px 14px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 0 14px 14px 14px;
    width: fit-content;
}

.cm-typing span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--text-300);
    animation: typing 1.2s ease infinite;
}

.cm-typing span:nth-child(2) {
    animation-delay: .2s;
}

.cm-typing span:nth-child(3) {
    animation-delay: .4s;
}

@keyframes typing {

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

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

.cm-input {
    display: flex;
    padding: 12px;
    gap: 8px;
    border-top: 1px solid var(--border);
}

.cm-input input {
    flex: 1;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 8px 14px;
    font-size: .82rem;
    outline: none;
}

.cm-input button {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--grad-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .8rem;
}

/* ── Order Mockup ── */
.order-mockup {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 28px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border);
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
}

.om-id {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
    font-size: .85rem;
    font-weight: 600;
}

.om-status {
    background: rgba(46, 204, 113, .15);
    color: #27ae60;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: .75rem;
}

.om-track {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 20px;
}

.om-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex: 0;
}

.om-circle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    color: var(--text-300);
    transition: var(--transition);
    flex-shrink: 0;
}

.om-step.done .om-circle {
    background: var(--success);
    color: #fff;
}

.om-step.active .om-circle {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 0 0 4px rgba(26, 60, 143, .2);
}

.om-step small {
    font-size: .68rem;
    color: var(--text-300);
    white-space: nowrap;
}

.om-step.done small,
.om-step.active small {
    color: var(--text-700);
}

.om-line {
    flex: 1;
    height: 2px;
    background: var(--border);
}

.om-line.done {
    background: var(--success);
}

.om-line.active {
    background: linear-gradient(90deg, var(--success), var(--border));
}

.om-eta {
    font-size: .8rem;
    color: var(--text-500);
    text-align: center;
    background: var(--bg-light);
    padding: 8px;
    border-radius: 8px;
}

/* ── Payment Mockup ── */
.payment-mockup {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 28px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border);
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
}

.pm-methods {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.pm-method {
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    padding: 14px 8px;
    text-align: center;
    border: 1.5px solid var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-size: .72rem;
    font-weight: 600;
    color: var(--text-700);
    cursor: pointer;
    transition: var(--transition);
}

.pm-method i {
    font-size: 1.2rem;
    color: var(--primary);
}

.pm-method:hover {
    border-color: var(--primary);
    background: rgba(26, 60, 143, .06);
}

.pm-logos {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 16px;
    justify-content: center;
}

.pm-logo {
    padding: 5px 12px;
    border-radius: 6px;
    font-size: .72rem;
    font-weight: 700;
    color: #fff;
}

.pm-logo.r {
    background: #072654;
}

.pm-logo.p {
    background: #5f259f;
}

.pm-logo.g {
    background: #1a73e8;
}

.pm-logo.t {
    background: #00baf2;
}

.pm-secure {
    text-align: center;
    font-size: .78rem;
    color: var(--success);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px;
    background: rgba(46, 204, 113, .08);
    border-radius: 8px;
}

/* ── Map Mockup ── */
.map-mockup {
    width: 100%;
    height: 280px;
    border-radius: var(--radius-md);
    background: #e8f0d8;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border);
}

.mm-grid {
    position: absolute;
    inset: 0;
}

.mm-road {
    position: absolute;
    background: #fff;
}

.mm-road.h {
    left: 0;
    right: 0;
    height: 12px;
}

.mm-road.v {
    top: 0;
    bottom: 0;
    width: 12px;
}

.mm-block {
    position: absolute;
    background: #c8d8b0;
    border-radius: 3px;
}

.mm-pin {
    position: absolute;
    top: 30%;
    left: 45%;
    transform: translate(-50%, -100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}

.mm-pin i {
    font-size: 2.4rem;
    color: var(--danger);
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, .3));
}

.mm-label {
    background: #fff;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: .72rem;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: var(--shadow-md);
    margin-top: 4px;
}

.mm-controls {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mm-controls button {
    width: 28px;
    height: 28px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: .9rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: default;
}

/* ── Form Mockup Card ── */
.form-mockup-card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border);
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
}

.fmc-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: .9rem;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
}

.fmc-field {
    margin-bottom: 12px;
}

.fmc-field label {
    font-size: .72rem;
    font-weight: 600;
    color: var(--text-500);
    display: block;
    margin-bottom: 4px;
}

.fmc-input {
    background: var(--bg-light);
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: 9px 12px;
    font-size: .8rem;
    color: var(--text-700);
}

.fmc-select {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fmc-area {
    height: 52px;
    overflow: hidden;
    color: var(--text-300);
}

.fmc-btn {
    width: 100%;
    background: var(--grad-primary);
    color: #fff;
    border-radius: 8px;
    padding: 11px;
    font-size: .85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-top: 4px;
}

/* ── Newsletter Mockup ── */
.nl-mockup {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 32px 24px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border);
    text-align: center;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

.nlm-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.nl-mockup h4 {
    font-size: 1rem;
    margin-bottom: 6px;
    color: var(--text-900);
}

.nl-mockup p {
    font-size: .8rem;
    color: var(--text-500);
    margin-bottom: 16px;
}

.nlm-form {
    display: flex;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 16px;
}

.nlm-form input {
    flex: 1;
    padding: 9px 12px;
    font-size: .8rem;
    border: none;
    outline: none;
}

.nlm-form button {
    background: var(--grad-primary);
    color: #fff;
    padding: 0 14px;
    font-size: .8rem;
    font-weight: 600;
}

.nlm-stats {
    display: flex;
    justify-content: center;
    gap: 24px;
    font-size: .8rem;
    color: var(--text-500);
}

.nlm-stats strong {
    color: var(--primary);
}

/* ── Sitemap Mockup ── */
.sitemap-mockup {
    padding: 20px;
}

.sm-node {
    background: var(--grad-primary);
    color: #fff;
    border-radius: 8px;
    padding: 8px 14px;
    font-size: .78rem;
    font-weight: 600;
    display: inline-block;
    text-align: center;
}

.sm-node.root {
    display: block;
    margin: 0 auto 20px;
    text-align: center;
    font-size: .9rem;
    max-width: 80px;
}

.sm-row {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.sm-branch {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.sm-branch>.sm-node {
    background: rgba(26, 60, 143, .12);
    color: var(--primary);
}

.sm-children {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.sm-leaf {
    background: var(--bg-mid);
    color: var(--text-700);
    border-radius: 6px;
    padding: 5px 10px;
    font-size: .72rem;
    font-weight: 500;
    text-align: center;
    border: 1px solid var(--border);
}

a.sm-node,
a.sm-leaf {
    text-decoration: none;
    cursor: pointer;
    transition: opacity .2s, box-shadow .2s;
}

a.sm-node:hover {
    opacity: .8;
    box-shadow: 0 2px 8px rgba(26, 60, 143, .25);
}

a.sm-leaf:hover {
    background: rgba(26, 60, 143, .12);
    color: var(--primary);
    border-color: rgba(26, 60, 143, .3);
}

/* ── Email Picker Mockup ── */
.email-picker-mockup {
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border);
    padding: 22px 20px 18px;
    max-width: 300px;
    margin: 0 auto;
    width: 100%;
}

.epm-title {
    font-size: .88rem;
    font-weight: 700;
    color: var(--text-900);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.epm-title i {
    color: #e84393;
}

.epm-address {
    font-size: .74rem;
    color: var(--text-500);
    background: var(--bg-light);
    border-radius: 6px;
    padding: 6px 10px;
    margin-bottom: 16px;
    border: 1px solid var(--border);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.epm-providers {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 14px;
}

.epm-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 12px 8px;
    border-radius: 10px;
    font-size: .75rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform .2s;
    border: 1.5px solid transparent;
}

.epm-btn:hover {
    transform: translateY(-2px);
}

.epm-btn i {
    font-size: 1.3rem;
}

.epm-btn.gmail {
    background: #fff3f3;
    color: #ea4335;
    border-color: rgba(234, 67, 53, .2);
}

.epm-btn.outlook {
    background: #f0f4ff;
    color: #0078d4;
    border-color: rgba(0, 120, 212, .2);
}

.epm-btn.yahoo {
    background: #f5f0ff;
    color: #720e9e;
    border-color: rgba(114, 14, 158, .2);
}

.epm-btn.default {
    background: var(--bg-light);
    color: var(--text-700);
    border-color: var(--border);
}

.epm-note {
    font-size: .72rem;
    color: var(--text-500);
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: center;
}

.epm-note i {
    color: #2ecc71;
}

/* ── Phone & WhatsApp Connect Mockup ── */
.connect-mockup {
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border);
    padding: 22px 20px;
    max-width: 280px;
    margin: 0 auto;
    width: 100%;
}

.cxm-phone,
.cxm-wa {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cxm-label {
    font-size: .78rem;
    font-weight: 700;
    color: var(--text-700);
    display: flex;
    align-items: center;
    gap: 6px;
}

.cxm-label i {
    font-size: .9rem;
}

.cxm-phone .cxm-label i {
    color: var(--primary);
}

.cxm-wa .cxm-label i {
    color: #25d366;
}

.cxm-number {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-900);
    letter-spacing: .03em;
}

.cxm-preview {
    font-size: .75rem;
    color: var(--text-500);
    font-style: italic;
    background: #f0fdf4;
    border-left: 3px solid #25d366;
    padding: 6px 10px;
    border-radius: 0 6px 6px 0;
}

.cxm-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 50px;
    font-size: .82rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
}

.cxm-btn.call {
    background: rgba(26, 60, 143, .1);
    color: var(--primary);
    border: 1.5px solid rgba(26, 60, 143, .25);
}

.cxm-btn.call:hover {
    background: var(--primary);
    color: #fff;
}

.cxm-btn.wa {
    background: #25d366;
    color: #fff;
}

.cxm-btn.wa:hover {
    background: #1da851;
}

.cxm-divider {
    text-align: center;
    font-size: .75rem;
    color: var(--text-500);
    font-weight: 600;
    margin: 10px 0;
    position: relative;
}

.cxm-divider::before,
.cxm-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: var(--border);
}

.cxm-divider::before {
    left: 0;
}

.cxm-divider::after {
    right: 0;
}

/* feat-grid-2 override — always 2 col */
.feat-grid-2 {
    grid-template-columns: 1fr 1fr;
    margin-top: 24px;
}

/* ══════════════════════════════════════════════════════════════════
   PRICING
══════════════════════════════════════════════════════════════════ */
.pricing-section {
    background: var(--bg-light);
}

.discount-banner {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    background: linear-gradient(135deg, #fff3e0, #fff8f0);
    border: 2px solid var(--secondary);
    border-radius: var(--radius-md);
    padding: 14px 24px;
    margin-top: 24px;
    font-size: .9rem;
}

.disc-banner-text {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.disc-item {
    white-space: nowrap;
}

.disc-sep {
    color: var(--text-300);
    font-weight: 600;
}

.discount-banner i {
    color: var(--secondary);
    font-size: 1.1rem;
}

.discount-banner code {
    background: var(--secondary);
    color: #fff;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: .85rem;
}

.countdown-timer {
    background: var(--danger);
    color: #fff;
    padding: 4px 12px;
    border-radius: 6px;
    font-weight: 700;
    font-size: .85rem;
    font-family: 'Montserrat', sans-serif;
}

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

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

.pricing-grid-2 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 860px;
    margin: 0 auto;
}

/* Pricing Tabs */
.pricing-tabs {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.ptab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 28px;
    border-radius: 50px;
    border: 2px solid var(--border);
    background: transparent;
    color: var(--text-500);
    font-family: 'Poppins', sans-serif;
    font-size: .9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.ptab:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.ptab.active {
    background: var(--grad-primary);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 4px 16px rgba(26, 60, 143, .25);
}

.pricing-category {
    display: block;
    border: 2.5px solid transparent;
    border-radius: var(--radius-lg);
    padding: 28px;
    margin-bottom: 32px;
    transition: border-color .3s ease, box-shadow .3s ease;
}

.pricing-category.active {
    border-color: var(--primary);
    box-shadow: 0 0 0 8px rgba(26, 60, 143, .05);
}

.pricing-section-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .9rem;
    font-weight: 700;
    color: var(--text-700);
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--border);
}

.pricing-section-label i {
    color: var(--primary);
    font-size: 1rem;
}

.pricing-card {
    background: #fff;
    border-radius: var(--radius-md);
    border: 1.5px solid var(--border);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    position: relative;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--grad-primary);
    opacity: 0;
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(26, 60, 143, .2);
}

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

.pricing-card.featured {
    border-color: var(--primary);
    box-shadow: 0 8px 30px rgba(26, 60, 143, .15);
}

.pricing-card.enterprise {
    border-color: var(--secondary);
}

.pc-popular {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--grad-primary);
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    padding: 6px 14px 6px 20px;
    clip-path: polygon(14% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.pc-cat-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    border-radius: 50px;
    margin: 14px 16px 0;
}

.pc-cat-website {
    background: rgba(26, 60, 143, .1);
    color: var(--primary);
    border: 1px solid rgba(26, 60, 143, .25);
}

.pc-cat-app {
    background: rgba(244, 120, 32, .1);
    color: var(--secondary);
    border: 1px solid rgba(244, 120, 32, .25);
}

.pc-header {
    padding: 32px 24px 20px;
    text-align: center;
}

.pc-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-sm);
    background: rgba(26, 60, 143, .1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin: 0 auto 12px;
}

.pricing-card.featured .pc-icon {
    background: var(--grad-primary);
    color: #fff;
}

.pricing-card.enterprise .pc-icon {
    background: var(--grad-orange);
    color: #fff;
}

.pc-header h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--text-900);
}

.pc-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    justify-content: center;
    margin-bottom: 4px;
}

.pc-orig {
    font-size: .95rem;
    color: var(--text-300);
    text-decoration: line-through;
}

.pc-curr {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary);
}

.pc-curr:not(.custom-p)::after {
    content: '*';
    font-size: .9rem;
    vertical-align: super;
    font-weight: 700;
    opacity: .75;
}

.pricing-card.featured .pc-curr {
    color: var(--secondary);
}

.custom-p {
    font-size: 2rem !important;
    color: var(--secondary) !important;
}

.pc-range {
    font-size: .78rem;
    color: var(--text-300);
}

.pc-features {
    padding: 0 24px 24px;
    flex: 1;
}

.pc-features li {
    font-size: .84rem;
    padding: 7px 0;
    display: flex;
    align-items: center;
    gap: 9px;
    border-bottom: 1px solid var(--bg-light);
}

.pc-features li:last-child {
    border-bottom: none;
}

.pc-features li.yes i {
    color: var(--success);
}

.pc-features li.no {
    color: var(--text-300);
}

.pc-features li.no i {
    color: var(--border);
}

.pricing-card .btn {
    margin: 0 24px 24px;
    justify-content: center;
}

.pricing-note {
    text-align: center;
    color: var(--text-300);
    font-size: .82rem;
    margin-top: 32px;
}

.pricing-note a {
    color: var(--primary);
    font-weight: 600;
}

/* ══════════════════════════════════════════════════════════════════
   PROCESS
══════════════════════════════════════════════════════════════════ */
.process-section {
    background: #fff;
}

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

.process-steps::before {
    content: '';
    position: absolute;
    top: 56px;
    left: calc(100%/12);
    right: calc(100%/12);
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    z-index: 0;
}

.ps-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 8px;
    position: relative;
    z-index: 1;
}

.ps-num {
    font-family: 'Montserrat', sans-serif;
    font-size: .72rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.ps-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--grad-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 16px;
    box-shadow: 0 6px 20px rgba(26, 60, 143, .3);
    border: 4px solid #fff;
}

.ps-item h3 {
    font-size: .88rem;
    margin-bottom: 8px;
    color: var(--text-900);
}

.ps-item p {
    font-size: .78rem;
    color: var(--text-500);
    line-height: 1.5;
}

.ps-connector {
    display: none;
}

/* ══════════════════════════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════════════════════════ */
.testimonials-section {
    background: var(--bg-light);
}

.testimonials-wrapper {
    position: relative;
    overflow: hidden;
}

.testi-track {
    display: flex;
    gap: 24px;
    transition: transform .5s cubic-bezier(.25, .46, .45, .94);
    will-change: transform;
}

.testi-card {
    min-width: calc(33.333% - 16px);
    flex: 0 0 calc(33.333% - 16px);
    background: #fff;
    border-radius: var(--radius-md);
    padding: 32px;
    border: 1.5px solid var(--border);
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.testi-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--grad-mixed);
    opacity: 0;
    transition: var(--transition);
}

.testi-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: rgba(26, 60, 143, .15);
}

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

.testi-stars {
    color: var(--accent);
    font-size: 1rem;
    margin-bottom: 14px;
    letter-spacing: 2px;
}

.testi-card p {
    color: var(--text-500);
    font-size: .9rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
}

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

.ta-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--grad-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .9rem;
    flex-shrink: 0;
}

.ta-info strong {
    display: block;
    font-size: .9rem;
    color: var(--text-900);
}

.ta-info span {
    font-size: .78rem;
    color: var(--text-300);
}

.testi-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

.testi-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fff;
    border: 1.5px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: var(--transition);
}

.testi-btn:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.testi-dots {
    display: flex;
    gap: 8px;
}

.testi-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: var(--transition);
}

.testi-dot.active {
    background: var(--primary);
    width: 24px;
    border-radius: 4px;
}

/* ══════════════════════════════════════════════════════════════════
   FAQ
══════════════════════════════════════════════════════════════════ */
.faq-section {
    background: #fff;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.faq-item {
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(26, 60, 143, .25);
}

.faq-q {
    width: 100%;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-size: .95rem;
    font-weight: 600;
    color: var(--text-900);
    text-align: left;
    background: #fff;
    transition: var(--transition);
}

.faq-q:hover {
    background: linear-gradient(135deg, rgba(26,60,143,.06) 0%, rgba(45,91,196,.1) 100%);
    border-color: rgba(26,60,143,.15);
    color: var(--primary);
}

.faq-q[aria-expanded="true"] {
    color: var(--primary);
    background: rgba(26, 60, 143, .04);
}

.faq-q i {
    font-size: .8rem;
    color: var(--primary);
    flex-shrink: 0;
    transition: transform var(--transition);
}

.faq-q[aria-expanded="true"] i {
    transform: rotate(45deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .35s ease;
}

.faq-a.open {
    max-height: 200px;
}

.faq-a p {
    padding: 0 24px 20px;
    color: var(--text-500);
    font-size: .9rem;
    line-height: 1.7;
}

/* ══════════════════════════════════════════════════════════════════
   CONTACT
══════════════════════════════════════════════════════════════════ */
.contact-section {
    background: var(--bg-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 48px;
    margin-bottom: 0;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ci-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #fff;
    border-radius: var(--radius-md);
    padding: 20px;
    border: 1.5px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.ci-item::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: var(--grad-primary);
    opacity: 0;
    transition: var(--transition);
    border-radius: var(--radius-md) 0 0 var(--radius-md);
}

.ci-item:hover::before { opacity: 1; }

.ci-item:hover {
    border-color: rgba(26, 60, 143, .2);
    box-shadow: var(--shadow-md);
    transform: translateX(3px);
}

.ci-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: rgba(26, 60, 143, .1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.ci-text h4 {
    font-size: .85rem;
    margin-bottom: 4px;
    color: var(--text-900);
}

.ci-text a,
.ci-text p {
    font-size: .88rem;
    color: var(--text-500);
}

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

.ci-social h4 {
    font-size: .85rem;
    margin-bottom: 12px;
    color: var(--text-900);
}

.social-row {
    display: flex;
    gap: 10px;
}

.social-row a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--bg-light);
    color: var(--text-700);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid var(--border);
    font-size: .9rem;
    transition: var(--transition);
}

.social-row a:hover {
    background: var(--grad-primary);
    color: #fff;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(26,60,143,.35);
}

/* Contact Forms */
.form-tabs {
    display: flex;
    background: var(--bg-light);
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
    overflow: hidden;
}

.ftab {
    flex: 1;
    padding: 14px;
    font-size: .88rem;
    font-weight: 600;
    color: var(--text-500);
    transition: var(--transition);
    border-bottom: 2px solid var(--border);
}

.ftab.active {
    color: var(--primary);
    background: #fff;
    border-bottom-color: var(--primary);
}

.ftab:hover:not(.active) {
    background: rgba(26, 60, 143, .05);
    color: var(--primary);
}

.cform {
    display: none;
    background: #fff;
    border: 1.5px solid var(--border);
    border-top: none;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    padding: 28px;
    flex-direction: column;
    gap: 16px;
}

.cform.active {
    display: flex;
}

.cform-submit {
    align-self: flex-start;
    min-width: 180px;
}

@media (max-width: 600px) {
    .cform-submit {
        width: 100%;
        justify-content: center;
        min-width: unset;
    }
}

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

.fg {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.fg label {
    font-size: .82rem;
    font-weight: 600;
    color: var(--text-700);
}

.fg input,
.fg select,
.fg textarea {
    padding: 11px 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: .88rem;
    color: var(--text-700);
    outline: none;
    transition: var(--transition);
    background: #fff;
}

.fg input:focus,
.fg select:focus,
.fg textarea:focus {
    border-color: var(--primary-lt);
    box-shadow: 0 0 0 3px rgba(45,91,196,.15), inset 0 1px 0 rgba(45,91,196,.06);
    outline: none;
}

.fg textarea {
    resize: vertical;
    min-height: 100px;
}

.ferr {
    font-size: .75rem;
    color: var(--danger);
    min-height: 18px;
}

.fg input.error,
.fg select.error,
.fg textarea.error {
    border-color: var(--danger);
}

.form-success {
    display: none;
    align-items: center;
    gap: 10px;
    background: rgba(46, 204, 113, .1);
    border: 1.5px solid rgba(46, 204, 113, .3);
    color: #27ae60;
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    font-size: .88rem;
    font-weight: 600;
    margin-top: 8px;
}

.form-success:not([hidden]) {
    display: flex;
}

.form-success i {
    font-size: 1.2rem;
}

/* Map Embed */
.map-embed h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
    color: var(--text-900);
}

.map-frame {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1.5px solid var(--border);
}

/* Compact inline map inside contact-info */
.ci-map {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1.5px solid var(--border);
    box-shadow: var(--shadow-sm);
    background: #fff;
}

.ci-map-head {
    font-size: .82rem;
    font-weight: 700;
    color: var(--primary);
    padding: 8px 14px;
    background: rgba(26, 60, 143, .06);
    display: flex;
    align-items: center;
    gap: 7px;
    border-bottom: 1px solid var(--border);
}

.ci-map .map-frame {
    border-radius: 0;
    box-shadow: none;
    border: none;
}

.ci-map .map-frame iframe {
    display: block;
    width: 100%;
    height: 220px;
    border: 0;
}

.ci-map-link {
    padding: 7px 14px;
    font-size: .78rem;
    background: var(--bg-light);
    border-top: 1px solid var(--border);
}

.ci-map-link a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.ci-map-link a:hover {
    text-decoration: underline;
}

/* ══════════════════════════════════════════════════════════════════
   NEWSLETTER
══════════════════════════════════════════════════════════════════ */
.newsletter-section {
    background: var(--grad-hero);
    padding: 80px 0;
}

.nl-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.nl-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nl-icon {
    font-size: 3rem;
    color: var(--accent);
    flex-shrink: 0;
}

.nl-left h3 {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 6px;
}

.nl-left p {
    color: rgba(255, 255, 255, .7);
    font-size: .9rem;
}

.nl-form {
    flex: 1;
    min-width: 320px;
}

/* Newsletter — single inline row: email + captcha + subscribe */
.nl-single-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 10px;
    width: 100%;
}

.nl-single-row > input[type="email"] {
    flex: 1;
    min-width: 160px;
    height: 44px;
    padding: 0 16px;
    border-radius: var(--radius-sm);
    border: 1.5px solid rgba(255, 255, 255, .3);
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: .875rem;
    outline: none;
}

.nl-single-row > input[type="email"]::placeholder {
    color: rgba(255, 255, 255, .5);
}

.nl-single-row .captcha-nl {
    flex: 0 0 auto;
    margin: 0;
}

.nl-single-row > button[type="submit"] {
    flex: 0 0 auto;
    height: 44px;
    padding: 0 22px;
    background: var(--grad-orange);
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: .875rem;
    cursor: pointer;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: opacity .2s;
}

.nl-single-row > button[type="submit"]:hover:not(:disabled) { opacity: .88; }
.nl-single-row > button[type="submit"]:disabled             { opacity: .5; cursor: not-allowed; }

.nl-privacy {
    color: rgba(255, 255, 255, .5);
    font-size: .78rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nl-success {
    color: var(--accent);
    font-size: .88rem;
    font-weight: 600;
    display: none;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}

.nl-success:not([hidden]) {
    display: flex;
}

/* ══════════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════════ */
.footer-top {
    background: #0a1235;
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.footer-logo-img {
    height: 90px;
    width: auto;
    object-fit: contain;
    display: block;
    filter: brightness(1);
}

.footer-tagline {
    color: var(--secondary);
    font-weight: 600;
    font-size: .9rem;
    margin-bottom: 12px;
}

.footer-desc {
    color: rgba(255, 255, 255, .5);
    font-size: .85rem;
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, .1);
}

.footer-social a:hover {
    background: var(--grad-orange);
    color: #fff;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(244,120,32,.35);
}

.footer-links h4 {
    color: #fff;
    font-size: .9rem;
    margin-bottom: 16px;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: rgba(255, 255, 255, .5);
    font-size: .83rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary);
    padding-left: 4px;
}

.footer-contact-col h4 {
    color: #fff;
    font-size: .9rem;
    margin-bottom: 16px;
}

.fc-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
}

.fc-item i {
    color: var(--secondary);
    margin-top: 2px;
    flex-shrink: 0;
    font-size: .9rem;
}

.fc-item a,
.fc-item span {
    color: rgba(255, 255, 255, .5);
    font-size: .82rem;
    line-height: 1.4;
}

.fc-item a:hover {
    color: var(--secondary);
}

.footer-trust {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, .06);
    color: rgba(255, 255, 255, .6);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 20px;
    padding: 5px 12px;
    font-size: .73rem;
}

.trust-badge i {
    color: var(--success);
}

.footer-bottom {
    background: #070d24;
    padding: 20px 0;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, .4);
    font-size: .82rem;
}

.fb-links {
    display: flex;
    gap: 20px;
}

.fb-links a {
    color: rgba(255, 255, 255, .4);
    font-size: .8rem;
    transition: var(--transition);
}

.fb-links a:hover {
    color: var(--secondary);
}

/* ══════════════════════════════════════════════════════════════════
   FLOATING ELEMENTS
══════════════════════════════════════════════════════════════════ */
.float-wa {
    position: fixed;
    bottom: 154px;
    right: 24px;
    z-index: 900;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 6px 20px rgba(37, 211, 102, .45);
    transition: var(--transition);
    animation: floatBob 3s ease-in-out infinite;
}

.float-wa:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 28px rgba(37, 211, 102, .55);
}

.float-tooltip {
    position: absolute;
    right: 64px;
    background: #333;
    color: #fff;
    white-space: nowrap;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: .78rem;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    transform: translateX(8px);
}

.float-wa:hover .float-tooltip {
    opacity: 1;
    transform: translateX(0);
}

.float-call {
    position: fixed;
    bottom: 92px;
    right: 24px;
    z-index: 900;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--grad-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 6px 20px rgba(26, 60, 143, .45);
    transition: var(--transition);
}

.float-call i {
    transform: scaleX(-1);
}

.float-call:hover {
    transform: scale(1.1);
}

.back-to-top {
    position: fixed;
    bottom: 216px;
    right: 24px;
    z-index: 900;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(26, 60, 143, .9);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    opacity: 0;
    pointer-events: none;
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
}

.back-to-top:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

@keyframes floatBob {

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

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

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 7px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-lt);
}

/* ══════════════════════════════════════════════════════════════════
   MOBILE NAV DRAWER COMPONENTS (hidden on desktop via media query)
══════════════════════════════════════════════════════════════════ */
.nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .55);
    backdrop-filter: blur(3px);
    z-index: 998;
    opacity: 0;
    transition: opacity .3s ease;
}
.nav-backdrop.visible { display: block; }
.nav-backdrop.active  { opacity: 1; }

.mob-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 20px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    margin-bottom: 8px;
}
.mob-nav-brand {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: .02em;
}
.mob-nav-brand .brand-bs {
    background: var(--grad-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.mob-nav-close {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    color: rgba(255, 255, 255, .8);
    font-size: .9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.mob-nav-close:hover { background: rgba(255, 255, 255, .2); color: #fff; }

.mob-nav-footer {
    padding: 16px 20px;
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, .1);
}
.mob-nav-cta { font-size: .9rem !important; }

/* Hide drawer-only elements on desktop */
@media (min-width: 769px) {
    .nav-backdrop,
    .mob-nav-header,
    .mob-nav-footer { display: none !important; }
}

/* ══════════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════════ */

/* ── 1100px ── */
@media (max-width: 1100px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

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

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

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

    .footer-grid {
        grid-template-columns: 1fr 1fr 1fr 1fr;
        gap: 32px;
    }
}

/* ── 1024px — footer, spacing, process ── */
@media (max-width: 1024px) {
    :root {
        --section-py: 72px;
    }

    .process-steps {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }

    .process-steps::before {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .footer-brand {
        grid-column: span 2;
    }
}

/* ── 900px — layout stacking (stable at 150% zoom on common screens) ── */
@media (max-width: 900px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-visual {
        display: none;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-visual {
        display: none;
    }

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

    .why-content .section-badge {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .why-intro {
        text-align: center;
    }

    .why-content .btn {
        display: flex;
        margin: 0 auto;
        width: fit-content;
    }

    .feat-showcase {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 36px 28px;
    }

    .feat-showcase.reverse .feat-visual {
        order: 0;
    }

    .feat-grid .feat-showcase {
        grid-template-columns: 1fr;
    }

    .feat-visual {
        max-width: 100%;
        overflow: hidden;
    }

    .feat-visual > * {
        max-width: 100%;
    }

    .process-steps {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }

    .process-steps::before {
        display: none;
    }

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

    .contact-info {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
}

/* ── 768px ── */
@media (max-width: 768px) {
    :root {
        --section-py: 56px;
    }

    /* Navbar mobile */
    .nav-container {
        gap: 0;
    }

    .nav-logo-tech {
        font-size: .75rem;
        letter-spacing: .05em;
    }

    .nav-logo-sol {
        font-size: .6rem;
        letter-spacing: .2em;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -320px;
        width: min(320px, 85vw);
        height: 100dvh;
        background: linear-gradient(160deg, #0d1b4b 0%, #1a3c8f 100%);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: stretch;
        gap: 2px;
        padding: 0 0 24px;
        z-index: 999;
        transition: right .35s cubic-bezier(.4, 0, .2, 1);
        box-shadow: -8px 0 32px rgba(0, 0, 0, .4);
        overflow-y: auto;
        display: flex;
    }

    .nav-links.open { right: 0; }

    .nav-links > li { padding: 0 16px; }

    .nav-link {
        width: 100%;
        padding: 13px 16px;
        font-size: .98rem;
        border-radius: var(--radius-sm);
        display: flex;
        align-items: center;
        justify-content: space-between;
        color: rgba(255, 255, 255, .85);
    }

    .nav-link::after {
        content: '\f054';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        font-size: .6rem;
        color: rgba(255, 255, 255, .3);
        transition: var(--transition);
        flex-shrink: 0;
    }

    .nav-link:hover,
    .nav-link.active {
        background: rgba(255, 255, 255, .12) !important;
        color: #fff !important;
        padding-left: 20px;
    }

    .nav-link:hover::after,
    .nav-link.active::after {
        color: var(--accent);
        transform: translateX(2px);
    }

    .mob-nav-header,
    .mob-nav-footer { display: flex; }

    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .nav-cta {
        display: none;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 8px;
        justify-content: center;
    }

    .h-divider {
        display: none;
    }

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

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

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

    .pricing-grid-3 {
        grid-template-columns: 1fr 1fr;
    }

    .pricing-grid-2 {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .testi-card {
        min-width: 100%;
        flex: 0 0 100%;
    }

    .testimonials-wrapper {
        overflow: hidden;
        width: 100%;
    }

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

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

    .nl-inner {
        flex-direction: column;
        text-align: center;
    }

    .nl-left {
        flex-direction: column;
        text-align: center;
    }

    .nl-form {
        min-width: unset;
        width: 100%;
    }

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

    .footer-brand {
        grid-column: span 1;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }

    .feat-showcase {
        padding: 28px 18px;
    }

    .feat-visual {
        overflow: hidden;
        border-radius: var(--radius-md);
        max-height: none;
    }

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

    .feat-grid-2 {
        grid-template-columns: 1fr;
    }
}

/* ── 480px ── */
@media (max-width: 480px) {
    .nav-logo-img {
        height: 52px;
    }

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

    .pricing-grid-3,
    .pricing-grid-2 {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

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

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

    .process-steps {
        grid-template-columns: 1fr;
    }

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

    .discount-banner {
        flex-direction: column;
        text-align: center;
    }

    .nl-single-row {
        flex-direction: column;
        align-items: stretch;
    }

    .nl-single-row > input[type="email"],
    .nl-single-row > button[type="submit"] {
        width: 100%;
        justify-content: center;
    }

    .nl-single-row .captcha-nl {
        width: 100%;
    }

    .float-wa {
        width: 48px;
        height: 48px;
        font-size: 1.3rem;
        bottom: 140px;
        right: 16px;
    }

    .float-call {
        width: 48px;
        height: 48px;
        font-size: 1.1rem;
        bottom: 82px;
        right: 16px;
    }

    .back-to-top {
        right: 16px;
        left: auto;
        bottom: 198px;
        width: 48px;
        height: 48px;
        font-size: 1rem;
    }
}

/* ── 1440px+ Large Desktops ───────────────────────────────────── */
@media (min-width: 1440px) {
    html {
        font-size: 17px;
    }

    .hero-title {
        font-size: 4rem;
    }

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

    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 40px;
    }

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

    .pricing-grid-2 {
        grid-template-columns: repeat(2, 1fr);
        max-width: 920px;
    }
}

/* ── 1920px+ Full HD / TV ─────────────────────────────────────── */
@media (min-width: 1920px) {
    html {
        font-size: 18px;
    }

    :root {
        --section-py: 130px;
        --nav-h: 96px;
    }

    .hero-title {
        font-size: 5rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
        max-width: 680px;
    }

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

    .service-card {
        padding: 44px 36px;
    }

    .stats-grid {
        gap: 56px;
    }

    .section-title {
        font-size: 3rem;
    }

    .nav-logo-img {
        height: 80px;
    }

    .nav-logo-tech {
        font-size: 1.15rem;
    }

    .nav-logo-sol {
        font-size: .85rem;
    }
}

/* ── 2560px+ QHD / 4K ──────────────────────────────────────────── */
@media (min-width: 2560px) {
    .container {
        max-width: 2400px;
    }

    html {
        font-size: 20px;
    }

    :root {
        --section-py: 160px;
    }

    .hero-title {
        font-size: 6rem;
    }

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

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

    .pricing-grid-2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
        max-width: 1100px;
    }
}

/* ════════════════════════════════════════════════════════════════
   CAPTCHA WIDGET
════════════════════════════════════════════════════════════════ */
.captcha-box {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--bg-light);
    padding: 7px 12px;
    margin-bottom: 10px;
    width: 250px;
}

.captcha-inner {
    display: flex;
    align-items: center;
    gap: 8px;
}

.captcha-check {
    display: none;
}

.captcha-inner label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    flex: 1;
    font-size: .8rem;
    color: var(--text-700);
    font-weight: 500;
}

.captcha-spinner {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid #ccc;
    border-radius: 3px;
    flex-shrink: 0;
    transition: all .2s;
    position: relative;
}

.captcha-check:checked+label .captcha-spinner {
    background: #4285f4;
    border-color: #4285f4;
}

.captcha-check:checked+label .captcha-spinner::after {
    content: '';
    position: absolute;
    left: 3px;
    top: 2px;
    width: 8px;
    height: 5px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg);
}

.captcha-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: .6rem;
    color: var(--text-300);
    gap: 1px;
    margin-left: auto;
}

.captcha-logo i {
    font-size: 1rem;
    color: #4285f4;
}

.captcha-nl {
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .2);
    margin-top: 12px;
    margin-bottom: 0;
    padding: 6px 12px;
    width: 250px;
}

.captcha-nl .captcha-inner {
    gap: 8px;
}

.captcha-nl .captcha-inner label {
    color: rgba(255, 255, 255, .85);
    font-size: .78rem;
    gap: 7px;
}

.captcha-nl .captcha-spinner {
    width: 16px;
    height: 16px;
    border-width: 1.5px;
    border-radius: 3px;
}

.captcha-nl .captcha-logo {
    font-size: .55rem;
    gap: 1px;
}

.captcha-nl .captcha-logo i {
    font-size: .85rem;
}

/* ════════════════════════════════════════════════════════════════
   MATH CAPTCHA MODAL
════════════════════════════════════════════════════════════════ */
#mathCaptchaModal[hidden] {
    display: none;
}

.mcm-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .55);
    z-index: 9100;
    backdrop-filter: blur(4px);
}

.mcm-box {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9101;
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    padding: 32px 28px 28px;
    width: min(92vw, 400px);
    text-align: center;
}

.mcm-box h4 {
    font-size: 1.1rem;
    color: var(--text-900);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.mcm-box h4 i {
    color: var(--primary);
}

.mcm-sub {
    font-size: .85rem;
    color: var(--text-500);
    margin-bottom: 20px;
}

.mcm-canvas-wrap {
    position: relative;
    display: inline-block;
    margin-bottom: 16px;
}

#mathCaptchaCanvas {
    border-radius: 8px;
    border: 1.5px solid var(--border);
    display: block;
    max-width: 100%;
}

.mcm-refresh {
    position: absolute;
    top: 5px;
    right: 5px;
    background: rgba(255, 255, 255, .88);
    border: 1px solid var(--border);
    border-radius: 50%;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--primary);
    font-size: .72rem;
    transition: transform .3s ease;
}

.mcm-refresh:hover {
    transform: rotate(180deg);
    background: var(--bg-light);
}

#mathCaptchaInput {
    width: 100%;
    padding: 10px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 6px;
    outline: none;
    transition: border-color .2s;
    font-family: 'Poppins', sans-serif;
}

#mathCaptchaInput:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26, 60, 143, .1);
}

.mcm-err {
    font-size: .82rem;
    color: #e74c3c;
    margin-bottom: 10px;
    min-height: 1.1em;
}

.mcm-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 16px;
}

/* ════════════════════════════════════════════════════════════════
   EMAIL PROVIDER PICKER MODAL
════════════════════════════════════════════════════════════════ */
.email-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .55);
    z-index: 9000;
    backdrop-filter: blur(4px);
}

.email-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9001;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    padding: 36px 32px;
    width: min(92vw, 460px);
    text-align: center;
}

.email-modal h3 {
    font-size: 1.25rem;
    color: var(--text-900);
    margin-bottom: 6px;
}

.email-modal h3 i {
    color: var(--secondary);
    margin-right: 8px;
}

.email-modal-addr {
    font-size: .85rem;
    color: var(--text-300);
    word-break: break-all;
    margin-bottom: 24px;
}

.email-modal-close {
    position: absolute;
    top: 14px;
    right: 18px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-300);
    line-height: 1;
}

.email-providers {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.email-provider-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--bg-light);
    cursor: pointer;
    font-size: .9rem;
    font-weight: 600;
    color: var(--text-700);
    transition: border-color .2s, background .2s, transform .2s;
    text-decoration: none;
}

.email-provider-btn:hover {
    border-color: var(--secondary);
    background: #fff7f0;
    transform: translateY(-2px);
}

.email-provider-btn img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

/* map address line */
.map-address {
    margin-top: 12px;
    font-size: .9rem;
    color: var(--text-500);
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.map-address i {
    color: var(--secondary);
}

.map-address a {
    color: var(--primary-lt);
    font-weight: 600;
    text-decoration: none;
}

/* ════════════════════════════════════════════════════════════════
   LEGAL / SITEMAP MODALS
════════════════════════════════════════════════════════════════ */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.82);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 9500;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-content {
    position: relative;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 760px;
    max-height: 88vh;
    overflow-y: auto;
    padding: 40px 44px 32px;
    box-shadow: 0 40px 100px rgba(0,0,0,.4);
    transform: scale(.92) translateY(20px);
    transition: transform .3s cubic-bezier(.34,1.2,.64,1);
    scrollbar-width: thin;
    scrollbar-color: var(--border) transparent;
}

.modal-overlay.active .modal-content {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: var(--bg-mid);
    color: var(--text-500);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, color .2s;
    z-index: 2;
}

.modal-close:hover {
    background: var(--danger);
    color: #fff;
}

.legal-modal-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.65rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 6px;
}

.legal-modal-content .modal-subtitle {
    font-size: .9rem;
    color: var(--text-300);
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.legal-content-body h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-700);
    margin: 22px 0 8px;
}

.legal-content-body p,
.legal-content-body li {
    font-size: .88rem;
    color: var(--text-500);
    line-height: 1.75;
}

.legal-content-body ul {
    padding-left: 20px;
    margin: 6px 0 12px;
}

.legal-content-body li {
    margin-bottom: 4px;
}

.modal-close-bottom {
    display: block;
    margin: 28px auto 0;
    padding: 10px 36px;
    background: var(--grad-primary);
    color: #fff;
    border: none;
    border-radius: var(--radius-xl);
    font-size: .9rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity .2s, transform .2s;
}

.modal-close-bottom:hover {
    opacity: .88;
    transform: translateY(-2px);
}

/* Sitemap grid */
.sitemap-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 20px;
}

.sitemap-column h4 {
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--secondary);
    margin-bottom: 12px;
}

.sitemap-column ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sitemap-column li a {
    font-size: .88rem;
    color: var(--text-500);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color .2s;
}

.sitemap-column li a:hover {
    color: var(--primary);
}

.sitemap-column li a i {
    font-size: .7rem;
    color: var(--secondary);
}

@media (max-width: 600px) {
    .modal-content {
        padding: 28px 20px 24px;
    }
    .sitemap-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 400px) {
    .sitemap-content {
        grid-template-columns: 1fr;
    }
}

.map-address a:hover {
    text-decoration: underline;
}

/* ══════════════════════════════════════════════════════════════════
   MULTI-SELECT — Service Required dropdown with checkboxes
══════════════════════════════════════════════════════════════════ */
.multi-select { position: relative; }

.ms-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: .93rem;
    color: var(--text-900);
    background: #fff;
    cursor: pointer;
    transition: border-color .2s, box-shadow .2s;
    user-select: none;
    min-height: 44px;
}

.ms-trigger:focus,
.multi-select.open .ms-trigger {
    border-color: var(--primary-lt);
    box-shadow: 0 0 0 3px rgba(45,91,196,.15);
    outline: none;
}

.multi-select.error .ms-trigger {
    border-color: var(--danger);
}

.ms-display {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: .93rem;
}

.ms-placeholder { color: #aaa; }

.ms-arrow {
    font-size: .68rem;
    color: var(--text-700);
    transition: transform .2s;
    flex-shrink: 0;
    margin-left: 8px;
}

.multi-select.open .ms-arrow { transform: rotate(180deg); }

.ms-dropdown {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
    z-index: 300;
    max-height: 230px;
    overflow-y: auto;
    padding: 4px 0;
}

.ms-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 14px;
    font-size: .88rem;
    cursor: pointer;
    transition: background .15s;
    color: var(--text-900);
    user-select: none;
}

.ms-option:hover { background: rgba(45,91,196,.07); }

.ms-option input[type="checkbox"] {
    width: 15px;
    height: 15px;
    accent-color: var(--primary);
    cursor: pointer;
    flex-shrink: 0;
    margin: 0;
    padding: 0;
    border: none;
}

body.dark-theme .ms-trigger {
    background: rgba(255,255,255,.05);
    color: var(--text-900);
}

body.dark-theme .ms-dropdown {
    background: #111928;
    border-color: rgba(255,255,255,.08);
}

body.dark-theme .ms-option { color: var(--text-900); }
body.dark-theme .ms-option:hover { background: rgba(80,120,220,.12); }

/* ══════════════════════════════════════════════════════════════════
   AI CHATBOT WIDGET
══════════════════════════════════════════════════════════════════ */
.aic { font-family: 'Poppins', sans-serif; }

/* ── Launcher button (bottom-left) ── */
.aic-launcher {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1001;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a3c8f 0%, #2d5bc4 60%, #f47820 160%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 28px rgba(26, 60, 143, .45);
    transition: transform .3s ease, box-shadow .3s ease;
}
.aic-launcher:hover { transform: scale(1.07); box-shadow: 0 12px 34px rgba(26, 60, 143, .6); }
.aic-launcher::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(45, 91, 196, .5);
    animation: aicPulse 2.4s ease-out infinite;
    pointer-events: none;
}
@keyframes aicPulse {
    0%   { transform: scale(1); opacity: .7; }
    70%  { transform: scale(1.6); opacity: 0; }
    100% { opacity: 0; }
}
.aic-launcher-ic {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: transform .3s ease, opacity .3s ease;
}
.aic-ic-bot   { opacity: 1; transform: rotate(0) scale(1); }
.aic-ic-close { opacity: 0; transform: rotate(-90deg) scale(.5); font-size: 1.4rem; }
.aic.open .aic-ic-bot   { opacity: 0; transform: rotate(90deg) scale(.5); }
.aic.open .aic-ic-close { opacity: 1; transform: rotate(0) scale(1); }
.aic.open .aic-launcher::after { display: none; }

/* Unread badge */
.aic-badge {
    position: absolute;
    top: -3px;
    right: -3px;
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    border-radius: 10px;
    background: #f47820;
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .25);
}
.aic-badge.hide { display: none; }

/* Greeting tooltip */
.aic-tip {
    position: fixed;
    bottom: 38px;
    right: 96px;
    z-index: 1000;
    background: #fff;
    color: var(--text-900);
    font-size: .82rem;
    font-weight: 500;
    padding: 9px 14px;
    border-radius: 14px 14px 4px 14px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .16);
    white-space: nowrap;
    opacity: 0;
    transform: translateX(8px);
    pointer-events: none;
    transition: opacity .4s ease, transform .4s ease;
}
.aic-tip.show { opacity: 1; transform: translateX(0); }
.aic.open .aic-tip { opacity: 0 !important; pointer-events: none; }

/* ── Chat window ── */
.aic-window {
    position: fixed;
    bottom: 96px;
    right: 24px;
    z-index: 1001;
    width: 374px;
    max-width: calc(100vw - 32px);
    height: 540px;
    max-height: calc(100vh - 140px);
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, .28);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform-origin: bottom right;
    border: 1px solid var(--border);
}
.aic-window[hidden] { display: none; }
.aic-window.in  { animation: aicWinIn .32s cubic-bezier(.34, 1.4, .5, 1) both; }
.aic-window.out { animation: aicWinOut .22s ease-in both; }
@keyframes aicWinIn {
    from { opacity: 0; transform: translateY(16px) scale(.92); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes aicWinOut {
    from { opacity: 1; transform: translateY(0) scale(1); }
    to   { opacity: 0; transform: translateY(16px) scale(.92); }
}

/* Header */
.aic-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: linear-gradient(135deg, #1a3c8f 0%, #2d5bc4 100%);
    color: #fff;
    flex-shrink: 0;
}
.aic-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.aic-head-info { display: flex; flex-direction: column; gap: 2px; line-height: 1.2; flex: 1; min-width: 0; }
.aic-head-info strong { font-size: .95rem; font-weight: 600; }
.aic-status { font-size: .72rem; opacity: .85; display: flex; align-items: center; gap: 6px; }
.aic-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2ecc71;
    box-shadow: 0 0 0 0 rgba(46, 204, 113, .6);
    animation: aicDot 2s ease infinite;
}
@keyframes aicDot {
    0%   { box-shadow: 0 0 0 0 rgba(46, 204, 113, .6); }
    70%  { box-shadow: 0 0 0 6px rgba(46, 204, 113, 0); }
    100% { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0); }
}
.aic-min {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: #fff;
    font-size: .9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
    flex-shrink: 0;
}
.aic-min:hover { background: rgba(255, 255, 255, .18); }

/* Messages area */
.aic-messages {
    flex: 1;
    overflow-y: auto;
    padding: 18px 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: #f6f8fc;
    scroll-behavior: smooth;
}
.aic-messages::-webkit-scrollbar { width: 6px; }
.aic-messages::-webkit-scrollbar-thumb { background: rgba(0, 0, 0, .15); border-radius: 6px; }

.aic-row { display: flex; gap: 8px; max-width: 100%; align-items: flex-end; }
.aic-row.bot  { align-self: flex-start; }
.aic-row.user { align-self: flex-end; flex-direction: row-reverse; }
.aic-row-avatar {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a3c8f, #2d5bc4);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .7rem;
    flex-shrink: 0;
}
.aic-bubble {
    padding: 10px 14px;
    border-radius: 14px;
    font-size: .85rem;
    line-height: 1.5;
    max-width: 246px;
    white-space: pre-line;
    word-wrap: break-word;
}
.aic-row.bot .aic-bubble {
    background: #fff;
    color: var(--text-700);
    border: 1px solid var(--border);
    border-bottom-left-radius: 4px;
}
.aic-row.user .aic-bubble {
    background: linear-gradient(135deg, #1a3c8f, #2d5bc4);
    color: #fff;
    border-bottom-right-radius: 4px;
}

/* Suggestion chips & action buttons */
.aic-sugg {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    align-self: flex-start;
    margin: -4px 0 2px 34px;
    max-width: 280px;
}
.aic-chip, .aic-act {
    font-size: .78rem;
    font-weight: 500;
    padding: 7px 13px;
    border-radius: 50px;
    cursor: pointer;
    transition: all .2s;
    border: 1.5px solid;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    line-height: 1.2;
}
.aic-chip {
    background: rgba(45, 91, 196, .07);
    color: #2d5bc4;
    border-color: rgba(45, 91, 196, .25);
}
.aic-chip:hover { background: rgba(45, 91, 196, .14); border-color: #2d5bc4; }
.aic-act {
    background: linear-gradient(135deg, #1a3c8f, #2d5bc4);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 3px 10px rgba(26, 60, 143, .25);
}
.aic-act:hover { transform: translateY(-1px); box-shadow: 0 5px 14px rgba(26, 60, 143, .4); }

/* Typing indicator */
.aic-typing { display: flex; gap: 4px; padding: 12px 14px; }
.aic-typing span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--text-300);
    animation: aicType 1.2s ease infinite;
}
.aic-typing span:nth-child(2) { animation-delay: .2s; }
.aic-typing span:nth-child(3) { animation-delay: .4s; }
@keyframes aicType {
    0%, 100% { transform: translateY(0); opacity: .5; }
    50%      { transform: translateY(-5px); opacity: 1; }
}

/* Input bar */
.aic-input {
    display: flex;
    gap: 8px;
    padding: 12px;
    background: #fff;
    border-top: 1px solid var(--border);
    flex-shrink: 0;
}
.aic-input input {
    flex: 1;
    border: 1.5px solid var(--border);
    border-radius: 22px;
    padding: 10px 16px;
    font-size: .85rem;
    outline: none;
    color: var(--text-900);
    transition: border-color .2s;
}
.aic-input input:focus { border-color: #2d5bc4; }
.aic-send {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a3c8f, #2d5bc4);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    flex-shrink: 0;
    transition: transform .2s;
}
.aic-send:hover { transform: scale(1.08); }

/* Footer */
.aic-foot {
    text-align: center;
    font-size: .68rem;
    color: var(--text-500);
    padding: 6px 0 9px;
    background: #fff;
    flex-shrink: 0;
}
.aic-foot a { color: #2d5bc4; font-weight: 600; }
.aic-foot a:hover { text-decoration: underline; }

/* ── Dark theme ── */
body.dark-theme .aic-window { background: #0d1220; border-color: rgba(255, 255, 255, .08); }
body.dark-theme .aic-messages { background: #080c18; }
body.dark-theme .aic-row.bot .aic-bubble {
    background: #161f35;
    color: var(--text-700);
    border-color: rgba(255, 255, 255, .07);
}
body.dark-theme .aic-row.user .aic-bubble { background: rgba(91, 138, 255, .22); color: #d6e3ff; }
body.dark-theme .aic-chip {
    background: rgba(91, 138, 255, .1);
    color: #7eaaff;
    border-color: rgba(91, 138, 255, .28);
}
body.dark-theme .aic-chip:hover { background: rgba(91, 138, 255, .2); border-color: #5b8aff; }
body.dark-theme .aic-input { background: #0d1220; border-top-color: rgba(255, 255, 255, .07); }
body.dark-theme .aic-input input {
    background: #111928;
    border-color: rgba(255, 255, 255, .1);
    color: var(--text-900);
}
body.dark-theme .aic-input input:focus { border-color: #5b8aff; }
body.dark-theme .aic-foot { background: #0d1220; color: var(--text-500); }
body.dark-theme .aic-foot a { color: #7eaaff; }
body.dark-theme .aic-tip { background: #161f35; color: var(--text-900); }

/* ── Mobile ── */
@media (max-width: 480px) {
    .aic-launcher { width: 54px; height: 54px; bottom: 20px; right: 16px; left: auto; }
    .aic-launcher-ic { font-size: 1.35rem; }
    .aic-tip { display: none; }
    .aic-window {
        left: 8px;
        right: 8px;
        bottom: 84px;
        width: auto;
        max-width: none;
        height: auto;
        top: 70px;
        max-height: none;
    }
    .aic-bubble { max-width: 76vw; }
    .aic-sugg { max-width: 84vw; }
}