:root {
    --brand-light: #c5d4e4;
    --brand-primary: #1565a3;
    --brand-primary-hover: #0d4a7a;
    --brand-dark: #0c1929;
    --text: #374151;
    --text-muted: #6b7280;
    --bg: #fafbfc;
    --bg-alt: #f1f5f9;
    --bg-card: #ffffff;
    --bg-tint: rgba(21, 101, 163, 0.06);
    --border: #e5e7eb;
    --border-light: #eef1f5;
    --white: #ffffff;
    --shadow-sm: 0 1px 3px rgba(12, 25, 41, 0.04);
    --shadow-md: 0 4px 20px rgba(12, 25, 41, 0.06);
    --shadow-lg: 0 20px 50px -12px rgba(12, 25, 41, 0.1);
    --radius: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition: 0.2s ease;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 17px;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
}
.wrap { max-width: 1120px; margin: 0 auto; padding: 0 28px; position: relative; }
/* 3D360 logo-inspired accent: subtle 360° circle */
.section { padding: 96px 0; }
.section-alt { background: var(--bg-alt); }
.section-tint { background: var(--bg-tint); }
.section-label {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--brand-primary);
    margin-bottom: 14px;
    padding: 6px 12px;
    background: rgba(21, 101, 163, 0.08);
    border-radius: 100px;
}
.section-label::before { content: none !important; display: none !important; }
h1, h2, h3 { color: var(--brand-dark); font-weight: 700; margin: 0 0 0.5em; letter-spacing: -0.025em; }
h1 { font-size: clamp(2.5rem, 6vw, 3.5rem); line-height: 1.1; font-weight: 800; }
h2 { font-size: clamp(1.75rem, 4.2vw, 2.5rem); line-height: 1.2; max-width: 18em; font-weight: 700; }
h3 { font-size: 1.125rem; font-weight: 600; }
p { margin: 0 0 1em; color: var(--text); max-width: 65ch; }
a { color: var(--brand-primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--brand-primary-hover); text-decoration: underline; }

/* Lazy-reveal: sections animate in when they enter viewport */
.lazy-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.lazy-reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}
.lazy-reveal .lazy-reveal-child { opacity: 0; transform: translateY(16px); transition: opacity 0.5s ease-out, transform 0.5s ease-out; }
.lazy-reveal.in-view .lazy-reveal-child { opacity: 1; transform: translateY(0); }
.lazy-reveal .lazy-reveal-child:nth-child(1) { transition-delay: 0.05s; }
.lazy-reveal .lazy-reveal-child:nth-child(2) { transition-delay: 0.1s; }
.lazy-reveal .lazy-reveal-child:nth-child(3) { transition-delay: 0.15s; }
.lazy-reveal .lazy-reveal-child:nth-child(4) { transition-delay: 0.2s; }
.lazy-reveal .lazy-reveal-child:nth-child(5) { transition-delay: 0.25s; }
.lazy-reveal .lazy-reveal-child:nth-child(6) { transition-delay: 0.3s; }

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(250, 251, 252, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-light);
    transition: box-shadow var(--transition), border-color var(--transition);
}
.header.scrolled { box-shadow: var(--shadow-sm); border-bottom-color: var(--border); }
.header .wrap { display: flex; align-items: center; justify-content: space-between; padding: 20px 28px; }
.logo { display: flex; align-items: center; }
.logo img { display: block; max-height: 40px; width: auto; object-fit: contain; }
.nav { display: flex; flex-wrap: wrap; gap: 20px 32px; align-items: center; justify-content: flex-end; }
.nav a {
    color: var(--text);
    font-weight: 500;
    font-size: 0.9375rem;
    position: relative;
}
.nav a:hover { color: var(--brand-primary); text-decoration: none; }
.nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: var(--brand-primary);
    transition: width var(--transition);
}
.nav a:hover::after { width: 100%; }
.nav a.btn.btn-primary { color: #fff; }
.nav a.btn.btn-primary:hover { color: #fff; }
.nav a.btn.btn-primary::after { display: none; }
/* Mobile: hide nav, show burger */
.nav-burger {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    background: var(--bg-card);
    color: var(--brand-dark);
    font-size: 1.25rem;
    cursor: pointer;
    transition: background var(--transition), color var(--transition);
}
.nav-burger:hover { background: var(--bg-alt); color: var(--brand-primary); }
.nav-burger:focus-visible { outline: 2px solid var(--brand-primary); outline-offset: 2px; }
.nav-burger[aria-expanded="true"] { color: var(--brand-primary); }
@media (max-width: 640px) {
    .nav-burger { display: flex; }
    .nav { display: none; }
}
/* Mobile menu overlay - above header */
.header { position: relative; z-index: 100; }
.nav-mobile {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(12, 25, 41, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease, pointer-events 0.25s ease;
}
.nav-mobile.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.nav-mobile-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(320px, 85vw);
    height: 100%;
    background: var(--bg-card);
    box-shadow: -8px 0 32px rgba(12, 25, 41, 0.15);
    padding: 24px 0 32px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}
.nav-mobile.is-open .nav-mobile-panel { transform: translateX(0); }
.nav-mobile-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-left: auto;
    margin-right: 20px;
    margin-bottom: 16px;
    padding: 0;
    border: none;
    border-radius: var(--radius);
    background: var(--bg-alt);
    color: var(--text);
    font-size: 1.25rem;
    cursor: pointer;
    transition: background var(--transition), color var(--transition);
}
.nav-mobile-close:hover { background: var(--border-light); color: var(--brand-primary); }
.nav-mobile a {
    display: block;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--brand-dark);
    border-bottom: 1px solid var(--border-light);
    text-decoration: none;
    transition: background var(--transition), color var(--transition);
}
.nav-mobile a:hover { background: var(--bg-alt); color: var(--brand-primary); }
.nav-mobile a:last-child { border-bottom: none; }
@media (min-width: 641px) {
    .nav-mobile { display: none !important; }
}

/* Hero - centered, headline + CTAs + trusted strip */
.hero {
    padding: 140px 0 120px;
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 50%, var(--bg) 100%);
    position: relative;
    overflow: hidden;
    padding-top:40px;
    padding-bottom:20px;
}
/* Jelly blob background animation */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}
.hero-blob {
    position: absolute;
    border-radius: 60% 40% 50% 60% / 55% 50% 60% 45%;
    filter: blur(40px);
    opacity: 0.9;
    will-change: transform;
}
.hero-blob-1 {
    width: min(85vw, 560px);
    height: min(85vw, 560px);
    background: rgba(21, 101, 163, 0.22);
    top: -15%;
    left: -10%;
    animation: jellyBlob1 9.5s ease-in-out infinite;
}
.hero-blob-2 {
    width: min(75vw, 460px);
    height: min(75vw, 460px);
    background: rgba(180, 195, 210, 0.6);
    bottom: -20%;
    right: -5%;
    animation: jellyBlob2 11s ease-in-out infinite 0.5s;
}
.hero-blob-3 {
    width: min(55vw, 360px);
    height: min(55vw, 360px);
    background: rgba(21, 101, 163, 0.18);
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: jellyBlob3 10.5s ease-in-out infinite 1s;
}
.hero-blob-4 {
    width: min(50vw, 320px);
    height: min(50vw, 320px);
    background: rgba(207, 212, 219, 0.7);
    top: 10%;
    right: 15%;
    animation: jellyBlob4 9s ease-in-out infinite 0.3s;
}
@keyframes jellyBlob1 {
    0%, 100% { transform: translate(0, 0) scale(1); border-radius: 60% 40% 50% 60% / 55% 50% 60% 45%; }
    25% { transform: translate(45px, 60px) scale(1.12); border-radius: 50% 60% 40% 55% / 60% 45% 55% 50%; }
    50% { transform: translate(-35px, 25px) scale(0.92); border-radius: 55% 45% 60% 40% / 45% 60% 50% 55%; }
    75% { transform: translate(55px, -40px) scale(1.08); border-radius: 40% 55% 55% 60% / 50% 55% 45% 60%; }
}
@keyframes jellyBlob2 {
    0%, 100% { transform: translate(0, 0) scale(1); border-radius: 55% 55% 45% 55% / 50% 60% 40% 55%; }
    33% { transform: translate(-70px, -80px) scale(1.15); border-radius: 60% 40% 55% 50% / 55% 50% 60% 45%; }
    66% { transform: translate(50px, 45px) scale(0.9); border-radius: 45% 60% 50% 55% / 40% 55% 55% 60%; }
}
@keyframes jellyBlob3 {
    0%, 100% { transform: translate(-50%, -50%) scale(1); border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%; }
    25% { transform: translate(calc(-50% - 30px), calc(-50% - 50px)) scale(1.18); border-radius: 60% 40% 55% 50% / 55% 50% 60% 45%; }
    50% { transform: translate(calc(-50% + 40px), calc(-50% + 20px)) scale(0.88); border-radius: 45% 60% 50% 55% / 40% 55% 55% 60%; }
    75% { transform: translate(calc(-50% - 20px), calc(-50% + 45px)) scale(1.1); border-radius: 55% 45% 60% 40% / 50% 55% 45% 60%; }
}
@keyframes jellyBlob4 {
    0%, 100% { transform: translate(0, 0); border-radius: 45% 60% 55% 50% / 55% 45% 55% 50%; }
    25% { transform: translate(-60px, 35px); border-radius: 60% 45% 45% 60% / 50% 60% 50% 45%; }
    50% { transform: translate(40px, -25px); border-radius: 50% 55% 60% 45% / 55% 50% 45% 60%; }
    75% { transform: translate(-30px, -40px); border-radius: 55% 50% 45% 55% / 60% 45% 55% 50%; }
}
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-light), transparent);
    opacity: 0.8;
    z-index: 1;
}
.hero .wrap {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 970px;
    margin-left: auto;
    margin-right: auto;
}
.hero-content { width: 100%; }
.hero h1 {
    margin-bottom: 28px;
    max-width: none;
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
    font-weight: 800;
}
.hero-title-brand {
    color: var(--brand-primary);
    font-weight: 700;
}
.hero .subtitle {
    font-size: 1.25rem;
    line-height: 1.65;
    color: var(--text-muted);
    margin: 0 auto 26px;
    font-weight: 500;
}
.hero ul { display: none; }
.hero-cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-bottom: 25px;
}
.hero-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 0 auto 22px;
    margin-bottom:70px;
}
.pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    color: var(--text);
    font-size: 0.9375rem;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
}
.pill i { color: var(--brand-primary); }
.hero .trust-bar {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    max-width: none;
}
/* Trusted by - logo strip (marquee) */
.hero-trust-strip {
    width: 100%;
    overflow: hidden;
    padding: 24px 0;
    border-top: 1px solid var(--border-light);
    margin-top: 8px;
}
.hero-trust-track {
    display: flex;
    gap: 48px;
    animation: heroMarquee 35s linear infinite;
    width: max-content;
}
.hero-trust-track:hover { animation-play-state: paused; }
.hero-trust-item {
    flex-shrink: 0;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-muted);
    opacity: 0.9;
    white-space: nowrap;
}
@keyframes heroMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: background var(--transition), color var(--transition), transform 0.2s ease, box-shadow 0.2s ease;
}
.btn:focus-visible { outline: 2px solid var(--brand-primary); outline-offset: 3px; }
.btn-primary {
    background: var(--brand-primary);
    color: var(--white);
    box-shadow: 0 2px 12px rgba(21, 101, 163, 0.35);
}
.btn-primary:hover {
    background: var(--brand-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(21, 101, 163, 0.35);
    text-decoration: none;
}
.btn-secondary {
    background: var(--bg-card);
    color: var(--brand-primary);
    border: 2px solid var(--border);
    box-shadow: var(--shadow-sm);
}
.btn-secondary:hover {
    background: var(--bg-alt);
    border-color: var(--brand-primary);
    color: var(--brand-primary-hover);
    text-decoration: none;
}
.hero-visual {
    width: 100%;
    max-width: 360px;
    margin: 0 auto 32px;
    padding: 12px;
    border-radius: 32px;
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.08),
        0 2px 8px rgba(12, 25, 41, 0.06),
        0 12px 40px -8px rgba(12, 25, 41, 0.15),
        0 32px 64px -16px rgba(12, 25, 41, 0.2);
    border: 1px solid rgba(255,255,255,0.12);
    background: linear-gradient(165deg, #1a2d42 0%, var(--brand-dark) 50%, #0f1926 100%);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hero-visual:hover {
    transform: translateY(-4px);
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.1),
        0 8px 24px rgba(12, 25, 41, 0.1),
        0 24px 56px -8px rgba(12, 25, 41, 0.2),
        0 48px 80px -16px rgba(12, 25, 41, 0.25);
}
.hero-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 28px;
    padding: 1px;
    background: linear-gradient(165deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.02) 50%, transparent 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}
.hero-visual .hero-video-wrap {
    position: relative;
    width: 100%;
    padding-bottom: 177.78%;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
}
.hero-visual .hero-video-wrap video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.hero-visual .hero-video-wrap video:fullscreen,
.hero-visual .hero-video-wrap video:-webkit-full-screen {
    object-fit: contain;
    width: 100%;
    height: 100%;
}
.hero-visual .hero-video-wrap:fullscreen video,
.hero-visual .hero-video-wrap:-webkit-full-screen video {
    object-fit: contain;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.hero-visual-caption {
    width: 100%;
    text-align: center;
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin: 0 auto;
    margin-top: -20px;
    margin-bottom: 12px;
    font-weight: 500;
}
.hero-visual img { width: 100%; height: auto; display: block; object-fit: cover; max-height: 380px; }
.img-placeholder { min-height: 200px; background: var(--bg-alt); border: 1px dashed var(--border-light); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; color: var(--text-muted); font-size: 0.8125rem; }
.img-placeholder img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius); }

/* What is 3D Navigator */
.what-with-visual { display: grid; grid-template-columns: 1fr; gap: 40px 56px; }
@media (min-width: 800px) { .what-with-visual { grid-template-columns: 1fr 1fr; align-items: start; } }
.what-with-visual .what-visual { grid-column: 1 / -1; }
.what-intro { max-width: 720px; }
.what-visual { min-height: 200px; background: var(--bg-alt); border: 1px solid var(--border-light); border-radius: var(--radius-lg); overflow: hidden; display: flex; justify-content: center; align-items: center; }
.what-visual img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-lg); max-height: 320px; }
.what-visual video { width: 100%; max-width: 100%; height: auto; border-radius: var(--radius-lg); display: block; }
.key-capabilities { margin: 0; padding: 0; border: none; }
.key-capabilities h3 { margin-bottom: 18px; font-size: 0.8125rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; }
.key-capabilities ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.key-capabilities li { padding-left: 36px; position: relative; }
.key-capabilities .cap-icon { position: absolute; left: 0; top: 2px; width: 22px; height: 22px; color: var(--brand-primary); }

/* Use cases - cards */
.use-intro { max-width: 640px; margin-bottom: 48px; }
.cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 28px; }
.card-icon { width: 44px; height: 44px; color: var(--brand-primary); margin-bottom: 18px; flex-shrink: 0; }
.card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
    box-shadow: var(--shadow-sm);
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--border); }
.card h3 { margin-bottom: 12px; color: var(--brand-primary); font-size: 1.0625rem; font-weight: 600; }
.card p { margin: 0; font-size: 0.9375rem; line-height: 1.65; color: var(--text); }

/* Benefits */
.benefits-intro { max-width: 640px; margin-bottom: 48px; }
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 28px; }
.benefit {
    padding: 32px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
    box-shadow: var(--shadow-sm);
}
.benefit:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); border-color: var(--border); }
.benefit-icon { width: 40px; height: 40px; color: var(--brand-primary); margin-bottom: 16px; flex-shrink: 0; }
.benefit h3 { margin-bottom: 12px; font-size: 1.0625rem; font-weight: 600; }

/* How it works */
.steps-intro { max-width: 640px; margin-bottom: 48px; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 900px) { .steps { grid-template-columns: 1fr; } }
.step {
    padding: 32px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    position: relative;
    transition: box-shadow var(--transition), transform var(--transition);
    box-shadow: var(--shadow-sm);
}
.step:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: var(--brand-primary);
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 18px;
}
.step h3 { margin-bottom: 12px; font-size: 1.0625rem; font-weight: 600; }
.step-note { margin-top: 32px; font-size: 0.9375rem; color: var(--text-muted); max-width: 640px; }
.how-visual-and-video {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 44px;
    align-items: start;
}
@media (min-width: 720px) {
    .how-visual-and-video { grid-template-columns: 1fr 1fr; }
}
.how-visual { min-height: 200px; background: var(--bg-alt); border: 1px solid var(--border-light); border-radius: var(--radius-lg); overflow: hidden; }
.how-visual img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-lg); }
/* YouTube / video embed */
.video-section { width: 100%; }
.video-section h3 { margin-bottom: 12px; font-size: 1rem; }
.video-wrap {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    background: var(--bg-alt);
}
.video-wrap iframe,
.video-wrap video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Why us */
.why-intro { max-width: 640px; margin-bottom: 36px; }
.why-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 18px; }
.why-list li { padding-left: 32px; position: relative; }
.why-list li::before { content: '\2022'; position: absolute; top:-5px;left: 10px; color: var(--brand-primary); font-weight: 700; font-size: 1.125rem; }

/* Pricing logic */
.pricing-intro { max-width: 720px; margin-bottom: 28px; }
.pricing-intro ul { margin: 0 0 24px; padding-left: 22px; }
.pricing-intro li { margin-bottom: 10px; }
.pricing-cta { margin-top: 28px; }

/* FAQ - centered, animated +/- icon */
.faq-wrap { display: flex; justify-content: center; }
.faq-list { width: 100%; border: 1px solid var(--border-light); border-radius: var(--radius-lg); overflow: hidden; background: var(--bg-card); margin: 0 auto; box-shadow: var(--shadow-sm); }
.faq-item { border-bottom: 1px solid var(--border-light); }
.faq-item:last-child { border-bottom: none; }
.faq-q {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--brand-dark);
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    transition: color var(--transition), background var(--transition);
}
.faq-q:hover { color: var(--brand-primary); background: var(--bg-alt); }
.faq-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    border-radius: 10px;
    background: rgba(21, 101, 163, 0.08);
    color: var(--brand-primary);
    position: relative;
    transition: background var(--transition), transform var(--transition);
}
.faq-q:hover .faq-icon { background: rgba(21, 101, 163, 0.12); }
.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
