/*
Oddory Digital Services Premium Website
Pure HTML/CSS/JS. No uploaded document or ID images are included.
*/

:root {
  color-scheme: dark;
  --ink: #fff7ed;
  --muted: #cfc0d8;
  --deep: #12051f;
  --deep-2: #1a092d;
  --purple: #8b5cf6;
  --violet: #7c3aed;
  --orange: #fb923c;
  --amber: #fcd34d;
  --pink: #f472b6;
  --cyan: #67e8f9;
  --green: #4ade80;
  --line: rgba(255, 247, 237, .14);
  --line-2: rgba(255, 247, 237, .24);
  --glass: rgba(255, 255, 255, .075);
  --glass-2: rgba(255, 255, 255, .12);
  --shadow: 0 32px 90px rgba(0,0,0,.45);
  --shadow-soft: 0 20px 54px rgba(0,0,0,.26);
  --radius: 30px;
  --radius-sm: 18px;
  --max: 1180px;
  --font: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

[data-theme="light"] {
  color-scheme: light;
  --ink: #18091f;
  --muted: #6b5973;
  --deep: #fff7ed;
  --deep-2: #fff1e3;
  --line: rgba(24,9,31,.13);
  --line-2: rgba(24,9,31,.22);
  --glass: rgba(255,255,255,.72);
  --glass-2: rgba(255,255,255,.92);
  --shadow: 0 32px 90px rgba(72,34,91,.16);
  --shadow-soft: 0 20px 54px rgba(72,34,91,.11);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 4%, rgba(244,114,182,.30), transparent 28%),
    radial-gradient(circle at 88% 2%, rgba(251,146,60,.26), transparent 26%),
    radial-gradient(circle at 50% 74%, rgba(139,92,246,.25), transparent 34%),
    linear-gradient(135deg, var(--deep), var(--deep-2) 52%, #210836);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  background-image:
    radial-gradient(circle, rgba(255,255,255,.12) 1px, transparent 1px),
    linear-gradient(115deg, rgba(255,255,255,.045), transparent 42%);
  background-size: 26px 26px, 100% 100%;
  mask-image: radial-gradient(circle at 50% 20%, black, transparent 78%);
  pointer-events: none;
}

body::after {
  content: "";
  position: fixed;
  width: 56vw;
  height: 56vw;
  right: -28vw;
  bottom: -30vw;
  z-index: -2;
  border-radius: 50%;
  background: conic-gradient(from 90deg, rgba(252,211,77,.28), rgba(244,114,182,.24), rgba(124,58,237,.32), rgba(252,211,77,.28));
  filter: blur(74px);
  opacity: .74;
  pointer-events: none;
}

a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
svg { display: block; }
::selection { background: rgba(251,146,60,.35); }

.container {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.site-shell {
  position: relative;
}

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

.top-ribbon {
  width: min(calc(100% - 32px), var(--max));
  margin: 14px auto 0;
  min-height: 42px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(24px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.top-ribbon a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--ink);
}

.top-ribbon svg { width: 17px; height: 17px; color: var(--orange); }

.header {
  position: sticky;
  top: 12px;
  z-index: 100;
  width: min(calc(100% - 32px), var(--max));
  margin: 14px auto 0;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(18,5,31,.70);
  backdrop-filter: blur(28px);
  box-shadow: 0 18px 54px rgba(0,0,0,.24);
}

[data-theme="light"] .header {
  background: rgba(255,247,237,.76);
}

.nav {
  min-height: 74px;
  padding: 0 12px 0 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo {
  width: 48px;
  height: 48px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: white;
  background:
    radial-gradient(circle at 30% 16%, rgba(255,255,255,.46), transparent 34%),
    linear-gradient(135deg, #3b0764, var(--violet) 46%, var(--orange) 78%, var(--amber));
  box-shadow: 0 16px 40px rgba(251,146,60,.22);
  flex: 0 0 auto;
}

.brand-logo svg { width: 31px; height: 31px; }

.brand-text {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.brand-text strong {
  font-size: 17px;
  letter-spacing: -.04em;
  line-height: 1;
  white-space: nowrap;
}

.brand-text span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-left: auto;
}

.nav-links a {
  padding: 11px 12px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--ink);
  background: rgba(255,255,255,.10);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 9px;
}

.icon-btn,
.menu-btn {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.075);
  color: var(--ink);
  display: grid;
  place-items: center;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.icon-btn:hover,
.menu-btn:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,.13);
  border-color: var(--line-2);
}

.icon-btn svg,
.menu-btn svg { width: 20px; height: 20px; }

.menu-btn { display: none; }

.btn {
  min-height: 46px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--amber), var(--orange) 55%, var(--pink));
  color: #1d082a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-weight: 950;
  letter-spacing: -.02em;
  box-shadow: 0 18px 48px rgba(251,146,60,.25);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 64px rgba(251,146,60,.34);
  filter: saturate(1.08);
}

.btn svg { width: 18px; height: 18px; }

.btn-dark {
  background: rgba(255,255,255,.08);
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: none;
}

.hero {
  position: relative;
  padding: 76px 0 56px;
  overflow: hidden;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(370px, .82fr);
  gap: 34px;
  align-items: center;
}

.kicker {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 9px;
  padding: 8px 12px;
  border: 1px solid rgba(251,146,60,.30);
  border-radius: 999px;
  background: rgba(251,146,60,.10);
  color: var(--amber);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.kicker svg { width: 16px; height: 16px; }

h1, h2, h3, p { margin-top: 0; }

h1 {
  margin: 18px 0 18px;
  font-size: clamp(46px, 8vw, 92px);
  line-height: .88;
  letter-spacing: -.08em;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: .96;
  letter-spacing: -.065em;
}

h3 {
  letter-spacing: -.045em;
}

.grad {
  background: linear-gradient(120deg, #fff7ed 0%, var(--amber) 30%, var(--pink) 60%, #c4b5fd 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(17px, 2.2vw, 21px);
  line-height: 1.75;
  font-weight: 650;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 680px;
}

.hero-point {
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--glass);
  transform: translateZ(0);
}

.hero-point strong {
  display: block;
  font-size: 22px;
  letter-spacing: -.05em;
}

.hero-point span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.orbit-card {
  position: relative;
  min-height: 560px;
  border: 1px solid var(--line);
  border-radius: 42px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,.045)),
    radial-gradient(circle at 70% 10%, rgba(252,211,77,.20), transparent 30%),
    radial-gradient(circle at 10% 80%, rgba(244,114,182,.18), transparent 30%);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.orbit-card::before {
  content: "";
  position: absolute;
  inset: 24px;
  border-radius: 34px;
  border: 1px solid rgba(255,255,255,.12);
}

.orbit {
  position: absolute;
  width: 370px;
  height: 370px;
  left: 50%;
  top: 43%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.18);
  animation: spin 24s linear infinite;
}

.orbit::before,
.orbit::after {
  content: "";
  position: absolute;
  width: 76px;
  height: 76px;
  border-radius: 26px;
  background: linear-gradient(135deg, var(--violet), var(--pink), var(--orange));
  box-shadow: 0 20px 60px rgba(244,114,182,.26);
}

.orbit::before {
  left: 16px;
  top: 20px;
}

.orbit::after {
  right: 24px;
  bottom: 12px;
  background: linear-gradient(135deg, var(--amber), var(--orange));
}

.brand-orb {
  position: absolute;
  width: 230px;
  height: 230px;
  left: 50%;
  top: 43%;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  color: white;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,.42), transparent 28%),
    linear-gradient(135deg, #311052, #7c3aed, #fb923c);
  box-shadow: 0 26px 80px rgba(124,58,237,.35);
}

.brand-orb svg { width: 112px; height: 112px; }

.micro-card {
  position: absolute;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(18,5,31,.70);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-soft);
  font-weight: 950;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: float 5.6s ease-in-out infinite;
}

[data-theme="light"] .micro-card {
  background: rgba(255,247,237,.78);
}

.micro-card svg { width: 20px; height: 20px; color: var(--amber); }
.micro-one { left: 24px; top: 94px; }
.micro-two { right: 20px; top: 210px; animation-delay: -1.7s; }
.micro-three { left: 54px; bottom: 104px; animation-delay: -2.6s; }
.micro-four { right: 54px; bottom: 42px; animation-delay: -3.4s; }

.domain-panel {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 24px;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 18px;
  background: rgba(255,255,255,.075);
  backdrop-filter: blur(20px);
}

.domain-panel span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.domain-panel strong {
  display: block;
  margin-top: 8px;
  font-size: clamp(20px, 2.5vw, 30px);
  letter-spacing: -.05em;
}

.section {
  padding: 74px 0;
}

.section-tight {
  padding: 42px 0;
}

.section-head {
  max-width: 830px;
  margin-bottom: 30px;
}

.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-head p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
  font-weight: 650;
}

.marquee {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--glass);
  padding: 12px;
}

.marquee-track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: marquee 24s linear infinite;
}

.chip {
  min-width: 190px;
  min-height: 64px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255,255,255,.055);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 950;
  color: var(--muted);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(150deg, rgba(255,255,255,.11), rgba(255,255,255,.045)),
    var(--glass);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.service-card {
  min-height: 330px;
  padding: 26px;
  transition: transform .24s ease, border-color .24s ease, background .24s ease;
}

.service-card:hover {
  transform: translateY(-8px) rotate(-.4deg);
  border-color: rgba(251,146,60,.42);
  background:
    radial-gradient(circle at 20% 0%, rgba(251,146,60,.16), transparent 32%),
    linear-gradient(150deg, rgba(255,255,255,.13), rgba(255,255,255,.045)),
    var(--glass);
}

.card-icon {
  width: 58px;
  height: 58px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(252,211,77,.17), rgba(244,114,182,.15), rgba(124,58,237,.17));
  border: 1px solid rgba(252,211,77,.26);
  display: grid;
  place-items: center;
  color: var(--amber);
  margin-bottom: 18px;
}

.card-icon svg { width: 29px; height: 29px; }

.service-card h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.service-card p,
.info-card p,
.work-card p,
.price-card p {
  color: var(--muted);
  line-height: 1.75;
  font-weight: 640;
}

.list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--ink);
  font-weight: 800;
}

.list li::before {
  content: "";
  width: 9px;
  height: 9px;
  margin-top: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--amber), var(--pink));
  box-shadow: 0 0 18px rgba(251,146,60,.42);
  flex: 0 0 auto;
}

.split {
  display: grid;
  grid-template-columns: .94fr 1.06fr;
  gap: 18px;
  align-items: stretch;
}

.info-card {
  padding: 28px;
}

.profile-lines {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.profile-line {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.045);
}

.profile-line span {
  color: var(--muted);
  font-weight: 850;
}

.profile-line strong {
  text-align: right;
}

.showcase {
  min-height: 500px;
  padding: 28px;
  display: grid;
  align-content: center;
}

.device {
  position: relative;
  min-height: 360px;
  border-radius: 32px;
  border: 1px solid rgba(255,255,255,.15);
  background:
    linear-gradient(160deg, rgba(255,255,255,.12), rgba(255,255,255,.04)),
    linear-gradient(135deg, rgba(124,58,237,.26), rgba(251,146,60,.18));
  overflow: hidden;
}

.device-top {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.dots { display: flex; gap: 8px; }
.dots span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--pink);
}
.dots span:nth-child(2) { background: var(--amber); }
.dots span:nth-child(3) { background: var(--green); }

.device-body {
  padding: 20px;
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 14px;
}

.side-menu {
  display: grid;
  gap: 10px;
}

.side-menu span,
.chart span,
.skeleton span {
  display: block;
  border-radius: 999px;
  background: rgba(255,255,255,.17);
}

.side-menu span {
  height: 34px;
}

.chart {
  padding: 18px;
  border-radius: 24px;
  background: rgba(18,5,31,.32);
  display: flex;
  align-items: end;
  gap: 10px;
  min-height: 240px;
}

.chart span {
  width: 100%;
  border-radius: 999px 999px 12px 12px;
  background: linear-gradient(180deg, var(--amber), var(--orange), var(--pink));
  animation: bar 2.6s ease-in-out infinite;
}
.chart span:nth-child(1) { height: 44%; }
.chart span:nth-child(2) { height: 68%; animation-delay: -.4s; }
.chart span:nth-child(3) { height: 52%; animation-delay: -.8s; }
.chart span:nth-child(4) { height: 86%; animation-delay: -1.2s; }
.chart span:nth-child(5) { height: 60%; animation-delay: -1.6s; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.price-card {
  padding: 24px;
  transition: transform .24s ease, border-color .24s ease;
}

.price-card:hover {
  transform: translateY(-8px);
  border-color: rgba(244,114,182,.42);
}

.price-card.featured {
  border-color: rgba(252,211,77,.42);
  background:
    radial-gradient(circle at 50% 0%, rgba(252,211,77,.18), transparent 36%),
    linear-gradient(150deg, rgba(255,255,255,.12), rgba(255,255,255,.05)),
    var(--glass);
}

.badge {
  display: inline-flex;
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(252,211,77,.14);
  border: 1px solid rgba(252,211,77,.25);
  color: var(--amber);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 14px;
}

.price {
  margin: 15px 0;
  font-size: 38px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: -.065em;
}

.price small {
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0;
}

.work-card {
  padding: 0;
  transition: transform .24s ease;
}

.work-card:hover { transform: translateY(-8px) rotate(.4deg); }

.work-art {
  min-height: 210px;
  padding: 22px;
  background:
    radial-gradient(circle at 18% 10%, rgba(252,211,77,.22), transparent 28%),
    radial-gradient(circle at 90% 25%, rgba(244,114,182,.20), transparent 28%),
    linear-gradient(135deg, rgba(124,58,237,.45), rgba(18,5,31,.9));
}

.skeleton {
  height: 166px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 26px;
  padding: 16px;
  background: rgba(255,255,255,.08);
  display: grid;
  align-content: center;
  gap: 10px;
}

.skeleton span {
  height: 12px;
}
.skeleton span:nth-child(1) { width: 46%; height: 20px; }
.skeleton span:nth-child(2) { width: 86%; }
.skeleton span:nth-child(3) { width: 70%; }
.skeleton span:nth-child(4) { width: 54%; }

.work-body {
  padding: 22px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.tag {
  padding: 7px 10px;
  border: 1px solid rgba(251,146,60,.25);
  border-radius: 999px;
  color: var(--amber);
  background: rgba(251,146,60,.09);
  font-size: 12px;
  font-weight: 950;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.step {
  padding: 24px;
}

.step-number {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  background: linear-gradient(135deg, var(--amber), var(--pink));
  color: #1d082a;
  font-weight: 950;
}

.contact-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 18px;
}

.contact-list {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.contact-list li,
.contact-list a {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.045);
  color: var(--ink);
  font-weight: 800;
}

.contact-list svg {
  width: 21px;
  height: 21px;
  color: var(--amber);
  flex: 0 0 auto;
}

.form {
  display: grid;
  gap: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  color: var(--muted);
  font-size: 13px;
  font-weight: 950;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.065);
  color: var(--ink);
  padding: 14px 15px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.field textarea {
  min-height: 132px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(252,211,77,.56);
  box-shadow: 0 0 0 5px rgba(252,211,77,.10);
}

.estimator {
  padding: 24px;
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.check-option {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.045);
  font-weight: 850;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.check-option input {
  accent-color: #fb923c;
  margin-top: 4px;
}

.total {
  margin-top: 16px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(252,211,77,.09);
  border: 1px solid rgba(252,211,77,.25);
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
}

.total strong {
  font-size: 30px;
  color: var(--amber);
  letter-spacing: -.05em;
}

.faq {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--glass);
  overflow: hidden;
}

.faq-q {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--ink);
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  text-align: left;
  font-weight: 950;
}

.faq-q svg {
  width: 20px;
  height: 20px;
  transition: transform .22s ease;
}

.faq-item.open .faq-q svg {
  transform: rotate(45deg);
}

.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .25s ease;
}

.faq-a > div { overflow: hidden; }

.faq-item.open .faq-a {
  grid-template-rows: 1fr;
}

.faq-a p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
  line-height: 1.75;
  font-weight: 650;
}

.cta {
  padding: 38px;
  border-radius: 38px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 15% 20%, rgba(252,211,77,.24), transparent 30%),
    radial-gradient(circle at 88% 8%, rgba(244,114,182,.22), transparent 30%),
    linear-gradient(135deg, rgba(124,58,237,.28), rgba(18,5,31,.74));
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  box-shadow: var(--shadow);
}

.cta p {
  color: var(--muted);
  line-height: 1.75;
  font-weight: 650;
  max-width: 660px;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 50px 0 28px;
  background: rgba(0,0,0,.10);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 24px;
}

.footer h3 {
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .11em;
}

.footer p,
.footer a {
  color: var(--muted);
  line-height: 1.8;
  font-weight: 700;
}

.footer a {
  display: block;
  margin-bottom: 8px;
}

.footer a:hover { color: var(--amber); }

.footer-bottom {
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.whatsapp-float {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 120;
  min-width: 64px;
  height: 64px;
  border-radius: 999px;
  padding: 0 18px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: white;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 950;
  box-shadow: 0 18px 56px rgba(34,197,94,.36);
  isolation: isolate;
}

.whatsapp-float::before {
  content: "";
  position: absolute;
  inset: -8px;
  z-index: -1;
  border-radius: inherit;
  background: rgba(34,197,94,.25);
  animation: pulse 1.8s ease-out infinite;
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
}

.back-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 110;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--glass-2);
  color: var(--ink);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-soft);
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}

.back-top.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-top svg { width: 20px; height: 20px; }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  animation: reveal .78s ease forwards;
}

.reveal:nth-child(2) { animation-delay: .08s; }
.reveal:nth-child(3) { animation-delay: .16s; }
.reveal:nth-child(4) { animation-delay: .24s; }

@keyframes reveal {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes spin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

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

@keyframes marquee {
  to { transform: translateX(-50%); }
}

@keyframes bar {
  0%, 100% { filter: brightness(1); transform: scaleY(1); }
  50% { filter: brightness(1.15); transform: scaleY(.86); }
}

@keyframes pulse {
  to { transform: scale(1.36); opacity: 0; }
}

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

@media (max-width: 1080px) {
  .hero-layout,
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid,
  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-4,
  .check-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .orbit-card {
    min-height: 520px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 800px) {
  .top-ribbon {
    display: none;
  }

  .header {
    top: 8px;
    margin-top: 8px;
  }

  .menu-btn {
    display: grid;
  }

  .nav-links {
    position: fixed;
    top: 88px;
    left: 16px;
    right: 16px;
    z-index: 140;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(18,5,31,.96);
    backdrop-filter: blur(24px);
    box-shadow: var(--shadow);
  }

  [data-theme="light"] .nav-links {
    background: rgba(255,247,237,.96);
  }

  body.menu-open .nav-links {
    display: flex;
  }

  .nav-links a {
    border-radius: 16px;
    padding: 14px;
  }

  .nav-actions .btn {
    display: none;
  }

  .hero {
    padding-top: 52px;
  }

  .hero-points,
  .pricing-grid,
  .timeline,
  .grid-3,
  .grid-4,
  .check-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .cta {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .brand-text span {
    display: none;
  }
}

@media (max-width: 460px) {
  .container,
  .header,
  .top-ribbon {
    width: min(calc(100% - 22px), var(--max));
  }

  h1 {
    font-size: 44px;
  }

  .orbit-card {
    min-height: 470px;
    border-radius: 32px;
  }

  .orbit {
    width: 290px;
    height: 290px;
  }

  .brand-orb {
    width: 180px;
    height: 180px;
  }

  .brand-orb svg {
    width: 92px;
    height: 92px;
  }

  .micro-card {
    display: none;
  }

  .whatsapp-float {
    height: 58px;
    min-width: 58px;
    padding: 0 14px;
  }

  .whatsapp-float span {
    display: none;
  }
}
