:root {
  color-scheme: light;
  --bg: #f7f9fd;
  --surface: rgba(255,255,255,.82);
  --surface-solid: #fff;
  --surface-soft: #f1f5fc;
  --text: #101b32;
  --muted: #66728a;
  --line: #dfe6f1;
  --blue: #0868f7;
  --blue-2: #1c8dff;
  --cyan: #13c7f4;
  --shadow: 0 18px 45px rgba(38, 76, 137, .09);
  --shadow-hover: 0 24px 55px rgba(21, 85, 180, .16);
  --radius: 24px;
  --nav-bg: rgba(255,255,255,.78);
  --hero-grid: rgba(34,112,240,.055);
  --footer: #edf3fc;
}

[data-theme="dark"] {
  color-scheme: dark;
  --bg: #050a14;
  --surface: rgba(12,22,40,.82);
  --surface-solid: #0b1424;
  --surface-soft: #0e192b;
  --text: #f3f7ff;
  --muted: #8b99b0;
  --line: #1d2b43;
  --blue: #2383ff;
  --blue-2: #20a7ff;
  --cyan: #20d5ff;
  --shadow: 0 18px 50px rgba(0,0,0,.26);
  --shadow-hover: 0 25px 60px rgba(0,75,190,.22);
  --nav-bg: rgba(5,10,20,.78);
  --hero-grid: rgba(51,138,255,.06);
  --footer: #08111f;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--bg); color: var(--text); font-family: Manrope, sans-serif; transition: background .35s, color .35s; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
button { color: inherit; font: inherit; }
.header { position: fixed; z-index: 50; top: 0; left: 0; right: 0; padding: 12px 24px; }
.nav-shell {
  max-width: 1240px; height: 72px; margin: auto; padding: 0 12px 0 20px; display: flex; align-items: center; justify-content: space-between;
  background: var(--nav-bg); border: 1px solid var(--line); box-shadow: 0 8px 35px rgba(22,54,104,.08);
  backdrop-filter: blur(18px); border-radius: 22px; transition: .35s;
}
.brand { width: 220px; height: 58px; display:flex; align-items:center; perspective:700px; }
.brand-flip { position:relative; display:block; width:210px; height:54px; transform-style:preserve-3d; }
.brand-logo {
  position:absolute; inset:0; width:210px; height:54px; object-fit:contain; object-position:left center;
  backface-visibility:hidden; transition:transform .65s cubic-bezier(.2,.75,.2,1), opacity .3s ease;
}
.brand-logo-light { transform:rotateX(0deg); opacity:1; }
.brand-logo-dark { transform:rotateX(-180deg); opacity:0; filter:drop-shadow(0 0 9px rgba(27,169,255,.25)); }
[data-theme="dark"] .brand-logo-light { transform:rotateX(180deg); opacity:0; }
[data-theme="dark"] .brand-logo-dark { transform:rotateX(0deg); opacity:1; }
.nav { display: flex; align-self: stretch; gap: 30px; }
.nav a { position: relative; display: flex; align-items: center; color: var(--muted); font-size: 12px; font-weight: 700; }
.nav a::after { content:""; position:absolute; left: 50%; right: 50%; bottom: 10px; height: 3px; border-radius: 10px; background: var(--blue); transition:.25s; }
.nav a:hover, .nav a.active { color: var(--blue); }
.nav a:hover::after, .nav a.active::after { left: 15%; right: 15%; }
.nav-actions { display: flex; align-items: center; gap: 9px; }
.button { min-height: 48px; padding: 0 23px; display: inline-flex; align-items: center; justify-content: center; gap: 22px; border-radius: 13px; border: 1px solid transparent; font-size: 12px; font-weight: 800; transition: .25s; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: white; background: linear-gradient(135deg, var(--blue), #0755e8); box-shadow: 0 12px 28px rgba(7,103,247,.2); }
.button-primary:hover { box-shadow: 0 16px 35px rgba(7,103,247,.3); }
.button-secondary { background: var(--surface-solid); border-color: var(--line); color: var(--text); }
.nav-offer { min-height: 44px; border-radius: 12px; }
.theme-toggle { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 12px; border: 1px solid var(--line); background: var(--surface-solid); cursor: pointer; transition: .25s; }
.theme-toggle:hover { border-color: var(--blue); transform: rotate(8deg); }
.theme-toggle svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.theme-toggle .sun { display: none; }
[data-theme="dark"] .theme-toggle .moon { display: none; }
[data-theme="dark"] .theme-toggle .sun { display: block; color: #ffd45c; }
.menu-toggle { display:none; width:44px; height:44px; border:1px solid var(--line); border-radius:12px; background:var(--surface-solid); }
.menu-toggle span { display:block; width:19px; height:2px; margin:5px auto; border-radius:2px; background:currentColor; }

.hero {
  position: relative; min-height: 745px; padding: 155px max(24px, calc((100vw - 1180px)/2)) 80px;
  display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; overflow: hidden;
  background-image: linear-gradient(var(--hero-grid) 1px, transparent 1px), linear-gradient(90deg, var(--hero-grid) 1px, transparent 1px);
  background-size: 55px 55px;
}
.hero::before { content:""; position:absolute; inset:0; background:radial-gradient(circle at 72% 45%, rgba(44,138,255,.12), transparent 35%), linear-gradient(90deg,var(--bg) 8%,transparent 55%); pointer-events:none; }
.hero-decoration { position:absolute; width:760px; height:760px; right:-180px; top:-430px; border:1px solid rgba(30,117,246,.15); border-radius:50%; }
.hero-copy { position: relative; z-index: 2; padding-left: 6px; }
.eyebrow { color: var(--blue); font-size: 11px; font-weight: 800; letter-spacing: .3em; margin-bottom: 18px; }
h1,h2,h3 { font-family: "Space Grotesk", sans-serif; }
h1 { margin:0; font-size:clamp(48px,5vw,70px); line-height:1.02; letter-spacing:-.05em; }
h1 span, h2 span { color: var(--blue); }
.hero-copy > p { max-width:540px; margin:23px 0 28px; color:var(--muted); font-size:15px; line-height:1.8; }
.hero-actions { display:flex; gap:12px; }
.trusted { margin-top:43px; }
.trusted small { color:var(--muted); font-size:10px; }
.trusted > div { margin-top:12px; display:flex; align-items:center; gap:25px; color:#8793a7; }
.trusted b { font-size:15px; font-weight:800; letter-spacing:-.04em; }
.trusted span { font-size:9px; }
.hero-visual { position:relative; min-height:500px; display:grid; place-items:center; perspective:1100px; }
.logo-model {
  position:relative; z-index:4; width:min(78%,560px); height:430px; margin-top:-74px;
  background:transparent; --poster-color:transparent; outline:none;
  filter:drop-shadow(0 27px 22px rgba(3,82,214,.2));
}
.logo-model::part(default-progress-bar) { display:none; }
.model-loader {
  width:100%; height:100%; display:grid; place-items:center; align-content:center; gap:8px;
  color:var(--blue); background:transparent; border:0; cursor:pointer;
  font-size:9px; font-weight:800; letter-spacing:.13em; text-transform:uppercase;
}
.model-loader img { width:58%; filter:drop-shadow(0 22px 22px rgba(3,82,214,.2)); }
.logo-model.loaded .model-loader { display:none; }
.visual-glow { position:absolute; z-index:0; width:60%; height:45%; background:rgba(33,132,255,.2); filter:blur(80px); border-radius:50%; }
.orbit { position:absolute; border:1px solid rgba(25,111,241,.17); border-radius:50%; }
.orbit-one { width:88%; height:34%; top:49%; transform:rotate(-3deg); }
.orbit-two { width:107%; height:50%; top:42%; transform:rotate(7deg); }
.spark { position:absolute; color:#529cff; font-size:19px; }
.spark-one { top:13%; right:13%; }.spark-two { left:9%; top:25%; }
.platform { position:absolute; z-index:2; width:75%; height:135px; top:58%; filter:drop-shadow(0 24px 25px rgba(26,104,223,.18)); }
.platform > div { position:absolute; left:50%; transform:translateX(-50%); border-radius:50%; border:2px solid rgba(29,119,255,.5); background:linear-gradient(180deg,var(--surface-solid),#dceaff); }
[data-theme="dark"] .platform > div { background:linear-gradient(180deg,#172b4e,#091425); }
.platform-top { width:60%; height:65px; top:0; box-shadow:inset 0 -12px 0 rgba(43,126,255,.08); }
.platform-mid { width:78%; height:72px; top:35px; }
.platform-base { width:100%; height:80px; top:67px; }

.section { max-width:1240px; margin:auto; padding:100px 24px; }
.section-heading { max-width:650px; margin:0 auto 45px; text-align:center; }
.section-heading h2, .about h2, .contact h2 { margin:0 0 13px; font-size:clamp(36px,4vw,52px); letter-spacing:-.045em; line-height:1.08; }
.section-heading p { color:var(--muted); font-size:13px; }
.card { background:var(--surface); border:1px solid var(--line); border-radius:var(--radius); box-shadow:var(--shadow); backdrop-filter:blur(12px); transition:border-color .3s, box-shadow .3s, transform .3s, background .35s; }
.card:hover { transform:translateY(-7px); border-color:rgba(18,112,249,.35); box-shadow:var(--shadow-hover); }
.services { padding-top:75px; }
.service-grid { display:grid; grid-template-columns:repeat(5,1fr); gap:16px; }
.service-card { min-height:285px; padding:24px; display:flex; flex-direction:column; }
.icon { width:48px; height:48px; display:grid; place-items:center; border-radius:14px; color:white; background:linear-gradient(145deg,#1484ff,#0758eb); box-shadow:0 9px 20px rgba(11,105,246,.23); }
.icon svg { width:23px; fill:none; stroke:currentColor; stroke-width:1.5; stroke-linecap:round; stroke-linejoin:round; }
.service-card h3 { margin:19px 0 9px; font-size:15px; }
.service-card p { margin:0; color:var(--muted); font-size:11px; line-height:1.7; }
.service-card > a { margin-top:auto; padding-top:18px; color:var(--blue); font-size:10px; font-weight:800; }
.service-card > a span { float:right; }

.about { padding-top:70px; }
.about-card { min-height:430px; padding:65px; display:grid; grid-template-columns:1fr 1fr; align-items:center; gap:70px; overflow:hidden; position:relative; }
.about-card::after { content:""; position:absolute; width:430px; height:430px; right:-160px; bottom:-260px; border-radius:50%; border:55px solid rgba(26,124,255,.06); }
.about-copy { position:relative; z-index:2; }
.about-copy p { color:var(--muted); font-size:13px; line-height:1.8; max-width:520px; }
.about-copy .button { margin-top:17px; }
.stats { display:grid; grid-template-columns:1fr 1fr; gap:15px; position:relative; z-index:2; }
.stats > div { min-height:125px; display:flex; align-items:baseline; justify-content:center; align-content:center; flex-wrap:wrap; background:var(--surface-soft); border:1px solid var(--line); border-radius:19px; }
.stats strong { font-family:"Space Grotesk"; font-size:38px; }
.stats span { color:var(--blue); font-size:17px; margin-left:2px; }
.stats small { flex-basis:100%; text-align:center; margin-top:5px; color:var(--muted); font-size:9px; letter-spacing:.12em; text-transform:uppercase; }

.pricing { max-width:1200px; }
.pricing-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; align-items:stretch; }
.price-card { padding:35px; position:relative; display:flex; flex-direction:column; }
.price-card.popular { border:2px solid var(--blue); transform:translateY(-9px); }
.price-card.popular:hover { transform:translateY(-14px); }
.badge { position:absolute; right:18px; top:18px; padding:7px 10px; border-radius:20px; color:white; background:var(--blue); font-size:7px; font-weight:800; letter-spacing:.08em; }
.plan { color:var(--blue); font-size:9px; font-weight:800; letter-spacing:.2em; }
.price-card h3 { font-size:25px; margin:12px 0 8px; }
.price-card > p { color:var(--muted); font-size:11px; line-height:1.7; min-height:57px; }
.price { padding:20px 0; margin:12px 0 16px; border-top:1px solid var(--line); border-bottom:1px solid var(--line); display:flex; flex-wrap:wrap; align-items:baseline; gap:5px; }
.price small { flex-basis:100%; color:var(--muted); font-size:8px; text-transform:uppercase; }
.price strong { font-family:"Space Grotesk"; font-size:25px; }
.price span { color:var(--muted); font-size:9px; }
.price-card ul { padding:0; margin:0 0 25px; list-style:none; }
.price-card li { color:var(--muted); font-size:10px; margin:11px 0; }
.price-card li::before { content:"✓"; display:inline-grid; place-items:center; width:18px; height:18px; margin-right:9px; border-radius:50%; color:var(--blue); background:rgba(15,112,248,.1); }
.price-card .button { width:100%; margin-top:auto; }

.contact { max-width:1200px; }
.contact-card { min-height:340px; padding:65px; display:flex; align-items:center; justify-content:space-between; gap:50px; border-radius:32px; color:white; background:radial-gradient(circle at 75% 20%,rgba(47,189,255,.35),transparent 30%),linear-gradient(135deg,#074fd6,#071f5e); box-shadow:0 25px 60px rgba(4,66,178,.25); position:relative; overflow:hidden; }
.contact-card::after { content:""; position:absolute; width:300px; height:300px; right:-60px; bottom:-170px; border:1px solid rgba(255,255,255,.2); border-radius:50%; box-shadow:0 0 0 45px rgba(255,255,255,.035),0 0 0 90px rgba(255,255,255,.025); }
.contact .eyebrow { color:#75e4ff; }
.contact h2 span { color:#69dcff; }
.contact p { max-width:590px; color:#bfd0ed; font-size:13px; line-height:1.8; }
.contact-button { position:relative; z-index:2; min-width:265px; color:#0751cf; background:white; border-radius:15px; }

.trustpilot-card {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position:relative;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
  padding:32px;
  border:1px solid rgba(35,131,255,.28);
  border-radius:24px;
  background:
    radial-gradient(circle at 16% 18%, rgba(32,167,255,.22), transparent 28%),
    linear-gradient(135deg, rgba(9,20,38,.82), rgba(5,10,20,.72));
  box-shadow:0 22px 60px rgba(0,74,190,.2), inset 0 1px 0 rgba(255,255,255,.08);
  backdrop-filter:blur(18px);
  overflow:hidden;
  transform:perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transition:transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}
.trustpilot-card::before {
  content:"";
  position:absolute;
  inset:-1px;
  background:linear-gradient(120deg, rgba(0,182,122,.24), transparent 34%, rgba(35,131,255,.3));
  opacity:.55;
  pointer-events:none;
}
.trustpilot-card::after {
  content:"";
  position:absolute;
  width:230px;
  height:230px;
  right:-92px;
  bottom:-122px;
  border-radius:50%;
  background:rgba(32,167,255,.18);
  filter:blur(35px);
  pointer-events:none;
}
.trustpilot-card:hover {
  border-color:rgba(0,182,122,.5);
  box-shadow:0 28px 75px rgba(0,89,255,.28), 0 0 34px rgba(0,182,122,.15), inset 0 1px 0 rgba(255,255,255,.12);
}
.trustpilot-content,
.trustpilot-button { position:relative; z-index:1; }
.trustpilot-content { display:flex; align-items:center; gap:22px; min-width:0; }
.trustpilot-icon {
  width:58px;
  height:58px;
  flex:0 0 58px;
  display:grid;
  place-items:center;
  border-radius:18px;
  color:white;
  background:linear-gradient(135deg,#00b67a,#00df95);
  box-shadow:0 12px 32px rgba(0,182,122,.32);
  font-size:34px;
  line-height:1;
}
.trustpilot-card h2 {
  margin:0 0 7px;
  color:#f7fbff;
  font-size:clamp(30px,4vw,44px);
  line-height:1;
  letter-spacing:0;
}
.trustpilot-score {
  margin:0 0 7px;
  color:#c8d8ef;
  font-size:15px;
  font-weight:800;
}
.trustpilot-stars {
  color:#00b67a;
  font-size:22px;
  letter-spacing:2px;
  text-shadow:0 0 18px rgba(0,182,122,.3);
}
.trustpilot-stars.is-empty {
  color:#5b6a80;
  text-shadow:none;
}
.trustpilot-star-empty {
  color:#5b6a80;
  text-shadow:none;
}
.trustpilot-copy {
  margin:10px 0 0;
  color:#8fa3bf;
  font-size:13px;
  line-height:1.6;
}
.trustpilot-button {
  min-height:54px;
  padding:0 24px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:18px;
  color:#04140f;
  background:linear-gradient(135deg,#00b67a,#00e49a);
  box-shadow:0 14px 34px rgba(0,182,122,.28);
  font-size:12px;
  font-weight:900;
  white-space:nowrap;
  transition:transform .25s ease, box-shadow .25s ease, filter .25s ease;
}
.trustpilot-button:hover {
  transform:translateY(-3px);
  box-shadow:0 18px 44px rgba(0,182,122,.38);
  filter:saturate(1.08);
}

footer { margin-top:30px; padding:55px 24px; background:var(--footer); border-top:1px solid var(--line); }
.footer-inner { max-width:1150px; margin:auto; display:grid; grid-template-columns:1fr; align-items:center; justify-items:center; gap:16px; text-align:center; }
.footer-inner img { grid-row:3; width:160px; height:72px; object-fit:contain; object-position:center; }
.footer-inner p { grid-row:4; margin:0; color:var(--muted); font-size:10px; }
.footer-links { grid-row:1; display:flex; gap:27px; }
.footer-links a { color:var(--muted); font-size:10px; font-weight:700; }
.footer-links a:hover { color:var(--blue); }
.footer-trustpilot { grid-row:2; width:min(430px,100%); justify-self:center; margin-top:4px; margin-bottom:2px; }
.footer-trustpilot .trustpilot-card { flex-direction:column; align-items:stretch; gap:18px; padding:20px; border-radius:22px; }
.footer-trustpilot .trustpilot-content { align-items:flex-start; gap:15px; }
.footer-trustpilot .trustpilot-icon { width:46px; height:46px; flex-basis:46px; border-radius:15px; font-size:26px; }
.footer-trustpilot .trustpilot-card h2 { font-size:28px; }
.footer-trustpilot .trustpilot-score { font-size:13px; }
.footer-trustpilot .trustpilot-stars { font-size:18px; letter-spacing:1px; }
.footer-trustpilot .trustpilot-copy { font-size:11px; }
.footer-trustpilot .trustpilot-button { min-height:46px; width:100%; border-radius:15px; white-space:normal; text-align:center; }
.footer-inner small { grid-row:5; width:100%; border-top:1px solid var(--line); margin-top:10px; padding-top:22px; color:var(--muted); font-size:9px; }

.reveal { opacity:0; transform:translateY(22px); transition:opacity .7s ease,transform .7s ease; }
.reveal.visible { opacity:1; transform:none; }

@media (max-width:1050px) {
  .nav { gap:18px; }
  .service-grid { grid-template-columns:repeat(3,1fr); }
  .hero { grid-template-columns:1fr 1fr; }
}
@media (max-width:780px) {
  .header { padding:8px 12px; }
  .nav-shell { height:64px; border-radius:18px; padding-left:13px; }
  .brand { width:175px; }
  .brand-flip { width:168px; height:50px; }
  .brand-logo { width:168px; height:50px; }
  .nav-offer { display:none; }
  .menu-toggle { display:block; }
  .nav { position:fixed; top:84px; left:12px; right:12px; padding:22px; border:1px solid var(--line); border-radius:20px; background:var(--surface-solid); box-shadow:var(--shadow); flex-direction:column; align-items:stretch; gap:0; transform:translateY(-20px); opacity:0; pointer-events:none; transition:.25s; }
  .nav.open { transform:none; opacity:1; pointer-events:auto; }
  .nav a { padding:14px; border-radius:11px; }
  .nav a:hover { background:var(--surface-soft); }.nav a::after { display:none; }
  .hero { min-height:auto; padding:115px 24px 60px; grid-template-columns:1fr; text-align:center; }
  .hero-copy { display:flex; flex-direction:column; align-items:center; }
  h1 { font-size:clamp(44px,13vw,62px); }
  .hero-visual { grid-row:1; min-height:340px; margin-bottom:5px; }
  .logo-model { width:82%; height:300px; margin-top:-35px; }
  .platform { width:83%; height:100px; }
  .trusted > div { flex-wrap:wrap; justify-content:center; gap:15px 22px; }
  .section { padding:75px 20px; }
  .service-grid { grid-template-columns:1fr; }
  .service-card { min-height:245px; }
  .about-card { padding:38px 24px; grid-template-columns:1fr; gap:35px; }
  .pricing-grid { grid-template-columns:1fr; }
  .price-card.popular { transform:none; }.price-card.popular:hover { transform:translateY(-7px); }
  .contact-card { padding:45px 26px; flex-direction:column; align-items:flex-start; border-radius:25px; }
  .contact-button { width:100%; min-width:0; }
  .footer-inner { grid-template-columns:1fr; }
  .footer-links { grid-column:1; grid-row:1; flex-wrap:wrap; justify-content:center; }
  .footer-trustpilot { grid-column:1; grid-row:2; width:min(430px,100%); justify-self:center; }
}
@media (prefers-reduced-motion:reduce) { *,*::before,*::after { animation:none!important; transition-duration:.01ms!important; scroll-behavior:auto!important; } }
