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

:root {
  --white:     #ffffff;
  --off:       #f4f6f9;
  --cream:     #eef1f6;
  --blue:      #0085FF;
  --blue-mid:  #006FE0;
  --blue-deep: #0058B8;
  --navy:      #173446;
  --navy-lt:   #1e4060;
  --ink-md:    #4a5568;
  --ink-lt:    #8a96a8;
  --blue-bg:   #eef4fd;
  --blue-lt:   #a8c4ee;
  --line:      rgba(30,45,69,0.09);
  --radius:    10px;
}

/* ══════════════════════════════════════════
   Dark mode — full system
   Levels:
     base      #0f1117  body / page bg
     surface   #161b27  section fills
     elevated  #1c2333  cards, inputs
     raised    #222c40  hover / focus states
   ══════════════════════════════════════════ */
[data-theme="dark"] {
  --white:     #0f1117;
  --off:       #161b27;
  --cream:     #1c2333;
  --navy:      #e8edf5;
  --navy-lt:   #c4d0e4;
  --ink-md:    #8a9ab8;
  --ink-lt:    #56657e;
  --blue-bg:   #0d1e35;
  --blue-lt:   #2a4a7a;
  --line:      rgba(255,255,255,0.07);
}

/* ── Body ── */
[data-theme="dark"] body { background: #0f1117; color: #e8edf5; }

/* ── Nav ── */
[data-theme="dark"] nav {
  background: rgba(15,17,23,0.82) !important;
  border-color: rgba(255,255,255,0.1) !important;
  box-shadow: 0 4px 28px rgba(0,0,0,0.4) !important;
}
[data-theme="dark"] nav.scrolled {
  background: rgba(22,27,39,0.97) !important;
  border-color: rgba(255,255,255,0.08) !important;
}
[data-theme="dark"] nav .logo-text { color: #e8edf5 !important; }
[data-theme="dark"] nav.scrolled .logo img { filter: brightness(0) invert(1) !important; }
[data-theme="dark"] nav .nav-links a { color: #8a9ab8 !important; }
[data-theme="dark"] nav .nav-links a:hover { color: #ffffff !important; }
[data-theme="dark"] nav .nav-links a.nav-active { color: var(--blue) !important; }
[data-theme="dark"] nav.scrolled .nav-links a { color: #8a9ab8 !important; }
[data-theme="dark"] nav.scrolled .nav-links a:hover { color: #ffffff !important; }
[data-theme="dark"] nav.scrolled .btn-nav { background: var(--blue) !important; border-color: var(--blue) !important; }
[data-theme="dark"] nav.scrolled .hamburger span { background: #e8edf5 !important; }
[data-theme="dark"] nav.scrolled .nav-linkedin { color: #8a9ab8 !important; }
[data-theme="dark"] .dark-toggle { color: #8a9ab8; border-color: rgba(255,255,255,0.12); }
[data-theme="dark"] .dark-toggle .icon-moon { display: none; }
[data-theme="dark"] .dark-toggle .icon-sun { display: block; }

/* ── Mobile nav menu panel ── */
@media (max-width: 1100px) {
  [data-theme="dark"] .nav-links {
    background: rgba(22,27,39,0.98) !important;
    border-color: rgba(255,255,255,0.08);
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  }
  [data-theme="dark"] .nav-links a { color: #8a9ab8 !important; }
  [data-theme="dark"] .nav-links a:hover { color: #ffffff !important; }
  [data-theme="dark"] .nav-links li { border-color: rgba(255,255,255,0.07); }
  [data-theme="dark"] .hamburger span { background: #e8edf5 !important; }
}

/* ── Ticker ── */
[data-theme="dark"] .ticker { background: #161b27; border-color: rgba(255,255,255,0.07); }

/* ── Stats bar ── */
[data-theme="dark"] .stats-inner {
  background: #1c2333;
  border-color: rgba(255,255,255,0.08);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

/* ── Branding band ── */
[data-theme="dark"] .branding-band { background: #161b27; }
[data-theme="dark"] .branding-pillar { background: #1c2333; border-color: rgba(255,255,255,0.07); }
[data-theme="dark"] .branding-pillar:hover { background: #0d1e35; }

/* ── What we do ── */
[data-theme="dark"] #what-we-do { background: #0f1117; }
[data-theme="dark"] .what-card { background: #1c2333; }
[data-theme="dark"] .what-card:hover { background: #0d1e35; }
[data-theme="dark"] .card-icon { border-color: rgba(0,133,255,0.3); }

/* ── Approach ── */
[data-theme="dark"] .approach-section { background: #161b27; }
[data-theme="dark"] .approach-step { background: #1c2333; }

/* ── Packages ── */
[data-theme="dark"] #packages { background: #0f1117; }
[data-theme="dark"] .package { background: #1c2333; }
[data-theme="dark"] .package.popular { background: var(--blue); }
[data-theme="dark"] .pkg-btn { border-color: rgba(255,255,255,0.2); color: #e8edf5; }
[data-theme="dark"] .pkg-btn:hover { background: var(--blue); border-color: var(--blue); color: #ffffff; }

/* ── Social proof ── */
[data-theme="dark"] .proof-section { background: #0f1117; }
[data-theme="dark"] .proof-col { background: #1c2333; border-color: rgba(255,255,255,0.07); }

/* ── Testimonials ── */
[data-theme="dark"] .testimonials-section { background: #161b27; }
[data-theme="dark"] .testimonial-card { background: #1c2333; border-color: rgba(255,255,255,0.07); }
[data-theme="dark"] .testimonial-card--featured { background: #0d1e35; border-color: rgba(0,133,255,0.2); }
[data-theme="dark"] .testimonial-card:hover { box-shadow: 0 16px 40px rgba(0,0,0,0.4); }

/* ── FAQ ── */
[data-theme="dark"] .faq-section { background: #0f1117; }
[data-theme="dark"] .faq-question { color: #e8edf5; }
[data-theme="dark"] .faq-item { border-color: rgba(255,255,255,0.07); }

/* ── Blog ── */
[data-theme="dark"] .blog-section { background: #0f1117; }
[data-theme="dark"] .blog-card { background: #1c2333; }
[data-theme="dark"] .blog-card:hover { background: #1c2333; }

/* ── Contact ── */
[data-theme="dark"] .contact-section { background: #161b27; }
[data-theme="dark"] .contact-heading,
[data-theme="dark"] .c-right-title,
[data-theme="dark"] .c-info-link { color: #e8edf5 !important; }
[data-theme="dark"] .form-field label { color: #c4d0e4 !important; }
[data-theme="dark"] .contact-form input,
[data-theme="dark"] .contact-form select,
[data-theme="dark"] .contact-form textarea {
  background: #1c2333;
  color: #e8edf5;
  border: 1px solid rgba(255,255,255,0.1);
}
[data-theme="dark"] .contact-form input:focus,
[data-theme="dark"] .contact-form select:focus,
[data-theme="dark"] .contact-form textarea:focus {
  background: #222c40;
  border-color: var(--blue) !important;
  box-shadow: 0 0 0 2px rgba(0,133,255,0.2) !important;
}
[data-theme="dark"] .contact-form select option { background: #1c2333; color: #e8edf5; }
[data-theme="dark"] .c-blob-svg path { fill: #1c2333 !important; }

/* ── Buttons ── */
[data-theme="dark"] .hero .btn-blue { color: #173446 !important; }
[data-theme="dark"] .btn-outline { color: #e8edf5; border-color: rgba(255,255,255,0.2); }
[data-theme="dark"] .btn-outline:hover { border-color: var(--blue); color: var(--blue); background: rgba(0,133,255,0.08); }

/* ── Section title / text ── */
[data-theme="dark"] .section-title { color: #e8edf5; }
[data-theme="dark"] .section-title em { color: var(--blue); }

/* ── Footer stays blue — no change needed ── */

/* ── Blog article pages ── */
/* Nav logo on blog pages (always solid nav, not scrolled) */
[data-theme="dark"] nav .logo img { filter: brightness(0) invert(1) !important; }
[data-theme="dark"] nav .logo-text { color: #e8edf5 !important; }

/* Article body */
[data-theme="dark"] .article-body { background: #161b27 !important; }
[data-theme="dark"] .article-inner p { color: #8a9ab8; }
[data-theme="dark"] .article-inner h2 { color: #e8edf5; }
[data-theme="dark"] .article-inner ul li { color: #8a9ab8; border-color: rgba(255,255,255,0.07); }
[data-theme="dark"] .article-inner ul li::before { color: var(--blue); }
[data-theme="dark"] .article-divider { border-color: rgba(255,255,255,0.07) !important; }
[data-theme="dark"] .pull-quote { border-color: var(--blue); }
[data-theme="dark"] .pull-quote p { color: #e8edf5 !important; }

/* Article CTA band */
[data-theme="dark"] .article-cta { background: #0f1117 !important; }
[data-theme="dark"] .article-cta h2 { color: #e8edf5; }
[data-theme="dark"] .article-cta p { color: #8a9ab8; }

/* Blog listing page — filter & grid */
[data-theme="dark"] .blog-all { background: #0f1117; }
[data-theme="dark"] .filter-btn { border-color: rgba(255,255,255,0.1); color: #8a9ab8; }
[data-theme="dark"] .filter-btn:hover { border-color: var(--blue); color: var(--blue); }
[data-theme="dark"] .filter-btn.active { background: var(--blue); border-color: var(--blue); color: #ffffff; }
[data-theme="dark"] .blog-all-grid .blog-card { background: #1c2333; }
[data-theme="dark"] .blog-all-grid .blog-card h3 { color: #e8edf5; }

.dark-toggle {
  background: none;
  border: 1px solid var(--line);
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--navy);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  flex-shrink: 0;
}
.dark-toggle:hover { border-color: var(--blue); color: var(--blue); }
.dark-toggle .icon-sun { display: none; }
[data-theme="dark"] .dark-toggle .icon-moon { display: none; }
[data-theme="dark"] .dark-toggle .icon-sun { display: block; }
[data-theme="dark"] .dark-toggle { color: #a0b0c4; border-color: rgba(255,255,255,0.15); }

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--white);
  color: var(--navy);
  overflow-x: hidden;
}

.layer { position: relative; z-index: 1; }

/* ── Nav ── */
nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 28px;
  height: 56px;
  background: rgba(0,10,30,0.2);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  box-shadow: 0 4px 28px rgba(0,10,40,0.1);
  position: sticky;
  top: 16px;
  z-index: 100;
  margin: 16px 32px 0;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}
nav.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-color: rgba(30,45,69,0.1);
  box-shadow: 0 4px 32px rgba(0,10,40,0.18);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  background: none;
}
.logo img {
  height: 52px;
  width: auto;
  display: block;
  background: none;
  filter: brightness(0) invert(1);
  transition: filter 0.3s;
}
nav.scrolled .logo img { filter: none; }
.logo-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: -0.01em;
  transition: color 0.3s;
}
nav.scrolled .logo-text { color: var(--navy); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: #ffffff; }
.nav-linkedin { display: flex; align-items: center; opacity: 0.75; transition: opacity 0.2s; }
.nav-linkedin:hover { opacity: 1; }
nav.scrolled .nav-linkedin { color: var(--navy); }
nav.scrolled .nav-linkedin:hover { color: var(--blue); }
nav.scrolled .nav-links a { color: var(--ink-md); }
nav.scrolled .nav-links a:hover { color: var(--blue); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-self: end;
}

.btn-nav {
  padding: 10px 22px;
  background: rgba(255,255,255,0.2);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
  white-space: nowrap;
}
.btn-nav:hover { background: rgba(255,255,255,0.35); transform: translateY(-2px); }
nav.scrolled .btn-nav { background: var(--blue); color: #ffffff; border-color: var(--blue); }
nav.scrolled .btn-nav:hover { background: var(--blue-deep); }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s, background 0.3s;
}
nav.scrolled .hamburger span { background: var(--navy); }
nav.open .hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
nav.open .hamburger span:nth-child(2) { opacity: 0; }
nav.open .hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: calc(100vh + 88px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 64px;
  margin-top: -88px;
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.hero-video-bg video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-video-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,30,60,0.08);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  text-align: center;
  color: white;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 40px;
  padding: 7px 18px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 0.3s;
}

h1 {
  font-family: 'Garet', sans-serif;
  font-size: clamp(2.8rem, 6.5vw, 5rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.45s;
}
h1 em {
  font-style: italic;
  color: rgba(255,255,255,0.85);
}

/* Hero line reveal */
.hero-line {
  display: block;
  opacity: 0;
  animation: hero-line-in 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@keyframes hero-line-in {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}


.hero-tagline {
  font-family: 'Garet', sans-serif;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-style: italic;
  font-weight: 400;
  color: rgba(255,255,255,0.9);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.55s;
  letter-spacing: 0.01em;
}

.hero-sub {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  margin: 0 auto 52px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.65s;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.8s;
}

.btn-dark {
  padding: 15px 32px;
  background: var(--blue);
  color: var(--white);
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  display: inline-block;
}
.btn-dark:hover { background: #0070d9; transform: translateY(-2px); }

.btn-blue {
  padding: 15px 32px;
  background: var(--blue);
  color: var(--white);
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  display: inline-block;
  animation: btn-pulse 3s ease-in-out infinite;
}
.btn-blue:hover {
  background: var(--blue-deep);
  transform: translateY(-2px);
  animation: none;
}
@keyframes btn-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,133,255,0.4); }
  50%       { box-shadow: 0 0 0 10px rgba(0,133,255,0); }
}

.btn-outline {
  padding: 15px 32px;
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
  display: inline-block;
}
.btn-outline:hover { border-color: var(--blue); color: var(--blue); }

/* Hero CTA overrides — white buttons on blue wave background */
.hero .btn-blue { background: #ffffff; color: var(--navy); }
.hero .btn-blue:hover { background: rgba(255,255,255,0.88); transform: translateY(-2px); }
.hero .btn-outline { color: #ffffff; border-color: rgba(255,255,255,0.5); }
.hero .btn-outline:hover { border-color: #ffffff; color: #ffffff; background: rgba(255,255,255,0.1); }

.hero-note {
  margin-top: 24px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.95s;
}

/* ── Ticker ── */
.ticker {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background: var(--off);
  padding: 14px 0;
}
.ticker-track {
  display: flex;
  gap: 64px;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
}
.ticker-item {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-lt);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 14px;
}
.ticker-item::after { content: '·'; color: var(--blue); font-size: 1.2rem; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.ticker:hover .ticker-track { animation-play-state: paused; }

/* ── Stats bar ── */
.stats-bar {
  padding: 0 64px;
  position: relative;
  z-index: 10;
  margin-top: 0;
  margin-bottom: -40px;
}
.stats-inner {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,20,60,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 36px 40px;
}
.stat-item {
  flex: 1;
  text-align: center;
}
.stat-item .stat-number {
  font-family: 'Garet', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 400;
  color: var(--navy);
  line-height: 1;
}
.stat-item .stat-suffix {
  font-family: 'Garet', sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  font-weight: 400;
  color: var(--blue);
}
.stat-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-lt);
  margin-top: 8px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--line);
  flex-shrink: 0;
}
@media (max-width: 680px) {
  .stats-bar { padding: 0 20px; margin-top: 0; margin-bottom: -28px; }
  .stats-inner { flex-wrap: wrap; gap: 28px; padding: 28px 24px; }
  .stat-divider { display: none; }
  .stat-item { flex: 0 0 calc(50% - 14px); }
}

/* ── Section base ── */
section { padding: 100px 64px; width: 100%; }
.section-eyebrow {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}
.section-title {
  font-family: 'Garet', sans-serif;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 18px;
}
.section-title em { font-style: italic; color: var(--blue); }
.section-intro {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--ink-md);
  max-width: 520px;
}

/* ── Personal Branding band ── */
.branding-band {
  background: #ffffff;
  padding: 100px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
  width: 100%;
}
.branding-band-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
}
.branding-band .section-eyebrow { color: var(--blue); }
.branding-quote {
  font-family: 'Garet', sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.3;
  color: var(--navy);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}
.branding-quote span { color: var(--blue); }
.branding-sub {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--ink-md);
  max-width: 580px;
  margin: 0 auto 48px;
}
.branding-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 52px;
  text-align: left;
}
.branding-pillar {
  background: var(--off);
  border: 1px solid var(--line);
  padding: 32px 28px;
  border-radius: 16px;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
}
.branding-pillar:hover {
  background: var(--blue-bg);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,133,255,0.1);
}
.bp-icon {
  font-size: 1.3rem;
  margin-bottom: 14px;
}
.branding-pillar h3 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.branding-pillar p {
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--ink-md);
}

/* ── What we do ── */
#what-we-do { background: #f4f6f9; }
.what-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 100px;
  align-items: start;
}
.what-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.what-card {
  background: #ffffff;
  padding: 36px 28px;
  border-radius: 16px;
  transition: background 0.25s, transform 0.25s;
}
.what-card:hover { background: var(--blue-bg); transform: translateY(-3px); }
.card-icon {
  width: 38px; height: 38px;
  border: 1px solid var(--blue-lt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 0.9rem;
  color: var(--blue);
}
.what-card h3 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.what-card p {
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--ink-md);
}

/* ── Approach ── */
.approach-section { background: #ffffff; }
.approach-inner { max-width: 1100px; margin: 0 auto; }
.approach-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 72px;
  align-items: end;
}
.approach-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.approach-step {
  background: #f4f6f9;
  padding: 40px 32px;
  border-radius: 16px;
  transition: transform 0.25s;
}
.approach-step:hover { transform: translateY(-4px); }
.step-number {
  font-family: 'Garet', sans-serif;
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--blue-lt);
  line-height: 1;
  margin-bottom: 18px;
}
.approach-step h3 {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}
.approach-step p {
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--ink-md);
}

/* ── Packages ── */
#packages { background: #f4f6f9; }
.packages-inner { max-width: 1100px; margin: 0 auto; }
.packages-header { text-align: center; margin-bottom: 60px; }
.packages-header .section-intro { margin: 0 auto; text-align: center; }
.packages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.package {
  background: #ffffff;
  padding: 44px 36px;
  border-radius: 20px;
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
  animation: package-float 4s ease-in-out infinite;
}
.package:nth-child(2) { animation-delay: 0.6s; }
.package:nth-child(3) { animation-delay: 1.2s; }
@keyframes package-float {
  0%, 100% { transform: translateY(0);    box-shadow: 0 8px 32px rgba(0,0,0,0.08); }
  50%       { transform: translateY(-8px); box-shadow: 0 20px 48px rgba(0,0,0,0.14); }
}
.package:hover {
  animation-play-state: paused;
  transform: translateY(-16px) scale(1.04) !important;
  box-shadow: 0 32px 64px rgba(0,0,0,0.16) !important;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}

.package.popular {
  background: linear-gradient(145deg, #0062d6, #0085FF, #3aa0ff);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  position: relative;
  z-index: 2;
  animation: package-float-popular 4s ease-in-out infinite;
}
@keyframes package-float-popular {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
.package.popular:hover {
  animation: none !important;
  transform: translateY(-16px) scale(1.04) !important;
  box-shadow: 0 32px 64px rgba(0,0,0,0.16) !important;
}
.package.popular .package-name { color: rgba(255,255,255,0.75); }
.package.popular h3 { color: #ffffff; }
.popular-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #f5c842, #d4900a);
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 7px 20px;
  border-radius: 20px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(212,144,10,0.45);
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
  overflow: hidden;
}
/* Gold shine sweep */
.popular-tag::after {
  content: '';
  position: absolute;
  top: -10%;
  left: -80%;
  width: 50%;
  height: 120%;
  background: linear-gradient(
    to right,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.55) 50%,
    rgba(255,255,255,0) 100%
  );
  transform: skewX(-20deg);
  animation: gold-shine 2.4s ease-in-out infinite;
}
@keyframes gold-shine {
  0%   { left: -80%; }
  55%, 100% { left: 140%; }
}
.package-name {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}
.package h3 {
  font-family: 'Garet', sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 8px;
  color: var(--navy);
}
.package.popular h3 { color: var(--white); }
.package-desc {
  font-size: 0.8rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--ink-md);
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.package.popular .package-desc { color: rgba(255,255,255,0.75); border-color: rgba(255,255,255,0.15); }
.package-features { list-style: none; margin-bottom: 36px; }
.package-features li {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--ink-md);
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 10px;
}
.package.popular .package-features li { color: rgba(255,255,255,0.75); border-color: rgba(255,255,255,0.08); }
.package-features li::before { content: '→'; color: var(--blue); font-size: 0.75rem; flex-shrink: 0; }
.package-features li.feat-excluded { color: var(--ink-lt); text-decoration: line-through; opacity: 0.5; }
.package-features li.feat-excluded::before { content: '✕'; color: var(--ink-lt); }
.pkg-btn {
  display: block;
  text-align: center;
  padding: 13px;
  border: 1.5px solid var(--navy);
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--navy);
  text-decoration: none;
  transition: all 0.2s;
}
.pkg-btn:hover { background: var(--blue); color: var(--white); border-color: var(--blue); }
.package.popular .pkg-btn { background: var(--white); border-color: var(--white); color: var(--blue); }
.package.popular .pkg-btn:hover { background: rgba(255,255,255,0.85); border-color: rgba(255,255,255,0.85); }

/* ── Testimonials ── */
.testimonials-section { background: var(--off); padding-top: 52px; }
.testimonials-inner { max-width: 1100px; margin: 0 auto; text-align: center; }
.testimonials-inner .section-eyebrow { color: var(--blue); margin-bottom: 12px; }
.testimonials-inner .section-title { margin-bottom: 52px; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: left;
}
.testimonial-card {
  background: var(--off);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,133,255,0.08);
}
.testimonial-card--featured {
  background: var(--blue-bg);
  border-color: rgba(0,133,255,0.18);
}
.testimonial-card--featured .testimonial-quote { color: var(--ink-md); }
.testimonial-card--featured .testimonial-name { color: var(--navy); }
.testimonial-card--featured .testimonial-role { color: var(--ink-lt); }
.testimonial-quote {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--ink-md);
  flex: 1;
}
.testimonial-quote::before { content: '\201C'; }
.testimonial-quote::after { content: '\201D'; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--blue);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testimonial-name { font-size: 0.82rem; font-weight: 600; color: var(--navy); margin-bottom: 2px; }
.testimonial-role { font-size: 0.72rem; font-weight: 400; color: var(--ink-lt); }
@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* ── FAQ ── */
.faq-section { background: var(--white); }
.faq-inner { max-width: 760px; margin: 0 auto; }
.faq-inner .section-eyebrow { color: var(--blue); margin-bottom: 12px; }
.faq-inner .section-title { margin-bottom: 52px; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  padding: 22px 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--navy);
  cursor: pointer;
  text-align: left;
  gap: 16px;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--blue); }
.faq-question[aria-expanded="true"] { color: var(--blue); }
.faq-icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--blue);
  flex-shrink: 0;
  transition: transform 0.3s ease;
  line-height: 1;
}
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-answer.open { max-height: 300px; padding-bottom: 20px; }
.faq-answer p { font-size: 0.9rem; font-weight: 300; line-height: 1.8; color: var(--ink-md); }

/* ── Blog ── */
.blog-section { background: var(--white); }
.blog-inner { max-width: 1100px; margin: 0 auto; }
.blog-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 52px;
}
.blog-link {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--blue);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.blog-link:hover { gap: 10px; }
.blog-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 2px;
}
.blog-card {
  background: var(--white);
  overflow: hidden;
  border-radius: 16px;
  transition: transform 0.25s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}
.blog-card:hover { transform: translateY(-4px); }
.blog-card:hover .blog-thumb { transform: scale(1.04); }
@keyframes icon-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.blog-icon {
  animation: icon-float 3s ease-in-out infinite;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 133, 0.18));
}
.blog-thumb {
  height: 200px;
  display: flex;
  transition: transform 0.4s ease;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  position: relative;
  overflow: hidden;
}
.blog-card:first-child .blog-thumb { height: 260px; }
.blog-thumb-bg { position: absolute; inset: 0; opacity: 0.2; }
.blog-body { padding: 28px 28px 32px; }
.blog-tag {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}
.blog-card h3 {
  font-family: 'Garet', sans-serif;
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.4;
  color: var(--navy);
  margin-bottom: 10px;
}
.blog-card:first-child h3 { font-size: 1.3rem; }
.blog-card p {
  font-size: 0.8rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--ink-md);
  margin-bottom: 18px;
}
.blog-meta {
  font-size: 0.72rem;
  color: var(--ink-lt);
  display: flex;
  align-items: center;
  gap: 8px;
}
.blog-meta span { color: var(--blue-lt); }

/* ── Contact ── */
.contact-section {
  background: var(--off);
  padding: 100px 80px;
  width: 100%;
}
.contact-card-wrap {
  max-width: 950px;
  margin: 0 auto;
  position: relative;
}
/* SVG blob — absolutely fills the wrap, overflow:visible allows bumps to protrude */
.c-blob-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  filter: drop-shadow(0 16px 52px rgba(0,0,0,0.13));
  pointer-events: none;
  z-index: 0;
}
/* Content grid — sits above the SVG */
.contact-card {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 55% 45%;
  padding: 56px 64px 56px 60px;
  gap: 48px;
  background: transparent;
}

/* ── Left column ── */
.contact-left { display: flex; flex-direction: column; }
.contact-heading {
  font-family: 'Garet', sans-serif;
  font-size: 2rem;
  font-weight: 400;
  color: #1e2d45;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.contact-subtext {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--ink-md);
  line-height: 1.7;
  margin-bottom: 28px;
}
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-field { display: flex; flex-direction: column; gap: 5px; }
.form-field label { font-size: 0.75rem; font-weight: 500; color: #1e2d45; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 20px;
  background: #f0f4ff;
  border: none;
  border-radius: 30px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 300;
  color: #1e2d45;
  outline: none;
  transition: background 0.2s, box-shadow 0.2s;
}
.contact-form textarea { border-radius: 20px; resize: none; height: 108px; }
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--ink-lt); }
.contact-form select { color: var(--ink-md); cursor: pointer; }
.contact-form select option { background: #fff; color: #1e2d45; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { background: #e4ecff; box-shadow: 0 0 0 2px rgba(37,99,199,0.2); }
.form-field.field-error input,
.form-field.field-error textarea { border-color: #e53e3e !important; box-shadow: 0 0 0 2px rgba(229,62,62,0.15) !important; }
.form-field.field-ok input,
.form-field.field-ok textarea { border-color: #38a169 !important; }
.field-tip { font-size: 0.7rem; color: #e53e3e; margin-top: 2px; }
.form-field.field-ok .field-tip { color: transparent; }
.submit-btn:disabled { opacity: 0.6; cursor: not-allowed; animation: none; }
.submit-btn {
  width: 100%;
  padding: 16px;
  background: #0085FF;
  color: #ffffff;
  border: none;
  border-radius: 30px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  margin-top: 4px;
}
.submit-btn:hover { background: var(--blue-mid); transform: translateY(-2px); }

.form-success[hidden] { display: none; }
.form-success {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 40px 0;
  animation: form-success-in 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.form-success h3 {
  font-family: 'Garet', sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--navy);
  margin: 0;
}
.form-success p {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--ink-md);
  margin: 0;
  line-height: 1.7;
}
@keyframes form-success-in {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Right column ── */
.contact-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
  padding: 12px 0 12px 8px;
}
.c-right-icon {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 8px 0;
}
.c-right-icon svg {
  display: block;
  max-width: 100%;
  height: auto;
}

@keyframes cloud-drift-l {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-6px); }
}
@keyframes cloud-drift-r {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-8px); }
}
.svg-cloud-l { animation: cloud-drift-l 4s ease-in-out infinite; }
.svg-cloud-r { animation: cloud-drift-r 5.5s ease-in-out infinite 0.8s; }
.c-right-body { display: flex; flex-direction: column; }
.c-right-title {
  font-family: 'Garet', sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: #1e2d45;
  margin-bottom: 20px;
}
.c-info-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}
.c-info-row:last-child { margin-bottom: 0; }
.c-icon-box {
  width: 42px;
  height: 42px;
  background: #0085FF;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 15px;
  flex-shrink: 0;
}
.c-info-detail { display: flex; flex-direction: column; gap: 3px; padding-top: 2px; }
.c-info-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-lt);
}
.c-info-link {
  font-size: 0.84rem;
  font-weight: 400;
  color: #1e2d45;
  text-decoration: none;
  transition: color 0.2s;
}
.c-info-link:hover { color: #0085FF; }

@media (max-width: 900px) {
  .contact-section { padding: 60px 24px; }
  .contact-card { grid-template-columns: 1fr; padding: 72px 40px 44px; gap: 0; }
  .contact-heading { font-size: 1.6rem; }
  .c-right-body { display: none; }
  .c-right-icon { display: flex; justify-content: center; margin-top: 24px; }
  .c-right-icon svg { width: 100%; max-width: 320px; height: auto; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form input,
  .contact-form select,
  .contact-form textarea { font-size: 16px; }
  .c-info-link { word-break: break-all; }
}

/* ── Footer ── */
@keyframes footer-float {
  0%, 100% { transform: translateY(0);    box-shadow: 0 8px 40px rgba(0,133,255,0.28); }
  50%       { transform: translateY(-8px); box-shadow: 0 20px 52px rgba(0,133,255,0.38); }
}
footer {
  background: #0085FF;
  margin: 0 32px 32px;
  border-radius: 20px;
  padding: 32px 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 8px 40px rgba(0,133,255,0.28);
  animation: footer-float 4s ease-in-out infinite;
}
.footer-logo {
  height: 80px;
  width: auto;
  display: block;
  background: none;
  filter: brightness(0) invert(1);
}
footer p { font-size: 0.75rem; color: rgba(255,255,255,0.7); }
footer p a { color: #ffffff; text-decoration: none; transition: opacity 0.2s; }
footer p a:hover { opacity: 0.75; }
.footer-linkedin { color: rgba(255,255,255,0.7); display: flex; align-items: center; transition: color 0.2s; }
.footer-linkedin:hover { color: #ffffff; }

/* ── Social Proof ── */
.proof-section { background: var(--white); padding-bottom: 52px; }
.proof-inner { max-width: 1100px; margin: 0 auto; }

.proof-header {
  text-align: center;
  margin-bottom: 64px;
}
.proof-header .section-intro { margin: 0 auto; text-align: center; }

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

.proof-col {
  padding: 44px 36px;
  background: #f4f6f9;
  border-radius: 16px;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
}
.proof-col:hover {
  background: var(--blue-bg);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,133,255,0.1);
}

.proof-audience {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}

.proof-statement {
  font-family: 'Garet', sans-serif;
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  font-weight: 400;
  line-height: 1.3;
  color: var(--navy);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.proof-body {
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--ink-md);
}

.proof-closing {
  text-align: center;
  margin-top: 40px;
  font-family: 'Garet', sans-serif;
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 400;
  color: var(--navy);
  letter-spacing: -0.01em;
}

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  nav {
    grid-template-columns: 1fr auto;
    padding: 0 20px;
    margin: 12px 16px 0;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 8px); left: 0; right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(30,45,69,0.1);
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0,10,40,0.13);
    flex-direction: column;
    padding: 16px 20px 20px;
    gap: 0;
  }
  .nav-links a { color: var(--ink-md) !important; }
  .nav-links a:hover { color: var(--blue) !important; }
  .nav-links.open { display: flex; }
  .nav-links li { border-bottom: 1px solid var(--line); }
  .nav-links li:last-child { border-bottom: none; }
  .nav-links a { display: block; padding: 14px 0; font-size: 0.9rem; }
  .hamburger { display: flex; }
  .btn-nav { display: none; }
  section, .branding-band, .contact-section { padding: 72px 24px; width: 100%; }
  .hero { padding: 64px 24px; }
  .what-inner { grid-template-columns: 1fr; gap: 48px; }
  .what-cards { grid-template-columns: 1fr; }
  .approach-header { grid-template-columns: 1fr; gap: 32px; }
  .approach-steps { grid-template-columns: 1fr; }
  .branding-pillars { grid-template-columns: 1fr; }
  .packages-grid { grid-template-columns: 1fr; }
  .proof-columns { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .form-row { grid-template-columns: 1fr; }
  footer { flex-direction: column; gap: 16px; text-align: center; padding: 32px 24px; margin: 0 16px 16px; }
}

@media (max-width: 768px) {
  /* Hero */
  .hero { padding: 52px 20px; }
  .hero-content { max-width: 100%; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .btn-blue, .btn-outline { width: 100%; text-align: center; }

  /* Ticker */
  .ticker-track { gap: 40px; }

  /* Blog — first card thumb too tall on phones */
  .blog-card:first-child .blog-thumb { height: 200px; }

  /* Card paddings — tighten on small screens */
  .proof-col { padding: 32px 20px; }
  .approach-step { padding: 28px 24px; }
  .package { padding: 36px 24px; }
  .what-card { padding: 28px 20px; }
}

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Active nav link ── */
.nav-links a.nav-active {
  color: var(--blue) !important;
}

/* ── Back to top ── */
.back-to-top-wrap {
  display: flex;
  justify-content: center;
  padding: 48px 0 40px;
  background: var(--off);
}
#back-to-top {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
  border-radius: 100px;
  padding: 11px 26px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  animation: btt-pulse 2.8s ease-in-out infinite;
  transition: color 0.2s, border-color 0.2s, transform 0.2s;
}
#back-to-top .btt-arrow {
  display: inline-block;
  font-size: 1.1rem;
  animation: btt-bounce 1.4s ease-in-out infinite;
}
#back-to-top:hover {
  color: var(--blue);
  border-color: var(--blue);
  transform: translateY(-2px);
  animation: none;
}
#back-to-top:hover .btt-arrow { animation: none; }
@keyframes btt-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(23,52,70,0.25); }
  50%       { box-shadow: 0 0 0 10px rgba(23,52,70,0); }
}
@keyframes btt-bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-3px); }
}
[data-theme="dark"] .back-to-top-wrap { background: #161b27; }
[data-theme="dark"] #back-to-top { color: #e8edf5; border-color: rgba(255,255,255,0.3); }
[data-theme="dark"] #back-to-top:hover { color: var(--blue); border-color: var(--blue); }
@keyframes btt-pulse-dark {
  0%, 100% { box-shadow: 0 0 0 0 rgba(232,237,245,0.2); }
  50%       { box-shadow: 0 0 0 10px rgba(232,237,245,0); }
}
[data-theme="dark"] #back-to-top { animation: btt-pulse-dark 2.8s ease-in-out infinite; }


/* ── Page transition ── */
body { animation: page-in 0.4s ease both; }
@keyframes page-in {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
a.page-exit { pointer-events: none; }

/* ── Mobile menu slide-in ── */
@media (max-width: 1100px) {
  .nav-links {
    position: fixed;
    top: 80px;
    left: auto;
    right: -200px;
    width: 35vw;
    max-width: 140px;
    height: auto;
    background: #ffffff;
    flex-direction: column;
    align-items: center;
    padding: 24px 20px 36px;
    gap: 4px;
    box-shadow: -8px 0 40px rgba(0,0,0,0.12);
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 150;
    border-bottom-left-radius: 20px;
  }
  .nav-links.open {
    right: 0;
  }
  .nav-links a { color: var(--navy) !important; font-size: 1rem; padding: 10px 0; text-align: center; width: 100%; }
}

/* ── Step number animation ── */
.step-number {
  transition: color 0.3s, transform 0.3s;
}
.approach-step:hover .step-number {
  color: var(--blue);
  transform: scale(1.15);
}
