/* ============================================================
   LYNADS.DK — Ultra-Premium Redesign
   $50k agency-level aesthetic
   ============================================================ */

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:          #050505;
  --bg-card:     #0a0a0a;
  --bg-elevated: #111111;
  --bg-subtle:   #0d0d0d;
  --surface:     #161616;
  --surface-2:   #1a1a1a;
  --border:      rgba(255,255,255,.06);
  --border-hover:rgba(255,255,255,.12);

  --text:        #f5f5f5;
  --text-secondary: rgba(255,255,255,.5);
  --text-muted:  rgba(255,255,255,.35);
  --text-dim:    rgba(255,255,255,.2);

  --accent:      #7c5cfc;
  --accent-2:    #00d4aa;
  --accent-3:    #ff6b6b;
  --accent-blue: #4d8eff;
  --accent-pink: #f472b6;

  --gradient-1: linear-gradient(135deg, #7c5cfc, #00d4aa);
  --gradient-2: linear-gradient(135deg, #7c5cfc, #f472b6);
  --gradient-3: linear-gradient(135deg, #4d8eff, #00d4aa);
  --gradient-text: linear-gradient(135deg, #7c5cfc 0%, #00d4aa 50%, #4d8eff 100%);

  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --max-w: 1200px;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  --ease: cubic-bezier(.4,0,.2,1);
  --ease-out: cubic-bezier(0,0,.2,1);
  --ease-spring: cubic-bezier(.34,1.56,.64,1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  color: var(--text-secondary);
  line-height: 1.7;
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Noise texture overlay on body */
body::after {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.02'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: .4;
}

img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--accent-2); }
ul { list-style: none; }
h1, h2, h3, h4, h5 { color: var(--text); line-height: 1.1; letter-spacing: -.03em; font-weight: 700; }
h1 { font-size: clamp(3rem, 7vw, 5rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); }
h3 { font-size: 1.2rem; font-weight: 600; letter-spacing: -.02em; }
p { max-width: 60ch; }

.container { width: min(90%, var(--max-w)); margin: 0 auto; }
.text-center { text-align: center; }

/* --- Gradient text --- */
.text-gradient {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: gradientShift 6s ease infinite;
}
@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* --- Reveal animations --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* --- Glow orb utility --- */
.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  will-change: transform;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .8rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 600; font-size: .9rem; font-family: var(--font);
  cursor: pointer; border: none;
  transition: all .3s var(--ease);
  text-decoration: none;
  position: relative;
  letter-spacing: -.01em;
}

.btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 0 20px rgba(124,92,252,.3), 0 0 60px rgba(124,92,252,.1);
}
.btn--primary:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(124,92,252,.5), 0 0 80px rgba(124,92,252,.2);
}

.btn--outline {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border-hover);
}
.btn--outline:hover {
  color: var(--text);
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.2);
  transform: translateY(-2px);
}

.btn--glass {
  background: rgba(255,255,255,.04);
  color: var(--text-secondary);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
}
.btn--glass:hover {
  color: var(--text);
  background: rgba(255,255,255,.08);
  border-color: var(--border-hover);
}

.btn--lg { padding: 1rem 2.5rem; font-size: 1rem; border-radius: 18px; }
.btn--sm { padding: .5rem 1.15rem; font-size: .8rem; border-radius: var(--radius-sm); }
.btn--full { width: 100%; }

/* Button arrow animation */
.btn svg.arrow { transition: transform .3s var(--ease); }
.btn:hover svg.arrow { transform: translateX(4px); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: .75rem 0;
  transition: all .3s var(--ease);
}
.nav.scrolled {
  background: rgba(5,5,5,.8);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
}

.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: .5rem 0;
}

.nav__logo {
  font-size: 1.4rem; font-weight: 800; color: var(--text);
  text-decoration: none; letter-spacing: -.04em;
}
.nav__logo-accent { color: var(--accent); }
.nav__logo-dk { color: var(--text-muted); font-weight: 500; font-size: .85em; }

.nav__links {
  display: flex; align-items: center; gap: .25rem;
}
.nav__link {
  color: var(--text-muted);
  font-weight: 450; font-size: .85rem;
  padding: .4rem .75rem;
  border-radius: var(--radius-sm);
  transition: all .2s var(--ease);
  text-decoration: none;
}
.nav__link:hover {
  color: var(--text);
  background: rgba(255,255,255,.05);
}
.nav__link--active {
  color: var(--text) !important;
  background: rgba(255,255,255,.06);
}

.nav__cta {
  margin-left: .5rem;
  background: var(--accent) !important;
  color: #fff !important;
  border-radius: var(--radius-sm) !important;
  font-size: .8rem !important;
  padding: .45rem 1rem !important;
  box-shadow: 0 0 16px rgba(124,92,252,.25);
}
.nav__cta:hover {
  box-shadow: 0 0 24px rgba(124,92,252,.4);
  transform: translateY(-1px);
}

.nav__toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  padding: .5rem;
  border-radius: var(--radius-sm);
  color: var(--text);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 8rem 0 6rem;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

/* Animated gradient orbs */
.hero__orb {
  position: absolute; border-radius: 50%; filter: blur(120px); pointer-events: none;
  will-change: transform;
}
.hero__orb--1 {
  width: 600px; height: 600px;
  top: -10%; right: -5%;
  background: rgba(124,92,252,.2);
  animation: orbFloat1 14s ease-in-out infinite;
}
.hero__orb--2 {
  width: 500px; height: 500px;
  bottom: -15%; left: -10%;
  background: rgba(0,212,170,.12);
  animation: orbFloat2 18s ease-in-out infinite;
}
.hero__orb--3 {
  width: 350px; height: 350px;
  top: 30%; left: 40%;
  background: rgba(77,142,255,.08);
  animation: orbFloat3 12s ease-in-out infinite;
}

@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-30px, 20px) scale(1.05); }
  66% { transform: translate(20px, -15px) scale(.97); }
}
@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -30px) scale(1.08); }
}
@keyframes orbFloat3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-20px, 30px) scale(1.03); }
}

/* Grid pattern */
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, black, transparent);
}

.hero .container { position: relative; z-index: 2; }

.hero__content {
  max-width: 720px;
}

/* Pill badge above title */
.hero__pill {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(124,92,252,.1);
  border: 1px solid rgba(124,92,252,.2);
  padding: .35rem 1rem .35rem .35rem;
  border-radius: var(--radius-full);
  font-size: .78rem; font-weight: 500;
  color: var(--accent);
  margin-bottom: 2rem;
  animation: pillGlow 3s ease-in-out infinite alternate;
}
.hero__pill-dot {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
}
.hero__pill-dot svg { width: 12px; height: 12px; stroke: #fff; fill: none; }

@keyframes pillGlow {
  0% { box-shadow: 0 0 0 rgba(124,92,252,0); }
  100% { box-shadow: 0 0 20px rgba(124,92,252,.15); }
}

.hero__title {
  margin-bottom: 1.5rem;
  line-height: 1.05;
}

.hero__subtitle {
  color: var(--text-secondary);
  font-size: 1.15rem;
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 520px;
}

.hero__actions {
  display: flex; gap: 1rem; flex-wrap: wrap;
  margin-bottom: 4rem;
}

/* Trust badges */
.hero__badges {
  display: flex; flex-wrap: wrap; gap: .5rem;
}
.badge {
  display: inline-flex; align-items: center; gap: .35rem;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
  padding: .35rem .85rem;
  border-radius: var(--radius-full);
  font-size: .75rem; font-weight: 500;
  color: var(--text-muted);
  transition: all .3s var(--ease);
}
.badge:hover {
  background: rgba(255,255,255,.06);
  border-color: var(--border-hover);
  color: var(--text-secondary);
}
.badge svg { width: 14px; height: 14px; }
.badge--purple svg { stroke: var(--accent); }
.badge--green svg { stroke: var(--accent-2); }
.badge--blue svg { stroke: var(--accent-blue); }

/* Floating dashboard preview */
.hero__visual {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 520px;
  pointer-events: none;
}
.hero__card-float {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  backdrop-filter: blur(20px);
  animation: cardFloat 6s ease-in-out infinite;
}
.hero__card-float--2 {
  position: absolute;
  bottom: -40px; left: -60px;
  width: 280px;
  animation-delay: -3s;
  animation-duration: 8s;
}
@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero__card-row {
  display: flex; align-items: center; gap: .75rem;
  padding: .5rem 0;
}
.hero__card-row + .hero__card-row { border-top: 1px solid var(--border); }
.hero__card-dot {
  width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
}
.hero__card-dot--green { background: var(--accent-2); box-shadow: 0 0 8px rgba(0,212,170,.4); }
.hero__card-dot--purple { background: var(--accent); box-shadow: 0 0 8px rgba(124,92,252,.4); }
.hero__card-dot--blue { background: var(--accent-blue); box-shadow: 0 0 8px rgba(77,142,255,.4); }
.hero__card-bar {
  height: 6px; border-radius: 3px; flex: 1;
  background: rgba(255,255,255,.06);
  position: relative; overflow: hidden;
}
.hero__card-bar-fill {
  position: absolute; left: 0; top: 0; bottom: 0;
  border-radius: 3px;
}
.hero__card-label {
  font-size: .72rem; color: var(--text-muted); white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.hero__card-value {
  font-size: .72rem; color: var(--text); font-weight: 600; white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

/* ============================================================
   HERO — Inner pages
   ============================================================ */
.hero--sm {
  min-height: auto;
  padding: 9rem 0 4rem;
  display: block;
}
.hero--sm .hero__title { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: .75rem; }
.hero--sm .hero__subtitle { margin-bottom: 0; }

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 7rem 0; position: relative; }
.section--alt { background: var(--bg-subtle); }
.section--dark { background: var(--bg); }

.section__header {
  text-align: center;
  margin-bottom: 4.5rem;
  position: relative;
}
.section__label {
  display: inline-flex; align-items: center; gap: .4rem;
  background: rgba(124,92,252,.08);
  border: 1px solid rgba(124,92,252,.15);
  padding: .3rem .85rem;
  border-radius: var(--radius-full);
  font-size: .72rem; font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 1.25rem;
}
.section__title { margin-bottom: .75rem; }
.section__subtitle {
  margin: .75rem auto 0;
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 520px;
}
.section__cta { text-align: center; margin-top: 3rem; }

/* ============================================================
   BENTO GRID (Features)
   ============================================================ */
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  gap: 1.25rem;
}
.bento__item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all .4s var(--ease);
  position: relative;
  overflow: hidden;
}
.bento__item::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at top left, rgba(124,92,252,.04), transparent 60%);
  opacity: 0;
  transition: opacity .4s var(--ease);
}
.bento__item:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(124,92,252,.06);
}
.bento__item:hover::before { opacity: 1; }

.bento__item--wide { grid-column: span 2; }
.bento__item--tall { grid-row: span 2; }

.bento__icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  position: relative;
}
.bento__icon svg { width: 22px; height: 22px; position: relative; z-index: 1; }
.bento__icon--purple { background: rgba(124,92,252,.1); }
.bento__icon--purple svg { stroke: var(--accent); }
.bento__icon--green { background: rgba(0,212,170,.1); }
.bento__icon--green svg { stroke: var(--accent-2); }
.bento__icon--blue { background: rgba(77,142,255,.1); }
.bento__icon--blue svg { stroke: var(--accent-blue); }
.bento__icon--pink { background: rgba(244,114,182,.1); }
.bento__icon--pink svg { stroke: var(--accent-pink); }

.bento__title { margin-bottom: .5rem; font-size: 1.1rem; }
.bento__text { color: var(--text-secondary); font-size: .88rem; line-height: 1.7; }

/* Visual element inside bento cards */
.bento__visual {
  margin-top: 1.5rem;
  background: rgba(255,255,255,.02);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  min-height: 120px;
}

/* ============================================================
   STANDARD GRID & CARDS (used on subpages)
   ============================================================ */
.grid { display: grid; gap: 1.25rem; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all .4s var(--ease);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at top left, rgba(124,92,252,.04), transparent 60%);
  opacity: 0;
  transition: opacity .4s var(--ease);
}
.card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(124,92,252,.06);
}
.card:hover::before { opacity: 1; }

.card__icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.card__icon svg { width: 22px; height: 22px; }

/* Cycle icon colors */
.grid .card:nth-child(6n+1) .card__icon, .features-grid .card:nth-child(6n+1) .card__icon { background: rgba(124,92,252,.1); }
.grid .card:nth-child(6n+1) .card__icon svg, .features-grid .card:nth-child(6n+1) .card__icon svg { stroke: var(--accent); }
.grid .card:nth-child(6n+2) .card__icon, .features-grid .card:nth-child(6n+2) .card__icon { background: rgba(0,212,170,.1); }
.grid .card:nth-child(6n+2) .card__icon svg, .features-grid .card:nth-child(6n+2) .card__icon svg { stroke: var(--accent-2); }
.grid .card:nth-child(6n+3) .card__icon, .features-grid .card:nth-child(6n+3) .card__icon { background: rgba(77,142,255,.1); }
.grid .card:nth-child(6n+3) .card__icon svg, .features-grid .card:nth-child(6n+3) .card__icon svg { stroke: var(--accent-blue); }
.grid .card:nth-child(6n+4) .card__icon, .features-grid .card:nth-child(6n+4) .card__icon { background: rgba(244,114,182,.1); }
.grid .card:nth-child(6n+4) .card__icon svg, .features-grid .card:nth-child(6n+4) .card__icon svg { stroke: var(--accent-pink); }
.grid .card:nth-child(6n+5) .card__icon, .features-grid .card:nth-child(6n+5) .card__icon { background: rgba(124,92,252,.1); }
.grid .card:nth-child(6n+5) .card__icon svg, .features-grid .card:nth-child(6n+5) .card__icon svg { stroke: var(--accent); }
.grid .card:nth-child(6n+6) .card__icon, .features-grid .card:nth-child(6n+6) .card__icon { background: rgba(0,212,170,.1); }
.grid .card:nth-child(6n+6) .card__icon svg, .features-grid .card:nth-child(6n+6) .card__icon svg { stroke: var(--accent-2); }

.card__title { margin-bottom: .5rem; font-size: 1.1rem; }
.card__text { color: var(--text-secondary); font-size: .88rem; line-height: 1.7; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.25rem;
}

/* ============================================================
   STATS — Glowing numbers
   ============================================================ */
.stats { position: relative; overflow: hidden; }
.stats::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 80% at 50% 50%, rgba(124,92,252,.06), transparent);
}
.stats .container { position: relative; z-index: 2; }

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  text-align: center;
}
.stat {
  padding: 2.5rem 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all .4s var(--ease);
}
.stat:hover {
  border-color: var(--border-hover);
  box-shadow: 0 0 40px rgba(124,92,252,.06);
}
.stat__number {
  display: block;
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -.04em;
  color: var(--text);
  margin-bottom: .25rem;
  font-variant-numeric: tabular-nums;
}
.stat__label {
  color: var(--text-muted);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .02em;
}

/* ============================================================
   STEPS / HOW IT WORKS
   ============================================================ */
.steps { counter-reset: step; max-width: 680px; margin: 0 auto; }

.step {
  display: flex; gap: 2rem; align-items: flex-start;
  padding: 2rem 0;
  position: relative;
}

/* Grid variant (homepage) */
.grid .step {
  flex-direction: column;
  text-align: center;
  align-items: center;
  padding: 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all .4s var(--ease);
}
.grid .step:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.step__number {
  flex-shrink: 0;
  width: 52px; height: 52px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem; font-weight: 800;
  position: relative;
}

.steps .step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 25px; top: 72px;
  width: 1px;
  height: calc(100% - 52px);
  background: linear-gradient(to bottom, rgba(124,92,252,.3), transparent);
}

.step__title, .step-content h3 { margin-bottom: .5rem; }
.step__text, .step-content p { color: var(--text-secondary); line-height: 1.7; }

/* ============================================================
   PRICING
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.25rem;
  align-items: start;
}

.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  text-align: center;
  transition: all .4s var(--ease);
  position: relative;
}
.price-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
  box-shadow: 0 0 40px rgba(124,92,252,.06);
}

.price-card.featured {
  border-color: rgba(124,92,252,.3);
  box-shadow: 0 0 60px rgba(124,92,252,.1);
  transform: scale(1.02);
  z-index: 2;
}
.price-card.featured:hover {
  transform: scale(1.02) translateY(-4px);
}
.price-card.featured::before {
  content: 'Mest populær';
  position: absolute; top: 0; left: 50%;
  transform: translate(-50%, -50%);
  background: var(--accent);
  color: #fff;
  padding: .3rem 1.15rem;
  border-radius: var(--radius-full);
  font-size: .7rem; font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  box-shadow: 0 0 20px rgba(124,92,252,.4);
}

.price-card h3 { font-size: 1.15rem; margin-bottom: .5rem; }
.price-amount {
  font-size: 3.25rem; font-weight: 800;
  color: var(--text);
  margin: 1.25rem 0;
  letter-spacing: -.04em;
}
.price-amount span {
  font-size: .85rem; font-weight: 400; color: var(--text-muted);
  letter-spacing: 0;
}

.price-card ul { text-align: left; margin: 1.5rem 0 2rem; }
.price-card li {
  padding: .5rem 0;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: .6rem;
  font-size: .88rem; color: var(--text-secondary);
}
.price-card li:last-child { border-bottom: none; }
.price-card li svg {
  width: 16px; height: 16px;
  stroke: var(--accent-2);
  flex-shrink: 0;
}
.price-card .btn { width: 100%; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  padding: 8rem 0;
  background: var(--bg);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 500px 300px at 30% 50%, rgba(124,92,252,.08), transparent),
    radial-gradient(ellipse 400px 250px at 70% 50%, rgba(0,212,170,.05), transparent);
}
/* Gradient border line at top */
.cta-banner::after {
  content: '';
  position: absolute; top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124,92,252,.3), rgba(0,212,170,.2), transparent);
}
.cta-banner .container { position: relative; z-index: 2; }
.cta-banner__title { margin-bottom: 1rem; }
.cta-banner__text {
  color: var(--text-secondary);
  margin: 0 auto 2.5rem;
  font-size: 1.05rem;
  max-width: 480px;
}
.cta-buttons {
  display: flex; gap: 1rem;
  justify-content: center; flex-wrap: wrap;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h3 { margin-bottom: 1rem; font-size: 1.4rem; }
.contact-info p { margin-bottom: 2rem; color: var(--text-secondary); line-height: 1.8; }

.contact-detail {
  display: flex; align-items: center; gap: .85rem;
  margin-bottom: 1.25rem;
  color: var(--text-secondary);
  font-weight: 500;
}
.contact-detail__icon svg { width: 20px; height: 20px; stroke: var(--accent); flex-shrink: 0; }

.contact-form-wrapper {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
}

.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-weight: 600; font-size: .82rem;
  margin-bottom: .4rem;
  color: var(--text-secondary);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: .75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: .88rem; font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  transition: all .2s var(--ease);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(124,92,252,.15);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group select { cursor: pointer; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-dim); }

/* ============================================================
   ABOUT
   ============================================================ */
.about-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-text p {
  margin-bottom: 1.25rem;
  line-height: 1.8;
  color: var(--text-secondary);
}
.about-text p:first-of-type {
  font-size: 1.05rem;
  color: var(--text);
  font-weight: 500;
}

.about-image {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.about-image::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(124,92,252,.06), transparent 70%);
}
.about-image svg, .about-image__placeholder svg {
  width: 80px; height: 80px;
  stroke: var(--accent);
  opacity: .15;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%; padding: 1.25rem 0;
  background: none; border: none;
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer;
  font-size: .95rem; font-weight: 600;
  color: var(--text);
  text-align: left; font-family: var(--font);
  transition: color .2s var(--ease);
}
.faq-question:hover { color: var(--accent); }
.faq-question svg {
  width: 18px; height: 18px;
  stroke: var(--text-muted);
  transition: all .3s var(--ease);
  flex-shrink: 0; margin-left: 1.5rem;
}
.faq-item.open .faq-question { color: var(--accent); }
.faq-item.open .faq-question svg { transform: rotate(45deg); stroke: var(--accent); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-answer p { padding: 0 0 1.25rem; color: var(--text-secondary); line-height: 1.8; }
.faq-item.open .faq-answer { max-height: 400px; }

/* ============================================================
   LEGAL
   ============================================================ */
.legal-content { max-width: 720px; margin: 0 auto; }
.legal-content h2 {
  font-size: 1.3rem;
  margin: 2.5rem 0 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.legal-content h2:first-child { border-top: none; margin-top: 0; padding-top: 0; }
.legal-content h3 { font-size: 1.05rem; margin: 1.5rem 0 .5rem; }
.legal-content p { margin-bottom: 1rem; color: var(--text-secondary); line-height: 1.8; }
.legal-content ul { list-style: none; padding-left: 0; margin-bottom: 1rem; }
.legal-content li {
  margin-bottom: .5rem; padding-left: 1.5rem;
  position: relative; color: var(--text-secondary);
}
.legal-content li::before {
  content: ''; position: absolute; left: 0; top: .65em;
  width: 5px; height: 5px;
  background: var(--accent);
  border-radius: 50%;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg);
  color: var(--text-muted);
  padding: 5rem 0 2rem;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute; top: 0; left: 5%; right: 5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124,92,252,.2), rgba(0,212,170,.15), transparent);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer__logo {
  font-size: 1.35rem; font-weight: 800;
  color: var(--text);
  text-decoration: none;
  display: inline-block;
  margin-bottom: .5rem;
  letter-spacing: -.03em;
}
.footer__logo-accent { color: var(--accent); }
.footer__logo-dk { color: var(--text-dim); font-weight: 500; font-size: .85em; }

.footer__desc {
  margin-top: .75rem;
  font-size: .82rem;
  line-height: 1.7;
  color: var(--text-dim);
  max-width: 280px;
}

.footer__heading {
  color: var(--text-secondary);
  font-size: .7rem; font-weight: 700;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.footer__links li { margin-bottom: .5rem; }
.footer__links a {
  color: var(--text-muted);
  font-size: .85rem;
  transition: all .2s var(--ease);
}
.footer__links a:hover { color: var(--text); padding-left: 4px; }

.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.75rem;
  display: flex; justify-content: space-between; align-items: center;
  font-size: .78rem;
  color: var(--text-dim);
}
.footer__bottom-links { display: flex; gap: 1.5rem; }
.footer__bottom a { color: var(--text-dim); }
.footer__bottom a:hover { color: var(--text-muted); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .grid--4, .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento__item--wide { grid-column: span 2; }
  .hero__visual { display: none; }
}

@media (max-width: 768px) {
  .nav__links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(5,5,5,.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: .5rem;
    z-index: 999;
  }
  .nav__links.open { display: flex; }
  .nav__link { font-size: 1.15rem; padding: .75rem 2rem; }
  .nav__toggle { display: block; z-index: 1001; }

  .hero { min-height: auto; padding: 8rem 0 5rem; }
  .hero__title { font-size: clamp(2.5rem, 9vw, 3.5rem); }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .hero--sm { padding: 7rem 0 3rem; }

  .section { padding: 5rem 0; }
  .section__header { margin-bottom: 3rem; }

  .grid--3, .grid--4, .stats__grid { grid-template-columns: 1fr; }
  .bento { grid-template-columns: 1fr; }
  .bento__item--wide { grid-column: span 1; }
  .features-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-content { grid-template-columns: 1fr; gap: 2rem; }

  .price-card.featured { transform: none; }
  .price-card.featured:hover { transform: translateY(-4px); }

  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; gap: .75rem; text-align: center; }

  .steps .step { flex-direction: column; gap: 1rem; }
  .steps .step::after { display: none; }
  .cta-buttons { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .footer__grid { grid-template-columns: 1fr; }
  .hero__badges { flex-direction: column; align-items: flex-start; }
  .grid--2, .stats__grid { grid-template-columns: 1fr; }
}

@media print {
  .nav, .cta-banner, .footer { display: none; }
  .hero { background: #fff; color: #000; padding: 2rem 0; min-height: auto; }
  .hero h1 { color: #000; }
  .section { padding: 1.5rem 0; }
  body { font-size: 12pt; background: #fff; color: #333; }
  body::after { display: none; }
}
