/* VisitorCircle – Main Stylesheet
   Font: Syne (headings) + DM Sans (body)
   Theme: Deep navy + electric orange accent, clean editorial style
*/

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

:root {
    --navy:      #0D1B2A;
    --navy-mid:  #162639;
    --navy-soft: #1E3A52;
    --orange:    #E8612C;
    --orange-lt: #F47B4A;
    --blue:      #2C7BE8;
    --blue-lt:   #5B9CF6;
    --white:     #FFFFFF;
    --off-white: #F6F8FC;
    --text:      #1A2C3E;
    --muted:     #5A738A;
    --border:    #DDE4EE;

    --font-head: 'Syne', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --font-mono: 'DM Mono', monospace;

    --radius:  12px;
    --radius-lg: 20px;
    --shadow:  0 4px 24px rgba(13,27,42,0.10);
    --shadow-lg: 0 12px 48px rgba(13,27,42,0.16);

    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}


/* ── Desktop: hide mobile-only elements ─────────────────── */
.mobile-nav-drawer,
.mobile-nav-overlay { display: none; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text);
    background: var(--white);
    line-height: 1.65;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ─── TYPOGRAPHY ─────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
    font-family: var(--font-head);
    line-height: 1.15;
    font-weight: 700;
    color: var(--navy);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }

.section-label {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 0.75rem;
    display: block;
}

/* ─── LAYOUT ─────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
section { padding: 5rem 0; }

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.8rem;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    text-decoration: none;
}
.btn-primary {
    background: var(--orange);
    color: var(--white);
    border-color: var(--orange);
}
.btn-primary:hover { background: var(--orange-lt); border-color: var(--orange-lt); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,97,44,0.35); }

.btn-outline {
    background: transparent;
    color: var(--navy);
    border-color: var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); }

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.5);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }

.btn-blue { background: var(--blue); color: var(--white); border-color: var(--blue); }
.btn-blue:hover { background: var(--blue-lt); border-color: var(--blue-lt); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(44,123,232,0.35); }

.btn-lg { padding: 1rem 2.2rem; font-size: 1.05rem; }
.btn-sm { padding: 0.55rem 1.2rem; font-size: 0.85rem; }

/* ─── TOPBAR ─────────────────────────────────────────────── */
.topbar {
    background: var(--navy);
    color: rgba(255,255,255,0.7);
    font-size: 0.82rem;
    padding: 0.5rem 1.5rem;
    display: flex;
    gap: 2rem;
    justify-content: flex-end;
}
.topbar i { color: var(--orange); margin-right: 0.4rem; }

/* ─── HEADER / NAV ───────────────────────────────────────── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow); }

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 70px;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-shrink: 0;
}
.logo-mark {
    width: 38px; height: 38px;
    background: var(--orange);
    color: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: -0.04em;
}
.logo-text {
    font-family: var(--font-head);
    font-size: 1.2rem;
    color: var(--navy);
    font-weight: 600;
}
.logo-text strong { color: var(--orange); font-weight: 800; }
.logo-light .logo-text { color: var(--white); }
.logo-light .logo-text strong { color: var(--orange-lt); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-left: auto;
}
.nav-links > li { position: relative; }
.nav-links > li > a {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.5rem 0.9rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.93rem;
    color: var(--text);
    transition: var(--transition);
}
.nav-links > li > a:hover { color: var(--orange); background: rgba(232,97,44,0.06); }

.nav-cta {
    background: var(--orange) !important;
    color: var(--white) !important;
    padding: 0.5rem 1.25rem !important;
    border-radius: 8px !important;
}
.nav-cta:hover { background: var(--orange-lt) !important; box-shadow: 0 4px 16px rgba(232,97,44,0.3); }

/* Dropdown */
.has-dropdown:hover .dropdown { opacity: 1; pointer-events: all; transform: translateY(0); }
.dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0.5rem;
    min-width: 240px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: var(--transition);
}
.dropdown li a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--text);
    transition: var(--transition);
}
.dropdown li a i { color: var(--orange); width: 16px; text-align: center; }
.dropdown li a:hover { background: var(--off-white); color: var(--orange); }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    margin-left: auto;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: var(--transition);
}

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
    background: var(--navy);
    color: var(--white);
    padding: 6rem 0 5rem;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(44,123,232,0.18) 0%, transparent 65%),
                radial-gradient(ellipse 50% 40% at 20% 80%, rgba(232,97,44,0.12) 0%, transparent 55%);
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50px;
    padding: 0.35rem 1rem;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.75);
    margin-bottom: 1.5rem;
}
.hero-eyebrow .dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--orange);
    animation: pulse 2s infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

.hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero h1 .accent { color: var(--orange); }
.hero-sub {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.72);
    margin-bottom: 2.25rem;
    max-width: 500px;
    line-height: 1.7;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.stat-item {}
.stat-num {
    font-family: var(--font-head);
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--white);
}
.stat-num span { color: var(--orange); }
.stat-label {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    margin-top: 0.1rem;
}

/* Hero visual */
.hero-visual {
    position: relative;
}
.hero-card-stack {
    position: relative;
    height: 380px;
}
.hero-card {
    position: absolute;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(8px);
    padding: 1.5rem;
}
.hero-card.main {
    width: 100%;
    top: 0; left: 0; right: 0;
    background: rgba(255,255,255,0.08);
}
.hero-card.floating {
    bottom: 0;
    right: 0;
    width: 220px;
    background: var(--orange);
    border-color: transparent;
    animation: float 4s ease-in-out infinite;
}
.hero-card.floating2 {
    bottom: 30px;
    left: -20px;
    width: 170px;
    background: rgba(44,123,232,0.85);
    border-color: transparent;
    animation: float 5s ease-in-out infinite 1s;
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}
.mock-checkin { }
.mock-checkin .mock-label {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    font-family: var(--font-mono);
}
.mock-visitor-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mock-avatar {
    width: 32px; height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.75rem;
    flex-shrink: 0;
}
.mock-info { flex: 1; }
.mock-name { font-size: 0.82rem; color: var(--white); font-weight: 500; }
.mock-time { font-size: 0.7rem; color: rgba(255,255,255,0.45); }
.mock-badge {
    font-size: 0.65rem;
    padding: 0.15rem 0.5rem;
    border-radius: 50px;
    font-weight: 600;
}
.badge-in { background: rgba(52,211,153,0.2); color: #34d399; }
.badge-wait { background: rgba(251,191,36,0.2); color: #fbbf24; }
.badge-out { background: rgba(148,163,184,0.15); color: rgba(255,255,255,0.4); }

.floating-stat {
    text-align: center;
}
.floating-stat .big { font-family: var(--font-head); font-size: 2rem; font-weight: 800; color: var(--white); }
.floating-stat .label { font-size: 0.75rem; color: rgba(255,255,255,0.75); }

.floating2-content { }
.token-display {
    text-align: center;
}
.token-num { font-family: var(--font-head); font-size: 2.5rem; font-weight: 800; color: var(--white); }
.token-label { font-size: 0.72rem; color: rgba(255,255,255,0.7); }

/* ─── PRODUCTS ───────────────────────────────────────────── */
.products-section { background: var(--off-white); }
.section-head {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3.5rem;
}
.section-head p { color: var(--muted); margin-top: 0.75rem; font-size: 1.05rem; }

.products-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.product-card-banner {
    padding: 2.5rem 2rem 2rem;
    position: relative;
    overflow: hidden;
}
.product-card-banner.orange { background: linear-gradient(135deg, #E8612C 0%, #F47B4A 100%); }
.product-card-banner.blue   { background: linear-gradient(135deg, #1a5fc4 0%, #2C7BE8 100%); }

.product-icon {
    width: 56px; height: 56px;
    background: rgba(255,255,255,0.18);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1.25rem;
}
.product-card-banner h3 { color: var(--white); margin-bottom: 0.5rem; }
.product-card-banner p  { color: rgba(255,255,255,0.82); font-size: 0.92rem; }
.product-card-banner::after {
    content: '';
    position: absolute;
    right: -30px;
    bottom: -30px;
    width: 140px;
    height: 140px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
}

.product-card-body {
    padding: 1.75rem 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.product-features {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1.75rem;
    flex: 1;
}
.product-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: var(--text);
}
.product-feature i { color: var(--orange); flex-shrink: 0; margin-top: 3px; font-size: 0.8rem; }
.product-card.blue-card .product-feature i { color: var(--blue); }

.product-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
}
.product-card-footer .price-tag {
    font-size: 0.82rem;
    color: var(--muted);
}

/* ─── FEATURES STRIP ─────────────────────────────────────── */
.why-section { background: var(--white); }
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.why-card {
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.why-card:hover { border-color: var(--orange); box-shadow: 0 4px 24px rgba(232,97,44,0.08); }
.why-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), var(--blue));
    opacity: 0;
    transition: var(--transition);
}
.why-card:hover::before { opacity: 1; }
.why-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    background: rgba(232,97,44,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    font-size: 1.2rem;
    margin-bottom: 1.25rem;
}
.why-card h4 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
    color: var(--navy);
}
.why-card p { font-size: 0.9rem; color: var(--muted); }

/* ─── TESTIMONIALS ───────────────────────────────────────── */
.testimonials-section { background: var(--navy); }
.testimonials-section .section-head h2 { color: var(--white); }
.testimonials-section .section-head p  { color: rgba(255,255,255,0.6); }
.testimonials-section .section-label   { color: var(--orange-lt); }

.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.testi-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    transition: var(--transition);
}
.testi-card:hover { background: rgba(255,255,255,0.09); border-color: rgba(232,97,44,0.4); }
.testi-stars { color: #FBBF24; font-size: 0.85rem; margin-bottom: 1rem; letter-spacing: 0.1em; }
.testi-quote {
    color: rgba(255,255,255,0.82);
    font-size: 0.92rem;
    line-height: 1.75;
    margin-bottom: 1.25rem;
    font-style: italic;
}
.testi-quote::before { content: '\201C'; color: var(--orange); font-size: 1.5rem; line-height: 0; vertical-align: -0.4rem; margin-right: 0.2rem; }
.testi-author { display: flex; align-items: center; gap: 0.75rem; }
.testi-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--white);
    flex-shrink: 0;
}
.testi-name { color: var(--white); font-weight: 600; font-size: 0.9rem; }
.testi-role { color: rgba(255,255,255,0.45); font-size: 0.78rem; }

/* ─── CONTACT ────────────────────────────────────────────── */
.contact-section { background: var(--off-white); }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}
.contact-info h2 { margin-bottom: 0.75rem; }
.contact-info p { color: var(--muted); margin-bottom: 2rem; }
.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
}
.contact-detail-icon {
    width: 40px; height: 40px;
    border-radius: 10px;
    background: rgba(232,97,44,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    flex-shrink: 0;
}
.contact-detail-text label { display: block; font-size: 0.78rem; color: var(--muted); margin-bottom: 0.15rem; text-transform: uppercase; letter-spacing: 0.08em; }
.contact-detail-text span, .contact-detail-text a { font-weight: 500; color: var(--navy); font-size: 0.95rem; }

.contact-form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow);
}
.contact-form-card h3 { margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.1rem; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 500; margin-bottom: 0.4rem; color: var(--text); }
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.93rem;
    color: var(--text);
    background: var(--white);
    transition: border-color var(--transition);
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(232,97,44,0.08); }
.form-group textarea { resize: vertical; min-height: 110px; }

.form-success {
    display: none;
    background: rgba(52,211,153,0.1);
    border: 1px solid rgba(52,211,153,0.3);
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
    color: #065f46;
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* ─── FOOTER ─────────────────────────────────────────────── */
.site-footer {
    background: var(--navy);
    color: rgba(255,255,255,0.65);
    padding: 4rem 0 0;
}
.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem 3rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
}
.footer-brand p {
    font-size: 0.88rem;
    line-height: 1.7;
    margin-top: 1rem;
    max-width: 280px;
}
.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}
.footer-social a {
    width: 36px; height: 36px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    transition: var(--transition);
}
.footer-social a:hover { background: var(--orange); border-color: var(--orange); color: var(--white); }

.footer-col h4 {
    color: var(--white);
    font-family: var(--font-head);
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
}
.footer-col ul li { margin-bottom: 0.65rem; }
.footer-col ul li a {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.55);
    transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--orange-lt); }

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin-bottom: 0.8rem;
    font-size: 0.88rem;
}
.footer-contact li i { color: var(--orange); margin-top: 3px; flex-shrink: 0; width: 14px; }
.footer-contact li a { color: rgba(255,255,255,0.55); }
.footer-contact li a:hover { color: var(--orange-lt); }

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.25rem 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
}
.footer-bottom strong { color: var(--orange-lt); }

/* ─── PRODUCT PAGE ───────────────────────────────────────── */
.product-hero {
    padding: 5rem 0 4rem;
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.product-hero.orange-hero { background: linear-gradient(135deg, #b54520 0%, var(--orange) 50%, #F47B4A 100%); }
.product-hero.blue-hero   { background: linear-gradient(135deg, #0f3d8c 0%, var(--blue) 50%, #5B9CF6 100%); }
.product-hero::before {
    content: '';
    position: absolute;
    right: -100px; top: -100px;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
}
.product-hero .breadcrumb {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.65);
    margin-bottom: 1.5rem;
    display: flex;
    gap: 0.4rem;
    align-items: center;
}
.product-hero .breadcrumb a { color: rgba(255,255,255,0.65); }
.product-hero .breadcrumb a:hover { color: var(--white); }
.product-hero h1 { color: var(--white); margin-bottom: 1rem; }
.product-hero .tagline { font-size: 1.15rem; color: rgba(255,255,255,0.82); max-width: 600px; margin-bottom: 2rem; }
.product-hero-actions { display: flex; gap: 1rem; }

.features-section { background: var(--white); }
.features-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}
.feature-item {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: var(--transition);
}
.feature-item:hover { border-color: var(--orange); background: rgba(232,97,44,0.02); }
.feature-item-icon {
    width: 40px; height: 40px;
    border-radius: 10px;
    background: rgba(232,97,44,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    flex-shrink: 0;
}
.feature-item.blue .feature-item-icon { background: rgba(44,123,232,0.1); color: var(--blue); }
.feature-item h4 { font-size: 0.95rem; margin-bottom: 0.2rem; color: var(--navy); }
.feature-item p  { font-size: 0.85rem; color: var(--muted); }

.use-cases-section { background: var(--off-white); }
.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.use-case-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
    border-left: 4px solid var(--orange);
    box-shadow: var(--shadow);
    font-weight: 500;
    font-size: 0.93rem;
}
.use-case-card.blue { border-color: var(--blue); }

.cta-strip {
    background: var(--navy);
    padding: 4rem 0;
    text-align: center;
}
.cta-strip h2 { color: var(--white); margin-bottom: 0.75rem; }
.cta-strip p  { color: rgba(255,255,255,0.65); margin-bottom: 2rem; }
.cta-strip .actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ─── ALERT / FLASH ──────────────────────────────────────── */
.alert {
    padding: 0.9rem 1.25rem;
    border-radius: var(--radius);
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.alert-success { background: rgba(52,211,153,0.1); border: 1px solid rgba(52,211,153,0.3); color: #065f46; }
.alert-error   { background: rgba(239,68,68,0.08); border: 1px solid rgba(239,68,68,0.25); color: #991b1b; }
.alert-info    { background: rgba(44,123,232,0.08); border: 1px solid rgba(44,123,232,0.2); color: #1e40af; }

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .testi-grid  { grid-template-columns: 1fr 1fr; }
    .why-grid    { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    section { padding: 3.5rem 0; }
    .nav-toggle { display: flex; }
    .nav-desktop  { display: none !important; }
    .mobile-nav-drawer  { display: flex; }
    .mobile-nav-overlay { display: block; opacity: 0; pointer-events: none; }
    .mobile-nav-overlay.active { opacity: 1; pointer-events: auto; }

    .hero-grid { grid-template-columns: 1fr; }
    .hero-visual { display: none; }
    .hero-stats { flex-wrap: wrap; gap: 1.25rem; }

    .products-grid { grid-template-columns: 1fr; }
    .why-grid       { grid-template-columns: 1fr; }
    .testi-grid     { grid-template-columns: 1fr; }
    .contact-grid   { grid-template-columns: 1fr; }
    .features-2col  { grid-template-columns: 1fr; }
    .use-cases-grid { grid-template-columns: 1fr 1fr; }
    .form-row       { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
    .topbar { justify-content: center; }
}

@media (max-width: 480px) {
    .hero-actions { flex-direction: column; }
    .use-cases-grid { grid-template-columns: 1fr; }
    .product-hero-actions { flex-direction: column; }
    .cta-strip .actions { flex-direction: column; align-items: center; }
}


/* ═══════════════════════════════════════════════════════════
   MOBILE NAV DRAWER
   Lives outside <header> so fixed positioning works correctly
═══════════════════════════════════════════════════════════ */

/* Hamburger button transition */
.nav-toggle span {
    transition: transform 0.25s ease, opacity 0.2s ease, background 0.2s ease;
    transform-origin: center;
}

/* Overlay */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(13, 27, 42, 0.6);
    z-index: 1099;
    backdrop-filter: blur(3px);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.mobile-nav-overlay.active {
    display: block;
    opacity: 1;
}

/* Drawer panel */
.mobile-nav-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 85vw);
    height: 100dvh;               /* dynamic viewport height — handles mobile browser chrome */
    background: var(--white);
    z-index: 1100;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    box-shadow: -8px 0 40px rgba(13,27,42,0.18);
}
.mobile-nav-drawer.open {
    transform: translateX(0);
}

/* Drawer header */
.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--border);
    flex-shrink: 0;
}
.mobile-nav-close {
    width: 36px;
    height: 36px;
    border: none;
    background: var(--off-white);
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--navy);
    transition: background var(--transition);
}
.mobile-nav-close:hover { background: var(--border); }

/* Nav links */
.mobile-nav-links {
    list-style: none;
    padding: 0.75rem 0;
    flex: 1;
}
.mobile-nav-links > li > a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1.5rem;
    font-size: 0.97rem;
    font-weight: 500;
    color: var(--text);
    border-bottom: 1px solid rgba(0,0,0,0.04);
    transition: background var(--transition), color var(--transition);
}
.mobile-nav-links > li > a i { color: var(--orange); width: 16px; text-align: center; flex-shrink: 0; }
.mobile-nav-links > li > a:hover { background: var(--off-white); color: var(--orange); }

/* Products dropdown toggle button */
.mobile-dropdown-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 1.5rem;
    background: none;
    border: none;
    border-bottom: 1px solid rgba(0,0,0,0.04);
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.97rem;
    font-weight: 500;
    color: var(--text);
    transition: background var(--transition);
}
.mobile-dropdown-toggle span { display: flex; align-items: center; gap: 0.75rem; }
.mobile-dropdown-toggle span i { color: var(--orange); width: 16px; text-align: center; }
.mobile-dropdown-toggle:hover { background: var(--off-white); }
.mobile-dropdown-toggle .toggle-arrow {
    transition: transform 0.25s ease;
    color: var(--muted);
    font-size: 0.7rem;
}
.mobile-has-dropdown.open .toggle-arrow { transform: rotate(180deg); }

/* Products sub-menu */
.mobile-dropdown {
    list-style: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: var(--off-white);
}
.mobile-has-dropdown.open .mobile-dropdown {
    max-height: 200px;
}
.mobile-dropdown li a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.7rem 1.5rem 0.7rem 2.75rem;
    font-size: 0.9rem;
    color: var(--muted);
    border-bottom: 1px solid rgba(0,0,0,0.04);
    transition: color var(--transition), background var(--transition);
}
.mobile-dropdown li a i { color: var(--orange); width: 14px; flex-shrink: 0; }
.mobile-dropdown li a:hover { color: var(--orange); background: rgba(232,97,44,0.04); }

/* CTA item */
.mobile-nav-cta-item { padding: 1.25rem 1.5rem; }

/* Footer strip */
.mobile-nav-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    font-size: 0.78rem;
    color: var(--muted);
    flex-shrink: 0;
}
.mobile-nav-footer i { color: var(--orange); margin-right: 0.4rem; }

/* Lock body scroll when drawer is open */
body.nav-open { overflow: hidden; }
