/* ============================================
   OWL SOLUTIONS — CINEMATIC PREMIUM
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Manrope:wght@400;500;600;700;800&family=Unbounded:wght@500;600;700;800;900&display=swap');

:root {
  --black: #000000;
  --bg: #0a0a0a;
  --bg2: #080808;
  --surface: rgba(255,255,255,0.035);
  --surface2: rgba(255,255,255,0.06);
  --border: rgba(255,255,255,0.07);
  --border-hot: rgba(255,120,40,0.35);
  --white: #ffffff;
  --muted: #7a7a7a;
  --muted2: #ababab;
  --fire: #ff4d00;
  --orange: #ff7a1a;
  --gold: #ffc14d;
  --yellow: #ffe066;
  --brand-top: #ffc85e;
  --brand-bottom: #ff7e00;
  --grad-brand: linear-gradient(180deg, #ffc85e 0%, #ff7e00 100%);
  --grad-text: linear-gradient(180deg, rgba(255, 200, 94, 0.88) 0%, #ffc85e 22%, #ff7e00 100%);
  --grad: linear-gradient(180deg, #ffc85e 0%, #ff7e00 100%);
  --grad-hot: linear-gradient(90deg, #ff4d00, #ff7a1a, #ffc14d, #ff7a1a, #ff4d00);
  --glow: 0 0 80px rgba(255, 90, 0, 0.25);
  --glow-lg: 0 0 120px rgba(255, 90, 0, 0.35);
  --glass: rgba(6,6,6,0.75);
  --r: 20px;
  --r-sm: 12px;
  --r-xl: 32px;
  --pill: 999px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --max: 1320px;
  --nav: 76px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: 0.4s var(--ease); }
ul { list-style: none; }
main { position: relative; z-index: 2; }

/* ---- AURORA BACKGROUND ---- */
.aurora {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.aurora span {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.55;
  animation: aurora-drift 14s var(--ease) infinite alternate;
}

.aurora span:nth-child(1) {
  width: 55vw; height: 55vw;
  background: radial-gradient(circle, rgba(255,77,0,0.35) 0%, transparent 70%);
  top: -20%; right: -15%;
}
.aurora span:nth-child(2) {
  width: 45vw; height: 45vw;
  background: radial-gradient(circle, rgba(255,193,77,0.15) 0%, transparent 70%);
  bottom: -10%; left: -10%;
  animation-delay: -5s;
}
.aurora span:nth-child(3) {
  width: 30vw; height: 30vw;
  background: radial-gradient(circle, rgba(255,122,26,0.2) 0%, transparent 70%);
  top: 40%; left: 30%;
  animation-delay: -9s;
}

@keyframes aurora-drift {
  0% { transform: translate(0,0) scale(1); }
  100% { transform: translate(-40px, 30px) scale(1.08); }
}

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

/* ---- TYPOGRAPHY ---- */
h1, h2, h3 {
  font-family: 'Unbounded', sans-serif;
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.04em;
}

h1 { font-size: clamp(3rem, 9vw, 7.5rem); }
h2 { font-size: clamp(2rem, 5vw, 4rem); }
h3 { font-size: clamp(1rem, 2vw, 1.35rem); font-weight: 700; }

p { color: var(--muted2); }

.gradient-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.outline-text {
  -webkit-text-stroke: 1px rgba(255,255,255,0.08);
  color: transparent;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--grad);
}

.section-head {
  max-width: 820px;
  margin-bottom: 4rem;
}

.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head p { margin-top: 1.25rem; font-size: 1.1rem; max-width: 600px; }
.section-head.center p { margin-left: auto; margin-right: auto; }

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.75rem;
}

section { padding: 8rem 0; position: relative; }

/* ---- NAV ---- */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--nav);
  background: var(--glass);
  backdrop-filter: blur(24px) saturate(200%);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  justify-self: start;
}

.logo-mark {
  width: 38px; height: 38px;
  background: var(--grad-brand);
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
  color: #000;
  text-transform: lowercase;
  letter-spacing: -0.04em;
  box-shadow: 0 0 24px rgba(255, 126, 0, 0.3);
}

.main-nav { justify-self: center; }

.desktop-cta {
  justify-self: end;
  padding: 0.6rem 1.35rem !important;
  font-size: 0.82rem !important;
  border-radius: var(--pill) !important;
}

.mobile-cta { display: none; }

.nav-toggle { display: none; }
.nav-toggle-label { display: none; cursor: pointer; flex-direction: column; gap: 6px; justify-self: end; }
.nav-toggle-label span { width: 26px; height: 2px; background: #fff; border-radius: 2px; }

.main-nav ul { display: flex; align-items: center; gap: 0.15rem; }

.main-nav a {
  padding: 0.55rem 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted2);
  border-radius: var(--pill);
}

.main-nav a:hover { color: #fff; background: var(--surface); }

.nav-cta {
  background: var(--grad-brand) !important;
  color: #000 !important;
  font-weight: 800 !important;
  box-shadow: 0 0 30px rgba(255, 126, 0, 0.28);
}

.nav-cta:hover { transform: scale(1.04); box-shadow: 0 0 60px rgba(255,90,0,0.5) !important; }

@media (max-width: 768px) {
  .header-inner {
    grid-template-columns: 1fr auto;
  }
  .nav-toggle-label { display: flex; grid-column: 2; grid-row: 1; }
  .desktop-cta { display: none !important; }
  .mobile-cta { display: list-item !important; }
  .main-nav {
    grid-column: 1 / -1;
    justify-self: stretch;
    position: absolute; top: var(--nav); left: 0; right: 0;
    background: rgba(10,10,10,0.98);
    border-bottom: 1px solid var(--border);
    max-height: 0; overflow: hidden;
    transition: max-height 0.4s var(--ease);
  }
  .main-nav ul { flex-direction: column; padding: 1rem; align-items: stretch; }
  .main-nav a { display: block; padding: 1rem; }
  .nav-cta { margin: 0 !important; text-align: center; }
  .nav-toggle:checked ~ .main-nav { max-height: 480px; }
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1.05rem 2rem;
  font-family: 'Manrope', sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  border-radius: var(--pill);
  border: none;
  cursor: pointer;
  transition: 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--grad-brand);
  color: #000;
  box-shadow: 0 0 30px rgba(255, 126, 0, 0.28);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--glow-lg);
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid var(--border-hot);
  backdrop-filter: blur(12px);
}

.btn-ghost:hover {
  background: rgba(255,90,0,0.08);
  border-color: var(--orange);
  transform: translateY(-3px);
}

.btn-lg { padding: 1.2rem 2.5rem; font-size: 1rem; }

.btn-group { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.5rem; }

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav) + 3rem) 0 5rem;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse 80% 60% at 70% 40%, rgba(255, 120, 0, 0.07) 0%, transparent 60%);
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.85fr;
  gap: clamp(2rem, 4vw, 5rem);
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content { max-width: 620px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 1rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--pill);
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.75rem;
}

.hero-badge-dot {
  width: 7px; height: 7px;
  background: #ff8c00;
  border-radius: 50%;
  box-shadow: 0 0 10px #ff8c00;
  flex-shrink: 0;
}

.hero h1 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2.4rem, 4.8vw, 4.25rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin-bottom: 1.5rem;
}

.hero h1 .block { display: block; }

.hero-line-white { color: #fff; }

.hero-line-gradient {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  line-height: 1.75;
  color: #9a9a9a;
  max-width: 500px;
}

.btn-group { margin-top: 2rem; }

.btn-lg { padding: 1rem 1.85rem; font-size: 0.92rem; }

/* Dashboard Mock */
.hero-visual {
  position: relative;
  z-index: 2;
}

.dashboard {
  background: linear-gradient(165deg, rgba(18,18,18,0.95) 0%, rgba(10,10,10,0.98) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 1.15rem;
  box-shadow:
    0 0 40px rgba(255, 140, 0, 0.18),
    0 24px 60px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255,255,255,0.05);
  position: relative;
}

.dashboard::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(145deg, rgba(255,140,0,0.45), rgba(255,140,0,0.05) 50%, rgba(255,193,77,0.2));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.dash-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0.75rem 1.25rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1rem;
}

.dash-dots { display: flex; gap: 6px; }
.dash-dots i { width: 10px; height: 10px; border-radius: 50%; display: block; }
.dash-dots i:nth-child(1) { background: #ff5f57; }
.dash-dots i:nth-child(2) { background: #febc2e; }
.dash-dots i:nth-child(3) { background: #28c840; }

.dash-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #666;
  flex: 1;
  text-align: center;
}

.dash-live {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  color: #28c840;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.dash-live::before {
  content: '•';
  color: #28c840;
  font-size: 1rem;
  line-height: 1;
  animation: blink 1.5s ease infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.dash-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.dash-stat {
  background: rgba(0,0,0,0.45);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 1rem;
}

.dash-stat strong {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.35rem, 2vw, 1.65rem);
  font-weight: 800;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.dash-stat span {
  font-family: 'Inter', sans-serif;
  font-size: 0.58rem;
  font-weight: 700;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.dash-pipeline { display: grid; gap: 0.5rem; }

.dash-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
  background: rgba(0,0,0,0.35);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  font-size: 0.78rem;
}

.dash-row.hot { border-color: rgba(255,77,0,0.3); background: rgba(255,77,0,0.06); }

.dash-row-label { font-family: 'Inter', sans-serif; font-weight: 600; font-size: 0.78rem; color: #fff; }
.dash-row-sub { font-family: 'Inter', sans-serif; font-size: 0.65rem; color: #666; margin-top: 3px; }

.dash-tag {
  padding: 0.28rem 0.6rem;
  border-radius: var(--pill);
  font-family: 'Inter', sans-serif;
  font-size: 0.58rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.dash-tag.new { background: rgba(255, 179, 71, 0.15); color: #ffb347; }
.dash-tag.active { background: rgba(255, 140, 0, 0.15); color: #ff8c00; }
.dash-tag.closed { background: rgba(40, 200, 64, 0.12); color: #28c840; }

/* Stats strip */
.stats-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
  padding: 2.5rem 0;
  position: relative;
  z-index: 2;
}

.stats-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stats-strip-item strong {
  display: block;
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stats-strip-item span {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

@media (max-width: 960px) {
  .hero-layout { grid-template-columns: 1fr; }
  .hero-visual { max-width: 520px; margin: 0 auto; width: 100%; }
  .hero-content { max-width: 100%; }
  .stats-strip-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .stats-strip-grid { grid-template-columns: 1fr; }
  .dash-stats { grid-template-columns: 1fr; }
}

/* ---- MARQUEE ---- */
.marquee-band {
  overflow: hidden;
  padding: 1.75rem 0;
  background: var(--grad-brand);
  position: relative;
  z-index: 2;
}

.marquee-inner {
  display: flex;
  width: max-content;
  animation: scroll 22s linear infinite;
}

.marquee-inner span {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(0.85rem, 2vw, 1.1rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #000;
  white-space: nowrap;
  padding: 0 2rem;
}

.marquee-inner span::after {
  content: '★';
  margin-left: 2rem;
  opacity: 0.4;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---- BENTO ---- */
.section-dark { background: var(--bg2); }

.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}

.bento-cell {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2.25rem;
  position: relative;
  overflow: hidden;
  transition: 0.5s var(--ease);
}

.bento-cell:hover {
  border-color: var(--border-hot);
  transform: translateY(-6px);
  box-shadow: var(--glow);
}

.bento-cell.span7 { grid-column: span 7; }
.bento-cell.span5 { grid-column: span 5; }
.bento-cell.span12 { grid-column: span 12; }

.bento-cell h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  margin-bottom: 1rem;
  line-height: 1.15;
}

.bento-cell p { font-size: 0.95rem; line-height: 1.75; }

.bento-giant-num {
  position: absolute;
  top: -0.5rem; right: 1rem;
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(5rem, 10vw, 9rem);
  font-weight: 900;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,122,26,0.12);
  pointer-events: none;
}

.tag-cloud { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.75rem; }

.tag {
  padding: 0.45rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--pill);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--muted2);
  background: rgba(0,0,0,0.3);
  transition: 0.3s var(--ease);
}

.tag:hover { border-color: var(--border-hot); color: var(--gold); }

.bento-row3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.bento-row3 h4 {
  font-family: 'Unbounded', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--gold);
}

.bento-row3 p { font-size: 0.85rem; }

@media (max-width: 900px) {
  .bento-cell.span7, .bento-cell.span5, .bento-cell.span12 { grid-column: span 12; }
  .bento-row3 { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* ---- SERVICES ---- */
.services-showcase {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.svc-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: start;
  padding: 2rem 2rem 2rem 1.75rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  transition: 0.5s var(--ease);
  position: relative;
  overflow: hidden;
}

.svc-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,77,0,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: 0.5s var(--ease);
}

.svc-card:hover {
  border-color: var(--border-hot);
  transform: scale(1.01);
  box-shadow: var(--glow);
}

.svc-card:hover::after { opacity: 1; }

.svc-num {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 900;
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.35;
  position: relative;
  z-index: 1;
}

.svc-body { position: relative; z-index: 1; }
.svc-body h3 { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 1.05rem; margin-bottom: 0.5rem; letter-spacing: -0.02em; }
.svc-body p { font-size: 0.875rem; color: var(--muted); line-height: 1.65; }

@media (max-width: 768px) {
  .services-showcase { grid-template-columns: 1fr; }
}

/* ---- WHY ---- */
.why-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
  align-items: stretch;
}

.why-stack { display: grid; gap: 0.65rem; }

.why-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 1.35rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted2);
  transition: 0.4s var(--ease);
}

.why-item:hover {
  border-color: var(--border-hot);
  color: #fff;
  padding-left: 1.75rem;
  background: rgba(255,77,0,0.05);
}

.why-num {
  font-family: 'Unbounded', sans-serif;
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--orange);
  min-width: 28px;
}

.why-feature {
  background: linear-gradient(145deg, rgba(255,77,0,0.12) 0%, rgba(0,0,0,0.6) 60%);
  border: 1px solid var(--border-hot);
  border-radius: var(--r-xl);
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.why-feature::before {
  content: '';
  position: absolute;
  top: -50%; right: -30%;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,122,26,0.2) 0%, transparent 70%);
  pointer-events: none;
}

.why-feature blockquote {
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 700;
  line-height: 1.65;
  color: #fff;
  position: relative;
  z-index: 1;
  margin-bottom: 2rem;
}

.why-feature cite {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
  position: relative;
  z-index: 1;
}

@media (max-width: 900px) {
  .why-layout { grid-template-columns: 1fr; }
}

/* ---- PROCESS ---- */
.process-list {
  display: grid;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}

.process-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 2.5rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
  transition: 0.4s var(--ease);
}

.process-item:first-child { border-top: 1px solid var(--border); }

.process-item:hover { padding-left: 1rem; }

.process-item:hover .process-num {
  background: var(--grad);
  color: #000;
  box-shadow: var(--glow);
}

.process-num {
  font-family: 'Unbounded', sans-serif;
  font-size: 1.75rem;
  font-weight: 900;
  width: 80px; height: 80px;
  display: grid;
  place-items: center;
  border: 2px solid var(--border-hot);
  border-radius: 20px;
  color: var(--gold);
  transition: 0.4s var(--ease);
  flex-shrink: 0;
}

.process-body h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.process-body p { font-size: 0.9rem; color: var(--muted); max-width: 560px; }

@media (max-width: 600px) {
  .process-item { grid-template-columns: 1fr; gap: 1rem; }
  .process-num { width: 60px; height: 60px; font-size: 1.25rem; }
}

/* ---- PACKAGES (Pricing) ---- */
.packages-section {
  --o-top: #ffc85e;
  --o-bottom: #ff7e00;
  --grad-pkg: linear-gradient(180deg, #ffc85e 0%, #ff7e00 100%);
  --grad-pkg-text: linear-gradient(180deg, rgba(255, 200, 94, 0.88) 0%, #ffc85e 22%, #ff7e00 100%);
  --grad-featured: linear-gradient(180deg, #ffc85e 0%, #ff9000 45%, #ff7e00 100%);
  --o-glow: rgba(255, 126, 0, 0.22);
  --o-glow-strong: rgba(255, 126, 0, 0.38);

  padding: 6rem 0 8rem;
  background: var(--bg2);
  position: relative;
  overflow: hidden;
}

.packages-section::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(255, 126, 0, 0.08) 0%, transparent 65%);
  pointer-events: none;
}

.packages-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  text-align: center;
  background: var(--grad-pkg-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.65rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.packages-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--grad-pkg);
  margin: 0.75rem auto 0;
  border-radius: 2px;
}

.packages-wrap {
  position: relative;
  z-index: 1;
  margin-top: 2.5rem;
}

.billing-toggle {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.billing-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.billing-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.3s ease;
}

.billing-toggle:not(:checked) ~ .billing-bar .label-monthly { color: var(--white); font-weight: 700; }
.billing-toggle:checked ~ .billing-bar .label-quarterly { color: var(--o-top); font-weight: 700; }

.toggle-switch {
  position: relative;
  width: 52px;
  height: 28px;
  cursor: pointer;
  display: block;
  flex-shrink: 0;
}

.toggle-track {
  position: absolute;
  inset: 0;
  background: var(--grad-pkg);
  border-radius: 999px;
  transition: background 0.3s ease;
}

.billing-toggle:checked ~ .billing-bar .toggle-track {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid var(--border);
}

.toggle-thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.billing-toggle:checked ~ .billing-bar .toggle-thumb {
  transform: translateX(24px);
  background: var(--grad-pkg);
  box-shadow: 0 2px 8px var(--o-glow-strong);
}

.discount-badge {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.35rem 0.85rem;
  background: rgba(255, 200, 94, 0.1);
  color: var(--o-top);
  border: 1px solid rgba(255, 200, 94, 0.25);
  border-radius: 999px;
  opacity: 0.7;
  transition: opacity 0.3s ease, background 0.3s ease;
}

.billing-toggle:checked ~ .billing-bar .discount-badge {
  opacity: 1;
  background: var(--grad-pkg);
  color: #1a1a1a;
  border-color: transparent;
}

.price-monthly,
.price-quarterly {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 0.2rem;
}

.price-quarterly {
  display: none;
}

.price-quarterly .price-old {
  flex-basis: 100%;
  text-align: center;
}

.billing-toggle:checked ~ .packages-row .price-monthly { display: none; }
.billing-toggle:checked ~ .packages-row .price-quarterly { display: flex; }

.packages-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 2rem 1.75rem 1.75rem;
  display: flex;
  flex-direction: column;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(12px);
  transition: transform 0.35s var(--ease), box-shadow 0.35s ease, border-color 0.35s ease;
}

.pricing-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-pkg);
}

.pricing-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 200, 94, 0.28);
  box-shadow: 0 0 40px var(--o-glow), 0 16px 48px rgba(0, 0, 0, 0.4);
}

.pricing-card.featured {
  background: var(--grad-featured);
  border: 1px solid rgba(255, 212, 163, 0.35);
  transform: scale(1.04);
  z-index: 2;
  box-shadow: 0 0 50px var(--o-glow-strong), 0 16px 48px rgba(0, 0, 0, 0.4);
}

.pricing-card.featured::after {
  background: #fff;
  height: 3px;
}

.pricing-card.featured:hover {
  transform: scale(1.04) translateY(-6px);
  box-shadow: 0 0 60px var(--o-glow-strong), 0 20px 56px rgba(0, 0, 0, 0.45);
}

.featured-ribbon {
  position: absolute;
  top: 18px;
  right: -38px;
  width: 160px;
  padding: 0.4rem 0;
  background: #fff;
  color: var(--o-bottom);
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: rotate(45deg);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.pricing-name {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1.25rem;
  line-height: 1.35;
  padding-top: 0.25rem;
}

.pricing-card.featured .pricing-name {
  margin-top: 0.5rem;
}

.pricing-price {
  margin-bottom: 1.75rem;
  min-height: 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.price-old {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
  text-decoration: line-through;
  margin-bottom: 0.15rem;
}

.pricing-card.featured .price-old {
  color: rgba(0, 0, 0, 0.35);
}

.price-main {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 900;
  background: var(--grad-pkg-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

.pricing-card.featured .price-main {
  background: none;
  -webkit-text-fill-color: #fff;
  color: #fff;
}

.price-term {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--o-bottom);
}

.pricing-card.featured .price-term {
  color: rgba(255, 255, 255, 0.9);
}

.features-list {
  flex: 1;
  text-align: left;
  margin-bottom: 1.75rem;
  list-style: none;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.45rem 0;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.45;
  color: var(--muted2);
}

.pricing-card.featured .features-list li {
  color: #fff;
}

.feat-out {
  color: var(--muted) !important;
  text-decoration: line-through;
}

.pricing-card.featured .feat-out {
  color: rgba(255, 255, 255, 0.45) !important;
}

.feat-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 1px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.55rem;
  font-weight: 900;
}

.feat-yes {
  background: rgba(255, 200, 94, 0.12);
  color: var(--o-bottom);
}

.feat-yes::before {
  content: '✓';
}

.pricing-card.featured .feat-yes {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.feat-no {
  background: rgba(220, 50, 50, 0.12);
  color: #e74c3c;
}

.feat-no::before {
  content: '✕';
  font-size: 0.5rem;
}

.pricing-card.featured .feat-no {
  background: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.7);
}

.feat-tip {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  margin-left: auto;
  border-radius: 50%;
  background: rgba(255, 200, 94, 0.12);
  color: var(--o-top);
  font-size: 0.55rem;
  font-weight: 800;
  display: grid;
  place-items: center;
  cursor: help;
  line-height: 1;
}

.pricing-card.featured .feat-tip {
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
}

.pricing-btn {
  display: block;
  width: 100%;
  padding: 0.95rem 1rem;
  background: var(--grad-pkg);
  color: #1a1a1a;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  border-radius: var(--r-sm);
  border: none;
  transition: transform 0.25s var(--ease), box-shadow 0.25s ease;
}

.pricing-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px var(--o-glow-strong);
  color: #1a1a1a;
}

.pricing-btn-light {
  background: #fff;
  color: var(--o-bottom);
}

.pricing-btn-light:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
  color: var(--o-bottom);
}

@media (max-width: 1024px) {
  .packages-row {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }
  .pricing-card.featured {
    transform: none;
    order: -1;
  }
  .pricing-card.featured:hover {
    transform: translateY(-6px);
  }
}

@media (max-width: 480px) {
  .billing-bar { gap: 0.75rem; }
  .pricing-card { padding: 1.75rem 1.25rem 1.5rem; }
}

/* ---- TESTIMONIALS ---- */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.testi {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  transition: 0.4s var(--ease);
}

.testi:hover { border-color: var(--border-hot); transform: translateY(-6px); }

.testi-stars { color: var(--gold); font-size: 0.8rem; letter-spacing: 0.15em; margin-bottom: 1.25rem; }

.testi blockquote {
  flex: 1;
  font-size: 0.925rem;
  line-height: 1.8;
  color: var(--muted2);
  margin-bottom: 1.75rem;
  font-weight: 500;
}

.testi-foot {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.testi-av {
  width: 44px; height: 44px;
  background: var(--grad);
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 0.7rem;
  font-weight: 900;
  color: #000;
}

.testi-foot strong { display: block; font-size: 0.875rem; font-weight: 800; }
.testi-foot span { font-size: 0.75rem; color: var(--muted); }

@media (max-width: 900px) { .testi-grid { grid-template-columns: 1fr; } }

/* ---- FAQ ---- */
.faq-grid { max-width: 820px; margin: 0 auto; display: grid; gap: 0.75rem; }

.faq {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  transition: 0.3s var(--ease);
}

.faq:hover { border-color: rgba(255,122,26,0.2); }
.faq[open] { border-color: var(--border-hot); background: rgba(255,77,0,0.04); }

.faq summary {
  padding: 1.4rem 1.5rem;
  font-weight: 800;
  font-size: 0.95rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq summary::-webkit-details-marker { display: none; }

.faq summary::after {
  content: '+';
  width: 32px; height: 32px;
  display: grid;
  place-items: center;
  background: rgba(255,77,0,0.1);
  border-radius: 10px;
  color: var(--orange);
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: 0.3s var(--ease);
}

.faq[open] summary::after {
  content: '−';
  background: var(--grad);
  color: #000;
}

.faq p { padding: 0 1.5rem 1.4rem; font-size: 0.9rem; color: var(--muted); line-height: 1.75; }

/* ---- MEGA CTA ---- */
.mega-cta {
  padding: 0;
  position: relative;
  z-index: 2;
}

.mega-cta-inner {
  margin: 0 1.75rem;
  max-width: calc(var(--max) - 3.5rem);
  margin-left: auto;
  margin-right: auto;
  padding: 5rem 3rem;
  border-radius: var(--r-xl);
  background: linear-gradient(135deg, rgba(255,77,0,0.15) 0%, rgba(255,193,77,0.05) 50%, rgba(0,0,0,0.8) 100%);
  border: 1px solid var(--border-hot);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--glow-lg);
}

.mega-cta-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255,122,26,0.2) 0%, transparent 60%);
  pointer-events: none;
}

.mega-cta-inner h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
  position: relative;
}

.mega-cta-inner p {
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto 2.5rem;
  position: relative;
}

.mega-cta-inner .btn-group { justify-content: center; margin-top: 0; position: relative; }

/* ---- CONTACT ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3rem;
  align-items: start;
}

.contact-info h3 {
  font-family: 'Unbounded', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.contact-info p { margin-bottom: 1.25rem; font-size: 0.95rem; }

.contact-list { margin-top: 2rem; }

.contact-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted2);
}

.contact-list li:last-child { border-bottom: none; }

.detail-label {
  min-width: 64px;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
}

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

.form-group { margin-bottom: 1.1rem; }

.form-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.95rem 1.15rem;
  background: rgba(0,0,0,0.5);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  transition: 0.3s var(--ease);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,122,26,0.12);
}

.form-group textarea { min-height: 130px; resize: vertical; }

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ff7a1a' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

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

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .mega-cta-inner { padding: 3.5rem 1.5rem; margin: 0 1rem; }
}

/* ---- PAGE HEADER ---- */
.page-header {
  padding: calc(var(--nav) + 5rem) 0 4rem;
  text-align: center;
  position: relative;
}

.page-header h1 { margin-bottom: 1rem; }
.page-header p { max-width: 520px; margin: 0 auto; color: var(--muted); font-size: 1.05rem; }

/* ---- POLICY ---- */
.policy-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 2rem 1.75rem 6rem;
}

.policy-content h2 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--gold);
  margin: 2.5rem 0 0.85rem;
}

.policy-content h2:first-of-type { margin-top: 0; }
.policy-content p, .policy-content li { color: var(--muted2); font-size: 0.925rem; margin-bottom: 0.85rem; }
.policy-content ul { padding-left: 1.25rem; }
.policy-content ul li { list-style: disc; }
.policy-content .last-updated { font-size: 0.8rem; color: var(--muted); margin-bottom: 2rem; }

/* ---- FOOTER ---- */
.site-footer {
  border-top: 1px solid var(--border);
  background: var(--bg2);
  padding: 4rem 0 2rem;
  position: relative;
  z-index: 2;
}

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

.footer-brand p { font-size: 0.875rem; color: var(--muted); margin-top: 1rem; max-width: 280px; line-height: 1.75; }

.footer-col h4 {
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.25rem;
}

.footer-col a { display: block; font-size: 0.875rem; font-weight: 600; color: var(--muted); margin-bottom: 0.6rem; }
.footer-col a:hover { color: #fff; }

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
}

.footer-bottom p { font-size: 0.78rem; color: var(--muted); font-weight: 600; }

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  section { padding: 5.5rem 0; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* Legacy class aliases for other pages */
.contact-section { background: transparent; }
.contact-details { list-style: none; }
.contact-details li { display: flex; align-items: center; gap: 1rem; padding: 1.1rem 0; border-bottom: 1px solid var(--border); font-size: 0.9rem; font-weight: 600; color: var(--muted2); }
.contact-details li:last-child { border-bottom: none; }
.form-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-xl); padding: 2.5rem; }
.btn-secondary { background: transparent; color: #fff; border: 1px solid var(--border-hot); }
.btn-secondary:hover { background: rgba(255,90,0,0.08); border-color: var(--orange); transform: translateY(-3px); }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.section-header { max-width: 820px; margin: 0 auto 4rem; text-align: center; }
.section-subtitle { margin-top: 1.25rem; font-size: 1.1rem; color: var(--muted); max-width: 600px; margin-left: auto; margin-right: auto; }
