/* ============================================
   BlueEmber Marketing — Master Stylesheet
   ============================================ */

/* === CSS VARIABLES === */
:root {
  /* Primary Brand Colors (from logo) */
  --blue: #166CA7;
  --blue-dark: #0F4F7D;
  --blue-light: #E1EDF5;
  --blue-lighter: #EBF2F8;
  --orange: #F79323;
  --orange-hover: #E5840D;
  --orange-light: rgba(247, 147, 35, 0.08);

  /* Neutrals */
  --white: #FFFFFF;
  --off-white: #F5F2ED;
  --text-primary: #1A1A2E;
  --text-secondary: #3D4A5C;
  --text-tertiary: #8A94A6;
  --border: #E2E5EB;
  --border-light: #F0F1F4;
  --navy: #0F1B2D;

  /* Typography */
  --font-display: 'Instrument Serif', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Easing */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* === RESET & BASE === */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  background: var(--white);
  color: var(--text-secondary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--blue);
  text-decoration: none;
  transition: color 0.25s ease;
}

a:hover {
  color: var(--blue-dark);
}

ul, ol {
  list-style: none;
}

/* === LAYOUT === */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 80px 0;
}

.section-padding-sm {
  padding: 60px 0;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  color: var(--text-primary);
  line-height: 1.15;
}

h1, h2 {
  font-family: var(--font-display);
  font-weight: 400;
}

h3, h4 {
  font-family: var(--font-body);
  font-weight: 600;
}

h1 {
  font-size: clamp(38px, 5vw, 60px);
}

h1 em, h2 em {
  font-style: italic;
  color: var(--orange);
}

h2 {
  font-size: clamp(28px, 3.5vw, 44px);
}

h3 {
  font-size: 18px;
}

p {
  margin-bottom: 0;
}

.section-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--orange);
  border-radius: 1px;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 56px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* === BUTTONS === */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  background: var(--orange);
  padding: 14px 28px;
  border-radius: 8px;
  border: none;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
}

.btn-primary:hover {
  background: var(--orange-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(247, 147, 35, 0.3), 0 2px 8px rgba(247, 147, 35, 0.15);
}

.btn-primary svg {
  transition: transform 0.25s;
}

.btn-primary:hover svg {
  transform: translateX(3px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-primary);
  background: transparent;
  padding: 14px 24px;
  border: 1px solid var(--border);
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-secondary:hover {
  color: var(--text-primary);
  border-color: #C8CDD6;
  background: var(--blue-lighter);
}

.btn-text {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-tertiary);
  text-decoration: none;
  transition: color 0.25s;
}

.btn-text:hover {
  color: var(--orange);
}

/* === ANIMATIONS === */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.anim {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.anim.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Page fade-in */
.page-fade {
  animation: pageFadeIn 0.3s ease both;
}

@keyframes pageFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* === NAVIGATION === */
.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  background: rgba(255, 255, 255, 0);
  transition: all 0.35s ease;
}

.main-nav.scrolled {
  padding: 12px 0;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.04);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo img {
  height: 44px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.25s;
  position: relative;
}

.nav-links a:hover {
  color: var(--blue);
}

.nav-links a.active {
  color: var(--blue);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--blue);
  border-radius: 1px;
}

.nav-cta {
  font-size: 13px;
  font-weight: 600;
  color: var(--white) !important;
  background: var(--orange);
  padding: 10px 22px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.nav-cta:hover {
  background: var(--orange-hover);
  color: var(--white) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(247, 147, 35, 0.25);
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1010;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 27, 45, 0.5);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100vh;
  background: var(--white);
  z-index: 1005;
  padding: 80px 32px 40px;
  transition: right 0.3s var(--ease-out);
  overflow-y: auto;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu a {
  display: block;
  font-size: 17px;
  font-weight: 500;
  color: var(--text-primary);
  padding: 14px 0;
  border-bottom: 1px solid var(--border-light);
  text-decoration: none;
}

.mobile-menu a:hover {
  color: var(--blue);
}

.mobile-menu a.active {
  color: var(--blue);
}

.mobile-menu .mobile-cta {
  display: block;
  text-align: center;
  margin-top: 24px;
  background: var(--orange);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
}

.mobile-menu .mobile-cta:hover {
  background: var(--orange-hover);
  color: var(--white);
}

/* === HERO === */
@keyframes heroGradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero {
  padding: 150px 0 100px;
  background: linear-gradient(135deg, #FFFFFF 0%, #F0F7FC 25%, #FFFFFF 50%, #FFF8F0 75%, #FFFFFF 100%);
  background-size: 400% 400%;
  animation: heroGradientShift 12s ease infinite;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  top: 20px;
  right: -80px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(22, 108, 167, 0.08) 0%, rgba(247, 147, 35, 0.03) 50%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-inner .section-label {
  animation: fadeUp 0.6s var(--ease-out) 0.1s both;
}

.hero h1 {
  margin-bottom: 24px;
  animation: fadeUp 0.7s var(--ease-out) 0.2s both;
}

.hero-sub {
  font-size: 18px;
  line-height: 1.75;
  color: var(--text-secondary);
  max-width: 600px;
  margin-bottom: 36px;
  animation: fadeUp 0.7s var(--ease-out) 0.35s both;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
  animation: fadeUp 0.7s var(--ease-out) 0.5s both;
}

.hero-tertiary {
  animation: fadeUp 0.7s var(--ease-out) 0.55s both;
  margin-bottom: 28px;
}

.trust-line {
  font-size: 13px;
  color: var(--text-tertiary);
  font-weight: 400;
  animation: fadeUp 0.7s var(--ease-out) 0.6s both;
}

.trust-line span {
  margin: 0 8px;
  opacity: 0.4;
}

/* Hero ember decorative image */
.hero-ember-bg {
  position: absolute;
  top: 50%;
  right: -2%;
  transform: translateY(-50%);
  width: 560px;
  height: 560px;
  opacity: 0.35;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 1;
  mask-image: radial-gradient(ellipse at center, black 35%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 35%, transparent 72%);
  filter: saturate(1.3) contrast(1.1);
}

/* === STATS BAR === */
.stats-bar {
  padding: 56px 0;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
}

.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 400;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

/* === TRUST BAR === */
.trust-bar {
  padding: 48px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  background: var(--blue-lighter);
}

.trust-bar p {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  text-align: center;
  margin-bottom: 20px;
}

.trust-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-logos span {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-secondary);
  opacity: 0.7;
  letter-spacing: 0.02em;
  transition: opacity 0.25s ease, color 0.25s ease;
}

.trust-logos span:hover {
  opacity: 1;
  color: var(--blue);
}

/* === CLARIFIER === */
.clarifier {
  padding: 80px 0;
  background: var(--blue-lighter);
}

.clarifier h2 {
  text-align: center;
  margin-bottom: 40px;
}

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

.clarifier-card {
  padding: 28px 24px 24px;
  border-top: 3px solid var(--blue);
  background: var(--white);
  border-radius: 0 0 10px 10px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: all 0.35s var(--ease-out);
}

.clarifier-card:hover {
  border-top-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(22, 108, 167, 0.08);
}

.clarifier-card h3 {
  font-size: 17px;
  margin-bottom: 10px;
}

.clarifier-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* === HOW IT WORKS === */
.how-it-works {
  padding: 80px 0;
  background: var(--blue-lighter);
  border-top: 1px solid var(--border-light);
}

.how-it-works h2 {
  margin-bottom: 40px;
}

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

.step-card {
  position: relative;
}

.step-num {
  font-family: var(--font-display);
  font-size: 56px;
  color: var(--blue);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 12px;
}

.step-card h3 {
  font-size: 17px;
  margin-bottom: 10px;
}

.step-card p {
  font-size: 15px;
  line-height: 1.7;
}

/* === PRICING TIERS === */
.tiers {
  padding: 80px 0;
  background: var(--white);
}

.tiers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 920px;
  margin: 0 auto;
}

.tier-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 40px 36px;
  background: var(--white);
  position: relative;
  transition: all 0.35s var(--ease-out);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.tier-card:hover {
  border-color: var(--blue);
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(22, 108, 167, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);
}

.tier-card.featured {
  border-color: var(--orange);
  border-width: 2px;
  box-shadow: 0 8px 32px rgba(247, 147, 35, 0.1), 0 2px 8px rgba(0, 0, 0, 0.06);
  background: linear-gradient(180deg, #FFFAF3 0%, #FFFFFF 100%);
}

.tier-card.featured:hover {
  border-color: var(--orange);
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(247, 147, 35, 0.15), 0 4px 12px rgba(0, 0, 0, 0.06);
}

.tier-badge {
  position: absolute;
  top: -12px;
  left: 36px;
  background: var(--orange);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
}

.tier-name {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.tier-price {
  font-family: var(--font-display);
  font-size: 44px;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 4px;
}

.tier-price span {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-tertiary);
  font-weight: 400;
}

.tier-meta {
  font-size: 13px;
  color: var(--text-tertiary);
  margin-bottom: 20px;
}

.tier-desc {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-light);
}

.tier-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.tier-features li {
  font-size: 14px;
  color: var(--text-secondary);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.tier-features li svg {
  width: 18px;
  height: 18px;
  color: var(--blue);
  flex-shrink: 0;
  margin-top: 2px;
}

.tier-best {
  font-size: 13px;
  color: var(--text-tertiary);
  font-style: italic;
  margin-bottom: 24px;
}

.tier-cta {
  display: block;
  text-align: center;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  padding: 13px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s var(--ease-out);
}

.tier-cta-primary {
  background: var(--orange);
  color: var(--white);
}

.tier-cta-primary:hover {
  background: var(--orange-hover);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(247, 147, 35, 0.25);
}

.tier-cta-secondary {
  border: 1px solid var(--border);
  color: var(--text-primary);
}

.tier-cta-secondary:hover {
  border-color: #C8CDD6;
  background: var(--blue-lighter);
  color: var(--text-primary);
}

/* === DIFFERENTIATORS (How We're Different) === */
.differentiators {
  padding: 80px 0;
  background: var(--off-white);
  border-top: 1px solid var(--border-light);
}

.differentiators h2 {
  margin-bottom: 40px;
}

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

.diff-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 28px;
  transition: all 0.35s var(--ease-out);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.diff-card:hover {
  border-color: var(--blue);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(22, 108, 167, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);
}

.diff-card h3 {
  font-size: 17px;
  margin-bottom: 10px;
}

.diff-card p {
  font-size: 15px;
  line-height: 1.7;
}

/* === TESTIMONIALS === */
.testimonials {
  padding: 80px 0;
  background: var(--blue-light);
  border-top: 1px solid rgba(22, 108, 167, 0.08);
}

.testimonials h2 {
  margin-bottom: 40px;
}

.testimonial-carousel {
  position: relative;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s var(--ease-out);
}

.testimonial-card {
  background: var(--white);
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
  flex: 0 0 calc(33.333% - 16px);
  min-width: 0;
  transition: all 0.35s var(--ease-out);
}

.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.testimonial-card.featured-testimonial {
  border-left: 3px solid var(--orange);
}

.testimonial-card blockquote {
  font-size: 15px;
  font-style: italic;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.testimonial-author {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

.testimonial-role {
  font-size: 13px;
  color: var(--text-tertiary);
  font-weight: 400;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  color: var(--text-secondary);
}

.carousel-btn:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--blue-lighter);
}

.carousel-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.carousel-dots {
  display: flex;
  gap: 8px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  padding: 0;
}

.carousel-dot.active {
  background: var(--blue);
  width: 24px;
  border-radius: 4px;
}

/* === FINAL CTA === */
.final-cta {
  padding: 90px 0;
  text-align: center;
  position: relative;
  background: var(--white);
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(247, 147, 35, 0.06) 0%, rgba(22, 108, 167, 0.04) 40%, transparent 70%);
  pointer-events: none;
}

.final-cta::after {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.final-cta .container {
  position: relative;
  z-index: 2;
}

.final-cta h2 {
  font-size: clamp(32px, 4vw, 50px);
  margin-bottom: 16px;
}

.final-cta > .container > p {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 540px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
}

.cta-trust {
  font-size: 13px;
  color: var(--text-tertiary);
}

.cta-trust span {
  margin: 0 8px;
  opacity: 0.4;
}

/* === FOOTER === */
.site-footer {
  padding: 80px 0 40px;
  background: linear-gradient(180deg, #3D5A80 0%, #1B2D45 40%, #0F1B2D 100%);
  color: rgba(255, 255, 255, 0.6);
  position: relative;
  overflow: hidden;
}

/* Watermark text — fills entire frosted card as background */
.footer-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(100px, 15vw, 220px);
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
  line-height: 1;
  letter-spacing: -4px;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.05) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.site-footer .container {
  position: relative;
  z-index: 1;
}

/* Frosted glass content area */
.footer-frosted {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 48px 48px 20px;
  margin-bottom: 0;
  position: relative;
  overflow: hidden;
}

.footer-logo-text {
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.5px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.footer-logo-text span {
  color: var(--orange);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  position: relative;
  z-index: 1;
}

.footer-logo-img {
  max-width: 180px;
  height: auto;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.footer-brand .footer-tagline {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  max-width: 280px;
}

.footer-links-col h4 {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
}

.footer-links-col h4::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  display: inline-block;
  margin-right: 8px;
  flex-shrink: 0;
}

.footer-links-col a {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  padding: 6px 0;
  transition: color 0.25s;
}

.footer-links-col a:hover {
  color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
  padding-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.25);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.25);
  text-decoration: none;
  transition: color 0.25s;
}

.footer-bottom-links a:hover {
  color: rgba(255, 255, 255, 0.6);
}

/* ====================================
   PAGE-SPECIFIC: SERVICES
   ==================================== */

/* Page Header */
.page-header {
  padding: 140px 0 60px;
  background: var(--blue-lighter);
  text-align: center;
}

.page-header h1 {
  margin-bottom: 16px;
}

.page-header p {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Service Philosophy */
.service-philosophy {
  padding: 80px 0;
  background: var(--white);
}

.service-philosophy h2 {
  margin-bottom: 20px;
}

.service-philosophy .philosophy-intro {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 28px;
  line-height: 1.7;
}

.philosophy-list {
  max-width: 800px;
  margin-bottom: 20px;
}

.philosophy-list li {
  font-size: 15px;
  color: var(--text-secondary);
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  line-height: 1.6;
}

.philosophy-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  opacity: 0.4;
}

.philosophy-note {
  font-size: 14px;
  color: var(--text-tertiary);
  font-style: italic;
  max-width: 800px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
}

/* Deliverables Table */
.deliverables-table {
  padding: 80px 0;
  background: var(--blue-lighter);
}

.deliverables-table table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.deliverables-table th,
.deliverables-table td {
  padding: 16px 20px;
  text-align: left;
  font-size: 14px;
  border-bottom: 1px solid var(--border-light);
}

.deliverables-table th {
  background: var(--blue);
  color: var(--white);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.deliverables-table tr:nth-child(even) td {
  background: var(--blue-lighter);
}

.deliverables-table td:first-child {
  font-weight: 600;
  color: var(--text-primary);
}

/* Tier Detail */
.tier-detail {
  padding: 80px 0;
}

.tier-detail:nth-child(odd) {
  background: var(--white);
}

.tier-detail:nth-child(even) {
  background: var(--off-white);
}

.tier-detail-header {
  margin-bottom: 36px;
}

.tier-detail-header h2 {
  margin-bottom: 8px;
}

.tier-detail-price {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--blue);
  margin-bottom: 4px;
}

.tier-detail-meta {
  font-size: 14px;
  color: var(--text-tertiary);
}

.tier-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 36px;
}

.tier-detail-block h3 {
  font-size: 16px;
  color: var(--blue);
  margin-bottom: 12px;
}

.tier-detail-block ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tier-detail-block li {
  font-size: 14px;
  color: var(--text-secondary);
  padding-left: 20px;
  position: relative;
  line-height: 1.6;
}

.tier-detail-block li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  opacity: 0.5;
}

.tier-detail .best-for h3 {
  font-size: 15px;
  color: var(--text-primary);
  margin-bottom: 8px;
}

/* Specialized Approaches */
.specialized {
  padding: 80px 0;
  background: var(--blue-lighter);
}

.specialized-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 32px;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.specialized-card:hover {
  border-color: var(--blue);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.specialized-card h3 {
  font-size: 18px;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.specialized-card > p {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.6;
}

.specialized-card ul {
  margin-bottom: 12px;
}

.specialized-card li {
  font-size: 14px;
  color: var(--text-secondary);
  padding: 4px 0 4px 20px;
  position: relative;
  line-height: 1.6;
}

.specialized-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  opacity: 0.4;
}

.specialized-card .use-case {
  font-size: 14px;
  font-style: italic;
  color: var(--text-tertiary);
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border-light);
}

/* Add-ons */
.addons {
  padding: 80px 0;
  background: var(--off-white);
}

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

.addon-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 28px;
  transition: all 0.3s ease;
}

.addon-card:hover {
  border-color: var(--blue);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
}

.addon-card h3 {
  font-size: 17px;
  margin-bottom: 4px;
}

.addon-price {
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 12px;
}

.addon-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Process Overview */
.process-overview {
  padding: 80px 0;
  background: var(--white);
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 800px;
}

.process-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.process-step-num {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-step-content h3 {
  font-size: 17px;
  margin-bottom: 6px;
}

.process-step-content p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.process-timeline {
  font-size: 14px;
  color: var(--text-tertiary);
  font-style: italic;
  margin-top: 24px;
  padding-left: 72px;
}

/* Pricing Calculator */
.pricing-calculator {
  padding: 80px 0;
  background: var(--blue-lighter);
}

.calculator-card {
  background: var(--white);
  border-radius: 16px;
  padding: 48px;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.calc-field {
  margin-bottom: 28px;
}

.calc-field label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.calc-slider {
  width: 100%;
  -webkit-appearance: none;
  height: 6px;
  border-radius: 3px;
  background: var(--border-light);
  outline: none;
  margin-bottom: 8px;
}

.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--blue);
  cursor: pointer;
  border: 3px solid var(--white);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.calc-slider::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--blue);
  cursor: pointer;
  border: 3px solid var(--white);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.calc-slider-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--blue);
  text-align: right;
}

.calc-tier-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.calc-tier-option {
  padding: 14px 16px;
  border: 2px solid var(--border-light);
  border-radius: 10px;
  cursor: pointer;
  text-align: center;
  transition: all 0.25s ease;
  font-size: 14px;
  color: var(--text-secondary);
}

.calc-tier-option:hover {
  border-color: var(--border);
}

.calc-tier-option.active {
  border-color: var(--blue);
  background: var(--blue-lighter);
  color: var(--blue);
  font-weight: 600;
}

.calc-tier-option .tier-option-name {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
  display: block;
}

.calc-tier-option.active .tier-option-name {
  color: var(--blue);
}

.calc-checkbox {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 14px;
  color: var(--text-secondary);
}

.calc-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--blue);
  cursor: pointer;
}

.calc-result {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 2px solid var(--border-light);
  text-align: center;
}

.calc-total-label {
  font-size: 14px;
  color: var(--text-tertiary);
  margin-bottom: 4px;
}

.calc-total {
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--text-primary);
  line-height: 1.1;
  margin-bottom: 8px;
}

.calc-turnaround {
  font-size: 14px;
  color: var(--text-tertiary);
  margin-bottom: 24px;
}

/* Comparison Table */
.comparison-section {
  padding: 80px 0;
  background: var(--off-white);
}

.comparison-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  min-width: 800px;
}

.comparison-table th,
.comparison-table td {
  padding: 14px 16px;
  text-align: left;
  font-size: 13px;
  border-bottom: 1px solid var(--border-light);
}

.comparison-table th {
  background: var(--blue);
  color: var(--white);
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.comparison-table td:first-child {
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
}

.comparison-table tr:nth-child(even) td {
  background: var(--blue-lighter);
}

.comparison-table .highlight-col {
  background: rgba(22, 108, 167, 0.04);
}

.comparison-hidden {
  display: none;
}

.comparison-hidden.visible {
  display: table-row;
}

.comparison-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}

.comparison-toggle-btn {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
  background: none;
  border: 1px solid var(--blue);
  padding: 10px 24px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.comparison-toggle-btn:hover {
  background: var(--blue);
  color: var(--white);
}

/* Guarantees */
.guarantees {
  padding: 80px 0;
  background: var(--blue-lighter);
}

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

.guarantee-card {
  background: var(--white);
  border-radius: 12px;
  padding: 28px;
  border-top: 3px solid var(--blue);
}

.guarantee-card h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.guarantee-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Contextual Testimonials (inline, not carousel) */
.contextual-testimonials {
  padding: 80px 0;
  background: var(--white);
}

.contextual-testimonials .testimonial-inline {
  background: var(--blue-lighter);
  border-radius: 12px;
  padding: 32px;
  margin-bottom: 24px;
  border-left: 3px solid var(--blue);
}

.contextual-testimonials .testimonial-inline:last-child {
  margin-bottom: 0;
}

.contextual-testimonials .testimonial-inline blockquote {
  font-size: 15px;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.contextual-testimonials .testimonial-inline .testimonial-author {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

.contextual-testimonials .testimonial-inline .testimonial-role {
  font-size: 13px;
  color: var(--text-tertiary);
}

/* ====================================
   PAGE-SPECIFIC: PROJECT TYPES
   ==================================== */

.project-categories {
  padding: 80px 0;
  background: var(--white);
}

.project-category {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 36px;
  margin-bottom: 24px;
  transition: all 0.3s ease;
  border-left: 4px solid var(--blue);
}

.project-category:nth-child(2) {
  border-left-color: var(--blue-dark);
}

.project-category:nth-child(3) {
  border-left-color: var(--orange);
}

.project-category:nth-child(4) {
  border-left-color: var(--orange-hover);
}

.project-category:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  transform: translateY(-2px);
}

.project-category h3 {
  font-size: 20px;
  margin-bottom: 16px;
}

.project-category li {
  font-size: 15px;
  color: var(--text-secondary);
  padding: 6px 0 6px 20px;
  position: relative;
  line-height: 1.6;
}

.project-category li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  opacity: 0.4;
}

.project-category-cta {
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
  margin-top: 16px;
  display: inline-block;
}

.project-close-line {
  font-size: 17px;
  color: var(--text-secondary);
  text-align: center;
  font-style: italic;
  padding: 20px 0 0;
}

/* ====================================
   PAGE-SPECIFIC: ABOUT
   ==================================== */

.about-section {
  padding: 80px 0;
}

.about-section:nth-child(odd) {
  background: var(--white);
}

.about-section:nth-child(even) {
  background: var(--blue-lighter);
}

.about-content {
  max-width: 800px;
}

.about-content h2 {
  margin-bottom: 24px;
}

.about-content p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.about-content p:last-child {
  margin-bottom: 0;
}

.frustration-quotes {
  margin: 24px 0;
  padding-left: 24px;
  border-left: 3px solid var(--orange);
}

.frustration-quotes p {
  font-style: italic;
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.frustration-quotes p:last-child {
  margin-bottom: 0;
}

/* Fit / Not-Fit columns */
.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 32px;
}

.fit-col {
  background: var(--white);
  border-radius: 12px;
  padding: 32px;
}

.fit-col.great-fit {
  border-top: 3px solid var(--blue);
}

.fit-col.not-fit {
  border-top: 3px solid var(--text-tertiary);
}

.fit-col h3 {
  font-size: 17px;
  margin-bottom: 16px;
}

.fit-col li {
  font-size: 14px;
  color: var(--text-secondary);
  padding: 6px 0 6px 20px;
  position: relative;
  line-height: 1.6;
}

.fit-col li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.fit-col.great-fit li::before {
  background: var(--blue);
}

.fit-col.not-fit li::before {
  background: var(--text-tertiary);
}

/* Industries */
.industries-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0;
}

.industries-list li {
  background: var(--white);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 14px;
  color: var(--text-secondary);
  border: 1px solid var(--border-light);
}

/* Founder */
.founder-section {
  display: flex;
  gap: 48px;
  align-items: flex-start;
}

.founder-photo {
  flex-shrink: 0;
  width: 240px;
  height: 240px;
  border-radius: 12px;
  background: var(--blue-lighter);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-tertiary);
  font-size: 14px;
  border: 3px solid var(--border-light);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-info h2 {
  margin-bottom: 4px;
}

.founder-title {
  font-size: 15px;
  color: var(--blue);
  font-weight: 500;
  margin-bottom: 20px;
}

.founder-info p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

/* ====================================
   PAGE-SPECIFIC: CONTACT
   ==================================== */

.contact-options {
  padding: 80px 0;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-option {
  background: var(--blue-lighter);
  border-radius: 14px;
  padding: 36px;
}

.contact-option h2 {
  font-size: clamp(22px, 2.5vw, 28px);
  margin-bottom: 8px;
}

.contact-option .option-subtitle {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.contact-option h3 {
  font-size: 14px;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.contact-option ul li {
  font-size: 14px;
  color: var(--text-secondary);
  padding: 4px 0 4px 16px;
  position: relative;
}

.contact-option ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue);
  opacity: 0.4;
}

.calendly-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  background: var(--blue);
  padding: 14px 28px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.calendly-link:hover {
  background: var(--blue-dark);
  color: var(--white);
  transform: translateY(-1px);
}

/* Form Success Message */
.form-success-message {
  text-align: center;
  padding: 48px 24px;
  animation: fadeInUp 0.5s ease;
}

.form-success-icon {
  margin-bottom: 16px;
}

.form-success-message h3 {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--blue);
  margin-bottom: 8px;
}

.form-success-message p {
  font-size: 16px;
  color: var(--text-secondary);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Contact Form */
.contact-form {
  margin-top: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.form-group label .required {
  color: var(--orange);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-primary);
  background: var(--white);
  transition: border-color 0.25s;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
  border-color: var(--orange);
  color: var(--blue);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
  color: var(--blue);
  box-shadow: 0 0 0 3px rgba(247, 147, 35, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
  cursor: pointer;
}

.form-checkbox input {
  margin-top: 3px;
  accent-color: var(--blue);
}

.form-submit {
  margin-top: 8px;
}

/* What Happens Next */
.what-happens-next {
  padding: 80px 0;
  background: var(--blue-lighter);
}

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

.timeline-block {
  background: var(--white);
  border-radius: 12px;
  padding: 28px;
  border-top: 3px solid var(--blue);
}

.timeline-block h3 {
  font-size: 16px;
  margin-bottom: 12px;
}

.timeline-block li {
  font-size: 14px;
  color: var(--text-secondary);
  padding: 4px 0 4px 16px;
  position: relative;
  line-height: 1.5;
}

.timeline-block li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue);
  opacity: 0.4;
}

.timeline-block p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* FAQ Accordion */
.faq-section {
  padding: 80px 0;
  background: var(--white);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-light);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color 0.25s;
}

.faq-question:hover {
  color: var(--blue);
}

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.open .faq-answer {
  max-height: 500px;
}

.faq-answer-inner {
  padding-bottom: 20px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Alternative Contact */
.alt-contact {
  padding: 60px 0;
  background: var(--blue-lighter);
  text-align: center;
}

.alt-contact h3 {
  font-size: 18px;
  margin-bottom: 16px;
}

.alt-contact p,
.alt-contact a {
  font-size: 15px;
  color: var(--text-secondary);
}

.alt-contact a {
  color: var(--blue);
  font-weight: 500;
}

.alt-contact address {
  font-style: normal;
  font-size: 14px;
  color: var(--text-tertiary);
  margin-top: 16px;
  line-height: 1.6;
}

/* ====================================
   PAGE-SPECIFIC: RESOURCES
   ==================================== */

.resources-coming-soon {
  padding: 80px 0;
  background: var(--white);
  text-align: center;
}

.resources-coming-soon .coming-soon-text {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.email-signup {
  max-width: 400px;
  margin: 0 auto 60px;
  display: flex;
  gap: 12px;
}

.email-signup input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-primary);
}

.email-signup input:hover {
  border-color: var(--orange);
  color: var(--blue);
}

.email-signup input:focus {
  outline: none;
  border-color: var(--orange);
  color: var(--blue);
  box-shadow: 0 0 0 3px rgba(247, 147, 35, 0.1);
}

.email-signup button {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  background: var(--blue);
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.email-signup button:hover {
  background: var(--blue-dark);
}

.placeholder-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.placeholder-card {
  background: var(--blue-lighter);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 32px 24px;
  opacity: 0.65;
  text-align: left;
}

.placeholder-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-tertiary);
  background: var(--white);
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 16px;
}

.placeholder-card h3 {
  font-size: 16px;
  color: var(--text-primary);
  line-height: 1.4;
}

/* === LEGAL PAGES (Privacy Policy, Terms of Service) === */

.legal-content {
  padding: 60px 0 80px;
  background: var(--white);
}

.legal-body {
  max-width: 780px;
  margin: 0 auto;
}

.legal-body h2 {
  font-size: clamp(22px, 2.5vw, 28px);
  margin-top: 40px;
  margin-bottom: 16px;
  padding-top: 32px;
  border-top: 1px solid var(--border-light);
}

.legal-body h2:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.legal-body h3 {
  font-size: 17px;
  margin-top: 24px;
  margin-bottom: 12px;
}

.legal-body p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.legal-body ul {
  margin-bottom: 16px;
  padding-left: 0;
}

.legal-body li {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
  padding: 5px 0 5px 22px;
  position: relative;
}

.legal-body li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 13px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  opacity: 0.4;
}

.legal-body a {
  color: var(--blue);
  font-weight: 500;
}

.legal-body a:hover {
  color: var(--blue-dark);
}

.legal-body strong {
  color: var(--text-primary);
}

/* === BLOG PAGES === */

.blog-meta {
  font-size: 15px;
  color: var(--text-secondary);
  font-weight: 400;
  margin-top: 8px;
}

.blog-content {
  padding: 60px 0 80px;
  background: var(--white);
}

.blog-body {
  max-width: 740px;
  margin: 0 auto;
}

.blog-body .blog-subtitle {
  font-size: 20px;
  color: var(--text-primary);
  margin-bottom: 28px;
  line-height: 1.5;
}

.blog-body h2 {
  font-size: clamp(24px, 3vw, 32px);
  margin-top: 48px;
  margin-bottom: 20px;
  padding-top: 36px;
  border-top: 1px solid var(--border-light);
}

.blog-body h2:first-of-type {
  margin-top: 32px;
  padding-top: 28px;
}

.blog-body h3 {
  font-size: 19px;
  margin-top: 32px;
  margin-bottom: 14px;
  color: var(--text-primary);
}

.blog-body p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.blog-body ul,
.blog-body ol {
  margin-bottom: 20px;
  padding-left: 0;
}

.blog-body li {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-secondary);
  padding: 5px 0 5px 24px;
  position: relative;
}

.blog-body li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  opacity: 0.5;
}

.blog-body a {
  color: var(--blue);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: rgba(22, 108, 167, 0.3);
  text-underline-offset: 2px;
  transition: all 0.25s ease;
}

.blog-body a:hover {
  color: var(--blue-dark);
  text-decoration-color: var(--blue-dark);
}

.blog-body strong {
  color: var(--text-primary);
  font-weight: 600;
}

.blog-body blockquote {
  border-left: 3px solid var(--orange);
  padding: 16px 24px;
  margin: 24px 0;
  background: var(--orange-light);
  border-radius: 0 8px 8px 0;
}

.blog-body blockquote p {
  font-size: 16px;
  font-style: italic;
  color: var(--text-primary);
  margin-bottom: 0;
}

/* ====================================
   RESPONSIVE BREAKPOINTS
   ==================================== */

/* Tablet (768px) */
@media (max-width: 1024px) {
  .container {
    padding: 0 32px;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-menu,
  .mobile-menu-overlay {
    display: block;
  }

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

  .footer-frosted {
    padding: 36px;
  }


  .tiers-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .diff-grid {
    gap: 20px;
  }

  .testimonial-card {
    flex: 0 0 calc(50% - 12px);
  }

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

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

  .tier-detail-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .founder-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .founder-photo {
    margin-bottom: 24px;
  }
}

/* Mobile (480px and below) */
@media (max-width: 768px) {
  .section-padding {
    padding: 60px 0;
  }

  .section-header {
    margin-bottom: 36px;
  }

  .hero {
    padding: 72px 0 40px;
  }

  .hero h1 {
    font-size: clamp(32px, 7vw, 42px);
  }

  .hero-sub {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-ember-bg {
    display: none;
  }

  .stats-grid {
    flex-direction: column;
    gap: 32px;
  }

  .trust-logos {
    gap: 20px;
  }

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

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

  .cta-actions {
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-frosted {
    padding: 28px;
  }


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

  .page-header {
    padding: 72px 0 36px;
  }

  .page-header h1 {
    font-size: clamp(28px, 6vw, 38px);
  }

  .blog-body {
    max-width: 100%;
  }

  .blog-body h2 {
    margin-top: 36px;
    padding-top: 28px;
  }

  .blog-body h3 {
    margin-top: 24px;
  }

  .blog-meta {
    font-size: 14px;
  }

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

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

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

  .email-signup {
    flex-direction: column;
  }

  .calculator-card {
    padding: 28px 20px;
  }

  .calc-tier-options {
    grid-template-columns: 1fr;
  }

  /* Testimonial stacking on mobile */
  .testimonial-track {
    flex-direction: column;
  }

  .testimonial-card {
    flex: none;
    width: 100%;
  }

  .carousel-controls {
    display: none;
  }
}

/* Small mobile (375px) */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero {
    padding: 110px 0 48px;
  }

  h2 {
    font-size: clamp(24px, 6vw, 32px);
  }

  .tier-card {
    padding: 28px 20px;
  }

  .contact-option {
    padding: 24px;
  }

  .specialized-card {
    padding: 24px;
  }

  .project-category {
    padding: 24px;
  }
}

/* Ensure SVG check icons color */
.check-icon {
  width: 18px;
  height: 18px;
  color: var(--blue);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ====================================
   ADDITIONAL PAGE-SPECIFIC STYLES
   ==================================== */

/* --- SERVICES PAGE --- */

/* Philosophy content */
.philosophy-content {
  max-width: 800px;
}

.philosophy-content p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.philosophy-content ul {
  margin-bottom: 20px;
  padding-left: 0;
}

.philosophy-content li {
  font-size: 15px;
  color: var(--text-secondary);
  padding: 6px 0 6px 24px;
  position: relative;
  line-height: 1.6;
}

.philosophy-content li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  opacity: 0.4;
}

.naming-note {
  font-size: 14px;
  color: var(--text-tertiary);
  font-style: italic;
  max-width: 800px;
  margin-top: 8px;
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
}

/* Deliverables Section */
.deliverables-section {
  padding: 80px 0;
}

.deliverables-section h2 {
  margin-bottom: 32px;
}

.deliverables-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.deliverables-table-wrap table.deliverables-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  min-width: 600px;
}

table.deliverables-table th,
table.deliverables-table td {
  padding: 16px 20px;
  text-align: left;
  font-size: 14px;
  border-bottom: 1px solid var(--border-light);
}

table.deliverables-table th {
  background: var(--blue);
  color: var(--white);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

table.deliverables-table tr:nth-child(even) td {
  background: var(--blue-lighter);
}

table.deliverables-table td:first-child {
  font-weight: 600;
  color: var(--text-primary);
}

/* Tier Detail Cards */
.tier-detail {
  padding: 80px 0;
}

.tier-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.tier-detail-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 40px 36px;
  position: relative;
}

.tier-detail-card.featured {
  border-color: var(--border);
  border-width: 1px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.tier-detail-card .tier-name {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.tier-detail-card .tier-price {
  font-family: var(--font-display);
  font-size: 44px;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 4px;
}

.tier-detail-card .tier-price span {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-tertiary);
  font-weight: 400;
}

.tier-detail-card .tier-meta {
  font-size: 13px;
  color: var(--text-tertiary);
  margin-bottom: 24px;
}

.tier-detail-card .tier-badge {
  position: absolute;
  top: -12px;
  left: 36px;
  background: var(--orange);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
}

.tier-detail-card > p {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-weight: 500;
}

.tier-detail-card h3 {
  font-size: 16px;
  color: var(--blue);
  margin-top: 24px;
  margin-bottom: 12px;
}

.tier-detail-card ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 8px;
}

.tier-detail-card li {
  font-size: 14px;
  color: var(--text-secondary);
  padding-left: 20px;
  position: relative;
  line-height: 1.6;
}

.tier-detail-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  opacity: 0.5;
}

/* Specialized Section */
.specialized-section {
  padding: 80px 0;
}

.specialized-section h2 {
  margin-bottom: 40px;
}

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

.specialized-card .best-for {
  font-size: 14px;
  font-style: italic;
  color: var(--text-tertiary);
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border-light);
}

/* Add-ons Section */
.addons-section {
  padding: 80px 0;
  background: var(--off-white);
}

.addons-section h2 {
  margin-bottom: 40px;
}

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

.addon-card ul {
  margin-top: 12px;
  margin-bottom: 12px;
}

.addon-card li {
  font-size: 14px;
  color: var(--text-secondary);
  padding: 4px 0 4px 20px;
  position: relative;
  line-height: 1.6;
}

.addon-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  opacity: 0.4;
}

.addon-process {
  font-size: 13px;
  color: var(--text-tertiary);
  font-style: italic;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border-light);
}

/* Process Section */
.process-section {
  padding: 80px 0;
}

.process-section h2 {
  margin-bottom: 40px;
}

.process-section .process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  max-width: none;
}

.process-section .process-step {
  display: block;
  text-align: center;
}

.process-section .process-step .step-num {
  font-family: var(--font-display);
  font-size: 40px;
  color: var(--blue);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 12px;
}

.process-section .process-step h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.process-section .process-step p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.process-timeline {
  font-size: 14px;
  color: var(--text-tertiary);
  font-style: italic;
  margin-top: 32px;
  text-align: center;
}

/* Calculator Box */
.calculator-box {
  background: var(--white);
  border-radius: 16px;
  padding: 48px;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.calc-row {
  margin-bottom: 28px;
}

.calc-row label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.calc-slider-wrap {
  position: relative;
}

.calc-slider-wrap input[type="range"] {
  width: 100%;
  -webkit-appearance: none;
  height: 6px;
  border-radius: 3px;
  background: var(--border-light);
  outline: none;
  margin-bottom: 8px;
}

.calc-slider-wrap input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--blue);
  cursor: pointer;
  border: 3px solid var(--white);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.calc-slider-wrap input[type="range"]::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--blue);
  cursor: pointer;
  border: 3px solid var(--white);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.calc-checkbox-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-secondary);
  cursor: pointer;
}

.calc-checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--blue);
  cursor: pointer;
}

/* Guarantees Section */
.guarantees-section {
  padding: 80px 0;
  background: var(--blue-lighter);
}

.guarantees-section h2 {
  margin-bottom: 40px;
}

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

.guarantees-grid .guarantee-card:nth-child(4),
.guarantees-grid .guarantee-card:nth-child(5) {
  grid-column: span 1;
}

/* Inline testimonials (not carousel) */
.testimonials-inline {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.testimonials-inline .testimonial-card {
  flex: none;
  width: 100%;
  border-left: 3px solid var(--blue);
}

/* --- PROJECT TYPES PAGE --- */

.project-categories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.project-category-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.project-category-badge.simple {
  background: rgba(22, 108, 167, 0.08);
  color: var(--blue);
}

.project-category-badge.standard {
  background: rgba(15, 79, 125, 0.08);
  color: var(--blue-dark);
}

.project-category-badge.strategic {
  background: rgba(247, 147, 35, 0.08);
  color: var(--orange);
}

.project-category-badge.premium {
  background: rgba(229, 132, 13, 0.08);
  color: var(--orange-hover);
}

.project-closeout {
  font-size: 17px;
  color: var(--text-secondary);
  text-align: center;
  font-style: italic;
  padding: 32px 0 0;
}

/* --- ABOUT PAGE --- */

.about-section h2 {
  margin-bottom: 24px;
}

.fit-card {
  background: var(--white);
  border-radius: 12px;
  padding: 32px;
}

.fit-card.fit-yes {
  border-top: 3px solid var(--blue);
}

.fit-card.fit-no {
  border-top: 3px solid var(--text-tertiary);
}

.fit-card h3 {
  font-size: 17px;
  margin-bottom: 16px;
}

.fit-card li {
  font-size: 14px;
  color: var(--text-secondary);
  padding: 6px 0 6px 20px;
  position: relative;
  line-height: 1.6;
}

.fit-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.fit-card.fit-yes li::before {
  background: var(--blue);
}

.fit-card.fit-no li::before {
  background: var(--text-tertiary);
}

/* Industries as spans */
.industries-list span {
  display: inline-block;
  background: var(--white);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 14px;
  color: var(--text-secondary);
  border: 1px solid var(--border-light);
}

/* Founder Grid */
.founder-section {
  padding: 80px 0;
}

.founder-grid {
  display: flex;
  gap: 48px;
  align-items: flex-start;
}

.founder-placeholder {
  width: 200px;
  height: 200px;
  border-radius: 12px;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 48px;
  font-family: var(--font-display);
  flex-shrink: 0;
}

.founder-bio {
  flex: 1;
}

.founder-bio .section-label {
  margin-bottom: 8px;
}

.founder-bio h2 {
  margin-bottom: 4px;
}

.founder-bio .founder-title {
  font-size: 15px;
  color: var(--blue);
  font-weight: 500;
  margin-bottom: 20px;
}

.founder-bio p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

/* --- CONTACT PAGE --- */

.contact-option-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.contact-option-sub {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.contact-option p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.contact-option ul {
  margin-bottom: 8px;
}

/* Contact Form Section */
.contact-form-section {
  padding: 0 0 80px;
  background: var(--white);
}

.contact-form {
  max-width: 800px;
  margin: 0 auto;
  background: var(--blue-lighter);
  border-radius: 16px;
  padding: 48px;
}

.contact-form h2 {
  margin-bottom: 32px;
}

.form-row {
  display: grid;
  gap: 20px;
  margin-bottom: 0;
}

.form-row-2 {
  grid-template-columns: 1fr 1fr;
}

.form-row-3 {
  grid-template-columns: 1fr 1fr 1fr;
}

.form-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
  cursor: pointer;
  margin-bottom: 20px;
}

.form-checkbox-label input {
  margin-top: 3px;
  accent-color: var(--blue);
  width: 18px;
  height: 18px;
}

/* What Happens Next */
.next-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.next-step {
  background: var(--white);
  border-radius: 12px;
  padding: 28px;
  border-top: 3px solid var(--blue);
}

.next-step h3 {
  font-size: 16px;
  margin-bottom: 12px;
}

.next-step p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 8px;
}

.next-step li {
  font-size: 14px;
  color: var(--text-secondary);
  padding: 4px 0 4px 16px;
  position: relative;
  line-height: 1.5;
}

.next-step li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue);
  opacity: 0.4;
}

/* FAQ Accordion */
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.faq-answer p {
  padding: 0 0 12px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.faq-item {
  margin-bottom: 0;
}

.faq-question {
  padding: 16px 0;
}

/* Alternative Contact */
.alternative-contact {
  padding: 60px 0;
}

.alternative-contact h2 {
  margin-bottom: 32px;
}

.alt-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.alt-contact-item h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.alt-contact-item p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.alt-contact-item a {
  font-size: 15px;
  color: var(--blue);
  font-weight: 500;
}

/* Contact Call Section */
.contact-call-section {
  padding: 60px 0;
  background: var(--white);
}

.contact-call-card {
  max-width: 600px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 16px;
  padding: 48px 40px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--border-light);
}

.contact-call-inner h2 {
  margin-bottom: 12px;
}

.contact-call-inner p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto;
}

.contact-call-icon {
  margin-bottom: 20px;
}

.contact-form-header {
  text-align: center;
  margin-bottom: 32px;
}

.contact-form-header h2 {
  margin-bottom: 12px;
}

.contact-form-header p {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto;
}

/* --- RESOURCES PAGE --- */

.coming-soon-content {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.coming-soon-content p {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Email Signup Section */
.email-signup {
  padding: 60px 0;
}

.email-signup-box {
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
}

.email-signup-box h2 {
  margin-bottom: 20px;
}

.signup-form {
  margin: 0;
}

.signup-form-row {
  display: flex;
  gap: 12px;
}

.signup-form-row input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-primary);
  background: var(--white);
}

.signup-form-row input:hover {
  border-color: var(--orange);
  color: var(--blue);
}

.signup-form-row input:focus {
  outline: none;
  border-color: var(--orange);
  color: var(--blue);
  box-shadow: 0 0 0 3px rgba(247, 147, 35, 0.1);
}

/* Placeholder Grid Section */
.placeholder-grid-section {
  padding: 60px 0;
  background: var(--white);
}

.placeholder-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-top: 10px;
}

/* === SERVICES STICKY JUMP-TO NAV === */
.services-jump-nav {
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
  padding: 12px 0;
  position: sticky;
  top: 68px;
  z-index: 990;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.3s ease;
}

.services-jump-nav .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.services-jump-nav a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 6px;
  transition: all 0.25s ease;
}

.services-jump-nav a:hover {
  color: var(--blue);
  background: var(--blue-lighter);
}

/* === SCROLL OFFSET FOR STICKY NAV ANCHORS === */
#pricing, #process, #calculator, #comparison, #faq {
  scroll-margin-top: 130px;
}

/* === HOW IT WORKS LINK STYLING === */
.how-it-works-link {
  color: var(--orange) !important;
  font-weight: 500;
}

.how-it-works-link:hover {
  color: var(--orange-hover) !important;
}

.how-it-works-link .arrow-icon {
  display: inline-block;
  transition: transform 0.25s ease;
}

.how-it-works-link:hover .arrow-icon {
  transform: translateY(3px);
}

/* === CONTACT PAGE 5-COLUMN GRID === */
.alt-contact-grid-5 {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

/* ====================================
   ADDITIONAL RESPONSIVE FIXES
   ==================================== */

@media (max-width: 1024px) {
  .specialized-grid {
    grid-template-columns: 1fr;
  }

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

  .process-section .process-steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .tier-detail-grid {
    grid-template-columns: 1fr;
    max-width: 540px;
  }

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

  .testimonials-inline {
    grid-template-columns: 1fr;
  }

  .project-categories-grid {
    grid-template-columns: 1fr;
  }

  .founder-grid {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .alt-contact-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .form-row-3 {
    grid-template-columns: 1fr;
  }

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

  .services-jump-nav .container {
    gap: 16px;
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .process-section .process-steps {
    grid-template-columns: 1fr;
  }

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

  .form-row-2 {
    grid-template-columns: 1fr;
  }

  .signup-form-row {
    flex-direction: column;
  }

  .calculator-box {
    padding: 28px 20px;
  }

  .contact-form {
    padding: 28px 20px;
  }

  /* Mobile CTA spacing */
  .hero-actions {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .cta-actions {
    flex-direction: column;
    gap: 14px;
  }

  .cta-actions .btn-primary,
  .cta-actions .btn-secondary {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .services-jump-nav {
    top: 68px;
  }

  .services-jump-nav .container {
    gap: 8px;
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .services-jump-nav .container::-webkit-scrollbar {
    display: none;
  }

  .services-jump-nav a {
    white-space: nowrap;
    flex-shrink: 0;
  }
}
