/* ========================================
   CSS Custom Properties
   ======================================== */
:root {
  /* Colors */
  --gold: #F5D078;
  --gold-bg: #F5D078;
  --gold-hover: #d4a53e;
  --cream: #F8E8C4;
  --charcoal: #303030;
  --white: #FFFFFF;
  --heading: #222222;
  --text: #666666;
  --text-dark: #444444;
  --border: #303030;
  --border-light: #CCCCCC;
  --border-mid: #999999;
  --border-subtle: #E0E0E0;
  --accent-green: #1B5E20;
  --accent-green-bg: rgba(76,175,80,0.15);
  --accent-teal: #2A9D8F;
  --muted: #AAAAAA;
  --muted-dark: #999999;

  /* Typography */
  --font-heading: 'Inter', sans-serif;
  --font-body: 'Source Sans 3', sans-serif;
  --font-logo: 'Montserrat', sans-serif;
  --fs-base: 1.1rem;
  --fs-sm: 0.72rem;
  --fs-md: 1.2rem;
  --fs-lg: 1.3rem;

  /* Layout */
  --container: 1440px;
  --section-py: 5rem;
  --radius: 10px;
  --radius-sm: 6px;

  /* Shadows */
  --shadow-sm: 0 1px 4px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-card: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-card-hover: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* ========================================
   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-weight: 400;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  font-size: 1.1rem;
}

h1, h2, h3 {
  font-family: var(--font-heading);
  color: var(--heading);
  line-height: 1.25;
}

.mobile-break {
  display: none;
}

h2 {
  font-size: 2.5rem;
  font-weight: 600;
}

h3 {
  font-size: 1.15rem;
  font-weight: 600;
}

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

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

/* ========================================
   Layout
   ======================================== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.section-header p {
  margin-top: 0.75rem;
  font-size: 1.3rem;
  line-height: 1.4;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* ========================================
   Buttons
   ======================================== */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.1rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
  border: none;
}

.btn--primary {
  background: var(--gold);
  color: var(--charcoal);
}

.btn--primary:hover {
  background: var(--gold-hover);
  box-shadow: 0 2px 8px rgba(232, 184, 75, 0.35);
}

.btn--secondary {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid var(--border-light);
}

.btn--secondary:hover {
  border-color: var(--border-mid);
}

.btn--lg {
  padding: 0.9rem 2.25rem;
  font-size: 1.1rem;
}

/* ========================================
   Navigation — WHITE bar (like Squarespace)
   ======================================== */
.nav {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border-subtle);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 85px;
  max-width: none;
  padding: 0 4rem;
}

.nav__logo-img {
  height: 56px;
  width: auto;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__link {
  color: var(--text-dark);
  font-size: 1.1rem;
  font-weight: 600;
  transition: color 0.2s;
}

.nav__link:hover {
  color: var(--heading);
}

.nav__cta {
  margin-left: 0.5rem;
  padding: 0.65rem 1.5rem;
  font-size: 1.1rem;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

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

/* ========================================
   Section 1: Hero — WHITE band
   ======================================== */
.hero {
  background: var(--gold-bg);
  padding: var(--section-py) 0;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.hero__heading {
  font-size: 4.1rem;
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 0.5rem;
}

.hero__tagline {
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 1.0rem;
}

.hero__map {
  max-width: 75%;
  border-radius: var(--radius);
  border: 2px solid var(--border);
  box-shadow: var(--shadow-md);
}

.hero__subhead {
  font-size: 1.3rem;
  font-weight: 300;
  line-height: 1.65;
  margin-bottom: 2rem;
  color: var(--text-dark);
}

.hero__ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__ctas .btn--primary {
  background: var(--white);
  color: var(--text);
  border: 1.5px solid var(--text);
}

.hero__ctas .btn--primary:hover {
  background: #ededed;
}

.hero__ctas .btn--secondary {
  background: var(--gold-bg);
  color: var(--text);
  border: 1.5px solid var(--text);
}

.hero__ctas .btn--secondary:hover {
  background: var(--gold-hover);
}

/* ========================================
   Placeholder Images
   ======================================== */
.placeholder-img {
  background: #F7F7F7;
  border: 2px dashed #DDD;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2.5rem 1.5rem;
  min-height: 320px;
  color: var(--muted);
  gap: 1rem;
}

.placeholder-img span {
  font-size: 0.85rem;
  max-width: 280px;
  line-height: 1.5;
}

.placeholder-img svg {
  color: #CCCCCC;
}

.placeholder-img--tall {
  min-height: 260px;
}

/* ========================================
   Section 2: Trust Bar — CHARCOAL band
   ======================================== */
.trust-bar {
  background: var(--charcoal);
  padding: 1.15rem 0;
}

.trust-bar__inner {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  font-size: 1.1rem;
  font-weight: 600;
  white-space: nowrap;
}

.trust-bar__item svg {
  flex-shrink: 0;
}

/* ========================================
   Section 3: Services — GOLD band
   ======================================== */
.services {
  background: var(--white);
  padding: var(--section-py) 0;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.card {
  background: var(--cream);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
  box-shadow: var(--shadow-card);
}

.card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}

.card__accent {
  height: 4px;
  background: var(--gold);
}

.card__body {
  padding: 1.5rem;
}

.card__icon {
  margin-bottom: 1rem;
  color: var(--charcoal);
}

.card h3 {
  margin-bottom: 0.5rem;
}

.card__badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.2rem 0.6rem;
  border-radius: 3px;
  margin-bottom: 0.75rem;
  background: var(--white);
  color: var(--accent-green);
}

.card__badge--addon {
  background: #F0F0F0;
  color: var(--text);
}

.card p {
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Proof Package Breakdown */
.proof-breakdown {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 2rem 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.proof-breakdown h3 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.proof-breakdown__subtitle {
  color: var(--text);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.proof-breakdown__list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem 1.5rem;
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.proof-breakdown__list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
  line-height: 1.3;
  color: var(--text-dark);
}

.proof-breakdown__list svg {
  color: var(--accent-teal);
  flex-shrink: 0;
}

/* ========================================
   Section 4: Showcase — WHITE band
   ======================================== */
.showcase {
  background: var(--gold-bg);
  padding: var(--section-py) 0;
}

/* Competitor maps row */
.showcase__competitors {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.showcase__row-label {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--heading);
  margin-top: 2.3rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.showcase__competitor {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1rem 1rem 1.25rem;
  box-shadow: var(--shadow-card);
}

.showcase__competitor-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.showcase__competitor:last-child .showcase__competitor-img {
  opacity: 0.85;
  filter: grayscale(15%);
}

.showcase__competitor-label {
  margin-top: 0.75rem;
  font-size: 1.1rem;
  color: var(--text);
  font-style: italic;
}

/* Our output row */
.showcase__ours {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  max-width: 800px;
  margin: 0 auto 1rem;
}

.showcase__ours-map,
.showcase__ours-proof {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: var(--shadow-card);
}

.showcase__ours-img {
  width: 100%;
  height: 340px;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.showcase__ours-proof .showcase__ours-img {
  object-fit: cover;
  object-position: top center;
  padding: 1rem;
}

.showcase__ours-label {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2.5rem;
}

.showcase__cta {
  text-align: center;
}

.showcase__cta .btn--primary {
  background: var(--white);
  color: var(--text);
  border: 1.5px solid var(--text);
}

.showcase__cta .btn--primary:hover {
  background: #ededed;
}

.showcase__pricing {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 1rem;
}

.pricing-placeholder {
  color: var(--gold);
}

/* ========================================
   Section 5: How It Works — GOLD band
   ======================================== */
.how-it-works {
  background: var(--white);
  padding: var(--section-py) 0;
}

.how-it-works .section-header {
  margin-bottom: 3rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

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

.step__marker {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  position: relative;
}

.step__number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--charcoal);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  position: relative;
  z-index: 2;
}

.step__line {
  position: absolute;
  top: 50%;
  left: calc(50% + 26px);
  width: calc(100% - 12px);
  height: 2px;
  background: rgba(255, 255, 255, 0.5);
  z-index: 1;
}

.step:last-child .step__line {
  display: none;
}

.step__icon {
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}

.step h3 {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}

.step p {
  font-size: 1.2rem;
  padding: 0 0.5rem;
}

.how-it-works__note {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--heading);
}

/* ========================================
   Section 6: Compliance — WHITE band
   ======================================== */
.compliance {
  background: var(--gold-bg);
  padding: var(--section-py) 0;
}

.compliance__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.compliance__item {
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  transition: box-shadow 0.2s, transform 0.2s;
}

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

.compliance__icon {
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.compliance__item h3 {
  margin-bottom: 0.4rem;
}

.compliance__item p {
  font-size: 1.1rem;
  line-height: 1.6;
}

/* ========================================
   Section 7: FAQ — GOLD band
   ======================================== */
.faq {
  background: var(--white);
  padding: var(--section-py) 0;
}

.faq__list {
  max-width: 760px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius);
  padding: 0.5rem 2rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.faq__item {
  border-bottom: 1px solid var(--border);
}

.faq__item:last-child {
  border-bottom: none;
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--heading);
  gap: 1rem;
}

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

.faq__chevron {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--text);
}

.faq__question[aria-expanded="true"] .faq__chevron {
  transform: rotate(180deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq__answer p {
  padding-bottom: 1.25rem;
  font-size: 1.1rem;
  line-height: 1.7;
}

/* ========================================
   Section 8: Footer — CHARCOAL band
   ======================================== */
.footer {
  background: var(--charcoal);
  padding: 3rem 0;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer__logo {
  height: 70px;
  filter: invert(1);
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 1.1rem;
}

.footer__contact a {
  color: var(--gold);
  transition: color 0.2s;
}

.footer__contact a:hover {
  color: #f0c86a;
}

.footer__contact span {
  color: var(--muted);
}

.footer__meta {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 1.1rem;
  color: var(--muted-dark);
}

/* ========================================
   Responsive — Tablet
   ======================================== */
@media (max-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .step__line {
    display: none;
  }
}

/* ========================================
   Responsive — Mobile
   ======================================== */
@media (max-width: 768px) {
  :root {
    --section-py: 3.5rem;
  }

  .mobile-break {
    display: block;
  }

  h2 {
    font-size: 1.6rem;
  }

  .container {
    padding: 0 1.25rem;
  }

  /* Nav */
  .nav__links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 85px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 1rem 1.5rem 1.5rem;
    gap: 0;
    border-top: 1px solid var(--border);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  }

  .nav__links.is-open {
    display: flex;
  }

  .nav__link {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
    width: 100%;
  }

  .nav__cta {
    margin-left: 0;
    margin-top: 0.75rem;
    text-align: center;
    width: 100%;
  }

  .nav__toggle {
    display: flex;
  }

  /* Hero */
  .hero__inner {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .hero__content {
    display: contents;
  }

  .hero__heading {
    font-size: 2.2rem;
    order: 1;
  }

  .hero__tagline {
    font-size: 1.6rem;
    order: 2;
  }

  .hero__subhead {
    order: 3;
  }

  .hero__image {
    order: 4;
  }

  .hero__map {
    max-width: 100%;
  }

  .hero__ctas {
    justify-content: center;
    order: 5;
  }

  .placeholder-img {
    min-height: 220px;
  }

  /* Trust Bar */
  .trust-bar__inner {
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
  }

  .trust-bar__item {
    white-space: normal;
    text-align: center;
    flex-direction: column;
    gap: 0.25rem;
  }

  /* Services */
  .services__grid {
    grid-template-columns: 1fr;
  }

  .proof-breakdown {
    padding: 1.5rem;
  }

  .proof-breakdown__list {
    grid-template-columns: 1fr;
  }

  /* Showcase */
  .showcase__competitors {
    grid-template-columns: 1fr;
  }

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

  /* Steps */
  .steps {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .step {
    text-align: center;
  }

  .step__line {
    display: none;
  }

  .step__icon {
    margin-bottom: 0.25rem;
  }

  /* Compliance */
  .compliance__grid {
    grid-template-columns: 1fr;
  }

  /* FAQ */
  .faq__list {
    padding: 0.5rem 1.25rem;
  }

  /* Footer */
  .footer__inner {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .footer__meta {
    text-align: center;
  }
}

/* ========================================
   Mobile nav toggle animation
   ======================================== */
.nav__toggle.is-open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle.is-open span:nth-child(2) {
  opacity: 0;
}

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