\
:root {
    --navy: #071329;
    --navy-2: #0b1d3a;
    --blue: #1877f2;
    --cyan: #29c6e8;
    --violet: #6f63ff;
    --purple: #8b5cf6;
    --green: #13b981;
    --orange: #ff8a3d;
    --rose: #f45b92;
    --ink: #12213a;
    --muted: #64748b;
    --line: #dfe7f1;
    --soft: #f5f8fc;
    --white: #fff;
    --shadow: 0 24px 70px rgba(15, 34, 64, .12);
    --radius: 22px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
    background: #fff;
    line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.narrow { width: min(850px, 100%); }
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(16,45,82,.08);
}
.nav-shell {
    min-height: 78px;
    width: min(1240px, calc(100% - 34px));
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 30px;
}
.brand { display: flex; align-items: center; width: 178px; flex: 0 0 auto; }
.brand img { width: 100%; max-height: 54px; object-fit: contain; object-position: left center; }
.main-nav { display: flex; align-items: center; gap: 25px; margin-left: auto; }
.main-nav > a, .nav-dropdown > a {
    font-size: 14px;
    font-weight: 700;
    color: #4a5b74;
    padding: 28px 0 25px;
    border-bottom: 3px solid transparent;
}
.main-nav a:hover, .main-nav a.active { color: var(--blue); }
.main-nav > a.active, .nav-dropdown > a.active { border-bottom-color: var(--blue); }
.nav-dropdown { position: relative; }
.dropdown-panel {
    display: none;
    position: absolute;
    top: 70px;
    left: -120px;
    width: 430px;
    padding: 12px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
}
.nav-dropdown:hover .dropdown-panel { display: grid; grid-template-columns: 1fr 1fr; }
.dropdown-panel a {
    padding: 12px;
    border-radius: 12px;
    display: flex;
    gap: 10px;
    align-items: center;
}
.dropdown-panel a:hover { background: var(--soft); }
.dropdown-panel strong, .dropdown-panel small { display: block; }
.dropdown-panel strong { font-size: 13px; color: var(--ink); }
.dropdown-panel small { color: var(--muted); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.mini-icon {
    width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center;
    background: #eef5ff; color: var(--blue); font-weight: 900;
}
.nav-actions { display: flex; align-items: center; gap: 10px; }
.btn {
    min-height: 44px;
    padding: 0 18px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-weight: 800;
    font-size: 14px;
    border: 1px solid transparent;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
    background: linear-gradient(135deg, #1c78f2, #6159ff);
    color: #fff;
    box-shadow: 0 12px 28px rgba(45, 104, 240, .26);
}
.btn-ghost { border-color: #c8d7eb; color: #204267; background: #fff; }
.btn-ghost-dark { border-color: #b9c9dc; color: #183251; background: transparent; }
.btn-light { border-color: rgba(255,255,255,.34); background: rgba(255,255,255,.09); color: #fff; }
.btn-white { background: #fff; color: #173966; box-shadow: 0 14px 34px rgba(4,18,46,.18); }
.btn-glass { border-color: rgba(255,255,255,.28); background: rgba(255,255,255,.08); color: #fff; }
.btn-lg { min-height: 52px; padding: 0 23px; border-radius: 14px; }
.mobile-toggle { display: none; background: none; border: 0; padding: 8px; }
.mobile-toggle span { display: block; width: 24px; height: 2px; margin: 5px 0; background: var(--ink); }

.hero {
    position: relative;
    overflow: hidden;
    color: #fff;
    background:
      radial-gradient(circle at 78% 30%, rgba(83,92,255,.26), transparent 28%),
      radial-gradient(circle at 28% 70%, rgba(0,189,255,.16), transparent 34%),
      linear-gradient(125deg, #061229 0%, #0d2c58 54%, #12205a 100%);
}
.hero::after {
    content:""; position:absolute; inset:auto 0 0; height:1px; background:rgba(255,255,255,.14);
}
.hero-grid {
    min-height: 650px;
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 56px;
    align-items: center;
    padding: 80px 0;
}
.eyebrow {
    display: inline-flex; align-items: center; gap: 9px;
    font-size: 12px; line-height: 1; font-weight: 900; letter-spacing: .14em; text-transform: uppercase;
}
.eyebrow > span:first-child:not(:only-child) { width: 26px; height: 2px; background: var(--cyan); }
.eyebrow.dark { color: #315372; }
.eyebrow.light { color: #a7dbff; }
.hero h1, .page-hero h1, .product-hero h1 {
    margin: 20px 0 12px;
    font-size: clamp(48px, 6vw, 78px);
    line-height: .98;
    letter-spacing: -.055em;
}
.gradient-text {
    background: linear-gradient(90deg, #31c3f2, #5c7cff 48%, #b05cff);
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-lead { font-size: 22px; font-weight: 800; margin: 18px 0 8px; }
.hero-text { max-width: 600px; color: #c5d5ea; font-size: 17px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 30px 0; }
.hero-points { display: flex; flex-wrap: wrap; gap: 10px 18px; color: #bdcce0; font-size: 13px; font-weight: 700; }
.hero-visual { position: relative; min-height: 480px; display: grid; place-items: center; }
.dashboard-frame {
    width: min(640px, 100%);
    background: #f8fbff;
    color: var(--ink);
    border: 8px solid #243652;
    border-radius: 24px;
    box-shadow: 0 36px 90px rgba(0,0,0,.32);
    overflow: hidden;
    transform: perspective(1200px) rotateY(-5deg) rotateX(2deg);
}
.dash-top { height: 52px; display: flex; align-items: center; padding: 0 16px; gap: 16px; border-bottom: 1px solid #e5ebf2; background:#fff; }
.dash-logo { font-size: 13px; font-weight: 900; color: #152f55; }
.dash-logo b { color: #14aeca; }
.dash-search { flex: 1; max-width: 230px; color: #8493a6; background: #f3f6fa; padding: 7px 12px; border-radius: 8px; font-size: 10px; }
.dash-user { margin-left: auto; font-size: 10px; font-weight: 800; }
.dash-body { display: grid; grid-template-columns: 105px 1fr; min-height: 330px; }
.dash-body aside { background:#0f2442; color:#aabbd1; padding:16px 10px; display:flex; flex-direction:column; gap:8px; }
.dash-body aside span { font-size: 9px; padding:8px; border-radius:6px; }
.dash-body aside .selected { background:#1f6cd7; color:#fff; }
.dash-content { padding: 18px; }
.metric-row { display:grid; grid-template-columns:repeat(3,1fr); gap:10px; }
.metric-row div { padding:13px; border-radius:10px; background:#fff; border:1px solid #edf1f6; }
.metric-row small, .metric-row strong, .metric-row em { display:block; }
.metric-row small { color:#8492a5; font-size:8px; }
.metric-row strong { font-size:20px; margin:4px 0; }
.metric-row em { color:#11a66c; font-size:8px; font-style:normal; font-weight:800; }
.chart-card { margin-top:13px; background:#fff; border:1px solid #edf1f6; border-radius:10px; padding:14px; }
.chart-title { display:flex; justify-content:space-between; font-size:10px; font-weight:900; }
.chart-title span { color:#8492a5; font-weight:600; }
.chart-card svg { width:100%; height:auto; margin-top:10px; }
.ai-card, .mobile-card {
    position:absolute; background:rgba(255,255,255,.96); color:var(--ink); border-radius:16px;
    box-shadow:0 20px 50px rgba(0,0,0,.24);
}
.ai-card { right:-12px; bottom:30px; padding:13px 17px; display:flex; align-items:center; gap:11px; }
.ai-orb { width:38px; height:38px; border-radius:50%; display:grid; place-items:center; color:#fff; background:linear-gradient(135deg,#2ed0ee,#695cff,#b45bff); }
.ai-card strong,.ai-card small { display:block; }
.ai-card strong { font-size:12px; } .ai-card small { color:#758399; font-size:9px; }
.mobile-card { left:-16px; bottom:4px; padding:13px 16px; display:flex; align-items:center; gap:10px; }
.mobile-card strong { width:38px;height:38px;border-radius:10px;display:grid;place-items:center;background:linear-gradient(135deg,#1378ea,#19bad3);color:#fff;font-size:20px; }
.mobile-card span { font-size:10px; font-weight:800; line-height:1.25; }
.hero-glow { position:absolute; border-radius:50%; filter:blur(90px); pointer-events:none; }
.hero-glow-one { width:350px;height:350px;background:rgba(46,187,238,.11);left:-120px;top:130px; }
.hero-glow-two { width:420px;height:420px;background:rgba(131,73,255,.11);right:-160px;bottom:-80px; }

.section { padding: 92px 0; }
.section-soft { background: var(--soft); }
.section-heading { max-width: 650px; }
.section-heading.center { margin: 0 auto 46px; text-align: center; }
.section-heading h2, .industry-layout h2, .why-panel h2, .package-banner h2, .cta-panel h2, .best-for h2 {
    font-size: clamp(34px, 4vw, 52px); line-height:1.06; letter-spacing:-.04em; margin:14px 0 16px;
}
.section-heading p, .industry-layout p, .why-panel p, .package-banner p, .cta-panel p, .best-for p { color:var(--muted); font-size:16px; }

.product-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.product-grid-large { gap:24px; }
.product-card {
    position:relative; overflow:hidden; min-height:320px; padding:26px; border-radius:var(--radius);
    background:#fff; border:1px solid var(--line); box-shadow:0 12px 36px rgba(27,58,96,.06);
    transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.product-card::before { content:""; position:absolute; inset:0 0 auto; height:5px; background:var(--product); }
.product-card:hover { transform:translateY(-7px); box-shadow:0 24px 60px rgba(27,58,96,.14); border-color:#cbd9ea; }
.product-violet { --product:#6e63ff; } .product-emerald { --product:#11b67c; } .product-orange { --product:#ff873c; }
.product-blue { --product:#2584ef; } .product-rose { --product:#e9518c; } .product-purple { --product:#934ff3; }
.product-top { display:flex; justify-content:space-between; align-items:center; }
.product-icon { width:52px;height:52px;border-radius:15px;display:grid;place-items:center;background:color-mix(in srgb,var(--product) 12%, white);color:var(--product);font-size:24px;font-weight:900; }
.status-pill { font-size:10px;text-transform:uppercase;letter-spacing:.08em;font-weight:900;color:#52708f;background:#eef4fa;border-radius:999px;padding:6px 9px; }
.product-card h3,.product-card h2 { font-size:25px; margin:23px 0 10px; letter-spacing:-.03em; }
.product-card p { color:var(--muted); font-size:14px; }
.product-kicker { display:block; margin-top:24px; color:var(--product); font-size:10px; letter-spacing:.13em; font-weight:900; }
.tag-row { display:flex; flex-wrap:wrap; gap:7px; margin:20px 0 22px; }
.tag-row span { background:#f4f7fb; border:1px solid #e7edf5; color:#58708a; font-size:10px; font-weight:800; padding:6px 8px; border-radius:999px; }
.learn-link,.text-link { color:#1d67cb; font-weight:900; font-size:13px; }
.learn-link { position:absolute; bottom:24px; left:26px; }
.learn-link b { transition:margin .2s ease; } .product-card:hover .learn-link b { margin-left:6px; }
.compact-list { padding:0; margin:18px 0 45px; list-style:none; display:flex; flex-wrap:wrap; gap:6px; }
.compact-list li { background:#f4f7fb; border:1px solid #e8edf4; padding:6px 8px; border-radius:8px; font-size:10px; font-weight:800; color:#5f748d; }

.industry-layout { display:grid;grid-template-columns:.7fr 1.3fr;gap:60px;align-items:center; }
.industry-grid { display:grid;grid-template-columns:repeat(4,1fr);gap:14px; }
.industry-grid div { min-height:120px;border:1px solid var(--line);border-radius:18px;display:flex;flex-direction:column;align-items:center;justify-content:center;background:#fff;box-shadow:0 8px 26px rgba(27,58,96,.05); }
.industry-grid span { font-size:27px; } .industry-grid b { margin-top:8px;font-size:12px; }

.why-section { background:linear-gradient(130deg,#0a1730,#102e58 58%,#30216a); color:#fff; }
.why-grid { display:grid;grid-template-columns:.8fr 1.2fr;gap:70px;align-items:center; }
.why-panel p { color:#b9c9de; }
.why-features { display:grid;grid-template-columns:1fr 1fr;gap:14px; }
.why-features div { padding:24px;border:1px solid rgba(255,255,255,.12);border-radius:18px;background:rgba(255,255,255,.05); }
.why-features span { color:#62c6ff;font-size:11px;font-weight:900; }
.why-features h3 { margin:10px 0 8px;font-size:18px; }
.why-features p { margin:0;color:#b9c9de;font-size:13px; }

.package-banner {
    padding:44px;border-radius:26px;color:#fff;display:grid;grid-template-columns:1.2fr .9fr auto;gap:35px;align-items:center;
    background:linear-gradient(125deg,#4732b7,#155fd1 55%,#10a4d8);box-shadow:0 24px 64px rgba(42,78,180,.24);
}
.package-banner p { color:#dce8ff; }
.package-points { display:flex;flex-direction:column;gap:10px;font-weight:800;font-size:13px;color:#e6efff; }

.cta-panel {
    padding:40px 46px;border:1px solid var(--line);border-radius:26px;display:flex;justify-content:space-between;gap:35px;align-items:center;
    background:linear-gradient(120deg,#fff,#f5f9ff);box-shadow:0 18px 50px rgba(27,58,96,.08);
}
.cta-panel h2 { margin-bottom:10px;max-width:700px; }
.cta-panel p { max-width:720px; margin-bottom:0; }
.cta-actions { flex:0 0 auto; display:flex;flex-direction:column;gap:10px; }

.page-hero {
    padding:100px 0 90px;
    color:#fff;
    background:radial-gradient(circle at 80% 20%,rgba(100,88,255,.24),transparent 25%),linear-gradient(125deg,#071329,#0d2b55 60%,#24206a);
}
.page-hero h1 { font-size:clamp(45px,6vw,70px); }
.page-hero p { color:#c2d2e6;font-size:18px;max-width:760px; }

.product-hero { color:#fff;padding:100px 0;background:linear-gradient(125deg,#071329,#173d72 62%,#3c2f84);overflow:hidden; }
.product-hero-grid { display:grid;grid-template-columns:1fr 1fr;gap:70px;align-items:center; }
.product-hero h1 { margin-bottom:16px; }
.product-hero h2 { font-size:25px;line-height:1.25;max-width:600px; }
.product-hero p { color:#c8d7e9;font-size:17px; }
.feature-orbit { min-height:420px;position:relative;display:grid;place-items:center; }
.orbit-core { width:180px;height:180px;border-radius:50%;display:flex;flex-direction:column;align-items:center;justify-content:center;background:rgba(255,255,255,.09);border:1px solid rgba(255,255,255,.24);box-shadow:0 20px 70px rgba(0,0,0,.25); }
.orbit-core span { font-size:44px; } .orbit-core b { margin-top:9px;font-size:15px; }
.orbit-item { position:absolute;background:#fff;color:#213a59;padding:10px 14px;border-radius:12px;box-shadow:0 16px 40px rgba(0,0,0,.2);font-size:11px;font-weight:900; }
.orbit-0{top:18%;left:2%}.orbit-1{top:12%;right:2%}.orbit-2{bottom:18%;left:4%}.orbit-3{bottom:14%;right:3%}
.detail-grid { display:grid;grid-template-columns:.75fr 1.25fr;gap:80px; }
.feature-list { display:grid;grid-template-columns:1fr 1fr;gap:12px; }
.feature-list div { display:flex;gap:13px;padding:18px;border:1px solid var(--line);border-radius:14px;background:#fff; }
.feature-list span { color:#2275de;font-size:10px;font-weight:900; }
.feature-list p { margin:0;color:#415a74;font-size:13px; }
.best-for { text-align:center; }
.best-for-row { display:flex;justify-content:center;flex-wrap:wrap;gap:10px;margin-top:28px; }
.best-for-row span { padding:11px 16px;border:1px solid #dbe5ef;background:#fff;border-radius:999px;font-size:12px;font-weight:800;color:#536d88; }

.industry-cards { display:grid;grid-template-columns:repeat(3,1fr);gap:20px; }
.industry-card { padding:30px;border:1px solid var(--line);border-radius:20px;background:#fff; }
.industry-card > span { font-size:33px; }
.industry-card h2 { font-size:22px;margin:18px 0 10px; }
.industry-card p { color:var(--muted);font-size:14px; }
.industry-card a { color:#1769ce;font-size:12px;font-weight:900; }

.pricing-grid { display:grid;grid-template-columns:repeat(3,1fr);gap:20px;align-items:stretch; }
.price-card { position:relative;padding:32px;border:1px solid var(--line);border-radius:22px;background:#fff;box-shadow:0 12px 40px rgba(29,58,94,.06); }
.price-card.featured { border:2px solid #3e72ee;transform:translateY(-8px);box-shadow:0 22px 60px rgba(46,87,206,.16); }
.popular { position:absolute;top:-14px;right:22px;background:linear-gradient(135deg,#2079ef,#705cff);color:#fff;padding:7px 10px;border-radius:999px;font-size:9px;font-weight:900;letter-spacing:.08em; }
.price-top { display:flex;justify-content:space-between;align-items:center;font-size:11px;font-weight:900;color:#286bc7;letter-spacing:.08em; }
.price-top small { color:#8696a9;letter-spacing:0;font-weight:700; }
.price-card h2 { font-size:34px;margin:18px 0 8px; }
.price-card p { color:var(--muted);font-size:14px; }
.price-card ul { list-style:none;padding:0;margin:24px 0 30px;display:grid;gap:10px; }
.price-card li { font-size:13px;color:#415a74; }
.price-card li::before { content:"✓";color:#12a778;font-weight:900;margin-right:9px; }
.pricing-note { margin-top:30px;padding:20px 24px;border:1px dashed #b9cbe0;border-radius:16px;background:#fff; }
.pricing-note strong { color:#1e4f88; } .pricing-note p { margin:6px 0 0;color:var(--muted);font-size:13px; }

.value-grid { display:grid;grid-template-columns:repeat(3,1fr);gap:18px; }
.value-card { padding:30px;border:1px solid var(--line);border-radius:20px;background:#fff; }
.value-card > span { color:#2578de;font-size:11px;font-weight:900; }
.value-card h2 { margin:14px 0 10px;font-size:22px; }
.value-card p { margin:0;color:var(--muted);font-size:14px; }

.about-layout { display:grid;grid-template-columns:.8fr 1.2fr;gap:70px;align-items:start; }
.about-principles { display:grid;gap:12px; }
.about-principles > div { display:flex;gap:18px;padding:20px;border:1px solid var(--line);border-radius:16px; }
.about-principles b { color:#2777dc;font-size:11px; }
.about-principles strong,.about-principles small { display:block; }
.about-principles strong { margin-bottom:5px; } .about-principles small { color:var(--muted);font-size:13px; }

.contact-grid { display:grid;grid-template-columns:repeat(3,1fr);gap:18px; }
.contact-card { padding:32px;border:1px solid var(--line);border-radius:20px; }
.contact-number { width:36px;height:36px;border-radius:10px;background:#e9f3ff;color:#1d70d8;display:grid;place-items:center;font-size:10px;font-weight:900; }
.contact-card h2 { font-size:21px;margin:18px 0 8px; } .contact-card p { color:var(--muted);font-size:14px;margin:0; }
.contact-cta { margin-top:35px;padding:44px;border-radius:24px;background:linear-gradient(125deg,#0a1730,#174d87 60%,#323083);color:#fff;display:flex;justify-content:space-between;gap:35px;align-items:center; }
.contact-cta h2 { font-size:34px;margin:13px 0 8px; } .contact-cta p { color:#c4d4e9;max-width:650px;margin:0; }

.site-footer { padding:65px 0 20px;background:#071329;color:#c0cee0; }
.footer-grid { width:min(1180px,calc(100% - 40px));margin:0 auto;display:grid;grid-template-columns:1.6fr 1fr 1fr 1fr;gap:45px; }
.footer-brand img { width:180px;filter:brightness(0) invert(1); }
.footer-brand p { max-width:380px;color:#8fa5be;font-size:13px; }
.site-footer h4 { color:#fff;margin:0 0 14px;font-size:13px; }
.site-footer a { display:block;color:#93a8c0;font-size:12px;margin:8px 0; }
.site-footer a:hover { color:#fff; }
.footer-bottom { width:min(1180px,calc(100% - 40px));margin:45px auto 0;padding-top:18px;border-top:1px solid rgba(255,255,255,.1);display:flex;justify-content:space-between;color:#68809d;font-size:11px; }

.reveal { opacity:1; transform:none; }
.js .reveal { opacity:0; transform:translateY(18px); transition:opacity .65s ease,transform .65s ease; }
.js .reveal.visible { opacity:1; transform:none; }
.delay-1 { transition-delay:.08s; }.delay-2{transition-delay:.16s}

.error-page { min-height:100vh;display:grid;place-items:center;background:#071329;color:#fff; }
.error-card { text-align:center;padding:40px;width:min(520px,calc(100% - 40px)); }
.error-card img { width:190px;filter:brightness(0) invert(1); }
.error-card > span { display:block;font-size:72px;font-weight:900;margin-top:25px;color:#4cb4ff; }
.error-card h1 { margin:0;font-size:34px; }.error-card p{color:#a8bbd0;margin-bottom:25px;}

@media (max-width: 1050px) {
    .main-nav { gap:16px; }
    .nav-actions .btn-ghost { display:none; }
    .hero-grid,.product-hero-grid,.why-grid,.detail-grid,.about-layout { grid-template-columns:1fr; }
    .hero-grid { padding-top:65px; }
    .hero-copy { max-width:760px; }
    .hero-visual { min-height:430px; }
    .industry-layout { grid-template-columns:1fr; }
    .package-banner { grid-template-columns:1fr; }
    .cta-panel { align-items:flex-start; }
    .product-grid { grid-template-columns:repeat(2,1fr); }
}
@media (max-width: 820px) {
    .nav-shell { min-height:68px; }
    .brand { width:150px; }
    .mobile-toggle { display:block;margin-left:auto; }
    .main-nav {
        display:none;position:absolute;top:68px;left:0;right:0;margin:0;padding:14px 20px 20px;background:#fff;border-bottom:1px solid var(--line);box-shadow:0 18px 35px rgba(15,35,65,.1);
    }
    .main-nav.open { display:block; }
    .main-nav > a,.nav-dropdown > a { display:block;padding:12px 0;border:0; }
    .nav-dropdown:hover .dropdown-panel { display:none; }
    .nav-actions .btn-primary { min-height:40px;padding:0 13px;font-size:12px; }
    .hero-grid { min-height:auto; }
    .hero h1 { font-size:55px; }
    .dashboard-frame { transform:none; }
    .industry-grid { grid-template-columns:repeat(2,1fr); }
    .why-features,.feature-list { grid-template-columns:1fr; }
    .pricing-grid,.industry-cards,.value-grid,.contact-grid { grid-template-columns:1fr; }
    .price-card.featured { transform:none; }
    .cta-panel,.contact-cta { flex-direction:column;align-items:flex-start; }
    .cta-actions { flex-direction:row;flex-wrap:wrap; }
    .footer-grid { grid-template-columns:1.4fr 1fr 1fr; }
    .footer-grid > div:last-child { grid-column:2/4; }
}
@media (max-width: 560px) {
    .container { width:min(100% - 28px,1180px); }
    .nav-shell { width:calc(100% - 24px);gap:12px; }
    .brand { width:128px; }
    .nav-actions .btn-primary { padding:0 10px; }
    .nav-actions .btn-primary span { display:none; }
    .hero-grid { padding:55px 0;gap:25px; }
    .hero h1 { font-size:44px; }
    .hero-lead { font-size:18px; }
    .hero-text { font-size:15px; }
    .hero-points { display:grid;grid-template-columns:1fr 1fr; }
    .hero-visual { min-height:330px; }
    .dash-body { grid-template-columns:78px 1fr;min-height:250px; }
    .dash-body aside { padding:10px 6px; }.dash-body aside span{font-size:7px;padding:6px;}
    .metric-row div:nth-child(3){display:none}.metric-row{grid-template-columns:1fr 1fr}
    .chart-card{padding:8px}.dash-content{padding:10px}
    .ai-card{right:0;bottom:8px}.mobile-card{left:0}
    .section { padding:65px 0; }
    .product-grid { grid-template-columns:1fr; }
    .industry-grid { gap:10px; }.industry-grid div{min-height:100px}
    .package-banner { padding:30px; }
    .cta-panel,.contact-cta { padding:30px; }
    .footer-grid { grid-template-columns:1fr 1fr; }
    .footer-brand { grid-column:1/3; }
    .footer-grid > div:last-child { grid-column:auto; }
    .footer-bottom { flex-direction:column;gap:6px; }
    .feature-orbit { min-height:330px;transform:scale(.88); }
}


/* V2A full-content additions */
.trust-strip {
    border-top: 1px solid #e4ebf3;
    border-bottom: 1px solid #e4ebf3;
    background: #fff;
}
.trust-strip .container {
    min-height: 88px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 28px;
    align-items: center;
}
.trust-title {
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .12em;
    color: #6a7f98;
    text-transform: uppercase;
}
.trust-items {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}
.trust-items span {
    text-align: center;
    padding: 9px 10px;
    border-radius: 10px;
    color: #45617d;
    background: #f7f9fc;
    font-size: 11px;
    font-weight: 800;
}
.module-showcase {
    display: grid;
    grid-template-columns: .72fr 1.28fr;
    gap: 58px;
    align-items: start;
}
.module-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}
.module-card {
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 17px;
    background: #fff;
}
.module-card span {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: #edf5ff;
    font-size: 20px;
}
.module-card h3 {
    margin: 14px 0 7px;
    font-size: 17px;
}
.module-card p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
}
.flow-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 34px;
}
.flow-card {
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    min-height: 210px;
}
.flow-card > b {
    display: inline-grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 11px;
    background: #eaf3ff;
    color: #1c6dd2;
    font-size: 11px;
}
.flow-card h3 {
    margin: 16px 0 8px;
    font-size: 18px;
}
.flow-card p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}
.platform-section {
    background:
      radial-gradient(circle at 85% 20%, rgba(45, 157, 255, .17), transparent 28%),
      linear-gradient(130deg, #08152c, #123967 60%, #25336f);
    color: #fff;
}
.platform-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 60px;
    align-items: center;
}
.platform-copy p {
    color: #bcd0e6;
}
.architecture-panel {
    display: grid;
    gap: 13px;
}
.arch-row {
    padding: 18px 20px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,.13);
    background: rgba(255,255,255,.055);
}
.arch-row strong, .arch-row small {
    display: block;
}
.arch-row strong {
    font-size: 15px;
    color: #fff;
}
.arch-row small {
    margin-top: 5px;
    color: #abc2da;
    line-height: 1.5;
}
.faq-grid {
    display: grid;
    grid-template-columns: .7fr 1.3fr;
    gap: 55px;
}
.faq-list {
    display: grid;
    gap: 10px;
}
.faq-item {
    padding: 18px 20px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
}
.faq-item h3 {
    margin: 0 0 7px;
    font-size: 15px;
}
.faq-item p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}
.product-detail-intro {
    max-width: 760px;
    margin-bottom: 36px;
}
.capability-groups {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}
.capability-box {
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 17px;
    background: #fff;
}
.capability-box h3 {
    margin: 0 0 10px;
    font-size: 17px;
}
.capability-box p, .capability-box li {
    color: var(--muted);
    font-size: 13px;
}
.capability-box ul {
    padding-left: 18px;
    margin: 0;
}
@media (max-width: 900px) {
    .trust-strip .container,
    .module-showcase,
    .platform-grid,
    .faq-grid { grid-template-columns: 1fr; }
    .trust-items { grid-template-columns: repeat(2,1fr); padding-bottom: 18px; }
    .flow-grid { grid-template-columns: repeat(2,1fr); }
    .capability-groups { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
    .module-grid, .flow-grid { grid-template-columns: 1fr; }
    .trust-items { grid-template-columns: 1fr 1fr; }
}
