/* ================================================================
   OBELO WEB STUDIO — Shared Styles v4
   ================================================================ */

/* === VARIABLES === */
:root {
  --bg:            #f7faff;
  --surface:       #ffffff;
  --surface-tint:  rgba(99,102,241,0.05);
  --surface-hover: rgba(99,102,241,0.07);
  --border:        rgba(15,27,51,0.11);
  --border-bright: rgba(15,27,51,0.22);
  --text:          #0f1b33;
  --text-muted:    rgba(15,27,51,0.64);
  --text-faint:    rgba(15,27,51,0.44);
  --indigo:        #6366f1;
  --indigo-dark:   #4f46e5;
  --indigo-light:  #eceafd;
  --purple:        #7c3aed;
  --cyan:          #38bdf8;
  --yellow:        #f5b400;
  --yellow-deep:   #b8790a;
  --danger:        #b91c1c;
  --dark-1:        #1e1b4b;
  --dark-2:        #312e81;
  --dark-3:        #4338ca;
  --nav-h:         84px;
  --radius:        10px;
  --radius-lg:     14px;
  --max-w:         1120px;
  --ease:          cubic-bezier(0.4, 0, 0.2, 1);
  --t:             0.2s;
  --font-body:      'Inter', ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-display:   'Sora', 'Inter', ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* === DISPLAY FONT (headlines & standout numerals) === */
h1, h2, h3, h4, h5,
.logo-text,
.hero-title,
.price-amount, .price-sup,
.step-num,
.stat-value,
.faq-item summary {
  font-family: var(--font-display);
  letter-spacing: -0.01em;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { background: none; border: none; cursor: pointer; font: inherit; }
svg { display: block; }

/* === LAYOUT === */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 28px;
}
.section { padding: 96px 0; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  margin-top: 12px;
  letter-spacing: -0.02em;
}
.section-cta { text-align: center; margin-top: 48px; }

/* === KEYFRAMES === */
@keyframes fadeInUp { from { opacity:0; transform:translateY(18px); } to { opacity:1; transform:translateY(0); } }
@keyframes orb-drift { from { transform: translate(0, 0) scale(1); } to { transform: translate(40px, 30px) scale(1.08); } }
@keyframes particle-float {
  0%   { transform: translateY(100vh) translateX(0); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translateY(-10vh) translateX(var(--drift)); opacity: 0; }
}
@keyframes badge-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(99,102,241,0); }
  50%       { box-shadow: 0 0 0 8px rgba(99,102,241,.18); }
}
@keyframes dot-blink { 0%,100% { opacity: 1; } 50% { opacity: .3; } }
@keyframes gradient-shift {
  0%   { background-position: 0% center; }
  50%  { background-position: 100% center; }
  100% { background-position: 0% center; }
}

/* === TAGS / EYEBROWS === */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--indigo);
}
.section-tag::before {
  content: '';
  width: 16px;
  height: 2px;
  background: var(--indigo);
  flex-shrink: 0;
}

/* === ACCENT TEXT === */
.accent { color: var(--indigo); }
/* Accent text sitting on a dark gradient surface gets the animated gradient treatment */
.hero-title .accent,
.cta-inner h2 .accent {
  background: linear-gradient(90deg, #a5b4fc, #e879f9, #38bdf8);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: gradient-shift 5s ease-in-out infinite;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease),
              background var(--t) var(--ease), border-color var(--t) var(--ease), color var(--t) var(--ease);
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary {
  background: var(--indigo);
  color: #fff;
  box-shadow: 0 4px 16px rgba(99,102,241,.28);
}
.btn-primary:hover { background: var(--indigo-dark); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(99,102,241,.4); }
.btn-ghost { color: var(--text); border: 1px solid var(--border-bright); }
.btn-ghost:hover { border-color: var(--indigo); color: var(--indigo); }
.btn-sm { padding: 8px 18px; font-size: 0.88rem; border-radius: 8px; }

/* Buttons sitting on the dark hero / dark CTA banner need inverted treatment */
.hero .btn-primary,
.cta-banner .btn-primary {
  background: #fff;
  color: var(--indigo-dark);
  box-shadow: 0 4px 24px rgba(0,0,0,.25);
}
.hero .btn-primary:hover,
.cta-banner .btn-primary:hover {
  background: #fff;
  color: var(--indigo-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
}
.hero .btn-ghost,
.cta-banner .btn-ghost {
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.3);
}
.hero .btn-ghost:hover,
.cta-banner .btn-ghost:hover {
  border-color: #fff;
  background: rgba(255,255,255,.08);
  color: #fff;
}

/* === NAVIGATION === */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  background: #ffffff;
  border-bottom: 1px solid transparent;
  transition: background var(--t) var(--ease), border-color var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.nav.is-scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 2px 12px rgba(15,27,51,0.04);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 28px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.logo-img  {
  height: 56px; width: auto;
  border-radius: 10px;
  transition: box-shadow var(--t) var(--ease);
}
.logo-text { font-size: 1.08rem; font-weight: 700; transition: color var(--t) var(--ease); }
.logo-sub  { font-weight: 400; color: var(--text-muted); transition: color var(--t) var(--ease); }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  position: relative;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 7px 14px;
  border-radius: 8px;
  transition: color var(--t) var(--ease);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 3px; left: 14px; right: 14px;
  height: 2px;
  background: var(--indigo);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t) var(--ease), background var(--t) var(--ease);
}
.nav-links a:hover, .nav-links a.is-active { color: var(--text); }
.nav-links a:hover::after, .nav-links a.is-active::after { transform: scaleX(1); }
.nav-links a.btn-sm { color: #fff; }
.nav-links a.btn-sm::after { display: none; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; border-radius: 8px; }
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: transform var(--t) var(--ease), opacity var(--t) var(--ease), background var(--t) var(--ease);
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Transparent-over-hero nav variant (home page only, until scrolled) */
.nav-hero:not(.is-scrolled) {
  background: rgba(30,27,75,0);
  border-bottom-color: transparent;
  box-shadow: none;
}
.nav-hero:not(.is-scrolled) .logo-text { color: #fff; }
.nav-hero:not(.is-scrolled) .logo-sub  { color: rgba(255,255,255,.55); }
.nav-hero:not(.is-scrolled) .logo-img  { box-shadow: 0 2px 14px rgba(0,0,0,.3); }
.nav-hero:not(.is-scrolled) .nav-links a { color: rgba(255,255,255,.82); }
.nav-hero:not(.is-scrolled) .nav-links a:hover, .nav-hero:not(.is-scrolled) .nav-links a.is-active { color: #fff; }
.nav-hero:not(.is-scrolled) .nav-links a::after { background: #fff; }
.nav-hero:not(.is-scrolled) .nav-toggle span { background: #fff; }

/* === HERO === */
.hero {
  position: relative;
  overflow: hidden;
  padding-top: calc(var(--nav-h) + 96px);
  padding-bottom: 96px;
  background: linear-gradient(135deg, var(--dark-1) 0%, var(--dark-2) 40%, var(--dark-3) 70%, var(--indigo) 100%);
}
.hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: .35;
  animation: orb-drift 8s ease-in-out infinite alternate;
}
.hero-orb-1 { width: 500px; height: 500px; background: #818cf8; top: -120px; left: -120px; }
.hero-orb-2 { width: 400px; height: 400px; background: #a78bfa; bottom: -100px; right: -80px; animation-delay: -3s; }
.hero-orb-3 { width: 280px; height: 280px; background: var(--cyan); top: 38%; left: 62%; animation-delay: -5s; }
.hero-particles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.particle {
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,.45);
  animation: particle-float linear infinite;
}
.hero-inner { max-width: 720px; position: relative; z-index: 1; }
.hero-content { display: flex; flex-direction: column; gap: 22px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(8px);
  color: #c7d2fe; border-radius: 20px; padding: 6px 16px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; width: fit-content;
  animation: badge-pulse 3s ease-in-out infinite;
}
.badge-dot { width: 7px; height: 7px; border-radius: 50%; background: #34d399; animation: dot-blink 2s ease-in-out infinite; flex-shrink: 0; }

.hero-title {
  font-size: clamp(2.6rem, 5.4vw, 4.1rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #fff;
}
.hero-lead {
  font-size: clamp(1.05rem, 2vw, 1.15rem);
  color: rgba(255,255,255,.72);
  line-height: 1.7;
  max-width: 540px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 4px; }

.hero-stats { display: flex; align-items: center; gap: 28px; margin-top: 20px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.15); }
.stat { text-align: left; }
.stat-value { display: block; font-size: 1.55rem; font-weight: 800; color: #c7d2fe; }
.stat-plus { font-size: 1.1rem; }
.stat-label { display: block; font-size: 0.75rem; color: rgba(255,255,255,.5); margin-top: 2px; white-space: nowrap; }
.stat-divider { width: 1px; height: 30px; background: rgba(255,255,255,.15); }

/* === HERO BROWSER PREVIEW === */
.hero-preview-outer { position: relative; z-index: 1; margin-top: 64px; }
.hero-preview {
  max-width: 900px;
  margin-inline: auto;
  position: relative;
  animation: preview-float 6s ease-in-out infinite;
}
@keyframes preview-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
.preview-glow {
  position: absolute; inset: -20px;
  background: radial-gradient(ellipse at center, rgba(99,102,241,.4), transparent 70%);
  filter: blur(20px);
  z-index: -1;
}
.preview-card {
  background: #fff;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-lg);
  box-shadow: 0 40px 100px rgba(0,0,0,.4);
  overflow: hidden;
}
.preview-bar { background: #1a1a2e; padding: 12px 16px; display: flex; align-items: center; gap: 8px; }
.preview-dot { width: 12px; height: 12px; border-radius: 50%; }
.preview-dot.red    { background: #ff5f57; }
.preview-dot.yellow { background: #febc2e; }
.preview-dot.green  { background: #28c840; }
.preview-url {
  flex: 1; background: rgba(255,255,255,.06); border-radius: 6px;
  padding: 4px 12px; font-size: 0.78rem; color: rgba(255,255,255,.4);
  margin-left: 8px; font-family: monospace;
}
.preview-body { padding: 28px 32px; background: #f8f9ff; }
.preview-site-nav { display: flex; align-items: center; gap: 20px; margin-bottom: 28px; }
.preview-site-logo { width: 26px; height: 26px; border-radius: 7px; background: linear-gradient(135deg, var(--indigo), var(--purple)); }
.preview-site-link { width: 46px; height: 8px; border-radius: 4px; background: var(--border-bright); margin-left: auto; }
.preview-site-link:first-of-type { margin-left: 0; }
.preview-site-link.short { width: 64px; background: var(--indigo); opacity: .8; }
.preview-site-hero { display: flex; flex-direction: column; gap: 10px; margin-bottom: 26px; }
.preview-line { height: 12px; border-radius: 4px; background: var(--border-bright); width: 100%; }
.preview-line.sm { height: 9px; opacity: .7; }
.preview-line.w-70 { width: 70%; }
.preview-line.w-50 { width: 50%; }
.preview-site-btn { width: 120px; height: 30px; border-radius: 8px; background: linear-gradient(135deg, var(--indigo), var(--purple)); margin-top: 6px; }
.preview-stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.preview-stat { background: #fff; border: 1px solid var(--border); border-radius: 10px; padding: 14px; text-align: center; }
.preview-stat-label { font-size: 0.68rem; color: var(--text-faint); font-weight: 700; text-transform: uppercase; letter-spacing: .04em; margin-bottom: 4px; }
.preview-stat-val { font-family: var(--font-display); font-size: 1.2rem; font-weight: 800; color: var(--text); }

/* === TRUST STRIP === */
.trust-strip {
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}
.trust-strip .container {
  display: flex; flex-wrap: wrap;
  align-items: center; gap: 12px 28px;
}
.trust-label {
  font-size: 0.72rem; font-weight: 700; color: var(--text-faint);
  text-transform: uppercase; letter-spacing: 0.12em;
  white-space: nowrap; flex-shrink: 0;
}
.trust-track { display: flex; flex-wrap: wrap; gap: 10px 14px; }
.trust-track span {
  font-size: 0.82rem; font-weight: 700; color: var(--text-faint);
  background: var(--bg);
  border-radius: 8px; padding: 7px 15px;
  transition: background var(--t) var(--ease), color var(--t) var(--ease), transform var(--t) var(--ease);
}
.trust-track span:hover { background: var(--indigo-light); color: var(--indigo); transform: scale(1.04); }

/* === CARDS === */
.card {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), border-color var(--t) var(--ease);
}
.card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--indigo), var(--purple));
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: 0 14px 40px rgba(15,27,51,.08); border-color: var(--border-bright); }
.card:hover::before { transform: scaleX(1); }
.card-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  margin-bottom: 16px;
  background: rgba(99,102,241,0.1);
  border-radius: 10px;
  color: var(--indigo);
  transition: transform .25s var(--ease);
}
.card:hover .card-icon { transform: scale(1.08) rotate(-4deg); }
.card-icon svg { width: 22px; height: 22px; }
.card h3 { font-size: 1.08rem; font-weight: 700; margin-bottom: 8px; }
.card p  { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; }

/* === GRIDS === */
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }

.stagger-children > *:nth-child(1) { transition-delay:   0ms; }
.stagger-children > *:nth-child(2) { transition-delay:  60ms; }
.stagger-children > *:nth-child(3) { transition-delay: 120ms; }
.stagger-children > *:nth-child(4) { transition-delay: 180ms; }
.stagger-children > *:nth-child(5) { transition-delay: 240ms; }
.stagger-children > *:nth-child(6) { transition-delay: 300ms; }

/* === SCROLL REVEAL === */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* === PROCESS STRIP (home page) === */
.process-strip {
  display: flex; align-items: stretch;
  justify-content: center; gap: 0;
  flex-wrap: wrap;
}
.process-step-card {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 10px;
  padding: 28px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  flex: 1; min-width: 120px;
  transition: background var(--t) var(--ease);
}
.process-step-card:not(:first-child) { border-left: none; }
.process-step-card:hover { background: var(--surface-tint); z-index: 1; }

.step-num {
  width: 50px; height: 50px; border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--indigo), var(--purple));
  color: #fff; font-size: 1.2rem; font-weight: 800; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 18px rgba(99,102,241,.4);
  transition: transform .25s var(--ease);
}
.process-step-card:hover .step-num { transform: scale(1.14) rotate(6deg); }
.step-info h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 3px; }
.step-info p  { font-size: 0.75rem; color: var(--text-faint); }

/* === PROCESS FULL (services page) === */
.process-full { display: flex; flex-direction: column; gap: 12px; max-width: 760px; margin-inline: auto; }
.process-full-step {
  display: flex; gap: 22px; align-items: flex-start;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.process-full-step:hover { border-color: var(--border-bright); box-shadow: 0 8px 24px rgba(15,27,51,.06); }
.process-full-step .step-num { width: 44px; height: 44px; font-size: 1.05rem; }
.process-full-step:hover .step-num { transform: scale(1.14) rotate(6deg); }
.process-full-step h3 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.process-full-step p  { font-size: 0.875rem; color: var(--text-muted); }

/* === WORK / PORTFOLIO === */
.work-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 22px; }
.work-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--t) var(--ease), border-color var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.work-card:hover { transform: translateY(-4px); border-color: var(--border-bright); box-shadow: 0 14px 40px rgba(15,27,51,.08); }
.work-card-mark {
  height: 132px;
  display: flex; align-items: center; justify-content: center;
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.work-card-mark::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,.22), transparent 60%);
}
.work-card-mark span {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
  position: relative; z-index: 1;
}
.work-card-mark.is-light { background: #ffffff; }
.work-card-mark.is-light::after { display: none; }
.work-card-mark img {
  max-width: 62%;
  max-height: 62%;
  object-fit: contain;
  position: relative;
  z-index: 1;
}
.work-brand-mark { display: flex; align-items: center; gap: 10px; position: relative; z-index: 1; }
.work-brand-mark svg { width: 30px; height: 30px; flex-shrink: 0; }
.work-brand-mark span {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.01em;
}
.work-card-body { padding: 22px; }
.work-tag {
  display: block;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--indigo);
  margin-bottom: 8px;
}
.work-card-body h3 { font-size: 1rem; font-weight: 700; margin-bottom: 5px; }
.work-card-body p  { font-size: 0.84rem; color: var(--text-muted); }
.work-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 12px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--indigo);
  transition: color var(--t) var(--ease);
}
.work-link:hover { color: var(--indigo-dark); }

/* === PRICING === */
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; align-items: start; }
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  display: flex; flex-direction: column; gap: 22px;
  position: relative;
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: 0 16px 44px rgba(15,27,51,.09); }
.pricing-card.is-featured {
  border-color: var(--indigo);
  border-width: 2px;
  padding: 31px 25px;
  background: linear-gradient(180deg, rgba(99,102,241,.05) 0%, var(--surface) 55%);
  box-shadow: 0 0 0 4px rgba(99,102,241,.08), 0 8px 28px rgba(99,102,241,.14);
}
.pricing-card.is-featured .btn-primary {
  background: linear-gradient(135deg, var(--indigo), var(--purple));
  box-shadow: 0 4px 16px rgba(99,102,241,.4);
}
.pricing-card.is-featured .btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 26px rgba(99,102,241,.55);
  background: linear-gradient(135deg, var(--indigo), var(--purple));
}
.pricing-badge {
  position: absolute; top: -13px; left: 26px;
  background: linear-gradient(90deg, var(--indigo), var(--purple));
  color: #fff; font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 6px; white-space: nowrap;
  box-shadow: 0 4px 14px rgba(99,102,241,.4);
}
.pricing-plan { font-size: 0.76rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-faint); }
.pricing-price { display: flex; align-items: flex-end; gap: 3px; line-height: 1; }
.price-sup    { font-size: 1.4rem; font-weight: 700; margin-bottom: 6px; }
.price-amount { font-size: 2.7rem; font-weight: 800; }
.price-period { font-size: 0.85rem; color: var(--text-faint); margin-bottom: 5px; font-family: var(--font-body); }
.price-sub    { font-size: 0.8rem; color: var(--text-faint); margin-top: 4px; }
.pricing-divider { border: none; border-top: 1px solid var(--border); }
.pricing-features { display: flex; flex-direction: column; gap: 10px; flex: 1; }
.pricing-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.875rem; color: var(--text-muted); }
.pricing-features .check { flex-shrink: 0; margin-top: 1px; }

/* === CHECK / X MARKS === */
.check {
  color: var(--indigo);
  font-size: 0.68rem;
  width: 17px; height: 17px;
  background: rgba(99,102,241,0.1);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-weight: 700;
}
.x-mark {
  color: var(--danger);
  font-size: 0.68rem;
  width: 17px; height: 17px;
  background: rgba(185,28,28,0.08);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-weight: 700;
  margin-top: 1px;
}

/* === COMPARISON (Old Way vs Obelo Way) === */
.comparison-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 880px; margin-inline: auto; }
.comparison-card {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 30px;
  display: flex; flex-direction: column; gap: 18px;
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.comparison-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--indigo), var(--purple));
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
}
.comparison-card:hover { transform: translateY(-4px); box-shadow: 0 14px 40px rgba(15,27,51,.08); }
.comparison-card:hover::before { transform: scaleX(1); }
.comparison-card .card-icon { transition: transform .25s var(--ease); }
.comparison-card:hover .card-icon { transform: scale(1.08) rotate(-4deg); }
.comparison-card h3 { font-size: 1.05rem; font-weight: 700; }
.comparison-card ul { display: flex; flex-direction: column; gap: 12px; }
.comparison-card li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9rem; color: var(--text-muted); }
.comparison-card.is-muted { background: rgba(15,27,51,0.015); }
.comparison-card.is-muted .card-icon { background: rgba(15,27,51,0.07); color: var(--text-faint); }
.comparison-card.is-highlight { border-color: var(--indigo); border-width: 2px; }
.comparison-card.is-highlight::before { transform: scaleX(1); }
.comparison-card .btn { align-self: flex-start; margin-top: 2px; }

/* === FAQ === */
.faq-list { max-width: 720px; margin-inline: auto; display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--t) var(--ease);
}
.faq-item[open] { border-color: var(--indigo); }
.faq-item summary {
  padding: 18px 22px; cursor: pointer;
  font-size: 0.92rem; font-weight: 600;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  list-style: none; user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-size: 1.3rem; font-weight: 300;
  color: var(--text-faint); flex-shrink: 0;
  transition: transform var(--t) var(--ease), color var(--t) var(--ease);
}
.faq-item[open] summary::after { transform: rotate(45deg); color: var(--indigo); }
.faq-body { padding: 0 22px 20px; font-size: 0.875rem; color: var(--text-muted); line-height: 1.75; }

/* === CONTACT === */
.contact-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; max-width: 640px; margin-inline: auto; }
.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px 26px; text-align: center;
  transition: transform var(--t) var(--ease), border-color var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.contact-card:hover { transform: translateY(-3px); border-color: var(--border-bright); box-shadow: 0 14px 40px rgba(15,27,51,.08); }
.contact-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px;
  margin-bottom: 14px;
  background: rgba(99,102,241,0.1);
  border-radius: 10px;
  color: var(--indigo);
  transition: transform .25s var(--ease);
}
.contact-card:hover .contact-icon { transform: scale(1.08) rotate(-4deg); }
.contact-icon svg { width: 22px; height: 22px; }
.contact-card h3 { font-size: 0.76rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 10px; }
.contact-card a { font-size: 0.9rem; font-weight: 600; color: var(--indigo); transition: color var(--t) var(--ease); word-break: break-all; }
.contact-card a:hover { color: var(--indigo-dark); }
.contact-note { text-align: center; margin-top: 48px; max-width: 480px; margin-inline: auto; }
.contact-note p { font-size: 0.88rem; color: var(--text-faint); line-height: 1.75; }
.contact-note p a { color: var(--indigo); font-weight: 600; }
.contact-note p a:hover { color: var(--indigo-dark); }

/* === CONTACT FORM === */
.contact-form-wrap { max-width: 620px; margin-inline: auto; }
.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 12px 40px rgba(15,27,51,.06);
  display: flex; flex-direction: column; gap: 18px;
}
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-row { display: flex; flex-direction: column; gap: 7px; }
.form-row label { font-size: 0.82rem; font-weight: 600; color: var(--text); }
.form-row input, .form-row select, .form-row textarea {
  font: inherit;
  font-size: 0.92rem;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 14px;
  width: 100%;
  transition: border-color var(--t) var(--ease), background var(--t) var(--ease);
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none;
  border-color: var(--indigo);
  background: #fff;
}
.form-row textarea { resize: vertical; min-height: 120px; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.form-submit-row { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.form-note { font-size: 0.82rem; color: var(--text-faint); }
.form-note a { color: var(--indigo); font-weight: 600; }
.form-note a:hover { color: var(--indigo-dark); }

.form-status { display: none; text-align: center; padding: 48px 24px; border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--surface); }
.form-status.is-active { display: block; }
.form-status .check { width: 40px; height: 40px; font-size: 1.1rem; margin: 0 auto 16px; }
.form-status h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 8px; }
.form-status p { font-size: 0.92rem; color: var(--text-muted); }
.form-status p a { color: var(--indigo); font-weight: 600; }
@media (max-width: 640px) {
  .form-grid-2 { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 22px; }
}

/* === CTA BANNER === */
.cta-banner {
  position: relative;
  overflow: hidden;
  padding: 0;
  background: linear-gradient(135deg, var(--dark-1) 0%, var(--dark-3) 100%);
}
.cta-banner::before {
  content: '';
  position: absolute; bottom: -80px; left: 50%; transform: translateX(-50%);
  width: 800px; height: 200px; border-radius: 50%;
  background: rgba(255,255,255,.05);
}
.cta-banner .container { padding-block: 96px; position: relative; z-index: 1; }
.cta-inner { text-align: center; }
.cta-inner h2 { font-size: clamp(1.8rem,4vw,2.6rem); font-weight: 800; margin-bottom: 14px; letter-spacing: -0.02em; color: #fff; }
.cta-inner p  { font-size: 1.05rem; color: rgba(255,255,255,.65); margin-bottom: 32px; }
.cta-actions  { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* === STATS BAND === */
.stats-band { padding: 72px 0; background: linear-gradient(135deg, var(--dark-1) 0%, var(--dark-2) 50%, var(--dark-3) 100%); }
.stats-band-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.stats-band-value { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: #fff; line-height: 1; margin-bottom: 8px; }
.stats-band-label { font-size: 0.85rem; color: rgba(255,255,255,.6); }

/* === PAGE BANNER (inner pages) === */
.page-banner {
  padding: calc(var(--nav-h) + 72px) 0 72px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(135deg, #f0f0ff 0%, #fdf4ff 100%);
}
.page-banner .section-tag { justify-content: center; margin-bottom: 16px; }
.page-banner h1 { font-size: clamp(2.3rem,4.6vw,3.4rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1.12; margin-bottom: 16px; }
.page-banner p  { font-size: 1.08rem; color: var(--text-muted); max-width: 540px; margin-inline: auto; }

/* === LEGAL / LONG-FORM CONTENT === */
.legal { max-width: 760px; margin-inline: auto; }
.legal .legal-updated { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 40px; }
.legal h2 { font-family: var(--font-display); font-size: 1.35rem; font-weight: 700; letter-spacing: -0.02em; margin: 40px 0 14px; }
.legal h2:first-of-type { margin-top: 0; }
.legal h3 { font-size: 1.02rem; font-weight: 600; margin: 24px 0 10px; }
.legal p { color: var(--text-muted); line-height: 1.75; margin-bottom: 16px; }
.legal ul { margin: 0 0 16px 1.25rem; display: flex; flex-direction: column; gap: 9px; }
.legal li { color: var(--text-muted); line-height: 1.7; list-style: disc; }
.legal a { color: var(--indigo); text-decoration: underline; }
.legal strong { color: var(--text); font-weight: 600; }

/* === SERVICES FULL GRID === */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }

/* === FOOTER === */
.footer { background: #0a0a14; color: rgba(255,255,255,.45); padding: 64px 0 28px; border-top: none; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 52px; margin-bottom: 48px; }
.footer-brand .nav-logo { margin-bottom: 14px; }
.footer-brand .logo-text { color: #fff; }
.footer-brand .logo-sub { color: rgba(255,255,255,.4); }
.footer-brand .logo-img { box-shadow: 0 2px 14px rgba(0,0,0,.3); }
.footer-brand p { font-size: 0.86rem; color: rgba(255,255,255,.4); line-height: 1.7; max-width: 280px; }
.footer-col h5 { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,.55); margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a  { font-size: 0.875rem; color: rgba(255,255,255,.4); transition: color var(--t) var(--ease); }
.footer-col a:hover { color: #fff; }
.footer-bottom { padding-top: 26px; border-top: 1px solid rgba(255,255,255,.08); font-size: 0.8rem; color: rgba(255,255,255,.3); text-align: center; }

/* === COOKIE CONSENT BANNER === */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 18px 28px;
  background: #ffffff;
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(15,27,51,.08);
  animation: cookieSlideUp .35s ease-out;
}
@keyframes cookieSlideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }
.cookie-banner p { font-size: 0.85rem; color: var(--text-muted); max-width: 640px; }
.cookie-banner p a { color: var(--indigo); font-weight: 600; }
.cookie-banner p a:hover { color: var(--indigo-dark); }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
@media (max-width: 640px) {
  .cookie-banner { padding: 16px 20px; text-align: center; }
  .cookie-actions { width: 100%; justify-content: center; }
}

/* === REDUCED MOTION === */
@media (prefers-reduced-motion: reduce) {
  .reveal { transition: none !important; opacity: 1 !important; transform: none !important; }
  .hero-orb, .particle, .hero-badge, .badge-dot, .hero-title .accent, .cta-inner h2 .accent, .hero-preview { animation: none !important; }
}

/* === RESPONSIVE === */
@media (max-width: 980px) {
  .services-grid, .grid-3, .work-grid, .pricing-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 700px) {
  :root { --nav-h: 68px; }
  .logo-img { height: 42px; }
  .section { padding: 64px 0; }
  .hero { padding-top: calc(var(--nav-h) + 44px); padding-bottom: 60px; }
  .nav-links {
    display: none;
    position: absolute; top: var(--nav-h); left: 0; right: 0;
    flex-direction: column; align-items: stretch;
    background: #ffffff;
    padding: 12px 16px 20px; gap: 4px;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.is-open { display: flex; }
  .nav-links a { padding: 10px 14px; border-radius: 8px; color: var(--text-muted) !important; }
  .nav-links a::after { background: var(--indigo) !important; }
  .nav-links a.btn-sm { margin-top: 6px; text-align: center; justify-content: center; }
  .nav-toggle { display: flex; }
  .nav-hero:not(.is-scrolled) .nav-toggle span { background: #fff; }
  .services-grid, .grid-3, .work-grid, .pricing-grid, .contact-grid, .comparison-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .cta-banner .container { padding-block: 64px; }
  .process-strip { flex-direction: column; }
  .process-step-card { border: 1px solid var(--border) !important; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .page-banner { padding: calc(var(--nav-h) + 48px) 0 48px; }
  .hero-preview-outer { margin-top: 44px; }
  .preview-body { padding: 20px; }
  .preview-site-nav { margin-bottom: 20px; }
  .preview-site-hero { margin-bottom: 20px; }
  .preview-stats-row { grid-template-columns: 1fr 1fr; }
  .preview-stats-row .preview-stat:last-child { grid-column: 1 / -1; }
  .stats-band-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
}
