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

:root {
  --black:   #0B0B0B;
  --yellow:  #FFE135;
  --cream:   #FAF5E4;
  --coral:   #FF4C4C;
  --violet:  #7C6FFF;
  --muted:   #888580;
  --card-bg: #161616;
  --border:  rgba(255,255,255,0.06);

  --font-display: 'Henny Penny', cursive;
  --font-label:   'Syne', sans-serif;
  --font-body:    'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ─── Typography ─────────────────────────────────────────── */
h1, h2, h3 { font-family: var(--font-display); }

/* ─── Utility ────────────────────────────────────────────── */
.container { width: min(1240px, 92vw); margin-inline: auto; }

.label {
  font-family: var(--font-label);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
}

/* ─── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-label);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 100px;
  padding: 0.75rem 1.75rem;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  border: none;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.35); }
.btn-yellow { background: var(--yellow); color: var(--black); }
.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(250,245,228,0.25);
}
.btn-outline:hover { border-color: var(--yellow); color: var(--yellow); }
.btn-dark { background: var(--black); color: var(--yellow); }
.btn-dark:hover { box-shadow: 0 12px 32px rgba(0,0,0,0.5); }

/* ─── Blobs ──────────────────────────────────────────────── */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
  pointer-events: none;
  animation: blobPulse 6s ease-in-out infinite;
}
@keyframes blobPulse {
  0%, 100% { transform: scale(1);    opacity: 0.18; }
  50%       { transform: scale(1.12); opacity: 0.24; }
}

/* ─── NAV ────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 0;
  transition: background 0.3s, backdrop-filter 0.3s;
}
nav.scrolled {
  background: rgba(11,11,11,0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,225,53,0.08);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}
.nav-logo img {
  height: 44px;
  width: auto;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-label);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--cream); }
.nav-links a.active { position: relative; }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 2px;
  background: var(--yellow);
  border-radius: 2px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ─── PAGE HERO (inner pages) ────────────────────────────── */
.page-hero {
  position: relative;
  min-height: 52vh;
  display: flex;
  align-items: flex-end;
  padding-top: 8rem;
  padding-bottom: 4rem;
  overflow: hidden;
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 {
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: 1.05;
  margin: 0.5rem 0 1rem;
}
.page-hero h1 .accent { color: var(--yellow); }
.page-hero p {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 540px;
  line-height: 1.7;
}
.page-hero-blob-1 { width: 600px; height: 600px; background: var(--yellow); top: -200px; right: -150px; animation-delay: 0s; }
.page-hero-blob-2 { width: 300px; height: 300px; background: var(--violet); bottom: -50px; left: -80px; animation-delay: 2.5s; }

/* ─── SECTION COMMON ─────────────────────────────────────── */
section { padding: 6rem 0; }
.section-header { margin-bottom: 4rem; }
.section-header h2 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.1;
  margin-top: 0.75rem;
}
.section-header .accent { color: var(--yellow); }

/* ─── MARQUEE ────────────────────────────────────────────── */
.marquee-wrap {
  overflow: hidden;
  border-top: 1px solid rgba(255,225,53,0.12);
  border-bottom: 1px solid rgba(255,225,53,0.12);
  padding: 1rem 0;
  background: rgba(255,225,53,0.03);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee-item {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--yellow);
  padding: 0 2rem;
  white-space: nowrap;
  opacity: 0.7;
}
.marquee-item .sep { color: var(--coral); margin: 0 1rem; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── FOOTER ─────────────────────────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  padding: 3rem 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  margin-bottom: 0.5rem;
}
.footer-logo img { height: 36px; width: auto; }
.footer-tagline { font-size: 0.85rem; color: var(--muted); }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col-label {
  font-family: var(--font-label);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(136,133,128,0.5);
  margin-bottom: 0.75rem;
}
.footer-links a {
  font-family: var(--font-label);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--yellow); }
.footer-contact { font-size: 0.85rem; color: var(--muted); line-height: 1.9; }
.footer-contact a { color: var(--yellow); text-decoration: none; }
.footer-contact a:hover { text-decoration: underline; }
.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.04);
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: rgba(136,133,128,0.5);
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ─── Scroll Reveal ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── Pill tags ──────────────────────────────────────────── */
.pill {
  font-family: var(--font-label);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  border: 1px solid rgba(255,225,53,0.2);
  color: var(--yellow);
}

/* ─── CTA Banner ─────────────────────────────────────────── */
.cta-banner { padding: 5rem 0; }
.cta-inner {
  background: var(--yellow);
  border-radius: 28px;
  padding: 5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-inner::before {
  content: '🌐';
  font-size: 20rem;
  position: absolute;
  right: -3rem;
  top: 50%;
  transform: translateY(-50%) rotate(20deg);
  opacity: 0.1;
  pointer-events: none;
}
.cta-inner .label { color: rgba(11,11,11,0.5); }
.cta-inner h2 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  color: var(--black);
  line-height: 1.1;
  margin: 0.5rem 0 1rem;
}
.cta-inner p {
  font-size: 1.05rem;
  color: rgba(11,11,11,0.6);
  max-width: 480px;
  margin: 0 auto 2.5rem;
}
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ─── HOME: Hero ─────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 7rem;
  padding-bottom: 4rem;
}
.hero-video-wrap { position: absolute; inset: 0; z-index: 0; }
.hero-video-wrap video { width: 100%; height: 100%; object-fit: cover; opacity: 0.75; }
.hero-video-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11,11,11,0.55) 30%, rgba(11,11,11,0.2) 100%);
}
.hero-blobs { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.blob-1 { width: 650px; height: 650px; background: var(--yellow); top: -200px; right: -150px; }
.blob-2 { width: 380px; height: 380px; background: var(--violet); bottom: 0; left: -100px; animation-delay: 2s; }
.blob-3 { width: 260px; height: 260px; background: var(--coral); bottom: 120px; right: 120px; animation-delay: 4s; }
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
  width: 100%;
}
.hero-content { max-width: 780px; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 0.6rem; margin-bottom: 1.5rem; }
.hero-eyebrow-dot {
  width: 8px; height: 8px;
  background: var(--yellow);
  border-radius: 50%;
  animation: blobPulse 2s ease-in-out infinite;
}
.hero-title { font-size: clamp(3.5rem, 9vw, 8rem); line-height: 1.05; margin-bottom: 1.5rem; }
.hero-title .accent { color: var(--yellow); }
.hero-title .accent-coral { color: var(--coral); }
.hero-sub { font-size: clamp(1rem, 2vw, 1.2rem); color: var(--muted); max-width: 520px; margin-bottom: 2.5rem; line-height: 1.7; }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.hero-mascot { position: relative; z-index: 2; display: flex; align-items: center; justify-content: center; }
.hero-mascot img {
  width: clamp(200px, 22vw, 340px);
  filter: drop-shadow(0 20px 60px rgba(255,225,53,0.25));
  animation: mascotFloat 5s ease-in-out infinite;
}
@keyframes mascotFloat {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50%       { transform: translateY(-18px) rotate(2deg); }
}
.hero-stat-row { display: flex; gap: 3rem; margin-top: 4.5rem; flex-wrap: wrap; position: relative; z-index: 2; }
.hero-stat-num { font-family: var(--font-display); font-size: 2.5rem; color: var(--yellow); line-height: 1; }
.hero-stat-label { font-size: 0.78rem; color: var(--muted); margin-top: 0.25rem; }

/* ─── HOME: Services Grid ────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  text-decoration: none;
  color: inherit;
  display: block;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 0% 0%, rgba(255,225,53,0.07) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}
.service-card:hover { transform: translateY(-6px) rotate(-1deg); border-color: rgba(255,225,53,0.25); box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.service-card:hover::before { opacity: 1; }
.service-card:nth-child(even):hover { transform: translateY(-6px) rotate(1deg); }
.service-icon { font-size: 2.5rem; margin-bottom: 1.25rem; display: block; }
.service-num {
  font-family: var(--font-display);
  font-size: 5rem;
  color: rgba(255,225,53,0.06);
  position: absolute;
  right: 1.5rem; top: 1rem;
  line-height: 1;
  pointer-events: none;
  transition: color 0.3s;
}
.service-card:hover .service-num { color: rgba(255,225,53,0.12); }
.service-card h3 { font-family: var(--font-label); font-size: 1.1rem; font-weight: 700; margin-bottom: 0.75rem; }
.service-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.65; }
.service-tag {
  display: inline-block;
  margin-top: 1.25rem;
  font-family: var(--font-label);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow);
  border: 1px solid rgba(255,225,53,0.25);
  border-radius: 100px;
  padding: 0.3rem 0.85rem;
}

/* ─── HOME: Statement ────────────────────────────────────── */
#statement { text-align: center; position: relative; overflow: hidden; }
.statement-bg-text {
  font-family: var(--font-display);
  font-size: clamp(5rem, 16vw, 16rem);
  color: rgba(255,225,53,0.04);
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}
.statement-content { position: relative; z-index: 2; }
.statement-content h2 { font-size: clamp(2rem, 5vw, 4rem); line-height: 1.2; max-width: 800px; margin: 0.75rem auto 1.5rem; }
.statement-content p { font-size: 1.1rem; color: var(--muted); max-width: 560px; margin: 0 auto 2.5rem; }

/* ─── HOME: Process Preview ──────────────────────────────── */
#process-preview { background: var(--card-bg); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 2.5rem; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,225,53,0.2), transparent);
}
.process-step { padding: 2rem 2rem 2rem 0; }
.step-num { font-family: var(--font-display); font-size: 3.5rem; color: var(--yellow); line-height: 1; margin-bottom: 1rem; }
.step-num sup { font-size: 1.5rem; color: rgba(255,225,53,0.4); vertical-align: super; }
.process-step h3 { font-family: var(--font-label); font-size: 0.95rem; font-weight: 700; margin-bottom: 0.5rem; }
.process-step p { font-size: 0.85rem; color: var(--muted); line-height: 1.6; }

/* ─── HOME: Why Preview ──────────────────────────────────── */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.why-text h2 { font-size: clamp(2.5rem, 4vw, 3.75rem); line-height: 1.15; margin: 0.75rem 0 1.5rem; }
.why-text p { color: var(--muted); margin-bottom: 1rem; line-height: 1.7; font-size: 0.95rem; }
.why-pills { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 2rem; }
.why-visual { position: relative; height: 440px; }
.floating-card {
  position: absolute;
  background: var(--card-bg);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 1.5rem;
  animation: floatY 4s ease-in-out infinite;
}
.fc-1 { top: 0; left: 0; width: 220px; --r: -3deg; }
.fc-2 { top: 60px; right: 0; width: 200px; --r: 2deg; animation-delay: 1.5s; }
.fc-3 { bottom: 40px; left: 40px; width: 240px; --r: -1deg; animation-delay: 3s; }
@keyframes floatY {
  0%, 100% { transform: translateY(0) rotate(var(--r, 0)); }
  50%       { transform: translateY(-12px) rotate(var(--r, 0)); }
}
.fc-label { font-family: var(--font-label); font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.5rem; }
.fc-value { font-family: var(--font-display); font-size: 2rem; color: var(--yellow); line-height: 1; }
.fc-sub { font-size: 0.75rem; color: var(--muted); margin-top: 0.25rem; }
.fc-bar { height: 6px; background: rgba(255,255,255,0.07); border-radius: 100px; margin-top: 0.75rem; overflow: hidden; }
.fc-bar-fill { height: 100%; border-radius: 100px; background: linear-gradient(90deg, var(--yellow), var(--coral)); }

/* ─── HOME: Testimonial ──────────────────────────────────── */
#testimonial { text-align: center; }
.testimonial-quote { font-family: var(--font-display); font-size: clamp(1.5rem, 3.5vw, 2.75rem); line-height: 1.3; max-width: 820px; margin: 1.5rem auto 2rem; }
.testimonial-quote .hl { color: var(--yellow); }
.testimonial-author {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.6rem 1.25rem 0.6rem 0.6rem;
}
.author-avatar { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg, var(--yellow), var(--coral)); display: flex; align-items: center; justify-content: center; font-size: 1rem; }
.author-name { font-family: var(--font-label); font-size: 0.8rem; font-weight: 700; }
.author-role { font-size: 0.72rem; color: var(--muted); }

/* ─── SERVICES PAGE ──────────────────────────────────────── */
.services-full { display: flex; flex-direction: column; gap: 2px; }
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 24px;
  overflow: hidden;
  background: var(--card-bg);
  border: 1px solid var(--border);
  transition: border-color 0.3s, box-shadow 0.3s;
  margin-bottom: 1.5rem;
}
.service-row:hover { border-color: rgba(255,225,53,0.2); box-shadow: 0 16px 60px rgba(0,0,0,0.4); }
.service-row.reverse { direction: rtl; }
.service-row.reverse > * { direction: ltr; }
.service-body { padding: 3.5rem; display: flex; flex-direction: column; justify-content: center; }
.service-body .service-num-lg { font-family: var(--font-display); font-size: 1rem; color: var(--yellow); letter-spacing: 0.1em; margin-bottom: 0.5rem; }
.service-body h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); line-height: 1.15; margin-bottom: 1rem; }
.service-body h2 .accent { color: var(--yellow); }
.service-body p { color: var(--muted); line-height: 1.75; font-size: 0.95rem; margin-bottom: 0.75rem; }
.service-body p:last-of-type { margin-bottom: 1.5rem; }
.service-features { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 2rem; }
.feature-item { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.88rem; color: var(--muted); }
.feature-item::before { content: '✦'; color: var(--yellow); font-size: 0.6rem; margin-top: 0.35rem; flex-shrink: 0; }
.service-visual {
  background: linear-gradient(135deg, rgba(255,225,53,0.06) 0%, rgba(124,111,255,0.06) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  font-size: 8rem;
  position: relative;
  overflow: hidden;
}
.service-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255,225,53,0.1) 0%, transparent 70%);
}
.service-visual-emoji {
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.3));
  animation: floatEmoji 4s ease-in-out infinite;
}
@keyframes floatEmoji {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-16px) scale(1.05); }
}
.pricing-teaser {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pricing-teaser::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255,225,53,0.07) 0%, transparent 60%);
}
.pricing-teaser h2 { font-size: clamp(2rem, 4vw, 3.5rem); margin: 0.5rem 0 1rem; position: relative; }
.pricing-teaser p { color: var(--muted); max-width: 520px; margin: 0 auto 2rem; font-size: 0.95rem; position: relative; }
.pricing-teaser .btn { position: relative; }
.stack-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem; }
.stack-tag {
  background: rgba(255,225,53,0.08);
  border: 1px solid rgba(255,225,53,0.15);
  border-radius: 8px;
  padding: 0.3rem 0.7rem;
  font-family: var(--font-label);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: rgba(250,245,228,0.6);
}

/* ─── WHY US PAGE ────────────────────────────────────────── */
.stats-band { background: var(--card-bg); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-block { padding: 4rem 2rem; text-align: center; border-right: 1px solid var(--border); position: relative; }
.stat-block:last-child { border-right: none; }
.stat-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255,225,53,0.04) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s;
}
.stat-block:hover::before { opacity: 1; }
.stat-num { font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 4.5rem); color: var(--yellow); line-height: 1; margin-bottom: 0.5rem; }
.stat-desc { font-size: 0.85rem; color: var(--muted); line-height: 1.5; }
.diff-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.diff-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.diff-card:hover { border-color: rgba(255,225,53,0.2); transform: translateY(-4px); }
.diff-card:first-child { grid-column: span 2; background: linear-gradient(135deg, rgba(255,225,53,0.06), rgba(124,111,255,0.06)); }
.diff-icon { font-size: 2.2rem; margin-bottom: 1.25rem; display: block; }
.diff-card h3 { font-family: var(--font-label); font-size: 1rem; font-weight: 700; margin-bottom: 0.75rem; color: var(--cream); }
.diff-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.7; }
.vs-section { position: relative; overflow: hidden; }
.vs-table-wrap { background: var(--card-bg); border: 1px solid var(--border); border-radius: 24px; overflow: hidden; }
.vs-table { width: 100%; border-collapse: collapse; }
.vs-table th { font-family: var(--font-label); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 1.5rem 2rem; border-bottom: 1px solid var(--border); text-align: left; }
.vs-table th:nth-child(2) { text-align: center; color: var(--yellow); }
.vs-table th:nth-child(3) { text-align: center; color: var(--muted); }
.vs-table td { padding: 1.1rem 2rem; font-size: 0.9rem; border-bottom: 1px solid rgba(255,255,255,0.03); vertical-align: middle; }
.vs-table tr:last-child td { border-bottom: none; }
.vs-table td:nth-child(2) { text-align: center; }
.vs-table td:nth-child(3) { text-align: center; color: var(--muted); }
.vs-table tr:hover td { background: rgba(255,225,53,0.02); }
.check { color: var(--yellow); font-size: 1.1rem; }
.cross  { color: var(--muted); opacity: 0.5; }
.mascot-section { display: grid; grid-template-columns: 1fr auto; gap: 4rem; align-items: center; }
.mascot-section img { width: clamp(200px, 28vw, 380px); filter: drop-shadow(0 16px 48px rgba(255,225,53,0.2)); animation: mascotFloatWhy 5s ease-in-out infinite; }
@keyframes mascotFloatWhy {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50%       { transform: translateY(-16px) rotate(2deg); }
}
.testimonial-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.testimonial-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: 24px; padding: 3rem; position: relative; }
.testimonial-card::before { content: '\201C'; font-family: var(--font-display); font-size: 8rem; color: var(--yellow); opacity: 0.12; position: absolute; top: 0.5rem; left: 1.5rem; line-height: 1; }
.testimonial-card blockquote { font-size: 1.15rem; line-height: 1.75; color: var(--cream); position: relative; margin-bottom: 1.5rem; }
.testimonial-card cite { display: flex; align-items: center; gap: 0.75rem; font-style: normal; }
.cite-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--yellow), var(--coral)); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }
.cite-name { font-family: var(--font-label); font-size: 0.82rem; font-weight: 700; }
.cite-role { font-size: 0.75rem; color: var(--muted); margin-top: 0.1rem; }

/* ─── PROCESS PAGE ───────────────────────────────────────── */
.process-full { display: flex; flex-direction: column; gap: 0; }
.process-block { display: grid; grid-template-columns: 200px 1fr; gap: 0; padding: 5rem 0; border-bottom: 1px solid var(--border); position: relative; }
.process-block:last-child { border-bottom: none; }
.process-block::before { content: ''; position: absolute; left: 180px; top: 0; bottom: 0; width: 1px; background: linear-gradient(to bottom, transparent, rgba(255,225,53,0.15), transparent); }
.process-block-num { padding-right: 3rem; display: flex; flex-direction: column; align-items: flex-start; }
.big-step-num { font-family: var(--font-display); font-size: clamp(4rem, 8vw, 7rem); color: rgba(255,225,53,0.15); line-height: 1; transition: color 0.4s; }
.process-block:hover .big-step-num { color: var(--yellow); }
.step-icon { font-size: 2rem; margin-top: 1rem; }
.process-block-body { padding-left: 3rem; }
.process-block-body .step-label { font-family: var(--font-label); font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--yellow); margin-bottom: 0.5rem; }
.process-block-body h2 { font-size: clamp(2rem, 3.5vw, 3rem); line-height: 1.15; margin-bottom: 1.25rem; }
.process-block-body h2 .accent { color: var(--yellow); }
.process-block-body p { color: var(--muted); font-size: 0.95rem; line-height: 1.8; max-width: 580px; margin-bottom: 0.75rem; }
.process-checklist { margin-top: 1.75rem; display: flex; flex-direction: column; gap: 0.6rem; }
.process-check { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.9rem; color: var(--cream); }
.process-check-icon { width: 20px; height: 20px; border-radius: 50%; background: rgba(255,225,53,0.12); border: 1px solid rgba(255,225,53,0.3); display: flex; align-items: center; justify-content: center; font-size: 0.6rem; color: var(--yellow); flex-shrink: 0; margin-top: 0.15rem; }
.duration-badge { display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 2rem; background: rgba(255,225,53,0.08); border: 1px solid rgba(255,225,53,0.2); border-radius: 100px; padding: 0.5rem 1rem; font-family: var(--font-label); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--yellow); }
.timeline-connector { display: flex; align-items: center; justify-content: flex-start; padding: 0 0 0 160px; gap: 1rem; opacity: 0.4; }
.connector-dot { width: 12px; height: 12px; border-radius: 50%; background: var(--yellow); }
.connector-line { flex: 1; height: 1px; background: var(--yellow); max-width: 60px; }
.connector-arrow { color: var(--yellow); font-size: 0.8rem; }
.faq-grid { display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid var(--border); padding: 1.5rem 0; cursor: pointer; }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question { display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq-question h3 { font-family: var(--font-label); font-size: 0.95rem; font-weight: 700; color: var(--cream); }
.faq-toggle { width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--yellow); font-size: 1rem; flex-shrink: 0; transition: transform 0.3s, background 0.3s; }
.faq-item.open .faq-toggle { transform: rotate(45deg); background: rgba(255,225,53,0.1); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; }
.faq-item.open .faq-answer { max-height: 200px; padding-top: 1rem; }
.faq-answer p { font-size: 0.9rem; color: var(--muted); line-height: 1.75; }

/* ─── CONTACT PAGE ───────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; align-items: start; }
.contact-info h2 { font-size: clamp(2rem, 4vw, 3.5rem); line-height: 1.15; margin: 0.5rem 0 1.25rem; }
.contact-info h2 .accent { color: var(--yellow); }
.contact-info > p { color: var(--muted); font-size: 0.95rem; line-height: 1.8; margin-bottom: 2.5rem; }
.contact-details { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2.5rem; }
.contact-detail { display: flex; align-items: flex-start; gap: 1rem; }
.detail-icon { width: 44px; height: 44px; border-radius: 12px; background: rgba(255,225,53,0.08); border: 1px solid rgba(255,225,53,0.15); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.detail-label { font-family: var(--font-label); font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.15rem; }
.detail-value { font-size: 0.95rem; color: var(--cream); line-height: 1.5; }
.detail-value a { color: var(--yellow); text-decoration: none; }
.detail-value a:hover { text-decoration: underline; }
.mascot-contact { margin-top: 2.5rem; }
.mascot-contact img { width: 220px; filter: drop-shadow(0 12px 36px rgba(255,225,53,0.2)); animation: mascotFloatContact 5s ease-in-out infinite; }
@keyframes mascotFloatContact {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50%       { transform: translateY(-14px) rotate(2deg); }
}
.hours-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(255,225,53,0.06); border: 1px solid rgba(255,225,53,0.15); border-radius: 100px; padding: 0.6rem 1.2rem; font-family: var(--font-label); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--yellow); margin-bottom: 2rem; }
.hours-dot { width: 7px; height: 7px; border-radius: 50%; background: #4ade80; flex-shrink: 0; box-shadow: 0 0 6px #4ade80; }
.form-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: 24px; padding: 3rem; position: relative; overflow: hidden; }
.form-card::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 100% 0%, rgba(255,225,53,0.05) 0%, transparent 60%); pointer-events: none; }
.form-title { font-size: 1.6rem; margin-bottom: 0.4rem; }
.form-sub { font-size: 0.85rem; color: var(--muted); margin-bottom: 2rem; }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; font-family: var(--font-label); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(250,245,228,0.6); margin-bottom: 0.5rem; }
.form-group input, .form-group textarea, .form-group select { width: 100%; background: rgba(255,255,255,0.04); border: 1.5px solid rgba(255,255,255,0.08); border-radius: 12px; padding: 0.9rem 1.1rem; font-family: var(--font-body); font-size: 0.95rem; color: var(--cream); outline: none; transition: border-color 0.2s, background 0.2s, box-shadow 0.2s; -webkit-appearance: none; box-sizing: border-box; }
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(136,133,128,0.5); }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--yellow); background: rgba(255,225,53,0.03); box-shadow: 0 0 0 3px rgba(255,225,53,0.08); }
.form-group textarea { min-height: 130px; resize: vertical; }
.form-group select option { background: #1a1a1a; color: var(--cream); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit { width: 100%; padding: 1rem; font-size: 0.9rem; border-radius: 12px; margin-top: 0.5rem; justify-content: center; }
.form-privacy { text-align: center; margin-top: 1rem; font-size: 0.75rem; color: rgba(136,133,128,0.5); }

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-mascot { display: none; }
  .hero-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .why-visual { height: 300px; }
  .process-steps::before { display: none; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-block:nth-child(2) { border-right: none; }
  .diff-grid { grid-template-columns: 1fr; }
  .diff-card:first-child { grid-column: span 1; }
  .mascot-section { grid-template-columns: 1fr; }
  .mascot-section img { width: 200px; margin: 0 auto; display: block; }
  .vs-table th, .vs-table td { padding: 1rem; font-size: 0.82rem; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 2rem; }
  .mascot-contact { text-align: center; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: rgba(11,11,11,0.97);
    backdrop-filter: blur(20px);
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    z-index: 99;
  }
  .nav-links.open a { font-size: 1.1rem; }
  .nav-toggle { display: flex; z-index: 101; }
  .cta-inner { padding: 3rem 1.5rem; }
  .footer-inner { flex-direction: column; }
  section { padding: 4rem 0; }
  .service-row { grid-template-columns: 1fr; }
  .service-row.reverse { direction: ltr; }
  .service-visual { min-height: 200px; font-size: 5rem; }
  .service-body { padding: 2rem; }
  .pricing-teaser { padding: 2.5rem 1.5rem; }
  .process-block { grid-template-columns: 1fr; gap: 1.5rem; padding: 3rem 0; }
  .process-block::before { display: none; }
  .process-block-num { flex-direction: row; align-items: center; gap: 1rem; }
  .process-block-body { padding-left: 0; }
  .big-step-num { font-size: 3.5rem; }
  .timeline-connector { display: none; }
}

/* ─── BLOG LISTING ───────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.5rem;
}
.blog-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.blog-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0% 0%, rgba(255,225,53,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}
.blog-card:hover { transform: translateY(-5px); border-color: rgba(255,225,53,0.25); box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.blog-card:hover::before { opacity: 1; }
.blog-card-meta { display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; }
.blog-card-date { font-family: var(--font-label); font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); }
.blog-card-tag { font-family: var(--font-label); font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--yellow); border: 1px solid rgba(255,225,53,0.25); border-radius: 100px; padding: 0.2rem 0.65rem; }
.blog-card h3 { font-family: var(--font-label); font-size: 1.1rem; font-weight: 700; color: var(--cream); line-height: 1.4; margin: 0; }
.blog-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.65; margin: 0; flex: 1; }
.blog-card-arrow { font-family: var(--font-label); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--yellow); align-self: flex-start; }
.blog-empty { text-align: center; padding: 6rem 2rem; color: var(--muted); }
.blog-empty p { margin-top: 0.5rem; font-size: 0.95rem; }

/* ─── BLOG POST ──────────────────────────────────────────────── */
.post-header {
  position: relative;
  min-height: 52vh;
  display: flex;
  align-items: flex-end;
  padding-top: 8rem;
  padding-bottom: 4rem;
  overflow: hidden;
}
.post-header-content { position: relative; z-index: 2; max-width: 860px; }
.post-header-meta { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.25rem; flex-wrap: wrap; }
.post-header-date { font-family: var(--font-label); font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }
.post-header-tag { font-family: var(--font-label); font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--yellow); border: 1px solid rgba(255,225,53,0.25); border-radius: 100px; padding: 0.25rem 0.75rem; }
.post-header h1 { font-size: clamp(2.5rem, 6vw, 5rem); line-height: 1.08; margin-bottom: 1.25rem; }
.post-header-desc { font-size: 1.1rem; color: var(--muted); line-height: 1.75; max-width: 600px; }

.post-body { max-width: 760px; margin: 0 auto; padding: 5rem 0 6rem; font-size: 1.05rem; line-height: 1.85; color: rgba(250,245,228,0.85); }
.post-body h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); line-height: 1.2; margin: 3rem 0 1rem; color: var(--cream); }
.post-body h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); line-height: 1.25; margin: 2.5rem 0 0.75rem; color: var(--cream); }
.post-body p { margin-bottom: 1.5rem; }
.post-body a { color: var(--yellow); text-decoration: underline; text-underline-offset: 3px; }
.post-body a:hover { opacity: 0.8; }
.post-body ul, .post-body ol { margin: 1.5rem 0 1.5rem 1.5rem; }
.post-body li { margin-bottom: 0.5rem; }
.post-body blockquote { border-left: 3px solid var(--yellow); padding-left: 1.5rem; margin: 2rem 0; font-style: italic; color: var(--muted); }
.post-body code { font-family: 'Courier New', monospace; font-size: 0.88em; background: rgba(255,225,53,0.08); border: 1px solid rgba(255,225,53,0.15); border-radius: 5px; padding: 0.15em 0.4em; color: var(--yellow); }
.post-body pre { background: var(--card-bg); border: 1px solid var(--border); border-radius: 16px; padding: 1.75rem; overflow-x: auto; margin: 2rem 0; }
.post-body pre code { background: none; border: none; padding: 0; font-size: 0.88rem; color: var(--cream); }
.post-body hr { border: none; border-top: 1px solid var(--border); margin: 3rem 0; }
.post-body img { max-width: 100%; border-radius: 16px; margin: 2rem 0; }
.post-back { display: inline-flex; align-items: center; gap: 0.5rem; font-family: var(--font-label); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--yellow); text-decoration: none; margin-bottom: 2rem; opacity: 0.7; transition: opacity 0.2s; }
.post-back:hover { opacity: 1; }
