/* =========================================
   1. CSS Custom Properties
   ========================================= */
:root {
  /* Colors */
  --navy: #08111F;
  --navy-light: #0D1A2D;
  --navy-mid: #132238;
  --navy-surface: #0F1D30;
  --cream: #F4EFE7;
  --cream-dim: rgba(244, 239, 231, 0.5);
  --white: #FAFAFA;
  --white-dim: rgba(250, 250, 250, 0.55);
  --gold: #C9A84C;
  --gold-light: #D4B965;
  --gold-dim: rgba(201, 168, 76, 0.12);
  --gold-glow: rgba(201, 168, 76, 0.2);

  /* Typography */
  --font-display: 'Clash Display', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing Scale */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;
  --space-section: clamp(5rem, 10vw, 9rem);

  /* Border Radius */
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* Max Container Width */
  --wrap-max: 1240px;
  --wrap-narrow: 900px;
  --wrap-wide: 1400px;

  /* Z-Index Scale */
  --z-base: 1;
  --z-sticky: 100;
  --z-nav: 1000;
  --z-mobile-menu: 1100;
  --z-overlay: 2000;
  --z-fab: 900;

  /* Transitions */
  --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 0.3s var(--ease-smooth);
  --transition-normal: 0.5s var(--ease-smooth);
  --transition-slow: 0.7s var(--ease-smooth);
}

/* =========================================
   2. Reset & Base
   ========================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px; /* Accounts for fixed nav */
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

body {
  background-color: var(--navy);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background-color: var(--gold);
  color: var(--navy);
}

img, picture, svg, video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button, input, textarea, select {
  font: inherit;
}

/* =========================================
   3. Typography Scale
   ========================================= */
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
}

.hero-accent {
  color: var(--gold);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: var(--space-md);
  letter-spacing: -0.01em;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: var(--space-sm);
  font-weight: 600;
}

.section-tag::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 2px;
  background-color: var(--gold);
  margin-right: 12px;
}

.section-desc {
  color: var(--white-dim);
  max-width: 600px;
  margin-bottom: var(--space-xl);
  font-size: 1.1rem;
}

/* =========================================
   4. Layout Classes
   ========================================= */
.wrap {
  width: 100%;
  max-width: var(--wrap-max);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
}

.wrap--narrow {
  max-width: var(--wrap-narrow);
}

section {
  padding: var(--space-section) 0;
  position: relative;
}

/* =========================================
   5. Scroll Progress Bar
   ========================================= */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: rgba(255, 255, 255, 0.05);
  z-index: calc(var(--z-nav) + 1);
  pointer-events: none;
}

.scroll-progress-bar {
  height: 100%;
  width: 0%;
  background-color: var(--gold);
  will-change: width;
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  padding: 1rem 2rem;
  z-index: 9999;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: top 0.3s ease;
}

.skip-link:focus {
  top: 20px;
}

/* =========================================
   6. Navigation
   ========================================= */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: var(--z-nav);
  transition: transform var(--transition-normal), background-color var(--transition-normal), border-color var(--transition-normal);
  border-bottom: 1px solid transparent;
}

#site-header.nav-hidden {
  transform: translateY(-100%);
}

#site-header.scrolled {
  background-color: rgba(8, 17, 31, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: rgba(250, 250, 250, 0.05);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--wrap-max);
  margin: 0 auto;
  padding: 1rem clamp(1.5rem, 4vw, 3rem);
}

.nav-logo-img {
  height: 32px;
  width: auto;
  display: block;
}

.nav-links {
  display: none; /* hidden on mobile */
  align-items: center;
  gap: 2.5rem;
}

.nav-link {
  color: var(--cream);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
  position: relative;
  transition: color var(--transition-fast);
}

.nav-link:hover, .nav-link.is-active {
  color: var(--gold);
}

.nav-cta {
  display: none; /* hidden on mobile */
  color: var(--gold);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  padding: 0.6rem 1.5rem;
  border: 1px solid var(--gold);
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
}

.nav-cta:hover {
  background-color: var(--gold);
  color: var(--navy);
}

/* Mobile Toggle */
.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  padding: 12px 7px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: calc(var(--z-mobile-menu) + 1);
  box-sizing: content-box;
}

.menu-bar {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--white);
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

/* Mobile menu open state */
body.menu-open {
  overflow: hidden;
}

body.menu-open .menu-bar:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

body.menu-open .menu-bar:nth-child(2) {
  opacity: 0;
}

body.menu-open .menu-bar:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100svh;
  background-color: var(--navy);
  z-index: var(--z-mobile-menu);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-normal), visibility var(--transition-normal);
}

body.menu-open .mobile-menu {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.mobile-link {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--white);
  transition: color var(--transition-fast);
}

.mobile-link:hover {
  color: var(--gold);
}

.mobile-link.cta {
  color: var(--gold);
  margin-top: 1rem;
}

/* =========================================
   7. Hero Section
   ========================================= */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 80px; /* offset nav */
  padding-bottom: calc(var(--space-xl) + 90px); /* keep content clear of the absolute ticker */
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.hero-spike-svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1400px;
  max-width: none;
  opacity: 0.6;
}

#heroSpikeLine {
  stroke-dasharray: var(--line-length, 2600);
  stroke-dashoffset: var(--line-length, 2600);
}

#heroSpikeLine.is-drawn {
  transition: stroke-dashoffset 2.4s cubic-bezier(0.65, 0, 0.35, 1);
  stroke-dashoffset: 0;
}

@media (prefers-reduced-motion: reduce) {
  #heroSpikeLine {
    stroke-dashoffset: 0;
  }
}

.hero-grain {
  position: absolute;
  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='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: var(--space-lg);
}

.eyebrow-line {
  width: 40px;
  height: 1px;
  background-color: var(--gold);
  margin-right: 12px;
}

.eyebrow-text {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--white);
  font-weight: 500;
}

.hero-desc {
  max-width: 560px;
  color: var(--white-dim);
  font-size: 1.1rem;
  margin-bottom: var(--space-xl);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 3rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  border-radius: var(--radius-lg);
  font-weight: 600;
  transition: all var(--transition-fast);
  cursor: pointer;
  text-align: center;
}

.btn-primary {
  background-color: var(--gold);
  color: var(--navy);
  border: 1px solid var(--gold);
  box-shadow: 0 4px 14px var(--gold-dim);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--gold-glow);
  background-color: var(--gold-light);
  border-color: var(--gold-light);
}

.btn-ghost {
  background-color: transparent;
  color: var(--cream);
  border: 1px solid var(--cream-dim);
}

.btn-ghost:hover {
  border-color: var(--cream);
  background-color: rgba(244, 239, 231, 0.05);
  transform: translateY(-2px);
}

/* Ticker */
.ticker {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.75rem 0;
  background-color: rgba(13, 26, 45, 0.5);
  border-top: 1px solid rgba(250, 250, 250, 0.05);
  overflow: hidden;
  white-space: nowrap;
  display: flex;
  z-index: 2;
}

.ticker-track {
  display: inline-flex;
  animation: ticker 30s infinite linear;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
  padding: 0 2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ticker-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: var(--gold);
  border-radius: 50%;
  margin-right: 12px;
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =========================================
   8. About Section
   ========================================= */
.about {
  background-color: var(--navy);
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.about-lead {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: var(--space-md);
  font-weight: 500;
}

.about-body {
  color: var(--white-dim);
  margin-bottom: var(--space-md);
}

.about-aside {
  margin-top: var(--space-lg);
  padding-left: 1.5rem;
  border-left: 2px solid var(--gold);
  color: var(--cream-dim);
  font-style: italic;
  position: relative;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.aside-icon {
  color: var(--gold);
  font-size: 1.2rem;
  font-style: normal;
  line-height: 1;
  margin-top: 4px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  align-content: center;
}

.stat-card {
  background-color: var(--navy-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border-top: 2px solid var(--gold);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-normal);
}

.stat-card:hover {
  transform: translateY(-4px);
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}

.stat-suffix {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--gold);
  line-height: 1;
  margin-left: 2px;
  vertical-align: top;
}

.stat-label {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--cream-dim);
  font-weight: 500;
}

/* =========================================
   9. Services Section
   ========================================= */
.services {
  background-color: var(--navy-surface);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: var(--space-xl);
}

.service-item {
  background-color: var(--navy-light);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 3vw, 3rem);
  position: relative;
  border: 1px solid rgba(250, 250, 250, 0.03);
  transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.service-item:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 168, 76, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.service-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--space-md);
}

.service-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.15;
  line-height: 1;
}

.service-icon {
  width: 48px;
  height: 48px;
  color: var(--cream);
}

.service-icon svg {
  width: 100%;
  height: 100%;
}

.service-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
  color: var(--white);
}

.service-desc {
  color: var(--white-dim);
  margin-bottom: var(--space-lg);
}

.service-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--gold);
  transition: width var(--transition-normal);
  border-bottom-left-radius: var(--radius-lg);
  border-bottom-right-radius: var(--radius-lg);
}

.service-item:hover .service-line {
  width: 100%;
}

/* =========================================
   10. Portfolio Section
   ========================================= */
.portfolio {
  background-color: var(--navy);
}

.portfolio-showcase {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  margin-top: var(--space-xl);
}

.project-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.project-mockup {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
}

.project-mockup img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.6s var(--ease-smooth);
}

.project-card:hover .project-mockup img {
  transform: scale(1.04);
}

.project-tag {
  display: inline-flex;
  align-items: center;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--cream-dim);
  margin-bottom: var(--space-sm);
}

.project-tag::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: var(--gold);
  border-radius: 50%;
  margin-right: 8px;
}

.project-name {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: var(--space-md);
}

.case-study {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.case-block {
  padding-left: 1rem;
  border-left: 2px solid var(--gold);
}

.case-label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.case-block p {
  color: var(--white-dim);
  font-size: 0.95rem;
}

/* =========================================
   11. Pricing Section
   ========================================= */
.pricing {
  background-color: var(--navy-surface);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: var(--space-xl);
}

.price-card {
  background-color: var(--navy-light);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 3vw, 2.5rem);
  border: 1px solid rgba(250, 250, 250, 0.06);
  display: flex;
  flex-direction: column;
  position: relative;
}

.price-card.featured {
  border-top: 2px solid var(--gold);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--gold);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 16px;
  border-radius: var(--radius-full);
}

.price-header {
  margin-bottom: var(--space-md);
}

.price-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.price-desc {
  font-size: 0.9rem;
  color: var(--white-dim);
}

.price-amount {
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid rgba(250, 250, 250, 0.06);
  display: flex;
  align-items: baseline;
}

.price-currency {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--white-dim);
  margin-right: 4px;
}

.price-value {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1;
}

.price-range {
  font-size: 1rem;
  color: var(--white-dim);
  margin-left: 8px;
}

.price-features {
  flex-grow: 1;
  margin-bottom: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.price-features li {
  color: var(--cream-dim);
  font-size: 0.95rem;
  display: flex;
  align-items: flex-start;
}

.price-features li::before {
  content: "✓";
  color: var(--gold);
  margin-right: 12px;
  font-weight: bold;
}

.price-cta {
  width: 100%;
  margin-top: auto;
}

.btn-outline {
  background-color: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}

.btn-outline:hover {
  background-color: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px var(--gold-dim);
}

.pricing-note {
  text-align: center;
  margin-top: var(--space-lg);
  color: var(--white-dim);
  font-size: 0.85rem;
}

/* =========================================
   12. Process Section
   ========================================= */
.process {
  background-color: var(--navy);
}

.process-timeline {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: var(--space-xl);
  position: relative;
}

/* Mobile vertical line */
.process-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 28px; /* Center of 56px marker */
  width: 1px;
  background-color: rgba(250, 250, 250, 0.08);
  z-index: 0;
}

.process-line-fill {
  position: absolute;
  top: 0;
  left: -1px;
  width: 3px;
  height: 0%;
  background-color: var(--gold);
  transition: height 0.1s ease;
}

.process-step {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.step-marker {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background-color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-number {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gold);
}

.step-content {
  padding-top: 0.5rem;
}

.step-content h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.step-content p {
  color: var(--white-dim);
  font-size: 0.95rem;
}

/* =========================================
   13. FAQ Section
   ========================================= */
.faq {
  background-color: var(--navy-surface);
}

.faq-list {
  margin-top: var(--space-lg);
  border-top: 1px solid rgba(250, 250, 250, 0.08);
}

.faq-item {
  border-bottom: 1px solid rgba(250, 250, 250, 0.08);
}

.faq-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1.05rem;
  text-align: left;
  transition: color var(--transition-fast);
}

.faq-trigger:hover, .faq-item.is-open .faq-trigger {
  color: var(--gold);
}

.faq-icon {
  width: 24px;
  height: 24px;
  position: relative;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: currentColor;
  transform: translate(-50%, -50%);
  transition: transform var(--transition-fast);
}

.faq-icon::before {
  width: 16px;
  height: 2px;
}

.faq-icon::after {
  width: 2px;
  height: 16px;
}

.faq-item.is-open .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.faq-item.is-open .faq-icon::before {
  transform: translate(-50%, -50%) rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-smooth), padding-bottom 0.4s var(--ease-smooth);
  padding-bottom: 0;
}

.faq-item.is-open .faq-answer {
  max-height: 400px;
  padding-bottom: 1.5rem;
}

.faq-answer p {
  color: var(--cream-dim);
  font-size: 0.95rem;
}

/* =========================================
   14. Contact/CTA Section
   ========================================= */
.cta-section {
  background: linear-gradient(to bottom, var(--navy), var(--navy-light));
}

.cta-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.cta-title {
  margin-bottom: var(--space-md);
}

.cta-desc {
  color: var(--white-dim);
  margin-bottom: var(--space-lg);
  font-size: 1.1rem;
}

.cta-channels {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.channel-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--cream);
  font-weight: 500;
  width: fit-content;
  position: relative;
}

.channel-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--gold);
  transition: width var(--transition-fast);
}

.channel-link:hover::after {
  width: 100%;
}

.channel-icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.contact-form {
  background-color: var(--navy);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(250, 250, 250, 0.05);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.75rem;
  color: var(--cream-dim);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.form-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--white-dim);
  padding: 0.75rem 0;
  color: var(--white);
  transition: border-color var(--transition-fast);
}

.form-input:focus {
  outline: none;
  border-bottom-color: var(--gold);
}

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

.form-submit {
  width: 100%;
  margin-top: 1rem;
}

/* =========================================
   15. Footer
   ========================================= */
.site-footer {
  background-color: var(--navy);
  border-top: 1px solid rgba(250, 250, 250, 0.06);
  padding-top: var(--space-xl);
  padding-bottom: var(--space-md);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.footer-logo {
  height: 28px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-tagline {
  color: var(--cream-dim);
  font-size: 0.9rem;
  max-width: 300px;
}

.footer-heading {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.footer-nav a, .footer-contact a, .footer-location p {
  display: block;
  color: var(--cream-dim);
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

.footer-nav a:hover, .footer-contact a:hover {
  color: var(--gold);
}

.footer-bottom {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(250, 250, 250, 0.06);
  display: flex;
  justify-content: center;
  text-align: center;
}

.footer-bottom span {
  font-size: 0.8rem;
  color: var(--cream-dim);
}

/* =========================================
   16. Floating WhatsApp
   ========================================= */
.floating-wa {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background-color: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
  z-index: var(--z-fab);
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px) scale(0.9);
  transition: all var(--transition-normal);
  animation: pulse 2s infinite;
}

.floating-wa.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.floating-wa:hover {
  transform: translateY(0) scale(1.1);
  animation: none;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(201, 168, 76, 0); }
  100% { box-shadow: 0 0 0 0 rgba(201, 168, 76, 0); }
}

/* =========================================
   17. Reveal Animations
   ========================================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-smooth), transform 0.7s var(--ease-smooth);
  transition-delay: var(--reveal-delay, 0s);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Utility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.hidden-field {
  display: none;
}

/* =========================================
   18. Responsive (Media Queries)
   ========================================= */
/* Tablet & Up (640px) */
@media (min-width: 640px) {
  .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Desktop Small (900px) */
@media (min-width: 900px) {
  .nav-links, .nav-cta {
    display: flex;
  }
  
  .menu-toggle {
    display: none;
  }

  .about-layout {
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  /* Staggering services */
  .service-item:nth-child(2) {
    margin-top: 40px;
  }
  .service-item:nth-child(3) {
    margin-top: 80px;
  }

  .project-card {
    grid-template-columns: 55% 45%;
  }

  .project-card.reverse {
    grid-template-columns: 45% 55%;
  }

  .project-card.reverse .project-media {
    order: 2;
  }

  .project-card.reverse .project-info {
    order: 1;
    padding-right: 2rem;
  }

  .project-card:not(.reverse) .project-info {
    padding-left: 2rem;
  }

  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
  }

  .price-card.featured {
    transform: scale(1.04);
    z-index: 2;
  }
  .price-card.featured:hover {
    transform: scale(1.04) translateY(-4px);
  }

  .process-timeline {
    flex-direction: row;
    justify-content: space-between;
    padding-top: 40px;
  }

  .process-line {
    top: 68px; /* 40px padding + 28px center of 56px marker */
    left: 28px; /* Offset for first marker */
    right: 28px; /* Offset for last marker */
    width: auto;
    height: 1px;
    bottom: auto;
  }

  .process-line-fill {
    top: -1px;
    left: 0;
    height: 3px;
    width: 0%;
    transition: width 0.1s ease;
  }

  .process-step {
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 200px;
  }

  .step-marker {
    margin-bottom: 1rem;
    background-color: var(--navy);
  }

  .cta-layout {
    grid-template-columns: 45% 1fr;
    align-items: center;
    gap: 4rem;
  }
  
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
  
  .footer-bottom {
    justify-content: space-between;
    text-align: left;
  }
}

/* Large Desktop (1200px) */
@media (min-width: 1200px) {
  .hero-title {
    max-width: 1000px;
  }
  .portfolio-showcase {
    gap: 5rem;
  }
}
