:root {
  --blue: #0b5cff;
  --blue-dark: #073a9c;
  --pink: #ff3c78;
  --ink: #0a1230;
  --muted: #65708a;
  --line: rgba(10, 18, 48, 0.09);
  --surface: #ffffff;
  --soft: #f5f8ff;
  --shadow: 0 24px 70px rgba(25, 55, 120, 0.14);
  --radius-lg: 28px;
  --radius-md: 20px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #fff;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.site-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.025;
  z-index: 999;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

.container { width: min(calc(100% - 36px), var(--container)); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.84);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(10,18,48,.07);
}
.header-inner { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: max-content; }
.brand-mark { width: 46px; height: 46px; display: grid; place-items: center; }
.brand-mark svg { width: 100%; height: 100%; }
.brand strong { display: block; font-size: 18px; letter-spacing: -.4px; }
.brand small { display: block; color: var(--muted); margin-top: 1px; font-size: 11px; }
.main-nav { display: flex; align-items: center; gap: 28px; font-size: 14px; font-weight: 700; }
.main-nav a { color: #36415b; transition: .25s ease; }
.main-nav a:hover { color: var(--blue); }
.nav-cta { padding: 12px 18px; color: white !important; border-radius: 999px; background: linear-gradient(135deg, var(--blue), #2748ff); box-shadow: 0 12px 28px rgba(11,92,255,.25); }
.menu-button { display: none; width: 44px; height: 44px; border: 0; border-radius: 14px; background: var(--soft); padding: 11px; }
.menu-button span { display: block; height: 2px; background: var(--ink); margin: 5px 0; border-radius: 2px; transition: .25s ease; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 72px;
  background:
    radial-gradient(circle at 17% 20%, rgba(11,92,255,.15), transparent 33%),
    radial-gradient(circle at 84% 24%, rgba(255,60,120,.14), transparent 28%),
    linear-gradient(180deg, #fbfdff 0%, #f7f9ff 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(11,92,255,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(11,92,255,.03) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.7), transparent);
}
.hero-glow { position: absolute; border-radius: 50%; filter: blur(15px); opacity: .6; }
.hero-glow-one { width: 380px; height: 380px; background: rgba(11,92,255,.12); left: -180px; top: -130px; }
.hero-glow-two { width: 320px; height: 320px; background: rgba(255,60,120,.12); right: -100px; bottom: -150px; }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.04fr .96fr; gap: 48px; align-items: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; padding: 9px 14px; border-radius: 999px; background: rgba(255,255,255,.75); border: 1px solid rgba(11,92,255,.12); font-size: 12px; font-weight: 800; color: var(--blue-dark); box-shadow: 0 10px 30px rgba(40,60,120,.07); }
.eyebrow-dot { width: 8px; height: 8px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--pink)); box-shadow: 0 0 0 5px rgba(11,92,255,.1); }
.hero h1 { margin: 24px 0 20px; max-width: 680px; font-size: clamp(44px, 6vw, 76px); line-height: .98; letter-spacing: -4.4px; }
.hero h1 span { background: linear-gradient(120deg, var(--blue) 0%, #536eff 48%, var(--pink) 100%); background-clip: text; -webkit-background-clip: text; color: transparent; }
.hero-copy > p { margin: 0; max-width: 620px; color: var(--muted); font-size: 18px; line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button { min-height: 50px; padding: 0 20px; border-radius: 15px; border: 0; display: inline-flex; align-items: center; justify-content: center; gap: 10px; font-weight: 800; cursor: pointer; transition: transform .25s ease, box-shadow .25s ease, background .25s ease; }
.button:hover { transform: translateY(-2px); }
.button svg { width: 20px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.button-primary { color: #fff; background: linear-gradient(135deg, var(--blue), #2549ff); box-shadow: 0 16px 34px rgba(11,92,255,.28); }
.button-secondary { color: var(--ink); background: rgba(255,255,255,.78); border: 1px solid rgba(10,18,48,.1); box-shadow: 0 12px 30px rgba(31,49,100,.07); }
.quick-search { margin-top: 24px; min-height: 62px; max-width: 580px; padding: 0 16px; display: grid; grid-template-columns: auto 1fr auto; gap: 12px; align-items: center; background: rgba(255,255,255,.9); border: 1px solid rgba(10,18,48,.09); border-radius: 18px; box-shadow: 0 20px 50px rgba(31,49,100,.1); }
.quick-search svg { width: 24px; fill: none; stroke: var(--blue); stroke-width: 2; stroke-linecap: round; }
.quick-search input { width: 100%; border: 0; outline: 0; background: transparent; color: var(--ink); font-weight: 700; }
.quick-search input::placeholder { color: #8992a7; }
kbd { border: 1px solid #dce2f0; border-bottom-width: 3px; background: #f7f9ff; padding: 5px 8px; border-radius: 7px; color: #7d879c; font-size: 11px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 20px; color: #667188; font-size: 12px; font-weight: 700; }
.hero-visual { position: relative; min-height: 500px; display: grid; place-items: center; perspective: 1200px; }
.orbital-scene { position: relative; width: min(100%, 500px); aspect-ratio: 1; display: grid; place-items: center; transform: rotateX(5deg) rotateY(-8deg); }
.globe { position: relative; width: 250px; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle at 30% 24%, #fefeff 0%, #88b8ff 18%, #286cf2 48%, #103e9f 75%, #071f5c 100%); box-shadow: inset -28px -32px 60px rgba(1,16,60,.48), inset 18px 14px 42px rgba(255,255,255,.55), 0 45px 90px rgba(21,72,180,.3), 0 0 0 18px rgba(11,92,255,.04); animation: float 6s ease-in-out infinite; overflow: hidden; }
.globe::before, .globe::after { content:""; position:absolute; inset: 25% -25%; border-radius: 50%; border: 2px solid rgba(255,255,255,.32); transform: rotate(-18deg); }
.globe::after { inset: -18% 38%; transform: rotate(18deg); }
.globe-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.18) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.16) 1px, transparent 1px); background-size: 28px 28px; border-radius: inherit; opacity: .65; }
.globe-shine { position: absolute; width: 76px; height: 130px; left: 42px; top: 24px; background: rgba(255,255,255,.38); filter: blur(20px); border-radius: 50%; transform: rotate(25deg); }
.orbit { position: absolute; border: 1px solid rgba(11,92,255,.2); border-radius: 50%; }
.orbit-one { width: 96%; height: 38%; transform: rotate(-12deg); box-shadow: 0 0 28px rgba(11,92,255,.13); }
.orbit-two { width: 76%; height: 76%; border-color: rgba(255,60,120,.16); transform: rotate(32deg); }
.floating-chip { position: absolute; padding: 11px 15px; border-radius: 14px; background: rgba(255,255,255,.82); border: 1px solid rgba(255,255,255,.8); backdrop-filter: blur(12px); box-shadow: 0 18px 45px rgba(26,49,105,.16); font-size: 12px; font-weight: 800; animation: float 5s ease-in-out infinite; }
.chip-one { top: 9%; left: 7%; }
.chip-two { top: 22%; right: 2%; animation-delay: -.8s; }
.chip-three { bottom: 17%; left: 3%; animation-delay: -1.6s; }
.chip-four { bottom: 7%; right: 9%; animation-delay: -2.2s; }
.hero-card-preview { position: absolute; display: flex; align-items: center; gap: 12px; min-width: 190px; padding: 14px 16px; border-radius: 18px; background: rgba(255,255,255,.88); backdrop-filter: blur(16px); border: 1px solid rgba(255,255,255,.9); box-shadow: 0 22px 55px rgba(24,48,110,.2); animation: float 5.8s ease-in-out infinite; }
.preview-one { right: 0; top: 16%; transform: rotate(4deg); }
.preview-two { left: 1%; bottom: 17%; transform: rotate(-5deg); animation-delay: -1.4s; }
.mini-icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 13px; background: #eef4ff; font-size: 21px; }
.hero-card-preview small, .hero-card-preview strong { display: block; }
.hero-card-preview small { color: var(--muted); font-size: 10px; }
.hero-card-preview strong { margin-top: 2px; font-size: 13px; }

.section { padding: 96px 0; }
.categories-section { background: #fff; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 34px; }
.section-heading.centered { display: block; text-align: center; max-width: 720px; margin-inline: auto; margin-bottom: 38px; }
.section-kicker { display: inline-block; color: var(--blue); text-transform: uppercase; letter-spacing: 1.6px; font-weight: 800; font-size: 11px; margin-bottom: 11px; }
.section-heading h2, .faq-intro h2 { margin: 0; font-size: clamp(34px, 5vw, 54px); letter-spacing: -2.5px; line-height: 1.04; }
.section-heading p, .faq-intro p { color: var(--muted); font-size: 16px; line-height: 1.7; margin: 12px 0 0; }
.category-count { min-width: 118px; padding: 16px 20px; border-radius: 18px; background: var(--soft); border: 1px solid rgba(11,92,255,.08); text-align: center; }
.category-count strong { display: block; font-size: 28px; color: var(--blue); }
.category-count span { font-size: 11px; color: var(--muted); font-weight: 700; }
.mobile-category-select { display: none; }
.category-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.category-card { --accent: var(--blue); position: relative; min-height: 370px; border-radius: 26px; overflow: hidden; isolation: isolate; background: #16203c; box-shadow: 0 18px 45px rgba(21,43,96,.13); cursor: pointer; transform-style: preserve-3d; transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease; }
.category-card::before { content:""; position:absolute; inset: 0; background: linear-gradient(180deg, rgba(2,8,30,.02) 14%, rgba(4,10,34,.84) 74%, rgba(4,10,34,.97) 100%); z-index: 1; }
.category-card::after { content:""; position:absolute; inset: 0; background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 45%), rgba(255,255,255,.25), transparent 30%); opacity: 0; transition: opacity .3s ease; z-index: 2; pointer-events: none; }
.category-card:hover { transform: translateY(-9px) rotateX(var(--rotate-x, 0deg)) rotateY(var(--rotate-y, 0deg)); box-shadow: 0 30px 70px rgba(20,43,100,.23); }
.category-card:hover::after { opacity: 1; }
.category-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .65s cubic-bezier(.2,.8,.2,1), filter .35s ease; }
.category-card:hover .category-image { transform: scale(1.075); filter: saturate(1.08); }
.category-badge { position: absolute; z-index: 3; top: 18px; left: 18px; width: 52px; height: 52px; display: grid; place-items: center; border-radius: 17px; color: white; font-size: 25px; background: color-mix(in srgb, var(--accent) 90%, white 10%); border: 1px solid rgba(255,255,255,.38); box-shadow: 0 14px 32px color-mix(in srgb, var(--accent) 30%, transparent); transform: translateZ(30px); }
.category-number { position: absolute; z-index: 3; top: 20px; right: 20px; color: rgba(255,255,255,.9); font-size: 11px; font-weight: 800; letter-spacing: 1px; }
.category-content { position: absolute; z-index: 3; inset: auto 0 0; padding: 26px; transform: translateZ(40px); }
.category-content h3 { margin: 0 0 9px; color: #fff; font-size: 26px; letter-spacing: -1.2px; }
.category-content p { margin: 0; min-height: 48px; max-width: 90%; color: rgba(255,255,255,.76); font-size: 13px; line-height: 1.55; }
.category-action { margin-top: 20px; display: inline-flex; align-items: center; gap: 9px; color: #fff; font-size: 13px; font-weight: 800; }
.category-action span { width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; background: var(--accent); box-shadow: 0 12px 28px color-mix(in srgb, var(--accent) 38%, transparent); }
.category-action svg { width: 17px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.category-card:focus-visible { outline: 4px solid rgba(11,92,255,.28); outline-offset: 4px; }
.empty-state { padding: 50px 20px; text-align: center; border: 1px dashed rgba(11,92,255,.22); border-radius: 24px; background: #f8faff; }
.empty-icon { font-size: 42px; }
.empty-state h3 { margin: 12px 0 6px; }
.empty-state p { color: var(--muted); margin: 0 0 20px; }

.how-section { background: linear-gradient(180deg, #f8faff, #fff); }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step-card { position: relative; padding: 32px; border-radius: 24px; background: #fff; border: 1px solid rgba(10,18,48,.08); box-shadow: 0 16px 44px rgba(33,53,104,.08); }
.step-number { position: absolute; right: 24px; top: 22px; color: rgba(11,92,255,.14); font-size: 52px; font-weight: 800; }
.step-icon { width: 58px; height: 58px; display: grid; place-items: center; border-radius: 18px; background: linear-gradient(135deg, #eaf1ff, #fff0f5); font-size: 28px; }
.step-card h3 { margin: 22px 0 10px; font-size: 20px; }
.step-card p { margin: 0; color: var(--muted); line-height: 1.7; font-size: 14px; }

.benefits-section { padding-top: 38px; }
.benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; padding: 18px; border: 1px solid rgba(10,18,48,.08); border-radius: 26px; background: #fff; box-shadow: 0 20px 55px rgba(30,52,105,.08); }
.benefit-card { display: flex; align-items: center; gap: 14px; padding: 18px; border-radius: 19px; background: #f8faff; }
.benefit-icon { width: 48px; height: 48px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 15px; background: white; box-shadow: 0 8px 24px rgba(34,57,112,.08); font-size: 24px; }
.benefit-card h3 { margin: 0 0 5px; font-size: 15px; }
.benefit-card p { margin: 0; color: var(--muted); line-height: 1.5; font-size: 11px; }

.faq-section { background: #09122e; color: white; }
.faq-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: start; }
.faq-intro p { color: rgba(255,255,255,.65); }
.faq-list { display: grid; gap: 12px; }
details { border: 1px solid rgba(255,255,255,.1); border-radius: 18px; background: rgba(255,255,255,.055); overflow: hidden; }
summary { position: relative; padding: 22px 54px 22px 22px; cursor: pointer; font-weight: 800; list-style: none; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 22px; top: 50%; transform: translateY(-50%); width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.1); }
details[open] summary::after { content: "–"; }
details p { margin: 0; padding: 0 22px 22px; color: rgba(255,255,255,.68); line-height: 1.7; font-size: 14px; }

.site-footer { background: #050a1c; color: white; padding-top: 64px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr .7fr .7fr; gap: 48px; }
.brand-footer { color: white; }
.brand-footer .brand-mark { color: #8cb1ff; }
.footer-brand > p { max-width: 470px; color: rgba(255,255,255,.55); line-height: 1.7; font-size: 13px; }
.footer-links { display: grid; align-content: start; gap: 12px; font-size: 13px; }
.footer-links strong { margin-bottom: 6px; }
.footer-links a { color: rgba(255,255,255,.56); }
.footer-links a:hover { color: white; }
.footer-bottom { margin-top: 54px; padding: 22px 0; display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.08); color: rgba(255,255,255,.45); font-size: 11px; }
.toast { position: fixed; left: 50%; bottom: 26px; z-index: 200; transform: translate(-50%, 30px); padding: 14px 18px; color: white; background: #09122e; border: 1px solid rgba(255,255,255,.15); border-radius: 14px; box-shadow: 0 18px 50px rgba(4,10,30,.3); opacity: 0; pointer-events: none; transition: .3s ease; font-weight: 700; font-size: 13px; }
.toast.show { opacity: 1; transform: translate(-50%, 0); }

@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

@media (max-width: 980px) {
  .main-nav { position: absolute; top: calc(100% + 1px); left: 18px; right: 18px; padding: 18px; border-radius: 18px; background: rgba(255,255,255,.98); box-shadow: var(--shadow); display: grid; gap: 4px; transform: translateY(-10px); opacity: 0; pointer-events: none; transition: .25s ease; }
  .main-nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .main-nav a { padding: 12px; border-radius: 12px; }
  .main-nav a:hover { background: var(--soft); }
  .menu-button { display: block; }
  .hero { padding-top: 64px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero-copy > p, .quick-search { margin-inline: auto; }
  .hero-actions, .hero-trust { justify-content: center; }
  .hero-visual { min-height: 430px; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-layout { grid-template-columns: 1fr; gap: 34px; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 24px), var(--container)); }
  .header-inner { min-height: 70px; }
  .brand-mark { width: 40px; height: 40px; }
  .brand strong { font-size: 15px; }
  .brand small { font-size: 9px; }
  .hero { padding: 52px 0 46px; }
  .hero h1 { font-size: 46px; letter-spacing: -3px; }
  .hero-copy > p { font-size: 16px; }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .quick-search { grid-template-columns: auto 1fr; }
  kbd { display: none; }
  .hero-visual { min-height: 330px; }
  .orbital-scene { width: 320px; }
  .globe { width: 180px; }
  .hero-card-preview { min-width: 150px; padding: 10px 12px; }
  .preview-one { right: -6px; top: 10%; }
  .preview-two { left: -6px; bottom: 8%; }
  .floating-chip { font-size: 10px; padding: 8px 10px; }
  .section { padding: 70px 0; }
  .section-heading { align-items: start; }
  .section-heading h2, .faq-intro h2 { font-size: 38px; }
  .category-count { display: none; }
  .mobile-category-select { display: grid; gap: 10px; padding: 16px; margin-bottom: 20px; border-radius: 20px; background: #f6f8ff; border: 1px solid rgba(11,92,255,.08); }
  .mobile-category-select label { font-size: 12px; font-weight: 800; }
  .mobile-category-select select { min-height: 50px; border: 1px solid #dce3f2; border-radius: 13px; background: white; padding: 0 13px; color: var(--ink); }
  .category-grid { grid-template-columns: 1fr; gap: 16px; }
  .category-card { min-height: 330px; }
  .category-content { padding: 22px; }
  .category-content h3 { font-size: 24px; }
  .steps-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; padding: 12px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}

.card-product-count{display:inline-flex;margin-top:.45rem;padding:.35rem .65rem;border-radius:999px;background:color-mix(in srgb,var(--accent) 16%,transparent);color:var(--accent);font-weight:800;font-size:.78rem}.category-card[data-count="0"]{opacity:.78}
