/* ============================================================
   ValeBorne Inc. — Shared Stylesheet
   Palette: off-white bg, deep slate headings, electric cyan accent
   Fonts:   Inter (headings) + Merriweather (body)
   ============================================================ */

/* ── TOKENS ── */
:root {
  --bg:           #F8F9FA;
  --bg-alt:       #EEF2F6;
  --bg-dark:      #1A2A3A;
  --bg-dark-2:    #0F1E2C;
  --text-head:    #1A2A3A;
  --text-body:    #495057;
  --text-muted:   #7A8CA0;
  --accent:       #00B4D8;
  --accent-hover: #0077B6;
  --border:       #E9ECEF;
  --white:        #FFFFFF;
  --radius:       6px;
  --shadow-sm:    0 2px 8px  rgba(26,42,58,.07);
  --shadow-md:    0 6px 24px rgba(26,42,58,.11);
  --shadow-lg:    0 16px 48px rgba(26,42,58,.15);
  --trans:        .25s cubic-bezier(.4,0,.2,1);
  --max-w:        1140px;
  --font-head:    'Inter', sans-serif;
  --font-body:    'Merriweather', Georgia, serif;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html   { scroll-behavior: smooth; font-size: 16px; }
body   { font-family: var(--font-body); background: var(--bg); color: var(--text-body); line-height: 1.75; overflow-x: hidden; }
img    { display: block; max-width: 100%; }
a      { color: var(--accent); text-decoration: none; transition: color var(--trans); }
a:hover{ color: var(--accent-hover); }
ul     { list-style: none; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar       { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

/* ── PAGE FADE-IN ── */
#page-fade {
  position: fixed; inset: 0;
  background: var(--white);
  z-index: 9999;
  pointer-events: none;
  animation: pageFade .75s ease forwards;
}
@keyframes pageFade {
  0%   { opacity: 1; }
  100% { opacity: 0; visibility: hidden; }
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--text-head);
  line-height: 1.2;
  font-weight: 700;
}
h1 { font-size: clamp(2.1rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }
p  { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.overline {
  font-family: var(--font-head);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: .6rem;
}

/* ── LAYOUT HELPERS ── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}
.section { padding: 88px 0; }
.section-alt { background: var(--bg-alt); }
.section-dark {
  background: var(--bg-dark);
  color: rgba(255,255,255,.8);
}
.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4 { color: var(--white); }
.section-dark .overline { color: var(--accent); }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}
.section-header p {
  color: var(--text-muted);
  font-size: .95rem;
  margin-top: .75rem;
}

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

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--trans), color var(--trans), border-color var(--trans), transform var(--trans), box-shadow var(--trans);
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(0,180,216,.35);
}
.btn-outline {
  background: transparent;
  color: var(--text-head);
  border-color: var(--border);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.35);
}
.btn-outline-white:hover {
  border-color: var(--white);
  color: var(--white);
  background: rgba(255,255,255,.08);
}
.btn-sm { padding: 9px 18px; font-size: .78rem; }

/* ── CARDS ── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--trans), transform var(--trans), border-color var(--trans);
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: rgba(0,180,216,.25);
}
.card-icon {
  width: 48px; height: 48px;
  background: rgba(0,180,216,.08);
  border: 1px solid rgba(0,180,216,.18);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  color: var(--accent);
  font-size: 1.3rem;
}
.card h3 { margin-bottom: .5rem; }
.card p  { font-size: .88rem; color: var(--text-muted); margin-bottom: 0; }

/* Service-specific card extras */
.card .price {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-hover);
  line-height: 1;
  margin: 12px 0 4px;
}
.card .duration {
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.card .desc { font-size: .88rem; color: var(--text-body); margin-bottom: 20px; }
.card ul.features {
  list-style: none;
  margin-bottom: 24px;
}
.card ul.features li {
  font-size: .85rem;
  color: var(--text-body);
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.card ul.features li:last-child { border-bottom: none; }
.card ul.features li::before {
  content: '→';
  color: var(--accent);
  font-size: .8rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0,180,216,.12), var(--shadow-md);
  position: relative;
}
.card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -1px; right: 24px;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-head);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 0 0 var(--radius) var(--radius);
}

/* Pill / badge */
.badge {
  display: inline-block;
  font-family: var(--font-head);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  background: rgba(0,180,216,.1);
  color: var(--accent-hover);
  border: 1px solid rgba(0,180,216,.22);
  margin-bottom: 12px;
}
.badge-gold   { background: rgba(201,168,76,.1); color: #a07a20; border-color: rgba(201,168,76,.3); }
.badge-silver { background: rgba(100,116,139,.1); color: #4a5568; border-color: rgba(100,116,139,.3); }
.badge-bronze { background: rgba(180,100,60,.1); color: #8b4513; border-color: rgba(180,100,60,.3); }

/* Divider accent line */
.accent-rule {
  width: 48px; height: 3px;
  background: var(--accent);
  border-radius: 2px;
  margin: 16px 0 24px;
}
.accent-rule.centered { margin: 16px auto 24px; }

/* ─────────────────────────────────────────
   NAVIGATION
───────────────────────────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(248,249,250,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--trans);
}
.site-nav.scrolled {
  box-shadow: 0 2px 16px rgba(26,42,58,.09);
}
.nav-inner {
  display: flex;
  align-items: center;
  height: 68px;
  gap: 0;
}
.nav-logo {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-head);
  text-decoration: none;
  letter-spacing: -.02em;
  flex-shrink: 0;
}
.nav-logo span { color: var(--accent); }

/* Push links to the right, away from logo */
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}
.nav-links a {
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--trans);
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: color var(--trans), border-color var(--trans);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--text-head);
  border-bottom-color: var(--accent);
}
.nav-cta {
  margin-left: 32px;
  flex-shrink: 0;
}

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  margin-left: auto;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text-head);
  border-radius: 2px;
  transition: var(--trans);
}
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 16px 0;
}
.mobile-menu a {
  font-family: var(--font-head);
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-head);
  padding: 12px 28px;
  display: block;
  border-bottom: 1px solid var(--border);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a.mob-cta {
  color: var(--white);
  background: var(--accent);
  margin: 12px 28px 4px;
  border-radius: var(--radius);
  text-align: center;
  border-bottom: none;
}
.mobile-menu a.mob-cta:hover { background: var(--accent-hover); }

/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
.hero {
  background: linear-gradient(130deg, var(--bg-dark) 0%, #0e2038 55%, #152d4e 100%);
  color: var(--white);
  padding: 100px 0 96px;
  position: relative;
  overflow: hidden;
}
/* Subtle grid pattern */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,180,216,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,180,216,.06) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
/* Glowing orb */
.hero::after {
  content: '';
  position: absolute;
  top: -120px; right: -80px;
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(0,180,216,.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 740px;
}
.hero-eyebrow {
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px; height: 2px;
  background: var(--accent);
  border-radius: 1px;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  line-height: 1.15;
}
.hero h1 em {
  font-style: normal;
  color: var(--accent);
}
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.72);
  max-width: 600px;
  margin-bottom: 36px;
  line-height: 1.8;
}
.hero-free-offer {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0,180,216,.12);
  border: 1px solid rgba(0,180,216,.3);
  border-radius: var(--radius);
  padding: 12px 20px;
  margin-bottom: 36px;
  font-family: var(--font-head);
  font-size: .85rem;
  color: rgba(255,255,255,.9);
}
.hero-free-offer strong { color: var(--accent); }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.1);
  flex-wrap: wrap;
}
.hero-stat .num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.hero-stat .lbl {
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-top: 4px;
}

/* ─────────────────────────────────────────
   SERVICES SUMMARY (homepage)
───────────────────────────────────────── */
.service-summary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 24px;
}
.service-summary-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--trans), transform var(--trans), border-color var(--trans);
}
.service-summary-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: rgba(0,180,216,.25);
}
.service-summary-card .icon {
  font-size: 1.6rem;
  margin-bottom: 14px;
}
.service-summary-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}
.service-summary-card p {
  font-size: .83rem;
  color: var(--text-muted);
  margin-bottom: 0;
}
.services-link-row {
  text-align: center;
  margin-top: 40px;
}

/* ─────────────────────────────────────────
   CONSULTATION SECTION
───────────────────────────────────────── */
.consultation-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.consult-info h2 { margin-bottom: 12px; }
.consult-info p  { color: var(--text-body); }
.consult-info .email-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 600;
  color: var(--accent-hover);
  margin: 20px 0;
  padding: 12px 20px;
  border: 1px solid rgba(0,119,182,.2);
  border-radius: var(--radius);
  background: rgba(0,119,182,.04);
  transition: background var(--trans), border-color var(--trans);
}
.consult-info .email-link:hover {
  background: rgba(0,119,182,.08);
  border-color: rgba(0,119,182,.4);
  color: var(--accent-hover);
}
.founder-offer {
  margin-top: 20px;
  padding: 16px 20px;
  background: rgba(0,180,216,.06);
  border: 1px solid rgba(0,180,216,.2);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: var(--font-head);
  font-size: .85rem;
  color: var(--text-body);
}
.founder-offer strong { color: var(--accent-hover); }

/* Calendly embed container */
.calendly-embed {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  min-height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  position: relative;
}
/* Placeholder shown until real embed is inserted */
.calendly-placeholder {
  text-align: center;
  padding: 40px;
}
.calendly-placeholder .cal-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  opacity: .4;
}
.calendly-placeholder h4 {
  color: var(--text-muted);
  font-size: .9rem;
  font-weight: 500;
  margin-bottom: 8px;
}
.calendly-placeholder code {
  font-size: .78rem;
  color: var(--accent-hover);
  background: rgba(0,119,182,.06);
  padding: 4px 8px;
  border-radius: 4px;
}

/* ─────────────────────────────────────────
   ABOUT PAGE
───────────────────────────────────────── */
.page-hero {
  background: linear-gradient(130deg, var(--bg-dark) 0%, #0e2038 100%);
  padding: 72px 0 68px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,180,216,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,180,216,.05) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero p  { color: rgba(255,255,255,.65); max-width: 560px; font-size: .95rem; margin: 0; }

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.pillar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--trans), transform var(--trans);
  border-top: 3px solid var(--accent);
}
.pillar-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.pillar-number {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 800;
  color: rgba(0,180,216,.15);
  line-height: 1;
  margin-bottom: 8px;
}
.pillar-card h3 { margin-bottom: 10px; }
.pillar-card ul {
  list-style: none;
  margin-top: 12px;
}
.pillar-card ul li {
  font-size: .85rem;
  color: var(--text-body);
  padding: 5px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.pillar-card ul li:last-child { border-bottom: none; }
.pillar-card ul li::before {
  content: '◆';
  color: var(--accent);
  font-size: .5rem;
  flex-shrink: 0;
  margin-top: 6px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--trans), transform var(--trans);
}
.team-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.team-avatar {
  width: 64px; height: 64px;
  background: rgba(0,180,216,.08);
  border: 2px solid rgba(0,180,216,.2);
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent-hover);
}
.team-card .role {
  font-family: var(--font-head);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
  display: block;
}
.team-card h3 { font-size: 1rem; margin-bottom: 10px; }
.team-card p  { font-size: .82rem; color: var(--text-muted); margin: 0; }

/* ─────────────────────────────────────────
   SERVICES PAGE
───────────────────────────────────────── */
.services-section + .services-section {
  padding-top: 0;
}
.tier-comparison {
  overflow-x: auto;
}
.tier-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.tier-table th {
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-head);
  background: var(--bg-alt);
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.tier-table td {
  padding: 16px 20px;
  font-size: .87rem;
  color: var(--text-body);
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.tier-table tr:last-child td { border-bottom: none; }
.tier-table td:first-child { font-family: var(--font-head); font-weight: 600; color: var(--text-head); }
.tier-table .price-cell {
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--accent-hover);
  font-size: 1rem;
}
.tier-table .discount-cell {
  color: #2e7d32;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .82rem;
}

.package-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.package-card {
  background: var(--bg-dark);
  border-radius: var(--radius);
  padding: 36px 32px;
  color: rgba(255,255,255,.8);
}
.package-card h3 { color: var(--white); margin-bottom: 6px; }
.package-card .pkg-price {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin: 12px 0 4px;
}
.package-card .pkg-benefit {
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: 20px;
}
.package-card p { font-size: .88rem; margin-bottom: 24px; }

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
.site-footer {
  background: var(--bg-dark-2);
  color: rgba(255,255,255,.55);
  padding: 52px 0 36px;
}
.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 28px;
}
.footer-brand .nav-logo {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -.02em;
  display: block;
  margin-bottom: 10px;
}
.footer-brand .nav-logo span { color: var(--accent); }
.footer-brand p { font-size: .82rem; max-width: 280px; margin: 0; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links h4 {
  font-family: var(--font-head);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 4px;
}
.footer-links a {
  font-family: var(--font-head);
  font-size: .83rem;
  color: rgba(255,255,255,.5);
  text-decoration: none;
  transition: color var(--trans);
}
.footer-links a:hover { color: var(--accent); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: .78rem; margin: 0; }
.footer-social {
  display: flex; gap: 16px;
}
.footer-social a {
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5);
  font-size: .85rem;
  text-decoration: none;
  transition: border-color var(--trans), color var(--trans), background var(--trans);
}
.footer-social a:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(0,180,216,.08);
}

/* ─────────────────────────────────────────
   SCROLL REVEAL
───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s cubic-bezier(.4,0,.2,1), transform .65s cubic-bezier(.4,0,.2,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }
.reveal-d4 { transition-delay: .4s; }

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .mobile-menu.open { display: flex; }

  .hero { padding: 72px 0 64px; }
  .hero-stats { gap: 24px; }
  .section { padding: 64px 0; }

  .consultation-layout { grid-template-columns: 1fr; gap: 40px; }
  .pillars-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .package-cards { grid-template-columns: 1fr; }

  .footer-inner { flex-direction: column; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 600px) {
  .hero h1 { font-size: 1.9rem; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { text-align: center; justify-content: center; }
  .team-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 20px; }
  .container { padding: 0 18px; }
}
