/* =============================================
   AqTEAM Real Estate — Global Stylesheet
   ============================================= */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

/* =============================================
   CSS Variables
   ============================================= */
:root {
  --powersuit-blue: #10295A;
  --pure-white: #FFFFFF;
  --legacy-green: #1A9175;
  --misty-grey: #E6E7E8;
  --barely-there: #F1F2F2;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --transition: 0.3s ease;
  --shadow-sm: 0 2px 8px rgba(16, 41, 90, 0.08);
  --shadow-md: 0 8px 32px rgba(16, 41, 90, 0.12);
  --shadow-lg: 0 16px 64px rgba(16, 41, 90, 0.16);
  --radius: 4px;
  --radius-lg: 8px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--powersuit-blue);
  background: var(--pure-white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul {
  list-style: none;
}

/* =============================================
   Typography
   ============================================= */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  line-height: 1.2;
  font-weight: 600;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

.section-divider {
  border: none;
  height: 2px;
  background-color: #1A9175;
  width: 100%;
  margin: 0;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--legacy-green);
  font-weight: 700;
  display: block;
  margin-bottom: 0.75rem;
}

.section-heading {
  font-family: var(--font-heading);
  color: var(--powersuit-blue);
  margin-bottom: 1rem;
}

.section-subtext {
  font-size: 1.05rem;
  color: #4a5568;
  max-width: 560px;
  line-height: 1.75;
}

/* =============================================
   Layout Utilities
   ============================================= */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container--wide {
  max-width: 1400px;
}

.section {
  padding: 6rem 0;
}

.section--grey {
  background: var(--barely-there);
}

.section--dark {
  background: var(--powersuit-blue);
  color: var(--pure-white);
}

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

.text-center .section-subtext {
  margin: 0 auto;
}

/* =============================================
   Buttons
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-transform: uppercase;
}

.btn--primary {
  background: var(--legacy-green);
  color: var(--pure-white);
  border-color: var(--legacy-green);
}

.btn--primary:hover {
  background: transparent;
  color: var(--legacy-green);
  font-weight: 700;
}

.btn--outline {
  background: transparent;
  color: var(--pure-white);
  border-color: var(--pure-white);
}

.btn--outline:hover {
  background: var(--pure-white);
  color: var(--powersuit-blue);
}

.btn--outline-dark {
  background: transparent;
  color: var(--powersuit-blue);
  border-color: var(--powersuit-blue);
}

.btn--outline-dark:hover {
  background: var(--powersuit-blue);
  color: var(--pure-white);
}

.btn--green-outline {
  background: transparent;
  color: var(--legacy-green);
  font-weight: 700;
  border-color: var(--legacy-green);
}

.btn--green-outline:hover {
  background: var(--legacy-green);
  color: var(--pure-white);
}

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

.navbar--transparent {
  background: transparent;
}

.navbar--scrolled {
  background: var(--powersuit-blue);
  padding: 0.85rem 0;
  box-shadow: var(--shadow-md);
}

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

.navbar__logo img {
  height: 72px;
  width: auto;
  transition: opacity var(--transition);
}

.navbar__logo-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.navbar__logo-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.navbar__dre {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  padding-left: 2px;
}

.navbar__logo-divider {
  width: 3px;
  height: 56px;
  background: #1A9175;
  flex-shrink: 0;
}

.navbar__roa-logo {
  height: 72px;
  width: auto;
  margin-left: 0.75rem;
}

.navbar__logo-group {
  opacity: 1;
}

.navbar__logo:hover img {
  opacity: 0.85;
}

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.navbar__link {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pure-white);
  position: relative;
  padding: 6px 14px;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
}

.navbar__link::after {
  display: none;
}

.navbar__link:hover {
  color: var(--pure-white);
  background: rgba(26, 145, 117, 0.25);
}

.navbar__link.active,
.navbar__link:active {
  background: var(--legacy-green);
  color: var(--pure-white);
}

/* Dropdown */
.navbar__has-dropdown {
  position: relative;
}

.navbar__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  padding-top: 8px;
  transform: translateY(-4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 200;
}

.navbar__dropdown-inner {
  background: var(--pure-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  width: max-content;
  padding: 0.2rem 0;
  position: relative;
}

.navbar__dropdown-inner::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 1rem;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid var(--pure-white);
}

.navbar__has-dropdown:hover .navbar__dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.navbar__dropdown-link {
  display: block;
  padding: 0.45rem 1.1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--powersuit-blue);
  white-space: nowrap;
  transition: background var(--transition), color var(--transition);
}

.navbar__dropdown-link:hover {
  background: var(--barely-there);
  color: var(--powersuit-blue);
}

.navbar__cta {
  margin-left: 1rem;
}

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

.navbar__hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--pure-white);
  transition: all var(--transition);
  transform-origin: center;
}

.navbar__hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.navbar__hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav drawer */
.navbar__mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: min(320px, 80vw);
  height: 100vh;
  background: var(--powersuit-blue);
  padding: 6rem 2rem 2rem;
  flex-direction: column;
  gap: 1.5rem;
  transition: right 0.4s cubic-bezier(0.4,0,0.2,1);
  box-shadow: -8px 0 32px rgba(0,0,0,0.3);
  z-index: 999;
}

.navbar__mobile-menu.open {
  right: 0;
}

.navbar__mobile-link {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--pure-white);
  letter-spacing: 0.05em;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: color var(--transition);
}

.navbar__mobile-link:hover {
  color: var(--legacy-green);
  font-weight: 700;
}

.navbar__mobile-link--sub {
  padding-left: 2rem;
  font-size: 0.95rem;
  color: #6b7280;
  border-left: 2px solid #1A9175;
  margin-left: 1rem;
}

.navbar__mobile-link--sub:hover {
  color: var(--powersuit-blue);
}

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 998;
}

.mobile-overlay.open {
  display: block;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('Hero_Background2.jpg');
  background-size: 100% 182%;
  background-position: top center;
  background-repeat: no-repeat;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero__bg.loaded {
  transform: scale(1);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8, 18, 42, 0.72) 0%,
    rgba(10, 25, 55, 0.45) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-top: 6rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.hero__brand {
  position: absolute;
  top: 1.25rem;
  left: 2rem;
  z-index: 10;
}

.hero__logo-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.1s forwards;
}

.hero__logo {
  height: 60px;
  width: auto;
}

.hero__logo-divider {
  width: 1px;
  height: 44px;
  background: rgba(255, 255, 255, 0.45);
  flex-shrink: 0;
}

.hero__roa-logo {
  height: 60px;
  width: auto;
  opacity: 1;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.75);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 0;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.2s forwards;
}

.hero__eyebrow::before {
  content: '';
  display: block;
  width: 220px;
  height: 1.5px;
  background: rgba(255,255,255,0.75);
}

.hero__title {
  color: var(--pure-white);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  line-height: 1.1;
  margin-bottom: 1.25rem;
  text-align: left;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.4s forwards;
}

.hero__title em {
  font-style: italic;
  color: var(--pure-white);
}

.hero__subtitle {
  color: #ffffff !important;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 700px;
  opacity: 1;
}

/* Hero Tabs Wrapper */
.hero__tabs-wrapper {
  width: 100%;
}

/* Hero Tabs */
.hero__tabs {
  display: flex;
  gap: 0;
  border: 1.5px solid rgba(255,255,255,0.5);
  border-radius: 999px;
  overflow: hidden;
  width: fit-content;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.5s forwards;
}

.hero__tab {
  flex: 1;
  padding: 0.6rem 1.4rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  border-right: 1px solid rgba(255,255,255,0.35);
  background: transparent;
  color: rgba(255,255,255,0.75);
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}

.hero__tab:last-child {
  border-right: none;
}

.hero__tab:hover {
  background: rgba(255,255,255,0.15);
  color: var(--pure-white);
}

.hero__tab.active {
  background: var(--pure-white);
  color: var(--powersuit-blue);
}

/* Hide inactive panels */
.hero__panel[hidden] { display: none !important; }

/* Hero Search Bar */
.hero__search {
  background: var(--pure-white);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  flex-wrap: wrap;
  box-shadow: var(--shadow-lg);
  width: 50%;
  max-width: 600px;
  margin-top: 2rem;
}

.search-field {
  flex: 1;
  min-width: 160px;
}

.search-field label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: 0.35rem;
}

.search-field input,
.search-field select {
  width: 100%;
  border: 1.5px solid var(--misty-grey);
  border-radius: var(--radius);
  padding: 0.65rem 0.85rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--powersuit-blue);
  background: var(--barely-there);
  transition: border-color var(--transition);
  outline: none;
}

.search-field input:focus,
.search-field select:focus {
  border-color: var(--legacy-green);
}

.search-field input::placeholder {
  color: #9ca3af;
}

.hero__search .btn {
  flex-shrink: 0;
  padding: 0.75rem 2rem;
  white-space: nowrap;
}

.hero__panel--sell {
  align-items: center;
  gap: 2rem;
  width: fit-content;
  background: transparent;
  box-shadow: none;
  padding: 0;
  margin-left: 0;
  margin-top: 1.5rem;
}

.hero__panel--invest {
  background: transparent;
  box-shadow: none;
  padding: 0;
  width: fit-content;
  align-self: flex-start;
}

.hero__panel--contact {
  background: transparent;
  box-shadow: none;
  padding: 0;
  width: fit-content;
  align-self: flex-start;
}

.sell-panel__copy {
  flex: 1;
}

.sell-panel__heading {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--powersuit-blue);
  margin-bottom: 0.25rem;
}

.sell-panel__sub {
  font-size: 0.875rem;
  color: #6b7280;
}

.hero__brokerage {
  position: absolute;
  bottom: 1.5rem;
  right: 2rem;
  z-index: 2;
  color: rgba(255,255,255,0.55);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: bounce 2s ease infinite;
}

.hero__scroll svg {
  width: 20px;
  height: 20px;
  stroke: rgba(255,255,255,0.6);
}

/* =============================================
   STATS STRIP
   ============================================= */
.stats-strip {
  background: var(--powersuit-blue);
  padding: 3rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.stats-strip__grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.stats-strip__item {
  flex: 1;
  text-align: center;
  padding: 0 2rem;
}

.stats-strip__num {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--pure-white);
  line-height: 1;
  margin-bottom: 0.4rem;
  letter-spacing: -0.02em;
}

.stats-strip__num span {
  color: #ffffff;
  font-weight: 700;
}

.stats-strip__veteran-logo {
  height: clamp(3rem, 5.5vw, 4.5rem);
  width: auto;
  display: block;
  margin: 0 auto;
}

.stats-strip__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #1A9175;
}

.stats-strip__sep {
  width: 1px;
  height: 52px;
  background: rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}

/* =============================================
   LISTINGS CAROUSEL
   ============================================= */
.carousel-section {
  padding: 5rem 0;
  background: var(--pure-white);
  overflow: hidden;
}

.carousel-section__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2.5rem;
}

.carousel-controls {
  display: flex;
  gap: 0.65rem;
}

.carousel-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--powersuit-blue);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), color var(--transition);
  color: var(--powersuit-blue);
  flex-shrink: 0;
}

.carousel-arrow svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
}

.carousel-arrow:hover {
  background: var(--powersuit-blue);
  color: var(--pure-white);
}

.carousel-arrow:disabled {
  opacity: 0.3;
  cursor: default;
}

.carousel-viewport {
  overflow: hidden;
  /* extend right past container padding to hint at next card */
  margin-right: -3rem;
}

.carousel-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-right: 3rem;
  padding-bottom: 1rem; /* room for shadow */
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.carousel-track .listing-card {
  scroll-snap-align: start;
  flex-shrink: 0;
  width: 340px;
}

.carousel-footer {
  margin-top: 2.5rem;
  display: flex;
  justify-content: flex-start;
}

/* Listing card CTA button */
.listing-card__cta {
  display: block;
  width: 100%;
  text-align: center;
  justify-content: center;
  margin-top: 1.25rem;
  padding: 0.65rem 1rem;
  font-size: 0.8rem;
}

/* Badge color variants */
.listing-card__badge--gold {
  background: #1A9175;
  color: #1a0f00;
}

.listing-card__badge--teal {
  background: #0f7b68;
  color: var(--pure-white);
}

/* Coming Soon card variants */
.listing-card__coming-soon-img {
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, #0d1f3c 0%, #10295A 60%, #162444 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.listing-card__coming-soon-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 18px,
    rgba(201,169,110,0.04) 18px,
    rgba(201,169,110,0.04) 19px
  );
}

.listing-card__body--coming-soon {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
  padding-bottom: 1.5rem;
}

.listing-card__coming-soon-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #1A9175;
  font-weight: 700;
  margin: 0;
}

.listing-card__coming-soon-neighborhood {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  font-style: normal;
  color: var(--powersuit-blue);
  margin: 0 0 0.25rem;
}

.listing-card__coming-soon-sub {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: #6b7280;
  line-height: 1.5;
  margin: 0 0 0.5rem;
}

/* =============================================
   FEATURED LISTINGS (legacy grid)
   ============================================= */
.listings-coming-soon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
  margin-top: 2rem;
  border: 1.5px dashed rgba(16, 41, 90, 0.2);
  border-radius: var(--radius-lg);
  background: var(--barely-there);
}

.listings-coming-soon__label {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--powersuit-blue);
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}

.listings-coming-soon__text {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--slate-mist);
  max-width: 480px;
  line-height: 1.7;
}

.listings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.listing-card {
  background: var(--pure-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}

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

.listing-card__image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.listing-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.listing-card:hover .listing-card__image img {
  transform: scale(1.06);
}

.listing-card__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--legacy-green);
  color: var(--pure-white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: 2px;
}

.listing-card__fav {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition);
}

.listing-card__fav:hover {
  background: var(--pure-white);
}

.listing-card__fav svg {
  width: 16px;
  height: 16px;
  stroke: var(--powersuit-blue);
  fill: none;
  transition: fill var(--transition), stroke var(--transition);
}

.listing-card__fav.active svg {
  fill: #ef4444;
  stroke: #ef4444;
}

.listing-card__body {
  padding: 1.25rem;
}

.listing-card__price {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--powersuit-blue);
  margin-bottom: 0.35rem;
}

.listing-card__address {
  font-size: 0.9rem;
  color: #6b7280;
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.3rem;
}

.listing-card__address svg {
  width: 14px;
  height: 14px;
  stroke: var(--legacy-green);
  flex-shrink: 0;
  margin-top: 2px;
}

.listing-card__details {
  display: flex;
  gap: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--misty-grey);
}

.listing-detail {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.82rem;
  color: #4b5563;
  font-weight: 500;
}

.listing-detail svg {
  width: 15px;
  height: 15px;
  stroke: var(--legacy-green);
  flex-shrink: 0;
}

/* =============================================
   CORE VALUES — The Codex (Premium Redesign)
   ============================================= */

/* Section */
.values-section {
  background: var(--powersuit-blue);
  padding: 3.5rem 0 2.5rem;
  position: relative;
  overflow: hidden;
}

/* Background atmosphere */
.values-section__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.values-section__bg-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  pointer-events: none;
}

.values-section__bg-glow--tl {
  background: radial-gradient(circle, rgba(26, 145, 117, 0.07) 0%, transparent 65%);
  top: -150px;
  left: -150px;
}

.values-section__bg-glow--br {
  background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, transparent 65%);
  bottom: -150px;
  right: -150px;
}

.values-section__bg-watermark {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  font-family: var(--font-heading);
  font-size: clamp(7rem, 18vw, 16rem);
  font-weight: 700;
  font-style: italic;
  color: rgba(255, 255, 255, 0.022);
  letter-spacing: -0.05em;
  user-select: none;
  line-height: 1;
  white-space: nowrap;
}

.values-section .container {
  position: relative;
  z-index: 1;
}

/* Header — stacked single column */
.values-section__header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  padding-bottom: 0.25rem;
  margin-bottom: 0;
  max-width: 680px;
}

.values-section__label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(26, 145, 117, 0.7);
  margin-bottom: 0.85rem;
}

.values-section__heading {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  color: var(--pure-white);
  line-height: 1.05;
  margin: 0 0 1rem;
  font-weight: 600;
}

.values-section__sub {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.75;
  margin: 0 0 1.5rem;
  white-space: nowrap;
}

/* Ornamental rule */
.values-section__rule {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  width: 100%;
  margin-bottom: 1.5rem;
}

.values-section__rule-line {
  flex: 1;
  height: 1px;
  background: rgba(26, 145, 117, 0.35);
}

.values-section__rule-diamond {
  width: 5px;
  height: 5px;
  background: #1A9175;
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* Glass-tile grid */
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(26, 145, 117, 0.2);
  border: 1px solid rgba(26, 145, 117, 0.2);
  margin-top: 0;
}

.value-item {
  background: rgba(8, 20, 50, 0.45);
  transition: background 0.4s ease;
}

.value-item:hover {
  background: rgba(255, 255, 255, 0.05);
}

.value-item__inner {
  padding: 2.5rem 2.75rem;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  overflow: hidden;
  box-sizing: border-box;
}

/* Shimmer top border on hover */
.value-item__inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #1A9175 50%, transparent 100%);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.value-item:hover .value-item__inner::before {
  transform: scaleX(1);
}

/* Corner glow */
.value-item__inner::after {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 145, 117, 0.09) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.value-item:hover .value-item__inner::after {
  opacity: 1;
}

/* Card top row: number + icon */
.value-item__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

/* Ghost number */
.value-item__num {
  font-family: var(--font-body);
  font-size: 2.4rem;
  font-style: normal;
  font-weight: 300;
  color: #1A9175;
  line-height: 1;
  letter-spacing: 0.02em;
  user-select: none;
  transition: color 0.4s ease;
  flex-shrink: 0;
}

.value-item:hover .value-item__num {
  color: rgba(26, 145, 117, 0.4);
}

/* SVG icon */
.value-item__icon {
  width: 38px;
  height: 38px;
  color: rgba(26, 145, 117, 0.45);
  transition: color 0.4s ease, transform 0.45s ease;
  flex-shrink: 0;
}

.value-item:hover .value-item__icon {
  color: rgba(26, 145, 117, 0.9);
  transform: translateY(-3px);
}

.value-item__icon svg {
  width: 100%;
  height: 100%;
}

/* Body */
.value-item__body {
  flex: 1;
}

.value-item__title {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  font-style: normal;
  color: #ffffff;
  line-height: 1.3;
  margin: 0 0 0.65rem;
  letter-spacing: 0.01em;
  transition: color 0.35s ease;
}

.value-item:hover .value-item__title {
  color: #1A9175;
  font-weight: 700;
}

.value-item__desc {
  font-family: var(--font-body);
  font-size: 0.86rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
  margin: 0;
}

/* Expanding gold rule at card bottom */
.value-item__accent {
  width: 20px;
  height: 1px;
  background: rgba(26, 145, 117, 0.28);
  transition: width 0.45s ease, background 0.45s ease;
  margin-top: 0.25rem;
}

.value-item:hover .value-item__accent {
  width: 44px;
  background: rgba(26, 145, 117, 0.65);
}

/* Veteran banner */
.values-veteran {
  margin-top: 4rem;
  padding-top: 3.5rem;
  border-top: 1px solid rgba(26, 145, 117, 0.25);
}

.values-veteran__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}

.values-veteran__line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(26, 145, 117, 0.25));
}

.values-veteran__line:last-child {
  background: linear-gradient(270deg, transparent, rgba(26, 145, 117, 0.25));
}

.values-veteran__img {
  height: 90px;
  width: auto;
  opacity: 0.82;
  filter: drop-shadow(0 0 14px rgba(26, 145, 117, 0.18));
  transition: opacity 0.35s ease, filter 0.35s ease;
  flex-shrink: 0;
}

.values-veteran__img:hover {
  opacity: 1;
  filter: drop-shadow(0 0 22px rgba(26, 145, 117, 0.38));
}

.values-veteran__content {
  text-align: center;
  flex-shrink: 0;
}

.values-veteran__text {
  font-family: var(--font-body);
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  font-style: normal;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.2;
  margin: 0 0 0.4rem;
  letter-spacing: 0.01em;
}

.values-veteran__sub {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #1A9175;
  margin: 0;
}

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: center;
}

.about-story__image img {
  width: 100%;
  max-width: 380px;
  object-fit: contain;
}

/* Duo layout for two founders */
.about-story__image--duo {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 1rem;
}

.about-story__founder-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.about-story__founder-card img {
  width: 100%;
  max-width: 160px;
  object-fit: contain;
  max-height: 260px;
}

.about-story__founder-placeholder {
  width: 100%;
  max-width: 160px;
  height: 220px;
  background: linear-gradient(160deg, #0d1f3c 0%, #10295A 100%);
  border: 1px dashed rgba(201,169,110,0.4);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}

.about-story__placeholder-text {
  font-family: var(--font-body);
  font-size: 0.65rem;
  color: rgba(201,169,110,0.7);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-align: center;
  margin: 0;
  padding: 0 0.5rem;
}

.about-story__founder-label {
  width: 100%;
  max-width: 160px;
  padding: 0.6rem 0 0;
  border-top: 1px solid rgba(201,169,110,0.3);
  text-align: center;
  margin-top: 0.5rem;
}

.about-story__founder-name {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--powersuit-blue);
  margin: 0 0 0.15rem;
}

.about-story__founder-role {
  font-family: var(--font-body);
  font-size: 0.65rem;
  color: #6b7280;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0;
}

.about-story__text {
  font-size: 1rem;
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about-story__signature {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--misty-grey);
}

.about-story__name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--powersuit-blue);
  font-style: normal;
}

.about-story__role {
  font-size: 0.85rem;
  color: var(--slate-mist);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 0.25rem;
}

.about-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}

.about-pillar {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.about-pillar__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--powersuit-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pure-white);
  flex-shrink: 0;
}

.about-pillar__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--powersuit-blue);
}

.about-pillar__desc {
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.7;
}

.about-veteran-banner {
  background: var(--powersuit-blue);
  padding: 5rem 0;
}

.about-veteran-banner__inner {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.about-veteran-banner__img {
  height: 160px;
  width: auto;
  flex-shrink: 0;
  opacity: 0.95;
}

.about-veteran-banner__heading {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--pure-white);
  margin-bottom: 1rem;
}

.about-veteran-banner__text {
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  max-width: 640px;
}

/* =============================================
   BUY PAGE — Redesigned
   ============================================= */

/* Shared section typography */
.buy-section-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #1A9175;
  font-weight: 700;
  margin-bottom: 0.85rem;
}

.buy-section-heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--powersuit-blue);
  font-weight: 600;
  font-style: normal;
  line-height: 1.1;
  margin: 0 0 1.25rem;
}

.buy-section-sub {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: #4b5563;
  line-height: 1.8;
  max-width: none;
  white-space: nowrap;
  margin: 0;
}

.buy-section-sub--center {
  margin: 0.75rem auto 0;
  text-align: center;
}

/* Ornamental rule */
.buy-rule {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  width: 140px;
  margin-bottom: 1.5rem;
}

.buy-rule--center {
  margin: 0 auto 1rem;
}

.buy-rule__line {
  flex: 1;
  height: 1px;
  background: rgba(26, 145, 117, 0.4);
}

.buy-rule__diamond {
  width: 5px;
  height: 5px;
  background: #1A9175;
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* Section header: 2-col left/right */
.buy-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(26, 145, 117, 0.2);
  margin-bottom: 3rem;
}

/* ============================================
   SELL PAGE — Advantage Cards
   ============================================ */
.sell-advantage-section {
  background: var(--pure-white);
}

.sell-advantage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.sell-advantage-card {
  background: var(--pure-white);
  border: 1px solid #c5c8ce;
  border-top: 3px solid #1A9175;
  border-radius: 4px;
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.sell-advantage-card:hover {
  box-shadow: 0 8px 40px rgba(16, 41, 90, 0.1);
  transform: translateY(-3px);
}

.sell-advantage-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.sell-advantage-card__num {
  font-family: var(--font-body);
  font-size: 2.2rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  color: #1A9175;
}

.sell-advantage-card__icon {
  width: 44px;
  height: 44px;
  color: var(--powersuit-blue);
}

.sell-advantage-card__icon svg {
  width: 100%;
  height: 100%;
}

.sell-advantage-card__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  font-style: normal;
  color: var(--powersuit-blue);
  margin: 0;
}

.sell-advantage-card__desc {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: #4b5563;
  line-height: 1.75;
  margin: 0;
}

.sell-advantage-card__accent {
  width: 0;
  height: 2px;
  background: #1A9175;
  margin-top: auto;
  transition: width 0.4s ease;
}

.sell-advantage-card:hover .sell-advantage-card__accent {
  width: 40px;
}

/* ---- Advantage Cards ---- */
.buy-advantage-section {
  background: var(--pure-white);
}

/* ---- Carousel wrapper ---- */
.buy-carousel-outer {
  position: relative;
}

.buy-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.buy-carousel-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid #1A9175;
  background: var(--pure-white);
  color: #1A9175;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, opacity 0.2s ease;
  flex-shrink: 0;
}

.buy-carousel-btn:hover:not(:disabled) {
  background: #1A9175;
  color: var(--pure-white);
}

.buy-carousel-btn:disabled {
  opacity: 0.3;
  cursor: default;
}

.buy-carousel-dots {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.buy-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1.5px solid #1A9175;
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.buy-carousel-dot.active {
  background: #1A9175;
  transform: scale(1.3);
}

.buy-advantage-carousel {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 0.5rem;
}

/* hide scrollbar */
.buy-advantage-carousel::-webkit-scrollbar { display: none; }
.buy-advantage-carousel { -ms-overflow-style: none; scrollbar-width: none; }

.buy-advantage-card {
  flex: 0 0 calc(50% - 0.75rem);
  scroll-snap-align: start;

  background: var(--pure-white);
  border: 1px solid #c5c8ce;
  border-top: 3px solid #1A9175;
  border-radius: 4px;
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  transition: border-top-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}

.buy-advantage-card:hover {
  border-top-color: #1A9175;
  box-shadow: 0 8px 40px rgba(16, 41, 90, 0.1);
  transform: translateY(-3px);
}

.buy-advantage-card__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.buy-advantage-card__num {
  font-family: var(--font-body);
  font-size: 2.2rem;
  font-weight: 300;
  color: #1A9175;
  line-height: 1;
  letter-spacing: 0.02em;
  user-select: none;
  transition: color 0.35s ease;
}

.buy-advantage-card:hover .buy-advantage-card__num {
  color: rgba(26, 145, 117, 0.35);
}

.buy-advantage-card__icon {
  width: 38px;
  height: 38px;
  color: rgba(26, 145, 117, 0.55);
  transition: color 0.35s ease, transform 0.4s ease;
  flex-shrink: 0;
}

.buy-advantage-card:hover .buy-advantage-card__icon {
  color: #1A9175;
  font-weight: 700;
  transform: translateY(-2px);
}

.buy-advantage-card__icon svg {
  width: 100%;
  height: 100%;
}

.buy-advantage-card__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  font-style: normal;
  color: var(--powersuit-blue);
  margin: 0;
  line-height: 1.3;
}

.buy-advantage-card__desc {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.75;
  margin: 0;
  flex: 1;
}

.buy-advantage-card__accent {
  width: 24px;
  height: 2px;
  background: rgba(26, 145, 117, 0.3);
  border-radius: 1px;
  transition: width 0.4s ease, background 0.4s ease;
  margin-top: auto;
}

.buy-advantage-card:hover .buy-advantage-card__accent {
  width: 44px;
  background: #1A9175;
}

/* ---- Process Steps ---- */
.buy-process-section {
  background: var(--barely-there);
}

.buy-process-header {
  margin-bottom: 4rem;
}

.buy-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.buy-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  padding: 0 1.5rem;
  position: relative;
}

.buy-step__ghost-num {
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #1A9175;
  font-weight: 700;
  line-height: 1;
  user-select: none;
}

.buy-step__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--powersuit-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pure-white);
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(16, 41, 90, 0.18);
  transition: background 0.35s ease, box-shadow 0.35s ease;
}

.buy-step:hover .buy-step__icon {
  background: #1A9175;
  box-shadow: 0 6px 24px rgba(26, 145, 117, 0.3);
}

.buy-step__title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  font-style: normal;
  color: var(--powersuit-blue);
  margin: 0;
  line-height: 1.3;
}

.buy-step__desc {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: #6b7280;
  line-height: 1.7;
  margin: 0;
}

.buy-step__connector {
  flex-shrink: 0;
  width: 60px;
  height: 1.5px;
  background: linear-gradient(90deg, rgba(26, 145, 117, 0.3), rgba(26, 145, 117, 0.6), rgba(26, 145, 117, 0.3));
  margin-top: calc(1.5rem + 32px);
}

/* ---- Stat Strip ---- */
.buy-stats-strip {
  background: var(--powersuit-blue);
  padding: 4.5rem 0;
  position: relative;
  overflow: hidden;
}

.buy-stats-strip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(26, 145, 117, 0.4), transparent);
}

.buy-stats-strip::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(26, 145, 117, 0.4), transparent);
}

.buy-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.buy-stat {
  flex: 1;
  text-align: center;
  padding: 0 2rem;
}

.buy-stat__number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 600;
  font-style: normal;
  color: var(--pure-white);
  line-height: 1;
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}

.buy-stat__rule {
  width: 24px;
  height: 2px;
  background: rgba(26, 145, 117, 0.5);
  margin: 0 auto 0.6rem;
  border-radius: 1px;
}

.buy-stat__label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  color: #1A9175;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.4;
}

.buy-stat__divider {
  width: 1px;
  height: 60px;
  background: rgba(26, 145, 117, 0.2);
  flex-shrink: 0;
}

/* ---- CTA Section ---- */
.buy-cta-section {
  background: var(--barely-there);
  padding: 7rem 0;
}

.buy-cta-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  align-items: start;
}

.buy-cta-content {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  padding-top: 0.5rem;
}

.buy-cta-heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600;
  font-style: normal;
  color: var(--powersuit-blue);
  line-height: 1.1;
  margin: 0 0 1.25rem;
}

.buy-cta-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.buy-cta-benefit {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: #374151;
  line-height: 1.5;
}

.buy-cta-benefit__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(16, 41, 90, 0.06);
  border: 1px solid rgba(16, 41, 90, 0.15);
  color: var(--powersuit-blue);
  flex-shrink: 0;
}

.buy-cta-benefit__icon svg {
  width: 12px;
  height: 12px;
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  transition: transform var(--transition), background var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.1);
}

.testimonial-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1.25rem;
}

.testimonial-card__stars svg {
  width: 18px;
  height: 18px;
  fill: #f59e0b;
  stroke: #f59e0b;
}

.testimonial-card__quote {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-style: italic;
  color: rgba(255,255,255,0.9);
  line-height: 1.75;
  margin-bottom: 1.75rem;
  position: relative;
  padding-left: 1.5rem;
}

.testimonial-card__quote::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -0.5rem;
  font-size: 3rem;
  color: rgba(255,255,255,0.4);
  line-height: 1;
  font-family: var(--font-heading);
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.4);
}

.testimonial-card__name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--pure-white);
}

.testimonial-card__role {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
}

/* =============================================
   LEAD CAPTURE CTA — Light Theme, Featured Founder
   ============================================= */

.cta-section {
  background: var(--barely-there);
  padding: 7rem 0;
}

.cta-section__bg {
  display: none;
}

/* 3-column grid: founder | content | form */
.cta-inner {
  display: grid;
  grid-template-columns: auto 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

/* 2-column grid: content | form */
.cta-inner--two-col {
  grid-template-columns: 1fr 1fr;
}

/* ---- Featured Founder ---- */
/* Two founders side-by-side wrapper */
.cta-founders {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 1.25rem;
}

.cta-founder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  flex: 1;
}

.cta-founder__frame {
  position: relative;
  width: 100%;
  max-width: 180px;
}

.cta-founder__img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: top center;
  max-height: 340px;
}

/* Placeholder frame for missing photo */
.cta-founder__frame--placeholder {
  width: 100%;
  max-width: 180px;
}

.cta-founder__placeholder {
  width: 100%;
  max-width: 180px;
  height: 280px;
  background: linear-gradient(160deg, #0d1f3c 0%, #10295A 100%);
  border: 1px dashed rgba(201,169,110,0.4);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.cta-founder__placeholder-text {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: rgba(201,169,110,0.7);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  margin: 0;
}

.cta-founder__caption {
  width: 100%;
  padding: 0.75rem 0 0;
  border-top: 1px solid rgba(26, 145, 117, 0.3);
  text-align: center;
}

.cta-founder__name {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  font-style: normal;
  color: var(--powersuit-blue);
  margin: 0 0 0.2rem;
}

.cta-founder__title {
  font-family: var(--font-body);
  font-size: 0.68rem;
  color: #6b7280;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0;
}

/* ---- Content Column ---- */
.cta-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-top: 0.5rem;
}

.cta-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #1A9175;
  font-weight: 700;
  margin-bottom: 0.85rem;
}

.cta-heading {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  color: var(--powersuit-blue);
  line-height: 1.1;
  margin: 0 0 1.25rem;
  font-weight: 600;
}

/* Ornamental rule */
.cta-rule {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  width: 140px;
}

.cta-rule__line {
  flex: 1;
  height: 1px;
  background: rgba(26, 145, 117, 0.4);
}

.cta-rule__diamond {
  width: 5px;
  height: 5px;
  background: #1A9175;
  transform: rotate(45deg);
  flex-shrink: 0;
}

.cta-sub {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 400;
  color: #4b5563;
  line-height: 1.8;
  margin: 0;
}

/* Benefits list */
.cta-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.cta-benefit {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: #374151;
  line-height: 1.5;
}

.cta-benefit__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(16, 41, 90, 0.06);
  border: 1px solid rgba(16, 41, 90, 0.15);
  color: var(--powersuit-blue);
  flex-shrink: 0;
}

.cta-benefit__icon svg {
  width: 12px;
  height: 12px;
}

/* ---- Form Card ---- */
.cta-form {
  background: var(--pure-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: 0 4px 40px rgba(16, 41, 90, 0.08);
  position: relative;
  border-top: 3px solid #1A9175;
}

.cta-form__header {
  margin-bottom: 1.75rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #f0ede8;
}

.cta-form__title {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--powersuit-blue);
  margin: 0 0 0.3rem;
}

.cta-form__sub {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: #9ca3af;
  letter-spacing: 0.05em;
  margin: 0;
}

/* Form inputs — light theme */
.cta-form .form-group label {
  color: #374151;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cta-form .form-group input,
.cta-form .form-group select {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  color: #111827;
  border-radius: 3px;
}

.cta-form .form-group input::placeholder {
  color: #9ca3af;
}

.cta-form .form-group input:focus,
.cta-form .form-group select:focus {
  border-color: #1A9175;
  outline: none;
  box-shadow: 0 0 0 3px rgba(26, 145, 117, 0.12);
}

.cta-form .form-group select option {
  background: #ffffff;
  color: #111827;
}

/* Gold submit button */
.cta-submit {
  width: 100%;
  background: var(--powersuit-blue);
  color: #ffffff;
  border: none;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1rem 1.5rem;
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  margin-top: 0.5rem;
}

.cta-submit:hover {
  background: #0d2248;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(16, 41, 90, 0.2);
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group--error input,
.form-group--error select,
.form-group--error textarea {
  border-color: #dc2626;
  background: #fff5f5;
}

.form-error {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: #dc2626;
  font-weight: 500;
  margin-top: 0.1rem;
}

/* Consent checkbox */
.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}
.form-consent input[type="checkbox"] {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: var(--powersuit-blue);
  cursor: pointer;
}
.form-consent__text {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: #6b7280;
  line-height: 1.5;
}
.form-consent--error .form-consent__text {
  color: #dc2626;
}
.form-consent__text a {
  color: var(--powersuit-blue);
  text-decoration: underline;
}

.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #4b5563;
}

.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid var(--misty-grey);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--powersuit-blue);
  background: var(--barely-there);
  transition: border-color var(--transition);
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--legacy-green);
  background: var(--pure-white);
}

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

.form-submit {
  width: 100%;
  margin-top: 1.25rem;
  justify-content: center;
  padding: 1rem;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--powersuit-blue);
  color: rgba(255,255,255,0.7);
  padding: 4.5rem 0 2rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 2rem;
}

.footer__brand p {
  font-size: 0.9rem;
  line-height: 1.75;
  margin: 1.25rem 0 1.75rem;
  max-width: 300px;
}

.footer__logos {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.25rem;
}

.footer__logo {
  height: 44px;
  width: auto;
}

.footer__dre {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.06em;
  margin: -0.75rem 0 1.25rem !important;
}

.footer__social {
  display: flex;
  gap: 0.85rem;
}

.footer__social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: background var(--transition), color var(--transition);
}

.footer__social a:hover {
  background: rgba(255,255,255,0.2);
  color: var(--pure-white);
}

.footer__social svg {
  width: 16px;
  height: 16px;
}

.footer__col h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--pure-white);
  margin-bottom: 1.25rem;
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer__col ul li a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

.footer__col ul li a:hover {
  color: var(--pure-white);
}

.footer__contact-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 0.85rem;
}

.footer__contact-item svg {
  width: 16px;
  height: 16px;
  stroke: rgba(255,255,255,0.6);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer__contact-item span {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
}

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

.footer__bottom p {
  font-size: 0.8rem;
}

.footer__bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer__bottom-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}

.footer__bottom-links a:hover {
  color: var(--pure-white);
}

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-animate].in-view {
  opacity: 1;
  transform: translateY(0);
}

[data-animate-delay="1"] { transition-delay: 0.1s; }
[data-animate-delay="2"] { transition-delay: 0.2s; }
[data-animate-delay="3"] { transition-delay: 0.3s; }
[data-animate-delay="4"] { transition-delay: 0.4s; }
[data-animate-delay="5"] { transition-delay: 0.5s; }

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

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.page-hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--powersuit-blue);
  padding-top: 5rem;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(16,41,90,0.92) 0%, rgba(16,41,90,0.75) 100%);
}

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

.page-hero__title {
  color: var(--pure-white);
  margin-bottom: 0.75rem;
}

.page-hero__sub {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
}

/* =============================================
   MODAL
   ============================================= */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.modal-overlay.open {
  display: flex;
}

.modal {
  background: var(--pure-white);
  border-radius: var(--radius-lg);
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.modal__close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--misty-grey);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  z-index: 1;
}

.modal__close:hover {
  background: var(--powersuit-blue);
}

.modal__close:hover svg {
  stroke: var(--pure-white);
}

.modal__close svg {
  width: 18px;
  height: 18px;
  stroke: var(--powersuit-blue);
}

.modal__image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.modal__body {
  padding: 2rem;
}

.modal__price {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--powersuit-blue);
  margin-bottom: 0.5rem;
}

.modal__address {
  font-size: 1rem;
  color: #6b7280;
  margin-bottom: 1.5rem;
}

.modal__stats {
  display: flex;
  gap: 2rem;
  padding: 1.25rem;
  background: var(--barely-there);
  border-radius: var(--radius);
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}

.modal__stat {
  text-align: center;
}

.modal__stat-value {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--powersuit-blue);
  font-family: var(--font-heading);
}

.modal__stat-label {
  font-size: 0.75rem;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.modal__desc {
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.75;
  margin-bottom: 2rem;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .cta-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  /* Hide founder photos on mobile — keeps CTA focused on form */
  .cta-founders {
    display: none;
  }

  /* Buy page responsive */
  .buy-section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .buy-section-sub {
    white-space: normal;
  }

  .buy-advantage-card {
    flex: 0 0 85%;
  }

  .sell-advantage-grid {
    grid-template-columns: 1fr;
  }

  .buy-steps {
    flex-direction: column;
    align-items: stretch;
    gap: 2rem;
  }

  .buy-step {
    display: grid;
    grid-template-columns: 64px 1fr;
    grid-template-areas:
      "icon title"
      "icon desc";
    column-gap: 1.25rem;
    row-gap: 0.35rem;
    align-items: start;
    text-align: left;
    padding: 0 0 0 1rem;
  }

  .buy-step__ghost-num {
    display: none;
  }

  .buy-step__icon {
    grid-area: icon;
    margin-top: 0.15rem;
    flex-shrink: 0;
  }

  .buy-step__title {
    grid-area: title;
    align-self: end;
  }

  .buy-step__desc {
    grid-area: desc;
    align-self: start;
  }

  .buy-step__connector {
    display: none;
  }

  .buy-stats {
    flex-wrap: wrap;
    gap: 2rem;
  }

  .buy-stat {
    flex: 0 0 45%;
    padding: 0 1rem;
  }

  .buy-stat__divider {
    display: none;
  }

  .buy-cta-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .navbar__nav,
  .navbar__cta {
    display: none;
  }

  .navbar__hamburger {
    display: flex;
  }

  .navbar__mobile-menu {
    display: flex;
  }

  .section {
    padding: 4rem 0;
  }

  .hero__search {
    flex-direction: column;
    width: 100%;
    max-width: 100%;
  }

  .hero__search .btn {
    width: 100%;
    justify-content: center;
  }

  .search-field {
    width: 100%;
  }

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

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

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

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

  .cta-heading {
    font-size: clamp(2.2rem, 9vw, 3.2rem);
    width: 100%;
  }

  /* Sell page CTA — vw-scaled to fill the line width on mobile */
  #sell-cta-heading {
    font-size: clamp(1.5rem, 8vw, 3.2rem);
    white-space: nowrap;
  }

  .cta-rule {
    width: 100%;
  }

  .values-veteran__inner {
    flex-direction: column;
    gap: 1.5rem;
  }

  .values-veteran__line {
    display: none;
  }

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

@media (max-width: 480px) {
  .container {
    padding: 0 1.25rem;
  }

  .hero {
    min-height: 70vh;
  }

  .hero__content {
    padding-top: 5rem;
  }

  /* About page */
  .about-pillars {
    grid-template-columns: 1fr;
  }

  .about-veteran-banner {
    padding: 3rem 0;
  }

  /* Split panels */
  .split-panel {
    padding: 2.5rem 1.5rem;
  }

  /* Values section */
  .values-section {
    padding: 2.5rem 0;
  }

  /* Buy stats — 2-column grid at 480px */
  .buy-stat {
    flex: 0 0 calc(50% - 1rem);
    text-align: center;
  }

  /* Team grid */
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  /* Buttons — ensure minimum touch target */
  .btn {
    padding: 0.75rem 1.5rem;
    min-height: 44px;
  }

  /* Hero tabs */
  .hero__tabs {
    flex-wrap: wrap;
  }

  /* Footer */
  .footer__logos {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  /* Navbar */
  .navbar__logo-group {
    gap: 0.5rem;
  }

  .navbar__roa-logo {
    height: 40px;
  }

  .navbar__logo img {
    height: 32px;
  }

  .navbar__logo-divider {
    height: 32px;
  }
}

/* =============================================
   BUY/SELL PAGE
   ============================================= */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;
}

.split-panel {
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
}

.split-panel--blue {
  background: var(--powersuit-blue);
  color: var(--pure-white);
}

.split-panel--light {
  background: var(--barely-there);
}

.split-panel--light .section-heading {
  color: var(--powersuit-blue);
}

.split-panel__title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: inherit;
  line-height: 1.2;
}

.split-panel--blue .split-panel__title {
  color: var(--pure-white);
}

.split-panel__text {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.8);
}

.split-panel--light .split-panel__text {
  color: #4b5563;
}

.split-benefits {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.split-benefit {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
}

.split-panel--blue .split-benefit {
  color: rgba(255,255,255,0.85);
}

.split-panel--light .split-benefit {
  color: #374151;
}

.split-benefit svg {
  width: 18px;
  height: 18px;
  stroke: var(--legacy-green);
  flex-shrink: 0;
  margin-top: 2px;
}

@media (max-width: 768px) {
  .split-section {
    grid-template-columns: 1fr;
    min-height: unset;
  }

  .split-panel {
    padding: 3.5rem 2rem;
  }

  /* About page */
  .about-story {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

  .about-veteran-banner__inner {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .about-veteran-banner__img {
    height: 120px;
  }

  /* About page — story heading fills one line on mobile */
  #story-heading {
    font-size: clamp(1.4rem, 7.5vw, 2.8rem);
    white-space: nowrap;
  }

  /* Values section */
  .values-section__sub {
    white-space: normal;
  }

  /* Contact page */
  .contact-info-header h2 {
    white-space: normal;
    font-size: 1.6rem;
  }

  /* Stats strip */
  .stats-strip__grid {
    flex-wrap: nowrap;
    gap: 0;
  }

  .stats-strip__item {
    padding: 0 0.5rem;
  }

  .stats-strip__num {
    font-size: clamp(1rem, 4vw, 1.6rem);
  }

  .stats-strip__label {
    font-size: 0.5rem;
    letter-spacing: 0.08em;
  }

  .stats-strip__veteran-logo {
    height: clamp(1.8rem, 5vw, 2.5rem);
  }

  .stats-strip__sep {
    height: 36px;
  }

  /* Navbar logo group */
  .navbar__roa-logo {
    height: 52px;
  }

  .navbar__logo img {
    height: 40px;
  }

  .navbar__logo-divider {
    height: 40px;
  }
}

/* =============================================
   ABOUT PAGE
   ============================================= */
.vision-section {
  background: var(--powersuit-blue);
  padding: 6rem 0;
  text-align: center;
}

.vision-quote {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  font-style: italic;
  color: var(--pure-white);
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  padding: 0 2rem;
}

.vision-quote::before,
.vision-quote::after {
  content: '"';
  font-size: 5rem;
  color: var(--legacy-green);
  font-weight: 700;
  opacity: 0.4;
  line-height: 0;
  position: absolute;
  font-family: var(--font-heading);
}

.vision-quote::before {
  top: 1.5rem;
  left: -0.5rem;
}

.vision-quote::after {
  content: '"';
  bottom: -0.5rem;
  right: -0.5rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.team-card {
  background: var(--pure-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.team-card__image {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-card:hover .team-card__image {
  transform: scale(1.04);
}

.team-card__body {
  padding: 1.5rem;
}

.team-card__name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--powersuit-blue);
  margin-bottom: 0.25rem;
}

.team-card__title {
  font-size: 0.85rem;
  color: var(--legacy-green);
  font-weight: 700;
  letter-spacing: 0.05em;
}

/* =============================================
   LISTINGS PAGE
   ============================================= */
.filter-bar {
  background: var(--pure-white);
  border: 1px solid var(--misty-grey);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: flex-end;
  box-shadow: var(--shadow-sm);
  margin-bottom: 2.5rem;
}

.filter-bar .search-field {
  flex: 1;
  min-width: 160px;
}

.filter-bar .btn {
  flex-shrink: 0;
}

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

/* ============================================
   CONTACT PAGE
   ============================================ */

/* Hero ornamental rule */
.contact-hero-rule {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  width: 120px;
  margin: 1rem auto 1.25rem;
}

.contact-hero-rule__line {
  flex: 1;
  height: 1px;
  background: rgba(26, 145, 117, 0.6);
}

.contact-hero-rule__diamond {
  width: 5px;
  height: 5px;
  background: #1A9175;
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* Section background */
.contact-section {
  background: var(--barely-there);
}

/* 2-col layout */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 5rem;
  align-items: start;
}

/* Left panel */
.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.contact-info-header {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Detail items */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid #d1d5db;
  border-radius: 4px;
  overflow: hidden;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--pure-white);
  border-bottom: 1px solid #e5e7eb;
  transition: background 0.2s ease;
}

.contact-detail-item:last-child {
  border-bottom: none;
}

.contact-detail-item:hover {
  background: #fafafa;
}

.contact-detail-item__icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(16, 41, 90, 0.06);
  border: 1px solid rgba(26, 145, 117, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--powersuit-blue);
}

.contact-detail-item__label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1A9175;
  font-weight: 700;
  margin: 0 0 0.2rem;
}

.contact-detail-item__value {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: #374151;
  line-height: 1.6;
  margin: 0;
}

/* Social row */
.contact-social {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-social__label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9ca3af;
  margin: 0;
}

/* Right form card — extends cta-form */
.contact-form-card {
  /* natural height — matches cta-form card styling */
}

@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* =============================================
   NOTICE BANNER (success/error)
   ============================================= */
.notice {
  display: none;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 1rem;
}

.notice--success {
  background: rgba(26, 145, 117, 0.1);
  color: var(--legacy-green);
  font-weight: 700;
  border: 1px solid rgba(26, 145, 117, 0.3);
}

.notice.show {
  display: block;
}

/* =============================================
   PRIVACY POLICY PAGE
   ============================================= */
.privacy-section {
  padding: 5rem 0 6rem;
  background: #fff;
}

.privacy-content {
  max-width: 780px;
  margin: 0 auto;
  color: #333;
  line-height: 1.8;
}

.privacy-content h2 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--powersuit-blue);
  margin: 2.5rem 0 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #1A9175;
}

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

.privacy-content p {
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.privacy-content ul,
.privacy-content ol {
  margin: 0 0 1.25rem 1.5rem;
  font-size: 0.95rem;
}

.privacy-content li {
  margin-bottom: 0.5rem;
}

.privacy-content a {
  color: var(--powersuit-blue);
  text-decoration: underline;
}

/* =============================================
   Team Page
   ============================================= */

/* Founders row — centered pair */
.team-founders {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

/* Agents grid — responsive columns */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

/* Individual card */
.team-card {
  background: var(--pure-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 2px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  text-align: center;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(26, 145, 117, 0.35);
}

/* Founder card — wider, slightly taller photo */
.team-card--founder {
  width: 260px;
}

.team-card--founder .team-card__photo-wrap {
  height: 300px;
}

.team-card--founder .team-card__placeholder {
  font-size: 2.5rem;
}

/* Photo container — fixed aspect ratio */
.team-card__photo-wrap {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
  background: var(--barely-there);
}

.team-card__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

/* Coming Soon placeholder — shown via onerror JS or directly for missing headshots */
.team-card__placeholder {
  display: none;
  position: absolute;
  inset: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: var(--barely-there);
  color: #9ca3af;
}

.team-card__placeholder svg {
  opacity: 0.4;
}

.team-card__placeholder span {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #9ca3af;
}

.team-card__placeholder--visible {
  display: flex;
}

/* Name & role */
.team-card__info {
  padding: 1.1rem 1rem 1.25rem;
}

.team-card__name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--powersuit-blue);
  margin-bottom: 0.25rem;
  line-height: 1.3;
}

.team-card__role {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1A9175;
  font-weight: 700;
}

/* Responsive breakpoints */
@media (max-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .team-card__photo-wrap {
    height: 200px;
  }

  .team-founders {
    gap: 1.5rem;
  }

  .team-card--founder {
    width: 200px;
  }

  .team-card--founder .team-card__photo-wrap {
    height: 240px;
  }
}

@media (max-width: 480px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .team-card__photo-wrap {
    height: 170px;
  }

  .team-card__info {
    padding: 0.85rem 0.75rem 1rem;
  }

  .team-card__name {
    font-size: 0.9rem;
  }
}
