/* ── TOKENS ─────────────────────────────────── */
:root {
  --abyss:         #0C0F16;
  --obsidian:      #131720;
  --granite:       #1C2333;
  --slate:         #252E42;
  --ridge:         #2F3D57;
  --ash:           #5A6C88;
  --mist:          #8A9EBA;
  --snowline:      #C2D2E6;
  --snowfall:      #E0EAF5;
  --summit:        #F4F8FC;
  
  /* Enhanced glacier colors */
  --glacier-deep:  #4389BF;
  --glacier:       #6AAED6;
  --glacier-vibrant: #5BA3D0;
  --glacier-light: #96C5E4;
  --ice:           #CAE3F2;
  --glacier-glow:  rgba(106,174,214,0.15);

  --font-display: 'Neue Montreal', 'Georgia', serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --nav-h:    80px;
  --radius:   12px;
  --radius-sm: 8px;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── RESET & BASE ────────────────────────────── */
*, *::before, *::after { 
  box-sizing: border-box; 
  margin: 0; 
  padding: 0; 
}
html { scroll-behavior: smooth; }

body {
  background: var(--obsidian);
  color: var(--snowfall);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; outline: none; }

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

/* ── TYPOGRAPHY HELPERS ──────────────────────── */
.h-display {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.95;
  color: var(--summit);
}

.h-section {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.08;
  font-size: clamp(32px, 5vw, 52px);
  color: var(--summit);
}

.overline {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--glacier);
}

.text-muted  { color: var(--mist); }
.text-accent { color: var(--glacier); }

/* ── BUTTONS ─────────────────────────────────── */
.btn {
  display: inline-flex; 
  align-items: center; 
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: 15px; 
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: all 0.3s var(--ease-out);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-primary { 
  background: linear-gradient(135deg, var(--glacier) 0%, var(--glacier-vibrant) 100%);
  color: var(--abyss) !important;
  box-shadow: 0 4px 16px rgba(106,174,214,0.25);
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(255,255,255,0.2));
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--glacier-vibrant) 0%, var(--glacier-light) 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(106,174,214,0.4);
}

.btn-primary:active {
  transform: translateY(-1px);
}

.btn-secondary {
  background: rgba(255,255,255,0.03);
  color: var(--snowfall);
  border: 1px solid var(--ridge);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.btn-secondary:hover {
  border-color: var(--glacier);
  background: rgba(106,174,214,0.08);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.btn-ghost {
  background: transparent;
  color: var(--glacier);
  border: 1px solid rgba(106,174,214,0.35);
  padding: 10px 20px;
  font-size: 13px;
}

.btn-ghost:hover {
  background: rgba(106,174,214,0.1);
  border-color: var(--glacier);
  transform: translateY(-1px);
}

/* ── HEADER / NAV ────────────────────────────── */
#header {
  position: fixed; 
  top: 0; 
  left: 0; 
  right: 0;
  height: var(--nav-h);
  z-index: 900;
  transition: all 0.3s var(--ease-out);
}

#header.scrolled {
  background: rgba(12, 15, 22, 0.75);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(106,174,214,0.1);
  box-shadow: 0 4px 24px rgba(0,0,0,0.2);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex; 
  align-items: center; 
  justify-content: space-between;
  gap: 24px;
}

.logo-wrap {
  display: flex; 
  align-items: center; 
  gap: 5px;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-out);
}

.logo-wrap:hover {
  transform: scale(1.02);
}

.logo-svg { 
  width: 60px; 
  height: 60px; 
  flex-shrink: 0; 
  filter: drop-shadow(0 0 8px rgba(106,174,214,0.3));
  transition: filter 0.3s ease;
}

.logo-svg:hover {
  filter: drop-shadow(0 0 12px rgba(106,174,214,0.6))
          drop-shadow(0 0 20px rgba(106,174,214,0.4));
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: var(--summit);
  line-height: 1.2;
}

.logo-text span {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: var(--mist);
  letter-spacing: 0.05em;
  font-family: var(--font-body);
}

.nav-links {
  display: flex; 
  align-items: center; 
  gap: 4px;
  list-style: none;
}

.nav-links a {
  font-size: 15px; 
  font-weight: 500;
  color: var(--mist);
  padding: 8px 14px;
  border-radius: 6px;
  transition: all 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--glacier);
  transform: scaleX(0);
  transition: transform 0.3s var(--ease-out);
}

.nav-links a:hover { 
  color: var(--summit); 
  background: rgba(255,255,255,0.05); 
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-links a.nav-active {
  color: var(--summit);
  background: rgba(106,174,214,0.1);
}

.nav-cta { 
  margin-left: 12px;
}

/* Burger */
.burger {
  display: none;
  flex-direction: column; 
  gap: 5px;
  width: 28px; 
  padding: 4px 0;
  background: none; 
  cursor: pointer;
}

.burger span {
  display: block; 
  height: 1.5px;
  background: var(--snowfall);
  border-radius: 2px;
  transition: all 0.25s;
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed; 
  top: var(--nav-h); 
  left: 0; 
  right: 0;
  background: rgba(19, 23, 32, 0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--ridge);
  padding: 24px 32px 32px;
  flex-direction: column; 
  gap: 4px;
  z-index: 899;
  animation: slideDown 0.25s var(--ease-out);
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  font-size: 16px; 
  font-weight: 500;
  color: var(--mist); 
  padding: 12px 0;
  border-bottom: 1px solid var(--ridge);
  transition: color 0.2s;
}

.mobile-nav a:hover  { color: var(--summit); }
.mobile-nav .btn     { margin-top: 16px; justify-content: center; }

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── HERO ────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex; 
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
  background: 
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(67,137,191,0.15) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 80% 50%, rgba(106,174,214,0.08) 0%, transparent 60%),
    var(--abyss);
}

.hero-glow {
  position: absolute;
  width: 800px; 
  height: 800px;
  background: radial-gradient(circle, rgba(106,174,214,0.18) 0%, transparent 70%);
  top: 5%; 
  left: 50%; 
  transform: translateX(-50%);
  pointer-events: none;
  animation: pulse-glow 8s ease-in-out infinite;
}

.hero-glow-secondary {
  position: absolute;
  width: 600px; 
  height: 600px;
  background: radial-gradient(circle, rgba(150,197,228,0.12) 0%, transparent 65%);
  top: 20%; 
  right: 10%;
  pointer-events: none;
  animation: pulse-glow 10s ease-in-out infinite;
  animation-delay: 2s;
}

@keyframes pulse-glow {
  0%, 100% { 
    opacity: 1; 
    transform: scale(1); 
  }
  50% { 
    opacity: 0.6; 
    transform: scale(1.1); 
  }
}

.hero-mountain {
  position: absolute;
  bottom: 0; 
  left: 0; 
  right: 0;
  height: 52%;
  pointer-events: none;
  opacity: 0.95;
}

.hero-inner {
  position: relative; 
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 100px 32px 220px;
}

.hero-h1 { 
  font-size: clamp(44px, 7vw, 84px); 
  margin-bottom: 32px;
  line-height: 0.95;
  background: linear-gradient(135deg, var(--summit) 0%, var(--glacier-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-h1 em { 
  background: linear-gradient(135deg, var(--glacier) 0%, #96C5E4 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: normal;
  display: inline-block;
}

.hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--mist);
  line-height: 1.75;
  max-width: 620px;
  margin-bottom: 44px;
}

.hero-ctas {
  display: flex; 
  align-items: center; 
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-anchor {
  display: flex; 
  align-items: center; 
  gap: 8px;
  font-size: 13px; 
  color: var(--mist);
}

.hero-anchor svg { flex-shrink: 0; }

/* ── TRUST BAR ───────────────────────────────── */
#trust {
  position: relative; 
  z-index: 2;
  border-top: 1px solid rgba(106,174,214,0.1);
  border-bottom: 1px solid rgba(106,174,214,0.1);
  background: linear-gradient(90deg, 
    rgba(28,35,51,0.4) 0%, 
    rgba(28,35,51,0.8) 50%, 
    rgba(28,35,51,0.4) 100%
  );
  backdrop-filter: blur(8px);
}

.trust-inner {
  max-width: 1200px; 
  margin: 0 auto; 
  padding: 0 32px;
  display: grid; 
  grid-template-columns: repeat(3, 1fr);
}

.trust-item {
  display: flex; 
  align-items: center; 
  gap: 14px;
  padding: 24px 0;
  border-right: 1px solid rgba(106,174,214,0.15);
  padding-left: 32px;
}

.trust-item:first-child { padding-left: 0; }
.trust-item:last-child  { border-right: none; }

.trust-icon {
  width: 40px; 
  height: 40px;
  background: linear-gradient(135deg, rgba(106,174,214,0.15) 0%, rgba(106,174,214,0.08) 100%);
  border: 1px solid rgba(106,174,214,0.3);
  border-radius: 10px;
  display: flex; 
  align-items: center; 
  justify-content: center;
  flex-shrink: 0;
  color: var(--glacier);
  box-shadow: 
    inset 0 1px 0 rgba(255,255,255,0.1),
    0 4px 12px rgba(106,174,214,0.15);
  animation: float 6s ease-in-out infinite;
}

.trust-item:nth-child(2) .trust-icon {
  animation-delay: 2s;
}

.trust-item:nth-child(3) .trust-icon {
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% { 
    transform: translateY(0px); 
  }
  50% { 
    transform: translateY(-8px); 
  }
}

.trust-text { 
  font-size: 15px; 
  font-weight: 500; 
  color: var(--snowline); 
}

/* ── SECTION LAYOUT ──────────────────────────── */
section { position: relative; }

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 32px;
}

.section-header { margin-bottom: 64px; }
.section-header .overline { margin-bottom: 18px; display: block; }

/* ── THE PROBLEM ─────────────────────────────── */
/* ── WHAT WE DO ──────────────────────────────── */
#services { background: var(--obsidian); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}

.service-card {
  background: linear-gradient(135deg, var(--granite) 0%, rgba(28,35,51,0.85) 100%);
  border: 1px solid rgba(106,174,214,0.1);
  border-radius: var(--radius);
  padding: 40px 36px;
  display: flex; 
  flex-direction: column; 
  gap: 18px;
  transition: all 0.3s var(--ease-out);
  position: relative; 
  overflow: hidden;
  box-shadow: 
    0 2px 12px rgba(0,0,0,0.2),
    inset 0 1px 0 rgba(255,255,255,0.03);
}

.service-card::after {
  content: '';
  position: absolute; 
  inset: 0;
  background: radial-gradient(circle at 0% 0%, rgba(106,174,214,0.08), transparent 65%);
  opacity: 0; 
  transition: opacity 0.3s;
}

.service-card:hover {
  border-color: rgba(106,174,214,0.35);
  transform: translateY(-6px);
  box-shadow: 
    0 24px 56px rgba(0,0,0,0.35),
    0 0 0 1px rgba(106,174,214,0.25),
    inset 0 1px 0 rgba(255,255,255,0.08);
}

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

.service-icon {
  width: 48px; 
  height: 48px;
  background: linear-gradient(135deg, rgba(106,174,214,0.15) 0%, rgba(106,174,214,0.08) 100%);
  border: 1px solid rgba(106,174,214,0.3);
  border-radius: 12px;
  display: flex; 
  align-items: center; 
  justify-content: center;
  color: var(--glacier); 
  flex-shrink: 0;
  box-shadow: 
    inset 0 1px 0 rgba(255,255,255,0.1),
    0 4px 12px rgba(106,174,214,0.15);
  animation: float 6s ease-in-out infinite;
}

.service-card:nth-child(2) .service-icon {
  animation-delay: 1.5s;
}

.service-card:nth-child(3) .service-icon {
  animation-delay: 3s;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 22px; 
  font-weight: 700;
  letter-spacing: -0.02em; 
  color: var(--summit);
}

.service-card p { 
  font-size: 15px; 
  color: var(--mist); 
  line-height: 1.75; 
  flex: 1; 
}

/* ── HOW IT WORKS ────────────────────────────── */
#how { background: var(--abyss); }

.steps-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-bottom: 56px;
}

.steps-wrap::before {
  content: '';
  position: absolute;
  top: 32px; 
  left: 24px; 
  right: 24px;
  height: 2px;
  background: linear-gradient(90deg, 
    var(--ridge), 
    var(--glacier-deep), 
    var(--glacier-deep),
    var(--ridge)
  );
  opacity: 0.6;
}

.step { 
  padding: 0 16px; 
  position: relative; 
}

.step-num {
  width: 64px; 
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--granite) 0%, var(--slate) 100%);
  border: 2px solid var(--ridge);
  display: flex; 
  align-items: center; 
  justify-content: center;
  font-family: var(--font-display);
  font-size: 20px; 
  font-weight: 700; 
  color: var(--mist);
  margin-bottom: 28px;
  position: relative; 
  z-index: 1;
  transition: all 0.3s var(--ease-out);
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.step:hover .step-num {
  background: linear-gradient(135deg, var(--glacier) 0%, var(--glacier-vibrant) 100%);
  border-color: var(--glacier);
  color: var(--abyss);
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(106,174,214,0.4);
}

.step h3 {
  font-family: var(--font-display);
  font-size: 19px; 
  font-weight: 700;
  letter-spacing: -0.02em; 
  color: var(--summit); 
  margin-bottom: 12px;
}

.step p { 
  font-size: 14.5px; 
  color: var(--mist); 
  line-height: 1.7; 
}

.steps-remark {
  display: flex; 
  align-items: center; 
  gap: 10px;
  font-size: 14px; 
  color: var(--ice);
  padding: 18px 24px;
  background: var(--granite);
  border: 1px solid var(--ridge);
  border-radius: var(--radius-sm);
  margin-bottom: 44px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.steps-remark svg { 
  color: var(--glacier); 
  flex-shrink: 0; 
}

/* ── PORTFOLIO PREVIEW ───────────────────────── */
#portfolio { background: var(--obsidian); }

/* ── Carousel shell ──────────────────────────── */
.portfolio-carousel {
  display: flex;
  align-items: center;
  gap: 20px;
}

.portfolio-viewport {
  flex: 1;
  overflow: hidden;
  border-radius: var(--radius);
}

.portfolio-track {
  display: flex;
  transition: transform 0.55s var(--ease-out);
  will-change: transform;
}

.portfolio-track:active { cursor: grabbing; }

.portfolio-slide {
  flex: 0 0 100%;
  max-width: 100%;
  padding: 4px;
  box-sizing: border-box;
}

.portfolio-arrow {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(106,174,214,0.25);
  background: var(--granite);
  color: var(--snowfall);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s var(--ease-out);
}

.portfolio-arrow:hover {
  background: var(--glacier);
  color: var(--abyss);
  border-color: var(--glacier);
  transform: scale(1.06);
}

.portfolio-arrow:focus-visible {
  outline: 3px solid var(--glacier-light, var(--glacier));
  outline-offset: 2px;
}

.portfolio-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.portfolio-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border-radius: 50%;
  border: none;
  background: rgba(138,158,186,0.35);
  cursor: pointer;
  transition: all 0.25s var(--ease-out);
}

.portfolio-dot:hover { background: rgba(106,174,214,0.6); }

.portfolio-dot.active {
  background: var(--glacier);
  width: 26px;
  border-radius: 5px;
}

.portfolio-card {
  background: linear-gradient(135deg, var(--granite) 0%, rgba(28,35,51,0.9) 100%);
  border: 1px solid rgba(106,174,214,0.1);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s var(--ease-out);
  box-shadow: 
    0 2px 12px rgba(0,0,0,0.2),
    inset 0 1px 0 rgba(255,255,255,0.03);
  max-width: 780px;
  margin: 0 auto;
}

.portfolio-card:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 28px 64px rgba(0,0,0,0.4),
    0 0 0 1px rgba(106,174,214,0.3),
    inset 0 1px 0 rgba(255,255,255,0.05);
  border-color: rgba(106,174,214,0.35);
}

.portfolio-thumb { 
  height: 380px; 
  position: relative; 
  overflow: hidden; 
}

.browser-bar {
  background: var(--slate);
  border-bottom: 1px solid var(--ridge);
  height: 32px;
  display: flex; 
  align-items: center;
  padding: 0 12px; 
  gap: 6px;
  position: relative; 
  z-index: 1;
}

.browser-dot { 
  width: 8px; 
  height: 8px; 
  border-radius: 50%; 
}

.browser-url {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border-radius: 4px; 
  height: 16px; 
  margin: 0 12px;
}

.portfolio-screen { 
  height: calc(380px - 32px); 
  position: relative; 
  overflow: hidden; 
}

/* Portfolio mock screens */
.mock-plumbing {
  background: linear-gradient(160deg, #1a2a3a 0%, #0d1b2a 100%);
  display: flex; 
  flex-direction: column; 
  padding: 16px;
}

.mock-plumbing .mock-hero-bar {
  background: linear-gradient(90deg, #2a5f8f, #1a3f5f);
  border-radius: 4px; 
  height: 36px; 
  margin-bottom: 10px;
  display: flex; 
  align-items: center; 
  padding: 0 10px;
}

.mock-plumbing .mock-title {
  width: 60%; 
  height: 6px;
  background: rgba(255,255,255,0.8); 
  border-radius: 3px;
}

.mock-lines { 
  display: flex; 
  flex-direction: column; 
  gap: 5px; 
}

.mock-line {
  height: 4px;
  background: rgba(255,255,255,0.12);
  border-radius: 2px;
}

.mock-line.short  { width: 55%; }
.mock-line.accent { background: rgba(106,174,214,0.4); width: 30%; }

.mock-restaurant {
  background: linear-gradient(160deg, #1e1510 0%, #0f0b08 100%);
  padding: 16px;
}

.mock-restaurant .mock-header-bg {
  background: linear-gradient(90deg, #5c3a1e, #3a2010);
  border-radius: 4px; 
  height: 40px; 
  margin-bottom: 10px;
  display: flex; 
  align-items: center; 
  padding: 0 10px; 
  gap: 8px;
}

.mock-restaurant .mock-logo-dot {
  width: 24px; 
  height: 24px;
  background: rgba(212,160,40,0.5); 
  border-radius: 50%;
}

.mock-salon {
  background: linear-gradient(160deg, #1a1520 0%, #100d15 100%);
  padding: 16px;
}

.mock-salon .mock-hero-img {
  background: linear-gradient(135deg, #3a2d5c, #1f1830);
  border-radius: 4px; 
  height: 44px; 
  margin-bottom: 10px;
}

/* Portfolio image slot — shows a placeholder until a real screenshot is added */
.portfolio-screen-img { position: relative; background: linear-gradient(160deg, #1a2230 0%, #0d1119 100%); }

.portfolio-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.portfolio-img-placeholder {
  display: none;
  position: absolute;
  inset: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  text-align: center;
  font-size: 12px;
  color: var(--mist);
  letter-spacing: 0.02em;
}

.portfolio-img-placeholder span { opacity: 0.55; font-size: 11px; }

.portfolio-screen-img.no-img .portfolio-img-placeholder { display: flex; }

.portfolio-info   { padding: 28px 32px 32px; }

.portfolio-tag {
  font-size: 12px; 
  font-weight: 600;
  letter-spacing: 0.12em; 
  text-transform: uppercase;
  color: var(--mist); 
  margin-bottom: 10px;
}

.portfolio-title {
  font-family: var(--font-display);
  font-size: 24px; 
  font-weight: 700;
  letter-spacing: -0.02em; 
  color: var(--summit); 
  margin-bottom: 20px;
}

/* ── FOOTER ──────────────────────────────────── */
#footer {
  background: var(--abyss);
  border-top: 1px solid rgba(106,174,214,0.1);
}

.footer-inner {
  max-width: 1200px; 
  margin: 0 auto;
  padding: 72px 32px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--ridge);
}

.footer-brand .logo-wrap { 
  margin-bottom: 18px; 
}

.footer-slogan {
  font-size: 15px; 
  color: var(--mist);
  line-height: 1.65; 
  max-width: 280px; 
  font-style: italic;
}

.footer-col-title {
  font-size: 14px; 
  font-weight: 600;
  letter-spacing: 0.16em; 
  text-transform: uppercase;
  color: var(--mist); 
  margin-bottom: 24px;
}

.footer-nav { 
  list-style: none; 
  display: flex; 
  flex-direction: column; 
  gap: 12px; 
}

.footer-nav a { 
  font-size: 15px; 
  color: var(--mist); 
  transition: color 0.2s; 
}

.footer-nav a:hover { 
  color: var(--glacier-light); 
}

.footer-contact-list { 
  display: flex; 
  flex-direction: column; 
  gap: 14px; 
}

.footer-contact-item { 
  display: flex; 
  align-items: flex-start; 
  gap: 10px; 
}

.footer-contact-item svg   { 
  color: var(--glacier); 
  flex-shrink: 0; 
  margin-top: 2px; 
}

.footer-contact-item span  { 
  font-size: 15px; 
  color: var(--mist); 
  line-height: 1.5; 
}

.footer-contact-item span a:hover {
  transition: all 0.3s ease;
  color: var(--glacier-light); 
}

.footer-social { 
  display: flex; 
  gap: 8px; 
  margin-top: 24px; 
}

.social-btn {
  width: 38px; 
  height: 38px; 
  border-radius: 8px;
  background: var(--granite); 
  border: 1px solid var(--ridge);
  display: flex; 
  align-items: center; 
  justify-content: center;
  color: var(--mist); 
  transition: all 0.2s;
}

.social-btn:hover {
  border-color: var(--glacier); 
  color: var(--glacier);
  background: rgba(106,174,214,0.1);
  transform: translateY(-2px);
}

.footer-bottom {
  padding: 24px 0;
  font-size: 13px; 
  color: var(--mist); 
  text-align: center !important;
}

.footer-bottom a {
  color: var(--mist);
  transition: color 0.2s;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: var(--glacier);
}

/* ══════════════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════════════ */

/* About Hero */
#about-hero {
  background: var(--abyss);
  padding-top: calc(var(--nav-h) + 60px);
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}

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

.about-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%,  rgba(42,111,168,.16) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 15% 80%, rgba(28,75,120,.12) 0%, transparent 65%),
    radial-gradient(ellipse 40% 30% at 85% 70%, rgba(42,111,168,.09) 0%, transparent 60%);
  z-index: 1;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(42,111,168,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(42,111,168,.05) 1px, transparent 1px);
  background-size: 60px 60px;
  -webkit-mask-image: radial-gradient(ellipse 75% 75% at 50% 50%, black 25%, transparent 100%);
  mask-image: radial-gradient(ellipse 75% 75% at 50% 50%, black 25%, transparent 100%);
  z-index: 2;
}

.about-mountains {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 160px;
  pointer-events: none;
  z-index: 3;
  opacity: 0.9;
}

.about-hero-content {
  max-width: 840px;
  margin: 0 auto;
  position: relative;
  z-index: 4;
}

.about-hero-content h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--glacier) 0%, #96C5E4 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-intro-blocks {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.about-intro-text {
  font-size: clamp(15px, 2vw, 17px);
  color: var(--mist);
  line-height: 1.75;
}

/* Why Us Section */
#why-us {
  background: var(--obsidian);
}

.why-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.why-card {
  background: linear-gradient(135deg, var(--granite) 0%, rgba(28,35,51,0.9) 100%);
  border: 1px solid rgba(106,174,214,0.1);
  border-radius: var(--radius);
  padding: 36px;
  transition: all 0.3s var(--ease-out);
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 2px 12px rgba(0,0,0,0.2),
    inset 0 1px 0 rgba(255,255,255,0.03);
}

.why-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 0%, rgba(106,174,214,0.08), transparent 65%);
  opacity: 0;
  transition: opacity 0.3s;
}

.why-card:hover {
  border-color: rgba(106,174,214,0.35);
  transform: translateY(-6px);
  box-shadow: 
    0 24px 56px rgba(0,0,0,0.35),
    0 0 0 1px rgba(106,174,214,0.25),
    inset 0 1px 0 rgba(255,255,255,0.08);
}

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

.why-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--summit);
  margin-bottom: 14px;
}

.why-card p {
  font-size: 15px;
  color: var(--mist);
  line-height: 1.75;
}

/* Who We Work With Section */
#who-we-work {
  background: var(--abyss);
}

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

.who-card {
  background: linear-gradient(135deg, var(--granite) 0%, rgba(28,35,51,0.9) 100%);
  border: 1px solid rgba(106,174,214,0.1);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s var(--ease-out);
  box-shadow: 
    0 2px 12px rgba(0,0,0,0.2),
    inset 0 1px 0 rgba(255,255,255,0.03);
}

.who-card:hover {
  border-color: rgba(106,174,214,0.35);
  transform: translateY(-6px);
  box-shadow: 
    0 24px 56px rgba(0,0,0,0.35),
    0 0 0 1px rgba(106,174,214,0.25),
    inset 0 1px 0 rgba(255,255,255,0.08);
}

.who-image {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.who-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.who-image-overlay {
  position: absolute;
  inset: 0;
  background: var(--abyss);
  opacity: 0.5;
  transition: opacity 0.3s;
}

.who-card:hover .who-image-overlay {
  opacity: 0.3;
}

.who-content {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

.who-content h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--summit);
}

.who-content p {
  font-size: 15px;
  color: var(--mist);
  line-height: 1.75;
}

/* About CTA Section */
#about-cta {
  background: var(--obsidian);
}

.about-cta-content {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  padding: 40px 0;
}

.about-cta-content h2 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--glacier) 0%, #96C5E4 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ══════════════════════════════════════════════
   SERVICES PAGE
══════════════════════════════════════════════ */
 
/* Services Hero */
#services-hero {
  background: var(--abyss);
  padding-top: calc(var(--nav-h) + 60px);
  padding-bottom: 100px;
  position: relative;
  overflow: hidden;
}
 
.services-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, rgba(42,111,168,.17) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 15% 90%, rgba(28,75,120,.12) 0%, transparent 65%),
    radial-gradient(ellipse 35% 30% at 85% 60%, rgba(42,111,168,.09) 0%, transparent 60%);
  z-index: 1;
}
 
.services-hero-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(42,111,168,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(42,111,168,.045) 1px, transparent 1px);
  background-size: 60px 60px;
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, black 20%, transparent 100%);
  mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, black 20%, transparent 100%);
  z-index: 2;
}
 
.services-mountains-wrap {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 3;
  pointer-events: none;
}
 
.services-mountains {
  width: 100%;
  display: block;
  opacity: 0.9;
}
 
.services-hero-content {
  position: relative;
  z-index: 4;
  padding-top: 0;
  padding-bottom: 0;
}
 
.services-hero-h1 {
  font-size: clamp(38px, 5.5vw, 68px);
  margin-top: 16px;
  margin-bottom: 24px;
  background: linear-gradient(135deg, var(--summit) 0%, var(--glacier-light) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
 
.services-hero-h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--glacier) 0%, #96C5E4 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
 
.services-hero-sub {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--mist);
  line-height: 1.72;
  max-width: 640px;
  margin-bottom: 36px;
}
 
.services-hero-includes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
}
 
.shi-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--snowline);
}
 
/* Packages */
#packages {
  background: var(--obsidian);
}
 
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
 
.pkg-card {
  background: linear-gradient(135deg, var(--granite) 0%, rgba(28,35,51,0.9) 100%);
  border: 1px solid rgba(106,174,214,0.1);
  border-radius: var(--radius);
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  transition: all 0.3s var(--ease-out);
  box-shadow: 
    0 2px 12px rgba(0,0,0,0.2),
    inset 0 1px 0 rgba(255,255,255,0.03);
}
 
.pkg-card:hover {
  border-color: rgba(106,174,214,0.35);
  transform: translateY(-6px);
  box-shadow: 
    0 24px 56px rgba(0,0,0,0.35),
    0 0 0 1px rgba(106,174,214,0.25),
    inset 0 1px 0 rgba(255,255,255,0.08);
}
 
/* Featured card */
.pkg-featured {
  background: linear-gradient(135deg, var(--slate) 0%, rgba(37,46,66,0.95) 100%);
  border-color: var(--glacier);
  box-shadow: 0 0 0 1px rgba(106,174,214,0.3), 0 20px 60px rgba(0,0,0,0.4);
  transform: translateY(-8px);
}
 
.pkg-featured:hover {
  transform: translateY(-12px);
  border-color: var(--glacier-light);
  box-shadow: 0 0 0 1px rgba(150,197,228,0.4), 0 32px 80px rgba(0,0,0,0.45);
}
 
.pkg-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--glacier) 0%, var(--glacier-vibrant) 100%);
  color: var(--abyss);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(106,174,214,0.4);
}
 
.pkg-header {
  margin-bottom: 20px;
}
 
.pkg-name {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mist);
  margin-bottom: 14px;
}
 
.pkg-featured .pkg-name {
  color: var(--glacier);
}
 
.pkg-price {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--summit);
  line-height: 1;
  margin-bottom: 10px;
}
 
.pkg-dollar {
  font-size: 28px;
  font-weight: 700;
  vertical-align: super;
  line-height: 0;
  color: var(--mist);
}
 
.pkg-tagline {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--summit);
  margin-bottom: 10px;
}
 
.pkg-desc {
  font-size: 14px;
  color: var(--mist);
  line-height: 1.7;
}
 
.pkg-timeline {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  color: var(--mist);
  padding: 11px 16px;
  background: rgba(0,0,0,0.25);
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  border: 1px solid rgba(106,174,214,0.08);
}
 
.pkg-everything-in {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--glacier);
  margin-bottom: 14px;
}
 
.pkg-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  flex: 1;
}
 
.pkg-features li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 14px;
  color: var(--snowline);
  line-height: 1.5;
}
 
.pkg-features li svg {
  flex-shrink: 0;
  margin-top: 2px;
}
 
.pkg-btn {
  width: 100%;
  justify-content: center;
  font-size: 15px;
  padding: 14px 20px;
}
 
/* What You Provide */
#what-you-provide {
  background: var(--abyss);
}
 
.wyp-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  background: linear-gradient(135deg, var(--granite) 0%, rgba(28,35,51,0.9) 100%);
  border: 1px solid rgba(106,174,214,0.1);
  border-left: 3px solid var(--glacier);
  border-radius: var(--radius);
  padding: 52px 48px;
  box-shadow: 
    0 4px 16px rgba(0,0,0,0.2),
    inset 0 1px 0 rgba(255,255,255,0.03);
}
 
.wyp-left .overline {
  display: block;
  margin-bottom: 14px;
}
 
.wyp-title {
  font-size: clamp(22px, 3vw, 32px);
  margin-bottom: 14px;
}
 
.wyp-sub {
  font-size: 15px;
  color: var(--mist);
  line-height: 1.7;
  margin-bottom: 20px;
}
 
.wyp-note {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13px;
  color: var(--ice);
  padding: 16px 18px;
  background: rgba(106,174,214,0.08);
  border: 1px solid rgba(106,174,214,0.25);
  border-radius: var(--radius-sm);
  line-height: 1.55;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}
 
.wyp-note svg {
  color: var(--glacier);
  flex-shrink: 0;
  margin-top: 1px;
}
 
.wyp-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
 
.wyp-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 22px;
  background: var(--slate);
  border: 1px solid var(--ridge);
  border-radius: var(--radius-sm);
  transition: all 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
 
.wyp-item:hover {
  border-color: rgba(106,174,214,0.3);
  transform: translateX(4px);
}
 
.wyp-check {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, rgba(106,174,214,0.15) 0%, rgba(106,174,214,0.08) 100%);
  border: 1px solid rgba(106,174,214,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--glacier);
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
}
 
.wyp-item strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--summit);
  margin-bottom: 2px;
}
 
.wyp-item span {
  font-size: 13px;
  color: var(--mist);
}
 
/* Comparison Table */
#comparison {
  background: var(--obsidian);
}
 
.comparison-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid rgba(106,174,214,0.1);
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
 
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
 
.comparison-table thead tr {
  background: linear-gradient(135deg, var(--granite) 0%, rgba(28,35,51,0.95) 100%);
  border-bottom: 1px solid rgba(106,174,214,0.15);
}
 
.comparison-table th {
  padding: 22px 24px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--summit);
  text-align: center;
  vertical-align: bottom;
}
 
.comparison-table th.ct-feature-col {
  text-align: left;
  width: 30%;
  color: var(--mist);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
 
.comparison-table th.ct-featured {
  background: rgba(106,174,214,0.1);
  color: var(--glacier);
  border-left: 1px solid rgba(106,174,214,0.25);
  border-right: 1px solid rgba(106,174,214,0.25);
  position: relative;
}
 
.ct-badge {
  display: block;
  font-size: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--abyss);
  background: linear-gradient(135deg, var(--glacier) 0%, var(--glacier-vibrant) 100%);
  padding: 3px 12px;
  border-radius: 20px;
  margin: 6px auto 0;
  width: fit-content;
  box-shadow: 0 2px 8px rgba(106,174,214,0.3);
}
 
.comparison-table tbody tr {
  border-bottom: 1px solid rgba(47,61,87,0.4);
  transition: background 0.15s;
}
 
.comparison-table tbody tr:last-child {
  border-bottom: none;
}
 
.comparison-table tbody tr:hover {
  background: rgba(255,255,255,0.03);
}
 
.comparison-table td {
  padding: 18px 24px;
  color: var(--mist);
  text-align: center;
  vertical-align: middle;
}
 
.comparison-table td:first-child {
  text-align: left;
  color: var(--snowline);
  font-weight: 500;
}
 
.ct-price-row td {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--summit) !important;
  padding-top: 22px;
  padding-bottom: 22px;
}
 
.ct-featured {
  background: rgba(106,174,214,0.06);
  border-left: 1px solid rgba(106,174,214,0.18);
  border-right: 1px solid rgba(106,174,214,0.18);
}
 
.ct-check {
  color: var(--glacier);
  font-size: 16px;
  font-weight: 700;
}
 
.ct-dash {
  color: var(--ridge);
  font-size: 18px;
}
 
/* Add-ons */
#addons {
  background: var(--abyss);
}
 
.addons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
 
.addon-card {
  background: linear-gradient(135deg, var(--granite) 0%, rgba(28,35,51,0.9) 100%);
  border: 1px solid rgba(106,174,214,0.1);
  border-radius: var(--radius);
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  transition: all 0.3s var(--ease-out);
  box-shadow: 
    0 2px 12px rgba(0,0,0,0.2),
    inset 0 1px 0 rgba(255,255,255,0.03);
}
 
.addon-card:hover {
  border-color: rgba(106,174,214,0.35);
  transform: translateY(-4px);
  box-shadow: 
    0 16px 40px rgba(0,0,0,0.3),
    0 0 0 1px rgba(106,174,214,0.2),
    inset 0 1px 0 rgba(255,255,255,0.05);
}
 
.addon-card--accent {
  border-color: rgba(106,174,214,0.25);
  background: linear-gradient(135deg, rgba(106,174,214,0.06) 0%, rgba(28,35,51,0.9) 100%);
}
 
.addon-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
 
.addon-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--summit);
}
 
.addon-price {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--glacier);
  white-space: nowrap;
  flex-shrink: 0;
}
 
.addon-price span {
  font-size: 13px;
  font-weight: 500;
  color: var(--mist);
}
 
.addon-desc {
  font-size: 14px;
  color: var(--mist);
  line-height: 1.7;
  flex: 1;
}
 
.addon-tag {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--glacier);
  background: rgba(106,174,214,0.12);
  border: 1px solid rgba(106,174,214,0.25);
  border-radius: 20px;
  padding: 4px 12px;
  align-self: flex-start;
}
 
/* Domain & Hosting */
#domain-hosting {
  background: var(--obsidian);
}
 
.dh-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}
 
.dh-card {
  background: linear-gradient(135deg, var(--granite) 0%, rgba(28,35,51,0.9) 100%);
  border: 1px solid rgba(106,174,214,0.1);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: all 0.3s var(--ease-out);
  box-shadow: 
    0 2px 12px rgba(0,0,0,0.2),
    inset 0 1px 0 rgba(255,255,255,0.03);
}
 
.dh-card:hover {
  border-color: rgba(106,174,214,0.3);
  transform: translateY(-4px);
  box-shadow: 
    0 16px 40px rgba(0,0,0,0.3),
    0 0 0 1px rgba(106,174,214,0.2),
    inset 0 1px 0 rgba(255,255,255,0.05);
}
 
.dh-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(106,174,214,0.15) 0%, rgba(106,174,214,0.08) 100%);
  border: 1px solid rgba(106,174,214,0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--glacier);
  margin-bottom: 24px;
  box-shadow: 
    inset 0 1px 0 rgba(255,255,255,0.1),
    0 4px 12px rgba(106,174,214,0.15);
}
 
.dh-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--summit);
  margin-bottom: 12px;
}
 
.dh-card p {
  font-size: 15px;
  color: var(--mist);
  line-height: 1.72;
}
 
.dh-note {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--ice);
  padding: 18px 22px;
  background: var(--granite);
  border: 1px solid var(--ridge);
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
 
.dh-note svg {
  color: var(--glacier);
  flex-shrink: 0;
}
 
/* Post-Launch Support */
#post-launch {
  background: var(--abyss);
}
 
.support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}
 
.support-card {
  background: linear-gradient(135deg, var(--granite) 0%, rgba(28,35,51,0.9) 100%);
  border: 1px solid rgba(106,174,214,0.1);
  border-radius: var(--radius);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: all 0.3s var(--ease-out);
  box-shadow: 
    0 2px 12px rgba(0,0,0,0.2),
    inset 0 1px 0 rgba(255,255,255,0.03);
}
 
.support-card:hover {
  border-color: rgba(106,174,214,0.3);
  transform: translateY(-4px);
  box-shadow: 
    0 16px 40px rgba(0,0,0,0.3),
    0 0 0 1px rgba(106,174,214,0.2),
    inset 0 1px 0 rgba(255,255,255,0.05);
}
 
.support-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mist);
}
 
.support-price {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--summit);
  line-height: 1;
}
 
.support-price span {
  font-size: 19px;
  font-weight: 500;
  color: var(--mist);
}
 
.support-min {
  font-size: 12px;
  color: var(--mist);
  margin-bottom: 8px;
}
 
.support-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--summit);
  margin-top: 4px;
}
 
.support-card > p {
  font-size: 15px;
  color: var(--mist);
  line-height: 1.7;
}
 
.support-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 8px 0;
}
 
.support-features li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  color: var(--snowline);
}
 
.support-ideal {
  margin-top: auto;
  padding-top: 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--glacier);
  border-top: 1px solid var(--ridge);
}
 
.support-note {
  font-size: 15px;
  color: var(--mist);
  line-height: 1.7;
  padding: 20px 24px;
  background: var(--granite);
  border: 1px solid var(--ridge);
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
 
/* Process (services page) */
#services-process {
  background: var(--obsidian);
}
 
.svc-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 840px;
}
 
.svc-step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 0 32px;
  padding: 40px 0;
  border-bottom: 1px solid rgba(106,174,214,0.1);
  position: relative;
  transition: border-color 0.3s;
}

.svc-step:hover {
  border-color: rgba(106,174,214,0.2);
}
 
.svc-step:last-child {
  border-bottom: none;
}
 
.svc-step-num {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--ridge) 0%, var(--ash) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  padding-top: 4px;
  transition: all 0.3s;
}
 
.svc-step:hover .svc-step-num {
  background: linear-gradient(135deg, var(--glacier) 0%, var(--glacier-vibrant) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
 
.svc-step-body h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--summit);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
 
.svc-step-time {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--glacier);
  background: rgba(106,174,214,0.12);
  border: 1px solid rgba(106,174,214,0.25);
  border-radius: 20px;
  padding: 3px 12px;
  font-family: var(--font-body);
}
 
.svc-step-body p {
  font-size: 15px;
  color: var(--mist);
  line-height: 1.75;
}
 
/* What's Not Included */
#not-included {
  background: var(--abyss);
}
 
.ni-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
 
.ni-left .overline {
  display: block;
  margin-bottom: 14px;
}
 
.ni-title {
  font-size: clamp(22px, 3vw, 34px);
  margin-bottom: 16px;
}
 
.ni-sub {
  font-size: 15px;
  color: var(--mist);
  line-height: 1.72;
  margin-bottom: 24px;
}
 
.ni-callout {
  background: var(--slate);
  border: 1px solid var(--ridge);
  border-left: 3px solid var(--glacier);
  border-radius: var(--radius-sm);
  padding: 22px 24px;
  font-size: 15px;
  color: var(--snowline);
  line-height: 1.65;
  font-style: italic;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
 
.ni-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
 
.ni-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: linear-gradient(135deg, var(--granite) 0%, rgba(28,35,51,0.9) 100%);
  border: 1px solid rgba(106,174,214,0.1);
  border-radius: var(--radius-sm);
  transition: all 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
 
.ni-list li:hover {
  border-color: rgba(106,174,214,0.2);
  transform: translateX(4px);
}
 
.ni-x {
  width: 30px;
  height: 30px;
  background: rgba(180,60,60,0.12);
  border: 1px solid rgba(180,60,60,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c05050;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}
 
.ni-list li strong {
  font-size: 15px;
  font-weight: 500;
  color: var(--mist);
}
 
/* Services CTA */
#services-cta {
  background: var(--obsidian);
}
 
.services-cta-wrap {
  position: relative;
  text-align: center;
  padding: 80px 40px;
  background: linear-gradient(135deg, var(--granite) 0%, rgba(28,35,51,0.9) 100%);
  border: 1px solid rgba(106,174,214,0.15);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 
    0 8px 32px rgba(0,0,0,0.3),
    inset 0 1px 0 rgba(255,255,255,0.03);
}
 
.services-cta-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 0%, rgba(106,174,214,0.15), transparent 70%);
  pointer-events: none;
}
 
.services-cta-wrap .overline {
  display: block;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
 
.services-cta-title {
  font-size: clamp(26px, 4vw, 44px);
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}
 
.services-cta-sub {
  font-size: 16px;
  color: var(--mist);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 36px;
  position: relative;
  z-index: 1;
}
 
.services-cta-btn {
  font-size: 15px;
  padding: 15px 36px;
  position: relative;
  z-index: 1;
}

/* ══════════════════════════════════════════════
   FAQ PAGE
══════════════════════════════════════════════ */

/* FAQ Hero */
#faq-hero {
  background: var(--abyss);
  padding-top: calc(var(--nav-h) + 60px);
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}

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

.faq-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%,  rgba(79,195,195,.14) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 15% 80%, rgba(42,111,168,.11) 0%, transparent 65%),
    radial-gradient(ellipse 40% 30% at 85% 70%, rgba(79,195,195,.08) 0%, transparent 60%);
  z-index: 1;
}

.faq-hero-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(79,195,195,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79,195,195,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  -webkit-mask-image: radial-gradient(ellipse 75% 75% at 50% 50%, black 25%, transparent 100%);
  mask-image: radial-gradient(ellipse 75% 75% at 50% 50%, black 25%, transparent 100%);
  z-index: 2;
}

.faq-mountains {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 160px;
  pointer-events: none;
  z-index: 3;
  opacity: 0.9;
}

.faq-hero-content {
  max-width: 740px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 4;
}

.faq-hero-sub {
  font-size: clamp(15px, 2vw, 17px);
  color: var(--mist);
  line-height: 1.65;
}

/* FAQ Accordion */
#faq-accordion {
  background: var(--obsidian);
}

.accordion-wrap {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.accordion-item {
  background: linear-gradient(135deg, var(--granite) 0%, rgba(28,35,51,0.9) 100%);
  border: 1px solid rgba(106,174,214,0.1);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s var(--ease-out);
  box-shadow: 
    0 2px 8px rgba(0,0,0,0.15),
    inset 0 1px 0 rgba(255,255,255,0.03);
}

.accordion-item:hover {
  border-color: rgba(106,174,214,0.25);
}

.accordion-item.active {
  border-color: rgba(106,174,214,0.4);
  box-shadow: 
    0 12px 32px rgba(0,0,0,0.25),
    0 0 0 1px rgba(106,174,214,0.2),
    inset 0 1px 0 rgba(255,255,255,0.05);
}

.accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 32px;
  background: transparent;
  color: var(--summit);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s;
}

.accordion-header:hover {
  color: var(--glacier-light);
}

.accordion-header span {
  flex: 1;
}

.accordion-icon {
  flex-shrink: 0;
  color: var(--glacier);
  transition: transform 0.3s var(--ease-out);
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out), padding 0.4s var(--ease-out);
}

.accordion-item.active .accordion-content {
  max-height: 500px;
  padding: 0 32px 32px;
}

.accordion-content p {
  font-size: 15px;
  color: var(--mist);
  line-height: 1.75;
  margin: 0;
}

/* FAQ CTA */
#faq-cta {
  background: var(--abyss);
}

.faq-cta-content {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  padding: 40px 0;
}

/* ══════════════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════════════ */

/* Contact Hero */
#contact-hero {
  background: var(--abyss);
  padding-top: calc(var(--nav-h) + 60px);
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}

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

.contact-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%,  rgba(150,210,220,.15) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 15% 80%, rgba(120,190,210,.11) 0%, transparent 65%),
    radial-gradient(ellipse 40% 30% at 85% 70%, rgba(150,210,220,.09) 0%, transparent 60%);
  z-index: 1;
}

.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(150,210,220,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(150,210,220,.05) 1px, transparent 1px);
  background-size: 60px 60px;
  -webkit-mask-image: radial-gradient(ellipse 75% 75% at 50% 50%, black 25%, transparent 100%);
  mask-image: radial-gradient(ellipse 75% 75% at 50% 50%, black 25%, transparent 100%);
  z-index: 2;
}

.contact-mountains {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 160px;
  pointer-events: none;
  z-index: 3;
  opacity: 0.9;
}

.contact-hero-content {
  max-width: 740px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 4;
}

.contact-hero-sub {
  font-size: clamp(15px, 2vw, 17px);
  color: var(--mist);
  line-height: 1.75;
  max-width: 640px;
  margin: 0 auto;
}

/* Contact Form Section */
#contact-form-section {
  background: var(--obsidian);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: start;
}

/* Form Styles */
.contact-form-wrap {
  background: linear-gradient(135deg, var(--granite) 0%, rgba(28,35,51,0.9) 100%);
  border: 1px solid rgba(106,174,214,0.1);
  border-radius: var(--radius);
  padding: 44px;
  box-shadow: 
    0 4px 16px rgba(0,0,0,0.2),
    inset 0 1px 0 rgba(255,255,255,0.03);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--snowline);
  letter-spacing: 0.01em;
}

.required {
  color: var(--glacier);
}

.optional {
  font-weight: 400;
  color: var(--mist);
  font-size: 13px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 15px 18px;
  background: var(--slate);
  border: 1px solid var(--ridge);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--summit);
  transition: all 0.2s;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--mist);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--glacier);
  background: var(--granite);
  box-shadow: 0 0 0 3px rgba(106,174,214,0.15);
}

.form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%238A9EBA' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-select option {
  background: var(--slate);
  color: var(--summit);
}

.form-textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.6;
}

/* Custom Checkbox */
.form-checkbox-group {
  margin-top: 8px;
}

.form-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  position: relative;
}

.form-checkbox {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.checkbox-custom {
  width: 22px;
  height: 22px;
  border: 1.5px solid var(--ridge);
  border-radius: 4px;
  background: var(--slate);
  flex-shrink: 0;
  position: relative;
  transition: all 0.2s;
  margin-top: 2px;
}

.form-checkbox:checked + .checkbox-custom {
  background: linear-gradient(135deg, var(--glacier) 0%, var(--glacier-vibrant) 100%);
  border-color: var(--glacier);
}

.form-checkbox:checked + .checkbox-custom::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 2px;
  width: 6px;
  height: 11px;
  border: solid var(--abyss);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.form-checkbox:focus + .checkbox-custom {
  box-shadow: 0 0 0 3px rgba(106,174,214,0.2);
}

.checkbox-text {
  font-size: 14px;
  color: var(--mist);
  line-height: 1.6;
}

.checkbox-text a {
  color: var(--glacier);
  text-decoration: underline;
  transition: color 0.2s;
}

.checkbox-text a:hover {
  color: var(--glacier-light);
}

/* Submit Button */
.btn-submit {
  margin-top: 8px;
  width: 100%;
  justify-content: center;
  font-size: 15px;
  padding: 15px 28px;
}

.form-footnote {
  font-size: 13px;
  color: var(--mist);
  text-align: center;
  margin-top: -8px;
}

/* Alternative Contact */
.contact-alternative {
  position: sticky;
  top: calc(var(--nav-h) + 32px);
}

.alternative-card {
  background: linear-gradient(135deg, var(--granite) 0%, rgba(28,35,51,0.9) 100%);
  border: 1px solid rgba(106,174,214,0.1);
  border-radius: var(--radius);
  padding: 40px 36px;
  text-align: center;
  transition: all 0.3s var(--ease-out);
  box-shadow: 
    0 4px 16px rgba(0,0,0,0.2),
    inset 0 1px 0 rgba(255,255,255,0.03);
}

.alternative-card:hover {
  border-color: rgba(106,174,214,0.3);
  transform: translateY(-4px);
  box-shadow: 
    0 12px 32px rgba(0,0,0,0.3),
    0 0 0 1px rgba(106,174,214,0.2),
    inset 0 1px 0 rgba(255,255,255,0.05);
}

.alternative-icon {
  color: var(--glacier);
  margin: 0 auto 24px;
}

.alternative-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--summit);
  margin-bottom: 10px;
}

.alternative-card p {
  font-size: 15px;
  color: var(--mist);
  margin-bottom: 16px;
}

.alternative-email {
  display: inline-block;
  font-size: 15px;
  font-weight: 600;
  color: var(--glacier);
  padding: 12px 22px;
  border: 1px solid rgba(106,174,214,0.3);
  border-radius: var(--radius-sm);
  transition: all 0.2s;
}

.alternative-email:hover {
  background: rgba(106,174,214,0.1);
  border-color: var(--glacier);
  transform: translateY(-1px);
}

/* What Happens Next */
#what-next {
  background: var(--abyss);
}

.next-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.next-step {
  background: linear-gradient(135deg, var(--granite) 0%, rgba(28,35,51,0.9) 100%);
  border: 1px solid rgba(106,174,214,0.1);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: all 0.3s var(--ease-out);
  box-shadow: 
    0 2px 12px rgba(0,0,0,0.2),
    inset 0 1px 0 rgba(255,255,255,0.03);
}

.next-step:hover {
  border-color: rgba(106,174,214,0.3);
  transform: translateY(-4px);
  box-shadow: 
    0 12px 32px rgba(0,0,0,0.3),
    0 0 0 1px rgba(106,174,214,0.2),
    inset 0 1px 0 rgba(255,255,255,0.05);
}

.next-step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(106,174,214,0.15) 0%, rgba(106,174,214,0.08) 100%);
  border: 1px solid rgba(106,174,214,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--glacier);
  margin-bottom: 24px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
}

.next-step h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--summit);
  margin-bottom: 12px;
}

.next-step p {
  font-size: 15px;
  color: var(--mist);
  line-height: 1.7;
}

/* ══════════════════════════════════════════════
   PRIVACY POLICY PAGE
══════════════════════════════════════════════ */

/* Privacy Hero */
#privacy-hero {
  background: var(--abyss);
  padding-top: calc(var(--nav-h) + 60px);
  position: relative;
  overflow: hidden;
}

.privacy-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/your-privacy-hero-image.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.privacy-hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--abyss);
  opacity: 0.8;
  z-index: 1;
}

.privacy-hero-content {
  max-width: 740px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.privacy-hero-sub {
  font-size: clamp(15px, 2vw, 17px);
  color: var(--mist);
  line-height: 1.75;
  max-width: 680px;
  margin: 0 auto 20px;
}

.privacy-date {
  font-size: 14px;
  color: var(--mist);
  margin-top: 16px;
}

.privacy-date strong {
  color: var(--mist);
}

/* Privacy Content */
#privacy-content {
  background: var(--obsidian);
}

.privacy-wrap {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.privacy-section {
  background: linear-gradient(135deg, var(--granite) 0%, rgba(28,35,51,0.9) 100%);
  border: 1px solid rgba(106,174,214,0.1);
  border-left: 3px solid var(--glacier);
  border-radius: var(--radius);
  padding: 40px 44px;
  box-shadow: 
    0 4px 16px rgba(0,0,0,0.2),
    inset 0 1px 0 rgba(255,255,255,0.03);
}

.privacy-section h2 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--summit);
  margin-bottom: 24px;
}

.privacy-section p {
  font-size: 15px;
  color: var(--mist);
  line-height: 1.75;
  margin-bottom: 18px;
}

.privacy-section p:last-child {
  margin-bottom: 0;
}

.privacy-section p strong {
  color: var(--snowline);
  font-weight: 600;
}

.privacy-section a {
  color: var(--glacier);
  text-decoration: underline;
  transition: color 0.2s;
}

.privacy-section a:hover {
  color: var(--glacier-light);
}

.privacy-section ul {
  list-style: none;
  margin: 20px 0;
  padding: 0;
}

.privacy-section ul li {
  font-size: 15px;
  color: var(--mist);
  line-height: 1.75;
  padding-left: 28px;
  position: relative;
  margin-bottom: 10px;
}

.privacy-section ul li::before {
  content: '•';
  position: absolute;
  left: 10px;
  color: var(--glacier);
  font-weight: bold;
  font-size: 18px;
}

/* ── SCROLL REVEAL ───────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.visible      { opacity: 1; transform: none; }
.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; }

/* ── SECTION DIVIDER ─────────────────────────── */
.elev-line {
  width: 100%; 
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(106,174,214,0.2), transparent);
}

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: 1fr;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
  }

  .steps-wrap { 
    grid-template-columns: 1fr 1fr; 
    row-gap: 48px; 
  }
  .steps-wrap::before { display: none; }
  
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-alternative {
    position: static;
  }

  .next-steps {
    grid-template-columns: 1fr;
  }

  .packages-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }
 
  .pkg-featured {
    transform: none;
  }
 
  .pkg-featured:hover {
    transform: translateY(-6px);
  }
 
  .addons-grid {
    grid-template-columns: 1fr 1fr;
  }
 
  .wyp-wrap {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 36px 32px;
  }
 
  .ni-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }
 
  .support-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
  }
 
  .dh-grid {
    grid-template-columns: 1fr 1fr;
  }
 
  .dh-grid .dh-card:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .burger { display: flex; }

  .section-inner { padding: 90px 24px; }
  .hero-inner    { padding: 80px 24px 180px; }

  .trust-inner    { 
    grid-template-columns: 1fr; 
    padding: 0 24px; 
  }
  
  .trust-item     { 
    border-right: none; 
    border-bottom: 1px solid rgba(106,174,214,0.15); 
    padding-left: 0; 
    padding: 20px 0; 
  }
  
  .trust-item:last-child { border-bottom: none; }

  .services-grid  { grid-template-columns: 1fr; }
  .portfolio-carousel { gap: 8px; }
  .portfolio-arrow { width: 38px; height: 38px; }
  .portfolio-thumb { height: 220px; }
  .portfolio-screen { height: calc(220px - 32px); }
  .portfolio-info { padding: 22px 20px 26px; }
  .portfolio-title { font-size: 20px; }
  .steps-wrap     { grid-template-columns: 1fr; }
  .footer-grid    { grid-template-columns: 1fr; gap: 44px; }
  .footer-inner   { padding: 56px 24px 0; }
  .nav-inner      { padding: 0 24px; }

  .about-intro-blocks {
    gap: 20px;
  }

  .why-cards {
    grid-template-columns: 1fr;
  }

  .who-grid {
    grid-template-columns: 1fr;
  }

  #about-hero {
    padding-top: calc(var(--nav-h) + 40px);
  }
  
  .who-image {
    height: 200px;
  }
  
  .who-content {
    padding: 24px 24px 32px;
  }

  #faq-hero {
    padding-top: calc(var(--nav-h) + 40px);
  }

  .accordion-header {
    padding: 22px 24px;
    font-size: 17px;
  }

  .accordion-item.active .accordion-content {
    padding: 0 24px 28px;
  }

  .accordion-content p {
    font-size: 14px;
  }

  #privacy-hero {
    padding-top: calc(var(--nav-h) + 40px);
  }

  .privacy-wrap {
    gap: 40px;
  }

  .privacy-section {
    padding: 32px 28px;
  }

  .privacy-section h2 {
    font-size: 22px;
  }

  .privacy-section p,
  .privacy-section ul li {
    font-size: 14px;
  }

  #services-hero {
    padding-top: calc(var(--nav-h) + 40px);
    padding-bottom: 80px;
  }
 
  .services-hero-includes {
    gap: 8px 16px;
  }
 
  .addons-grid {
    grid-template-columns: 1fr;
  }
 
  .dh-grid {
    grid-template-columns: 1fr;
  }
 
  .dh-grid .dh-card:last-child {
    grid-column: auto;
  }
 
  .svc-step {
    grid-template-columns: 56px 1fr;
    gap: 0 24px;
  }
 
  .svc-step-num {
    font-size: 34px;
  }
 
  .wyp-wrap {
    padding: 28px 24px;
  }
 
  .comparison-table th,
  .comparison-table td {
    padding: 14px 16px;
    font-size: 13px;
  }
 
  .services-cta-wrap {
    padding: 56px 24px;
  }
 
  .ni-wrap {
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .hero-ctas { 
    flex-direction: column; 
    align-items: flex-start; 
  }
  
  .hero-ctas .btn { 
    width: 100%; 
    justify-content: center; 
  }
}


/* ════════════════════════════════════════
   ACCESSIBILITY (WCAG 2.1 AA)
   ════════════════════════════════════════ */

/* Skip-to-content link — visible only on keyboard focus (WCAG 2.4.1) */
.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 3000;
  background: var(--glacier);
  color: var(--abyss);
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  transition: top 0.2s var(--ease-out);
}
.skip-link:focus { top: 16px; }

/* Visible keyboard focus indicator (WCAG 2.4.7) */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
.btn:focus-visible,
.burger:focus-visible,
.social-btn:focus-visible {
  outline: 3px solid var(--glacier-light);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}
/* Keep the richer form-field focus style, just add a clear ring */
.form-input:focus-visible,
.form-select:focus-visible,
.form-textarea:focus-visible {
  outline: 2px solid var(--glacier-light);
  outline-offset: 2px;
}

/* Respect reduced-motion preference (WCAG 2.3.3) + safety net for reveal */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* Skip-link target: focusable without an ugly outline, and offset
   so the sticky header never covers the top of the content */
#main {
  scroll-margin-top: calc(var(--nav-h) + 16px);
}
#main:focus { outline: none; }


/* ════════════════════════════════════════
   2026 REFRESH — badge, final CTA, polish,
   utility classes (replacing inline styles)
   ════════════════════════════════════════ */

/* ── Hero badge (overline) ───────────────────── */
.hero-overline { margin-bottom: 28px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px 8px 14px;
  border-radius: 999px;
  background: rgba(106,174,214,0.08);
  border: 1px solid rgba(106,174,214,0.25);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--snowline);
  backdrop-filter: blur(8px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.06),
    0 4px 16px rgba(106,174,214,0.08);
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--glacier);
  box-shadow: 0 0 0 0 rgba(106,174,214,0.5);
  animation: badge-pulse 2.4s ease-out infinite;
  flex-shrink: 0;
}

@keyframes badge-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(106,174,214,0.45); }
  70%  { box-shadow: 0 0 0 8px rgba(106,174,214,0); }
  100% { box-shadow: 0 0 0 0 rgba(106,174,214,0); }
}

/* ── Utility classes (former inline styles) ──── */
.h-section-md {
  font-size: clamp(28px, 4vw, 44px);
  margin-top: 14px;
}

.mw-640 { max-width: 640px; }

.center-cta {
  text-align: center;
  padding-top: 16px;
}

.section-header-split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.section-lede {
  color: var(--mist);
  font-size: 15px;
  margin-top: 12px;
  max-width: 540px;
}

.dot-r { background: #e74c3c; }
.dot-y { background: #f39c12; }
.dot-g { background: #27ae60; }

.btn-ghost-sm {
  font-size: 12px;
  padding: 7px 14px;
}

.logo-svg-sm { width: 50px; height: 50px; }

/* ── Portfolio screenshot zoom on hover ──────── */
.portfolio-img {
  transition: transform 0.6s var(--ease-out);
  transform-origin: center top;
}

.portfolio-card:hover .portfolio-img {
  transform: scale(1.045);
}

/* ── Card spotlight (cursor-following glow) ───
   main.js appends <span class="card-glow"> into
   these cards and updates --mx / --my on mousemove */
.service-card,
.portfolio-card {
  position: relative;
}

.card-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s var(--ease-out);
  background: radial-gradient(
    420px circle at var(--mx, 50%) var(--my, 50%),
    rgba(106,174,214,0.10),
    transparent 60%
  );
  z-index: 0;
}

.service-card:hover .card-glow,
.portfolio-card:hover .card-glow {
  opacity: 1;
}

/* keep card content above the glow layer */
.service-card > *:not(.card-glow) {
  position: relative;
  z-index: 1;
}

/* ── Final CTA band ──────────────────────────── */
#cta-final {
  position: relative;
  background:
    radial-gradient(ellipse 70% 60% at 50% 100%, rgba(67,137,191,0.14) 0%, transparent 70%),
    var(--abyss);
  overflow: hidden;
}

.cta-final-glow {
  position: absolute;
  width: 720px;
  height: 720px;
  left: 50%;
  bottom: -420px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(106,174,214,0.16) 0%, transparent 70%);
  pointer-events: none;
}

.cta-final-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 760px;
}

.cta-final-inner .overline {
  display: block;
  margin-bottom: 18px;
}

.cta-final-sub {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--mist);
  line-height: 1.75;
  max-width: 560px;
  margin: 24px auto 40px;
}

.cta-final-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.cta-final-note {
  margin-top: 28px;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--ash);
}

@media (max-width: 480px) {
  .cta-final-actions { flex-direction: column; }
  .cta-final-actions .btn { width: 100%; justify-content: center; }
}

/* ── Performance: disable grain overlay on phones
   (fixed full-screen layer costs GPU on scroll,
   and the texture is barely visible on small screens) */
@media (max-width: 768px) {
  body::after { display: none; }
}

/* ── Utility classes for subpages (former inline styles) ── */
.h-page {
  font-size: clamp(36px, 5vw, 56px);
  margin-bottom: 20px;
}

.h-page-mb40 { margin-bottom: 40px; }

.h-section-lg {
  font-size: clamp(28px, 4.5vw, 48px);
  margin-bottom: 24px;
}

.h-section-md-nomt { font-size: clamp(28px, 4vw, 44px); }

.mw-600 { max-width: 600px; }
.mw-620 { max-width: 620px; }

.page-lede {
  color: var(--mist);
  font-size: 16px;
  margin-top: 16px;
}

.page-lede-mt12 { margin-top: 12px; }

.center-note {
  text-align: center;
  color: var(--mist);
  font-size: 14px;
  margin-top: 28px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
