/* =============================================================
   Upspiral Now LLC — Main Stylesheet
   https://upspiralnow.com
   ============================================================= */

/* ── Custom Properties ────────────────────────────────────── */
:root {
  /* Brand Colors */
  --navy:        #0c172c;
  --navy-mid:    #131f3a;
  --navy-light:  #1c3258;
  --gold:        #fb560d;
  --gold-light:  #ff7a40;
  --gold-dark:   #d44400;
  --white:       #FFFFFF;
  --gray-50:     #F8F9FA;
  --gray-100:    #F1F3F5;
  --gray-200:    #E9ECEF;
  --gray-300:    #DEE2E6;
  --gray-400:    #ADB5BD;
  --gray-500:    #89909d;
  --gray-600:    #495057;
  --gray-700:    #343A40;
  --gray-800:    #212529;

  /* Typography */
  --font-body:    'Roboto', system-ui, sans-serif;
  --font-display: 'Roboto', system-ui, sans-serif;

  /* Spacing scale */
  --sp-1:  0.25rem;
  --sp-2:  0.5rem;
  --sp-3:  0.75rem;
  --sp-4:  1rem;
  --sp-5:  1.25rem;
  --sp-6:  1.5rem;
  --sp-8:  2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;
  --sp-32: 8rem;

  /* Layout */
  --container-max: 1200px;
  --container-pad: 1.5rem;

  /* Radius */
  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm:   0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
  --shadow-md:   0 4px 16px rgba(0,0,0,.10), 0 2px 6px rgba(0,0,0,.06);
  --shadow-lg:   0 20px 48px rgba(0,0,0,.18), 0 8px 20px rgba(0,0,0,.10);
  --shadow-gold: 0 4px 24px rgba(251,86,13,.30);

  /* Transitions */
  --ease-fast:   150ms ease;
  --ease-base:   250ms ease;
  --ease-slow:   400ms cubic-bezier(.22,.68,0,1.2);

  /* Nav height */
  --nav-h: 72px;
}

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

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

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--gray-800);
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ── Utilities ────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.section { padding: var(--sp-24) 0; }
.section--lg { padding: var(--sp-32) 0; }
.section--sm { padding: var(--sp-16) 0; }

.section__eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-3);
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: var(--sp-5);
}

.section__title--white { color: var(--white); }

.section__subtitle {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 54ch;
  line-height: 1.7;
}

.section__subtitle--white { color: rgba(255,255,255,.72); }

.text-center { text-align: center; }
.text-center .section__subtitle { margin: 0 auto; }

/* ── Scroll-reveal animations ─────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal--left  { transform: translateX(-28px); }
.reveal--right { transform: translateX(28px); }
.reveal--left.visible, .reveal--right.visible { transform: none; }

.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: .75rem 1.75rem;
  border-radius: var(--radius-full);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .01em;
  border: 2px solid transparent;
  transition: background var(--ease-base), color var(--ease-base),
              border-color var(--ease-base), transform var(--ease-base),
              box-shadow var(--ease-base);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }

.btn--gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn--gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  box-shadow: var(--shadow-gold);
}

.btn--outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn--outline-gold:hover {
  background: var(--gold);
  color: var(--navy);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.55);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
}

.btn--navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn--navy:hover {
  background: var(--navy-light);
  border-color: var(--navy-light);
  box-shadow: var(--shadow-md);
}

.btn--lg {
  padding: .9rem 2.25rem;
  font-size: 1rem;
}

/* ── Navigation ───────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background var(--ease-base), backdrop-filter var(--ease-base),
              box-shadow var(--ease-base);
}

.nav.scrolled {
  background: rgba(13,27,42,.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(255,255,255,.06), 0 4px 24px rgba(0,0,0,.3);
}

.nav__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  text-decoration: none;
}

.nav__logo-img {
  height: 40px;
  width: auto;
  max-width: 200px;
  border-radius: 0;
  object-fit: contain;
}

.nav__logo-text {
  display: none;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
}

.nav__link {
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255,255,255,.8);
  transition: color var(--ease-fast);
  position: relative;
  padding-bottom: 2px;
}
.nav__link::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--ease-base);
  border-radius: var(--radius-full);
}
.nav__link:hover { color: var(--white); }
.nav__link:hover::after,
.nav__link.active::after { width: 100%; }
.nav__link.active { color: var(--white); }

.nav__cta { margin-left: var(--sp-3); }

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  padding: var(--sp-2);
  z-index: 1100;
}
.nav__hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: var(--radius-full);
  transition: transform var(--ease-base), opacity var(--ease-base);
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--navy);
}

/* Geometric CSS background pattern */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,.04) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(201,168,76,.07) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at -10% 100%, rgba(30,52,81,.8) 0%, transparent 60%);
  pointer-events: none;
}

.hero__container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
  padding-top: var(--nav-h);
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-5);
  padding: var(--sp-2) var(--sp-4);
  border: 1px solid rgba(201,168,76,.25);
  border-radius: var(--radius-full);
  background: rgba(201,168,76,.06);
  width: fit-content;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--white);
  letter-spacing: -.02em;
  margin-bottom: var(--sp-6);
}

.hero__title em {
  font-style: normal;
  color: var(--gold);
}

.hero__subtitle {
  font-size: 1.1rem;
  line-height: 1.75;
  color: rgba(255,255,255,.68);
  max-width: 46ch;
  margin-bottom: var(--sp-10);
}

.hero__actions {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

/* Hero stats */
.hero__stats {
  display: flex;
  gap: var(--sp-8);
  margin-top: var(--sp-12);
  padding-top: var(--sp-8);
  border-top: 1px solid rgba(255,255,255,.08);
}

.hero__stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: var(--sp-1);
}

.hero__stat-label {
  font-size: .82rem;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* Hero visual panel */
.hero__visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-6);
}

.hero__card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-xl);
  padding: var(--sp-6);
  backdrop-filter: blur(8px);
  width: 100%;
  max-width: 420px;
}

.hero__card-tag {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-3);
}

.hero__card-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: var(--sp-4);
  font-weight: 600;
}

.hero__card-services {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.hero__card-service {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: .88rem;
  color: rgba(255,255,255,.72);
}

.hero__card-service i {
  color: var(--gold);
  font-size: .8rem;
  width: 16px;
  flex-shrink: 0;
}

/* Page Hero (interior pages) */
.page-hero {
  background: var(--navy);
  padding: calc(var(--nav-h) + var(--sp-16)) 0 var(--sp-16);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,.035) 1px, transparent 1px);
  background-size: 64px 64px;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(201,168,76,.06) 0%, transparent 70%);
}

.page-hero__content {
  position: relative;
  z-index: 2;
}

.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--sp-4);
  letter-spacing: -.02em;
}

.page-hero__subtitle {
  font-size: 1.08rem;
  color: rgba(255,255,255,.65);
  max-width: 52ch;
  line-height: 1.7;
}

/* ── Cards ────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: var(--sp-8);
  transition: transform var(--ease-base), box-shadow var(--ease-base), border-color var(--ease-base);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gray-300);
}

.card__icon {
  width: 52px; height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201,168,76,.1);
  border-radius: var(--radius-md);
  margin-bottom: var(--sp-5);
  color: var(--gold-dark);
  font-size: 1.35rem;
  transition: background var(--ease-base), color var(--ease-base);
}
.card:hover .card__icon {
  background: var(--gold);
  color: var(--navy);
}

.card__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--sp-3);
}

.card__body {
  font-size: .95rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ── Grid layouts ─────────────────────────────────────────── */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-8);
}

/* ── Value Props / Why Us section ─────────────────────────── */
.why-section {
  background: var(--navy);
  padding: var(--sp-24) 0;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}

.why-left__headline {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: var(--sp-6);
}

.why-left__headline em {
  color: var(--gold);
  font-style: normal;
}

.why-left__body {
  font-size: 1rem;
  color: rgba(255,255,255,.6);
  line-height: 1.75;
}

.why-right__list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}

.why-item {
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
}

.why-item__icon {
  width: 36px; height: 36px;
  flex-shrink: 0;
  background: rgba(201,168,76,.12);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: .9rem;
  margin-top: .1rem;
}

.why-item__title {
  font-weight: 600;
  color: var(--white);
  font-size: .95rem;
  margin-bottom: var(--sp-1);
}

.why-item__body {
  font-size: .9rem;
  color: rgba(255,255,255,.55);
  line-height: 1.6;
}

/* ── CTA Banner ───────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy) 100%);
  border-top: 1px solid rgba(201,168,76,.15);
  border-bottom: 1px solid rgba(201,168,76,.15);
  padding: var(--sp-20) 0;
  text-align: center;
}

.cta-banner__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--sp-4);
}

.cta-banner__subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,.6);
  margin-bottom: var(--sp-8);
  max-width: 50ch;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner__actions {
  display: flex;
  gap: var(--sp-4);
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Brands / Logos section ───────────────────────────────── */
.brands-section {
  background: var(--white);
  padding: var(--sp-16) 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

.brands-label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gray-400);
  text-align: center;
  margin-bottom: var(--sp-8);
}

.brands-track-wrapper {
  overflow: hidden;
  position: relative;
}

.brands-track-wrapper::before,
.brands-track-wrapper::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 100px;
  z-index: 2;
}
.brands-track-wrapper::before {
  left: 0;
  background: linear-gradient(90deg, var(--white), transparent);
}
.brands-track-wrapper::after {
  right: 0;
  background: linear-gradient(270deg, var(--white), transparent);
}

.brands-track {
  display: flex;
  gap: var(--sp-12);
  align-items: center;
  animation: scroll-brands 30s linear infinite;
  width: max-content;
}
.brands-track:hover { animation-play-state: paused; }

@keyframes scroll-brands {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.brand-logo {
  height: 60px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.5);
  transition: filter var(--ease-base);
  flex-shrink: 0;
}
.brand-logo:hover { filter: grayscale(0%) opacity(1); }

/* ── Services Grid ────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--sp-6);
}

/* ── Service Filter Tabs ──────────────────────────────────── */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-bottom: var(--sp-8);
}

.filter-bar__label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray-400);
  display: flex;
  align-items: center;
  margin-right: var(--sp-2);
  white-space: nowrap;
}

.filter-btn {
  padding: .4rem 1rem;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  font-size: .82rem;
  font-weight: 600;
  color: var(--gray-600);
  cursor: pointer;
  transition: background var(--ease-fast), color var(--ease-fast), border-color var(--ease-fast);
  font-family: var(--font-body);
}
.filter-btn:hover { border-color: var(--gold); color: var(--gold-dark); }
.filter-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

/* ── Detailed Service Card ────────────────────────────────── */
.svc-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  transition: transform var(--ease-base), box-shadow var(--ease-base), border-color var(--ease-base);
  overflow: hidden;
}
.svc-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gray-300);
}

.svc-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--sp-5) var(--sp-6) 0;
}

.svc-card__badge {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray-500);
  background: var(--gray-100);
  padding: .25rem .65rem;
  border-radius: var(--radius-full);
}

.svc-card__price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
}
.svc-card__price--custom {
  font-style: italic;
  font-size: .9rem;
}

.svc-card__body {
  padding: var(--sp-4) var(--sp-6) var(--sp-5);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.svc-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--sp-4);
  line-height: 1.3;
}

.svc-card__section-label {
  font-size: .75rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--sp-1);
}

.svc-card__problem {
  font-size: .88rem;
  color: var(--gold-dark);
  margin-bottom: var(--sp-4);
  line-height: 1.5;
}

.svc-card__get {
  font-size: .88rem;
  color: var(--gray-600);
  margin-bottom: var(--sp-5);
  line-height: 1.6;
}

.svc-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--sp-3) 0;
  border-top: 1px solid var(--gray-200);
  margin-bottom: var(--sp-4);
  font-size: .8rem;
}

.svc-card__timeline {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  color: var(--gray-500);
}
.svc-card__timeline i { font-size: .75rem; }

.svc-card__stage {
  font-size: .72rem;
  font-weight: 600;
  padding: .2rem .6rem;
  border-radius: var(--radius-full);
  background: var(--gray-100);
  color: var(--gray-600);
}

.svc-card__outcome {
  background: rgba(251,86,13,.07);
  border: 1px solid rgba(251,86,13,.18);
  border-radius: var(--radius-md);
  padding: var(--sp-3) var(--sp-4);
  margin-top: auto;
}

.svc-card__outcome-label {
  font-size: .72rem;
  font-weight: 700;
  color: var(--gold-dark);
  margin-bottom: var(--sp-1);
}

.svc-card__outcome-text {
  font-size: .85rem;
  color: var(--gray-700);
  line-height: 1.5;
}

/* ── How We Work steps ────────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 26px;
  left: calc(16.66% + 26px);
  right: calc(16.66% + 26px);
  height: 2px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gray-200) 100%);
}

.step {
  text-align: center;
  position: relative;
}

.step__number {
  width: 52px; height: 52px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 auto var(--sp-5);
  position: relative;
  z-index: 1;
  border: 2px solid var(--gold);
}

.step__title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: var(--sp-2);
}

.step__body {
  font-size: .9rem;
  color: var(--gray-600);
  line-height: 1.65;
}

/* ── Contact ──────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--sp-16);
  align-items: start;
}

.contact-info__title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--sp-4);
}

.contact-info__body {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: var(--sp-8);
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  margin-bottom: var(--sp-5);
}

.contact-detail__icon {
  width: 40px; height: 40px;
  flex-shrink: 0;
  background: rgba(201,168,76,.1);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-dark);
  font-size: .95rem;
}

.contact-detail__label {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gray-400);
  margin-bottom: var(--sp-1);
}

.contact-detail__value {
  font-weight: 500;
  color: var(--navy);
}

/* Contact Form */
.contact-form {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: var(--sp-10);
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: var(--sp-5);
}

.form-label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: var(--sp-2);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-size: .95rem;
  color: var(--gray-800);
  background: var(--gray-50);
  transition: border-color var(--ease-fast), box-shadow var(--ease-fast);
  outline: none;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201,168,76,.12);
}

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

.form-disclaimer {
  font-size: .78rem;
  color: var(--gray-400);
  margin-top: var(--sp-3);
  line-height: 1.5;
}

.form-disclaimer a {
  color: var(--gold-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-success {
  display: none;
  background: #f0fdf4;
  border: 1px solid #86efac;
  border-radius: var(--radius-md);
  padding: var(--sp-5);
  color: #166534;
  font-size: .95rem;
  margin-top: var(--sp-4);
  text-align: center;
}

.form-success.visible { display: block; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 560px) {
  .form-row { grid-template-columns: 1fr; }
}

/* ── Terms ────────────────────────────────────────────────── */
.terms-content {
  max-width: 760px;
  margin: 0 auto;
  padding: var(--sp-16) var(--container-pad);
}

.terms-content h2 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin: var(--sp-10) 0 var(--sp-4);
  padding-bottom: var(--sp-3);
  border-bottom: 1px solid var(--gray-200);
}

.terms-content h2:first-child { margin-top: 0; }

.terms-content p {
  font-size: .98rem;
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: var(--sp-4);
}

.terms-content ul {
  list-style: none;
  margin: var(--sp-3) 0 var(--sp-5) var(--sp-4);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.terms-content ul li {
  position: relative;
  padding-left: var(--sp-6);
  font-size: .95rem;
  color: var(--gray-700);
  line-height: 1.7;
}

.terms-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .6em;
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: var(--sp-8);
  right: var(--sp-8);
  width: 44px; height: 44px;
  background: var(--navy);
  color: var(--white);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-full);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--ease-base), transform var(--ease-base);
  z-index: 500;
  cursor: pointer;
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: all;
}
.back-to-top:hover { transform: translateY(-3px); background: var(--navy-light); }

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  background: #070f18;
  color: var(--white);
  padding: var(--sp-20) 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: var(--sp-12);
  padding-bottom: var(--sp-16);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  display: block;
  margin-bottom: var(--sp-3);
}

.footer__tagline {
  font-size: .9rem;
  color: rgba(255,255,255,.45);
  line-height: 1.65;
  margin-bottom: var(--sp-4);
}

.footer__location {
  font-size: .85rem;
  color: rgba(255,255,255,.35);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

.footer__location i { color: var(--gold); }

.footer__col h4 {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-5);
}

.footer__col a {
  display: block;
  font-size: .88rem;
  color: rgba(255,255,255,.5);
  margin-bottom: var(--sp-3);
  transition: color var(--ease-fast);
}
.footer__col a:hover { color: var(--white); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--sp-5) 0;
  font-size: .82rem;
  color: rgba(255,255,255,.25);
  flex-wrap: wrap;
  gap: var(--sp-3);
}

.footer__bottom a {
  color: rgba(255,255,255,.35);
  transition: color var(--ease-fast);
}
.footer__bottom a:hover { color: rgba(255,255,255,.7); }

/* ── About / Team section ─────────────────────────────────── */
.team-section {
  background: var(--gray-50);
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}

.team-photo-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.team-photo {
  width: 100%;
  height: 440px;
  object-fit: cover;
}

.team-photo-badge {
  position: absolute;
  bottom: var(--sp-6);
  left: var(--sp-6);
  right: var(--sp-6);
  background: rgba(13,27,42,.88);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(201,168,76,.25);
  border-radius: var(--radius-md);
  padding: var(--sp-4) var(--sp-5);
  color: var(--white);
  font-size: .88rem;
}

.team-photo-badge strong {
  color: var(--gold);
  display: block;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: var(--sp-1);
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .hero__container { grid-template-columns: 1fr; gap: var(--sp-8); }
  .hero__visual { display: block; }
  .team-photo { height: 280px; }
  .hero { min-height: auto; padding: calc(var(--nav-h) + var(--sp-20)) 0 var(--sp-20); }
  .why-grid { grid-template-columns: 1fr; gap: var(--sp-10); }
  .contact-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --container-pad: 1.25rem; }

  .nav__menu {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 100vh;
    background: var(--navy);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--sp-8);
    transform: translateX(100%);
    transition: transform var(--ease-slow);
    z-index: 1000;
  }
  .nav__menu.open { transform: translateX(0); }
  .nav__link { font-size: 1.2rem; }
  .nav__hamburger { display: flex; position: relative; z-index: 1100; }

  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .steps::before { display: none; }
  .footer__grid { grid-template-columns: 1fr; gap: var(--sp-8); }
  .footer__bottom { flex-direction: column; text-align: center; }
  .hero__stats { flex-direction: column; gap: var(--sp-5); }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .cta-banner__actions { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .contact-form { padding: var(--sp-6); }
  .services-grid { grid-template-columns: 1fr; }
}
