﻿*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

:root {
  --black: #111110;
  --white: #ffffff;
  --gray-50: #f9f9f8;
  --gray-100: #f0efec;
  --gray-200: #e4e3de;
  --gray-400: #a09f99;
  --gray-600: #6b6a65;
  --gray-800: #2c2c2a;
  --blue-50: #e6f1fb;
  --blue-100: #b5d4f4;
  --blue-600: #185fa5;
  --blue-800: #0c447c;
  --green-50: #eaf3de;
  --green-200: #97c459;
  --green-600: #3b6d11;
  --green-800: #27500a;
  --red-50: #fceeed;
  --red-200: #f0a8a3;
  --red-600: #a32d2d;
  --red-800: #7a1f1f;
  --amber-50: #fdf6e3;
  --amber-600: #b07c1a;
  --amber-800: #7a5510;
  --border: rgba(17,17,16,0.1);
  --border-strong: rgba(17,17,16,0.2);
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --color-border-tertiary: rgba(0, 0, 0, 0.15);
  --color-border-secondary: rgba(0, 0, 0, 0.30);
  --color-background-primary: #ffffff;
  --color-background-secondary: #F1EFE8;
  --color-background-info: #E6F1FB;
  --color-text-primary: #2C2C2A;
  --color-text-secondary: #5F5E5A;
  --color-text-tertiary: #888780;
  --color-text-info: #0C447C;
}

html {
  scroll-behavior: smooth
}

body {
  font-family: 'DM Sans',sans-serif;
  color: var(--black);
  background: var(--white);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 2.5rem;
  border-bottom: 0.5px solid var(--border);
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 100
}

.nav-logo {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--black);
  text-decoration: none
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.25rem
}

.nav-link {
  font-size: 13px;
  color: var(--gray-600);
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: none
}

  .nav-link:hover {
    color: var(--black)
  }

.nav-cta {
  font-size: 13px;
  font-weight: 500;
  padding: 8px 18px;
  border: 0.5px solid var(--border-strong);
  border-radius: var(--radius-md);
  background: transparent;
  color: var(--black);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s
}

  .nav-cta:hover {
    background: var(--gray-50)
  }

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  border-radius: var(--radius-md)
}

  .hamburger span {
    display: block;
    height: 1px;
    width: 22px;
    background: var(--black);
    border-radius: 2px;
    transition: all 0.25s ease
  }

  .hamburger.open span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg)
  }

  .hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0)
  }

  .hamburger.open span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg)
  }

/* MOBILE OVERLAY */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(17,17,16,0.35);
  z-index: 150;
  backdrop-filter: blur(2px)
}

  .mobile-overlay.open {
    display: block
  }

/* MOBILE DRAWER */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(350px,90vw);
  height: 100%;
  background: var(--white);
  z-index: 175;
  display: flex;
  flex-direction: column;
  box-shadow: -4px 0 24px rgba(17,17,16,0.12);
  transition: right 0.3s cubic-bezier(0.4,0,0.2,1)
}

  .mobile-drawer.open {
    right: 0
  }

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 1.5rem;
  border-bottom: 0.5px solid var(--border)
}

.drawer-logo {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--black)
}

.drawer-close {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 22px;
  color: var(--gray-600);
  line-height: 1;
  padding: 2px 6px;
  border-radius: var(--radius-md)
}

  .drawer-close:hover {
    background: var(--gray-50)
  }

.drawer-nav {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  gap: 0.25rem;
  flex: 1
}

.drawer-link {
  font-size: 15px;
  color: var(--gray-800);
  text-decoration: none;
  padding: 0.75rem 0.5rem;
  border-bottom: 0.5px solid var(--border);
  display: block;
  transition: color 0.15s
}

  .drawer-link:hover {
    color: var(--blue-600)
  }

  .drawer-link:last-of-type {
    border-bottom: none
  }

.drawer-cta {
  display: block;
  margin-top: 1.5rem;
  text-align: center;
  background: var(--black);
  color: var(--white);
  font-family: 'DM Sans',sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 13px 24px;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: opacity 0.15s
}

  .drawer-cta:hover {
    opacity: 0.85
  }

.drawer-footer {
  padding: 1.25rem 1.5rem;
  border-top: 0.5px solid var(--border)
}

  .drawer-footer p {
    font-size: 11px;
    color: var(--gray-400);
    line-height: 1.6
  }

@media(max-width:768px) {
  .hamburger {
    display: flex
  }

  .nav-desktop {
    display: none
  }

  nav {
    padding: 1rem 1.25rem
  }
}

section {
  padding: 5rem 2.5rem;
  border-bottom: 0.5px solid var(--border)
}

  section.alt {
    background: var(--gray-50)
  }

.inner {
  max-width: 900px;
  margin: 0 auto
}

.sec-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-400);
  text-align: center;
  margin-bottom: 0.6rem
}

.sec-title {
  font-size: clamp(20px,3vw,28px);
  font-weight: 500;
  text-align: center;
  line-height: 1.25;
  max-width: 600px;
  margin: 0 auto 0.75rem
}

.sec-sub {
  font-size: 14px;
  color: var(--gray-600);
  text-align: center;
  max-width: 500px;
  margin: 0 auto 2.5rem;
  line-height: 1.75
}

.hero {
  padding: 6rem 2.5rem 5rem;
  text-align: center
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--blue-800);
  background: var(--blue-50);
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 2rem
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue-600)
}

.hero h1 {
  font-family: 'DM Serif Display',serif;
  font-weight: 400;
  font-size: clamp(30px,5.5vw,52px);
  line-height: 1.12;
  max-width: 720px;
  margin: 0 auto 1.5rem
}

  .hero h1 em {
    font-style: italic;
    color: var(--blue-600)
  }

.hero-sub {
  font-size: 15px;
  color: var(--gray-600);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.8
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 3rem
}

/* PAGE HERO */
.page-hero {
  padding: 5rem 2.5rem 4rem;
  border-bottom: 0.5px solid var(--border)
}

.page-hero-inner {
  max-width: 760px;
  margin: 0 auto
}

.page-badge {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--blue-800);
  background: var(--blue-50);
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 1.5rem
}

.page-hero h1 {
  font-family: 'DM Serif Display',serif;
  font-size: clamp(28px,5vw,48px);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 1.25rem
}

  .page-hero h1 em {
    font-style: italic;
    color: var(--blue-600)
  }

.page-hero-sub {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.8;
  max-width: 640px
}

.disclaimer {
  display: inline-block;
  margin-top: 1.5rem;
  font-size: 12px;
  color: var(--gray-400);
  background: var(--gray-50);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 8px 14px;
  line-height: 1.5
}

.btn-primary {
  display: inline-block;
  background: var(--black);
  color: var(--white);
  font-family: 'DM Sans',sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 14px 32px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.15s
}

  .btn-primary:hover {
    opacity: 0.85
  }

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--gray-600);
  font-family: 'DM Sans',sans-serif;
  font-size: 14px;
  padding: 14px 24px;
  border-radius: var(--radius-md);
  border: 0.5px solid var(--border-strong);
  text-decoration: none;
  margin-left: 0.75rem;
  transition: background 0.15s
}

  .btn-ghost:hover {
    background: var(--gray-50)
  }

/* CTA STRIP */
.cta-strip {
  text-align: center;
  padding: 5rem 2.5rem
}

  .cta-strip h2 {
    font-family: 'DM Serif Display',serif;
    font-size: clamp(24px,4vw,38px);
    font-weight: 400;
    line-height: 1.2;
    max-width: 560px;
    margin: 0 auto 1rem
  }

    .cta-strip h2 em {
      font-style: italic;
      color: var(--blue-600)
    }

  .cta-strip p {
    font-size: 15px;
    color: var(--gray-600);
    max-width: 460px;
    margin: 0 auto 2rem;
    line-height: 1.75
  }

.hero-micro {
  font-size: 12px;
  color: var(--gray-400)
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 0.5px solid var(--border);
  max-width: 620px;
  margin: 0 auto
}

.stat-item {
  text-align: center
}

.stat-num {
  font-size: 26px;
  font-weight: 300
}

.stat-label {
  font-size: 11px;
  color: var(--gray-400);
  margin-top: 3px;
  letter-spacing: 0.04em
}

.who-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
  gap: 1px;
  background: var(--border);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden
}

.who-cell {
  background: var(--white);
  padding: 1.75rem
}

.who-role {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-600);
  margin-bottom: 0.6rem
}

.who-quote {
  font-family: 'DM Serif Display',serif;
  font-size: 14px;
  color: var(--gray-800);
  line-height: 1.65;
  margin-bottom: 0.75rem
}

.who-need {
  font-size: 12px;
  color: var(--gray-400);
  line-height: 1.5
}


/* STEPS */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.step-card {
  background: var(--white);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}

.step-num {
  font-size: 11px;
  font-weight: 500;
  color: var(--blue-600);
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.step-title {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.step-body {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.7;
}

.step-note {
  margin-top: 2.5rem;
  text-align: center;
  font-size: 13px;
  color: var(--gray-400);
}

  .step-note strong {
    color: var(--black);
  }

.testimonial-text {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 20px;
}

.testimonial-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-raised);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.85rem;
  box-shadow: var(--neu-shadow-sm);
  object-fit: cover;
}

.testimonial-name {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--blue-600);
}

.testimonial-role {
  font-size: 0.75rem;
  color: var(--gray-600);
}

@media (max-width: 480px) {

  .ai-results-grid .section-title {
    font-size: 1.4rem !important;
  }

  .ai-results-grid pre {
    font-size: 0.65rem !important;
    line-height: 1.5 !important;
  }
}

@media (max-width: 768px) {
  .ai-results-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

    .ai-results-grid > div:first-child {
      text-align: center;
    }

    .ai-results-grid .section-desc {
      margin-left: auto;
      margin-right: auto;
    }

    .ai-results-grid pre {
      font-size: 0.72rem !important;
    }
}

  .section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 600;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
    text-wrap: balance;
  }

  .section-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto 3rem;
    font-weight: 400;
    text-wrap: pretty;
    line-height: 1.6;
  }

  .tl-wrap {
    max-width: 680px;
    margin: 0 auto
  }

  .tl-row {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 0.5px solid var(--border);
    align-items: start
  }

    .tl-row:last-child {
      border-bottom: none
    }

  .tl-left {
    text-align: right;
    padding-top: 2px
  }

  .tl-day {
    font-size: 11px;
    font-weight: 500;
    color: var(--blue-600);
    letter-spacing: 0.08em
  }

  .tl-phase {
    font-size: 11px;
    color: var(--gray-400);
    margin-top: 2px
  }

  .tl-right {
    padding-left: 1.5rem;
    border-left: 0.5px solid var(--border)
  }

    .tl-right h3 {
      font-size: 14px;
      font-weight: 500;
      margin-bottom: 0.35rem
    }

    .tl-right p {
      font-size: 13px;
      color: var(--gray-600);
      line-height: 1.65
    }

  .tl-tags {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
    margin-top: 0.6rem
  }

  .tl-tag {
    font-size: 11px;
    background: var(--green-50);
    color: var(--green-800);
    padding: 2px 10px;
    border-radius: 20px
  }

  .tl-tagb {
    font-size: 11px;
    background: var(--blue-50);
    color: var(--blue-800);
    padding: 2px 10px;
    border-radius: 20px
  }
  /* INDUSTRY — CLUSTER + SUB TABS */
  .cluster-tabs {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem
  }

  .cluster-tab {
    font-size: 13px;
    font-weight: 500;
    padding: 8px 20px;
    border: 0.5px solid var(--border-strong);
    border-radius: 20px;
    cursor: pointer;
    background: transparent;
    color: var(--gray-600);
    font-family: 'DM Sans',sans-serif;
    transition: all 0.15s
  }

    .cluster-tab:hover {
      background: var(--gray-100)
    }

    .cluster-tab.active {
      background: var(--black);
      color: var(--white);
      border-color: var(--black)
    }

  .cluster-panel {
    display: none
  }

    .cluster-panel.show {
      display: block
    }

  .sub-tabs {
    display: flex;
    gap: 0.4rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.75rem
  }

  .sub-tab {
    font-size: 12px;
    padding: 5px 14px;
    border: 0.5px solid var(--border);
    border-radius: 20px;
    cursor: pointer;
    background: transparent;
    color: var(--gray-600);
    font-family: 'DM Sans',sans-serif;
    transition: all 0.15s
  }

    .sub-tab:hover {
      background: var(--gray-50)
    }

    .sub-tab.active {
      background: var(--blue-600);
      color: var(--white);
      border-color: var(--blue-600)
    }

  .vpanel {
    display: none;
    max-width: 780px;
    margin: 0 auto;
    background: var(--white);
    border: 0.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem
  }

    .vpanel.show {
      display: block
    }

  .vp-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem
  }

  .vp-title {
    font-size: 16px;
    font-weight: 500
  }

  .vp-desc {
    font-size: 13px;
    color: var(--gray-600);
    margin-top: 0.25rem;
    line-height: 1.5
  }

  .vp-urgency {
    font-size: 11px;
    font-weight: 500;
    padding: 4px 12px;
    border-radius: 20px;
    white-space: nowrap;
    flex-shrink: 0
  }

    .vp-urgency.high {
      background: var(--blue-50);
      color: var(--blue-800)
    }

    .vp-urgency.med {
      background: var(--green-50);
      color: var(--green-800)
    }

  .vp-metrics {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 0.75rem;
    margin-bottom: 1.5rem
  }

  .vp-m {
    background: var(--gray-50);
    border-radius: var(--radius-md);
    padding: 1rem;
    text-align: center
  }

  .vp-m-label {
    font-size: 11px;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.35rem
  }

  .vp-m-val {
    font-size: 17px;
    font-weight: 500;
    color: var(--blue-600)
  }

  .vp-use-label {
    font-size: 11px;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.6rem
  }

  .vp-uses {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem
  }

  .vp-use {
    font-size: 12px;
    color: var(--gray-600);
    background: var(--gray-50);
    border: 0.5px solid var(--border);
    padding: 4px 11px;
    border-radius: var(--radius-md)
  }

  .outcomes {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
    gap: 1rem;
    max-width: 760px;
    margin: 0 auto 1.5rem
  }

  .outcome {
    border-radius: var(--radius-lg);
    padding: 1.75rem
  }

    .outcome.win {
      background: var(--green-50);
      border: 0.5px solid var(--green-200)
    }

    .outcome.draw {
      background: var(--blue-50);
      border: 0.5px solid var(--blue-100)
    }

  .out-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.6rem
  }

  .outcome.win .out-label {
    color: var(--green-800)
  }

  .outcome.draw .out-label {
    color: var(--blue-800)
  }

  .out-title {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 0.5rem
  }

  .outcome.win .out-title {
    color: #173404
  }

  .outcome.draw .out-title {
    color: var(--blue-800)
  }

  .out-body {
    font-size: 13px;
    line-height: 1.65
  }

  .outcome.win .out-body {
    color: var(--green-600)
  }

  .outcome.draw .out-body {
    color: var(--blue-600)
  }

  .outcome-note {
    text-align: center;
    font-size: 13px;
    color: var(--gray-400)
  }

  .faq-wrap {
    max-width: 660px;
    margin: 0 auto
  }

  .faq-item {
    border-bottom: 0.5px solid var(--border);
    padding: 1.1rem 0;
    cursor: pointer
  }

  .faq-q {
    font-size: 14px;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    color: var(--black)
  }

  .faq-icon {
    font-size: 20px;
    color: var(--gray-400);
    flex-shrink: 0;
    font-weight: 300
  }

  .faq-a {
    font-size: 13px;
    color: var(--gray-600);
    line-height: 1.75;
    margin-top: 0.75rem;
    display: none;
    padding-right: 2rem
  }

    .faq-a.open {
      display: block
    }

  .form-section {
    background: var(--gray-50)
  }

  .form-wrap {
    max-width: 580px;
    margin: 0 auto
  }

  .form-eyebrow {
    text-align: center;
    margin-bottom: 0.6rem
  }

    .form-eyebrow span {
      font-size: 11px;
      letter-spacing: 0.13em;
      text-transform: uppercase;
      color: var(--blue-800);
      background: var(--blue-50);
      padding: 4px 14px;
      border-radius: 20px
    }

  .form-h {
    font-family: 'DM Serif Display',serif;
    font-size: clamp(22px,3.5vw,34px);
    font-weight: 400;
    text-align: center;
    margin: 0.75rem 0 0.5rem;
    line-height: 1.2
  }

  .form-deck {
    font-size: 14px;
    color: var(--gray-600);
    text-align: center;
    margin: 0 auto 2rem;
    line-height: 1.65;
    max-width: 460px
  }

  .form-card {
    background: var(--white);
    border: 0.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.25rem
  }

  .prog-row {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--gray-400);
    margin-bottom: 0.5rem
  }

  .prog-bar {
    height: 2px;
    background: var(--gray-200);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 1.75rem
  }

  .prog-fill {
    height: 100%;
    background: var(--blue-600);
    border-radius: 2px;
    transition: width 0.3s ease
  }

  .field {
    margin-bottom: 1.1rem
  }

    .field label {
      display: block;
      font-size: 12px;
      font-weight: 500;
      color: var(--gray-600);
      margin-bottom: 0.4rem;
      letter-spacing: 0.03em
    }

    .field input, .field select, .field textarea {
      width: 100%;
      font-size: 14px;
      font-family: 'DM Sans',sans-serif;
      color: var(--black);
      background: var(--gray-50);
      border: 0.5px solid var(--border);
      border-radius: var(--radius-md);
      padding: 10px 13px;
      outline: none;
      transition: border-color 0.15s,background 0.15s;
      appearance: none
    }

      .field input:focus, .field select:focus, .field textarea:focus {
        border-color: var(--border-strong);
        background: var(--white)
      }

    .field textarea {
      resize: vertical;
      min-height: 90px;
      line-height: 1.65
    }

  .field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem
  }

  .btn-submit {
    width: 100%;
    background: var(--black);
    color: var(--white);
    font-family: 'DM Sans',sans-serif;
    font-size: 14px;
    font-weight: 500;
    padding: 13px;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: opacity 0.15s;
    margin-top: 0.5rem
  }

    .btn-submit:hover {
      opacity: 0.85
    }

  .btn-back {
    width: 100%;
    background: transparent;
    color: var(--gray-600);
    font-family: 'DM Sans',sans-serif;
    font-size: 14px;
    padding: 11px;
    border-radius: var(--radius-md);
    border: 0.5px solid var(--border);
    cursor: pointer;
    margin-bottom: 0.5rem;
    transition: background 0.15s
  }

    .btn-back:hover {
      background: var(--gray-50)
    }

  .form-note {
    text-align: center;
    font-size: 12px;
    color: var(--gray-400);
    margin-top: 0.85rem;
    line-height: 1.6
  }

  .success-wrap {
    display: none;
    text-align: center;
    padding: 2.5rem 1rem
  }

  .success-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--green-50);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem
  }

    .success-icon svg {
      width: 22px;
      height: 22px;
      stroke: var(--green-600);
      fill: none;
      stroke-width: 2
    }

  .success-wrap h3 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 0.6rem
  }

  .success-wrap p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.7;
    max-width: 380px;
    margin: 0 auto
  }

/* FOOTER */
footer {
  padding: 3rem 2.5rem 2rem;
  border-top: 0.5px solid var(--border);
  background: var(--gray-50)
}

.footer-inner {
  max-width: 900px;
  margin: 0 auto
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 0.5px solid var(--border)
}

.footer-brand {
}

.footer-logo {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--black);
  display: block;
  margin-bottom: 0.75rem
}

.footer-blurb {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.75;
  max-width: 280px
}

.footer-col-title {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 0.85rem
}

.footer-col a {
  display: block;
  font-size: 13px;
  color: var(--gray-600);
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: color 0.15s
}

  .footer-col a:hover {
    color: var(--blue-600)
  }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding-top: 1.5rem
}

.footer-copy {
  font-size: 12px;
  color: var(--gray-400)
}

.footer-tag {
  font-size: 12px;
  color: var(--gray-400);
  font-style: italic;
  font-family: 'DM Serif Display',serif
}

.footer-legal {
  display: flex;
  gap: 1.25rem
}

  .footer-legal a {
    font-size: 12px;
    color: var(--gray-400);
    text-decoration: none;
    transition: color 0.15s
  }

    .footer-legal a:hover {
      color: var(--black)
    }

@media(max-width:680px) {
  .footer-top {
    grid-template-columns: 1fr
  }

  .footer-blurb {
    max-width: 100%
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem
  }

  section {
    padding: 3.5rem 1.25rem
  }

  .page-hero {
    padding: 3.5rem 1.25rem 3rem
  }

  .cta-strip {
    padding: 3.5rem 1.25rem
  }

}

  @media(max-width:600px) {
    section {
      padding: 3.5rem 1.25rem
    }

    nav {
      padding: 1rem 1.25rem
    }

    .field-row {
      grid-template-columns: 1fr
    }

    .vp-metrics {
      grid-template-columns: 1fr
    }

    footer {
      padding: 1.25rem
    }
  }

.re {
  direction: rtl;
  unicode-bidi: bidi-override;
}

