:root {
  /* ── Pacific One Brand Color Families ── */

  /* Blue family — #184062 */
  --brand-900: #0a2238;
  --brand-800: #123350;
  --brand: #184062;
  --brand-mid: #1f5080;
  --brand-light: #2a6090;
  --brand-400: #4a85b0;
  --brand-100: #dce8f2;
  --brand-50: #eef4f9;

  /* Teal family — #5cc5ce */
  --accent-700: #3a9da6;
  --accent: #5cc5ce;
  --accent-hover: #48b5be;
  --accent-light: #7dd4db;
  --accent-lighter: #a8e4e9;
  --accent-soft: rgba(92, 197, 206, 0.15);
  --accent-50: #edfafa;

  /* Gray family — #4e504f */
  --gray-brand: #4e504f;
  --gray-900: #2d2f2e;
  --gray-700: #3a3c3b;
  --gray-500: #4e504f;
  --gray-400: #6b6d6c;
  --gray-300: #939594;
  --gray-200: #d8dcda;
  --gray-100: #eef0ef;
  --gray-50: #f7f8f8;

  /* Semantic tokens */
  --teal: var(--accent);
  --teal-soft: var(--accent-soft);
  --white: #ffffff;
  --cream: var(--gray-50);
  --cream-dark: var(--gray-100);
  --green: var(--accent);
  --shadow: 0 4px 24px rgba(24, 64, 98, 0.08);
  --shadow-lg: 0 16px 56px rgba(24, 64, 98, 0.14);
  --radius: 12px;
  --radius-lg: 20px;
  --font-body: "DM Sans", system-ui, sans-serif;
  --font-display: "Outfit", system-ui, sans-serif;
  --header-height: 76px;

  /* Gradients — always 135deg, same color family or brand↔accent pair */
  --gradient-brand: linear-gradient(135deg, var(--brand) 0%, var(--brand-mid) 100%);
  --gradient-brand-deep: linear-gradient(135deg, var(--brand-800) 0%, var(--brand-mid) 100%);
  --gradient-accent: linear-gradient(135deg, var(--accent-700) 0%, var(--accent-light) 100%);
  --gradient-brand-accent: linear-gradient(135deg, var(--brand) 0%, var(--accent-700) 100%);
  --gradient-light: linear-gradient(135deg, var(--white) 0%, var(--accent-50) 100%);
  --gradient-hero-lite: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 35%, rgba(255, 255, 255, 0.55) 65%, rgba(255, 255, 255, 0.05) 100%);
  --gradient-hero-lite-mobile: linear-gradient(135deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.88) 50%, rgba(255, 255, 255, 0.78) 100%);
  --gradient-hero-overlay: linear-gradient(135deg, rgba(10, 22, 34, 0.96) 0%, rgba(18, 40, 68, 0.93) 50%, rgba(27, 53, 92, 0.95) 100%);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  width: min(1200px, 92%);
  margin-inline: auto;
}

/* ── Header ── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow 0.3s;
}

.header.scrolled {
  box-shadow: var(--shadow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand);
}

.header-phone span {
  color: var(--gray-500);
  font-weight: 500;
}

.logo {
  display: flex;
  align-items: center;
}

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

.logo-img-footer {
  height: 52px;
  width: auto;
  background: var(--white);
  padding: 6px 10px;
  border-radius: 8px;
}

.logo-icon {
  display: none;
}

.logo-text {
  display: none;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  font-size: 0.925rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--accent);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
}

.btn-primary {
  background: var(--accent);
  color: var(--brand);
  box-shadow: 0 4px 16px rgba(92, 197, 206, 0.4);
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(92, 197, 206, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.6);
}

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

.btn-navy {
  background: var(--brand);
  color: var(--white);
}

.btn-navy:hover {
  background: var(--brand-mid);
  transform: translateY(-2px);
}

.btn-teal {
  background: var(--teal);
  color: var(--white);
}

.btn-teal:hover {
  background: #248f82;
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--brand);
  margin: 5px 0;
  transition: 0.3s;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-height) + 48px);
  padding-bottom: 80px;
  background: var(--brand);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    var(--gradient-hero-overlay),
    url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?w=1920&q=80") center/cover no-repeat;
}

.hero-bg::after {
  display: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: block;
  max-width: 720px;
  padding-block: 32px;
}

.hero-content {
  animation: fadeUp 0.8s ease both;
}

.hero-badge {
  display: inline-block;
  background: rgba(92, 197, 206, 0.12);
  border: 1px solid rgba(92, 197, 206, 0.3);
  color: var(--accent-light);
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

.hero h1 em {
  font-style: normal;
  color: var(--accent);
}

.hero-desc {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 560px;
  margin-bottom: 28px;
  line-height: 1.7;
  font-weight: 400;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(92, 197, 206, 0.35);
  color: var(--white);
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
}

.hero-pill svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
  flex-shrink: 0;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-quick-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-quick-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-quick-stat span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Form section below hero */
.hero-form-section {
  background: var(--gray-50);
  padding: 0 0 80px;
  margin-top: -40px;
  padding-top: 80px;
  position: relative;
  z-index: 2;
}

.hero-form-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 48px;
  align-items: start;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
  padding: 48px;
  overflow: hidden;
}

.hero-form-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-brand-accent);
}

.hero-form-intro h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.hero-form-intro p {
  font-size: 0.95rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 28px;
}

.hero-form-intro ul {
  list-style: none;
}

.hero-form-intro li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--gray-700);
  margin-bottom: 12px;
  font-weight: 500;
}

.hero-form-intro li::before {
  content: "✓";
  width: 22px;
  height: 22px;
  background: var(--accent-50);
  color: var(--accent-700);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
  flex-shrink: 0;
}

.lead-card {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  animation: none;
}

.lead-card::before {
  display: none;
}

.lead-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 4px;
}

.lead-card>p {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-bottom: 20px;
}

.lead-card-tag {
  display: inline-block;
  background: var(--accent-50);
  color: var(--accent-700);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 6px;
  margin-bottom: 10px;
}

.lead-card-header {
  margin-bottom: 0;
}

.form-group {
  margin-bottom: 14px;
}

.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 13px;
  font-size: 0.9rem;
  border-radius: 8px;
}

.form-checkbox {
  padding: 12px;
  margin: 12px 0;
}

@media (max-width: 1024px) {
  .hero-form-wrapper {
    grid-template-columns: 1fr;
    padding: 32px 28px;
  }
}

@media (max-width: 768px) {
  .hero-quick-stats {
    gap: 24px;
  }
}

.lead-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
}

.lead-card-header .dot {
  width: 10px;
  height: 10px;
  background: var(--teal);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.6;
    transform: scale(0.85);
  }
}

.lead-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--brand);
  margin-bottom: 0;
}

.lead-card>p {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.925rem;
  color: var(--gray-900);
  transition: border-color 0.2s;
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}

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

.lead-card .btn {
  width: 100%;
  margin-top: 8px;
  padding: 14px;
}

.form-note {
  font-size: 0.75rem;
  color: var(--gray-500);
  text-align: center;
  margin-top: 12px;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 16px 0;
  cursor: pointer;
  padding: 14px;
  background: var(--brand-50);
  border: 1px solid var(--brand-100);
  border-radius: var(--radius);
}

.form-checkbox-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.form-checkbox input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--accent);
  flex-shrink: 0;
  cursor: pointer;
}

.form-checkbox span {
  font-size: 0.8rem;
  color: var(--gray-500);
  line-height: 1.55;
}

.form-checkbox a {
  color: var(--brand);
  font-weight: 600;
  text-decoration: underline;
}

/* Buyer / Investor form section */
.buyer-form-section {
  background: var(--brand-50);
  padding: 80px 0;
  border-top: 1px solid var(--brand-100);
}

.buyer-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.buyer-form-info h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 16px;
  line-height: 1.2;
}

.buyer-form-info p {
  font-size: 0.95rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 24px;
}

.buyer-disclaimer-list {
  list-style: none;
  margin-bottom: 0;
}

.buyer-disclaimer-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--gray-700);
  margin-bottom: 12px;
  line-height: 1.5;
}

.buyer-disclaimer-list li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 800;
  flex-shrink: 0;
}

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

/* ── Trust Bar ── */
.trust-bar {
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-100);
  padding: 28px 0;
}

.trust-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.trust-bar-item svg {
  width: 28px;
  height: 28px;
  color: var(--accent);
  margin: 0 auto 8px;
}

.trust-bar-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 4px;
}

.trust-bar-item p {
  font-size: 0.8rem;
  color: var(--gray-500);
}

/* ── Section Common ── */
section {
  padding: 80px 0;
}

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.5rem);
  font-weight: 600;
  color: var(--brand);
  margin-bottom: 16px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 600px;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header .section-desc {
  margin-inline: auto;
}

/* ── Services ── */
.services {
  background: var(--cream);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-accent);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-icon {
  width: 52px;
  height: 52px;
  background: var(--accent-soft);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
  color: var(--accent);
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.925rem;
  color: var(--gray-500);
  line-height: 1.65;
}

.service-card ul {
  margin-top: 14px;
  padding-left: 18px;
  font-size: 0.875rem;
  color: var(--gray-700);
}

.service-card li {
  margin-bottom: 6px;
}

/* ── How It Works ── */
.how-it-works {
  background: var(--brand);
  color: var(--white);
}

.how-it-works .section-label {
  color: var(--accent);
}

.how-it-works .section-title {
  color: var(--white);
}

.how-it-works .section-desc {
  color: rgba(255, 255, 255, 0.65);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

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

.step-num {
  width: 52px;
  height: 52px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  margin: 0 auto 18px;
}

.step-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.step-card p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}

/* ── Dual CTA ── */
.dual-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.cta-panel {
  padding: 64px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta-sellers {
  background: var(--gray-50);
  border-right: 1px solid var(--gray-100);
}

.cta-investors {
  background: var(--gradient-light);
}

.cta-panel .section-label {
  margin-bottom: 8px;
}

.cta-panel h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--brand);
  margin-bottom: 14px;
}

.cta-panel p {
  color: var(--gray-500);
  margin-bottom: 24px;
  max-width: 400px;
}

.cta-list {
  list-style: none;
  margin-bottom: 28px;
}

.cta-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.925rem;
  color: var(--gray-700);
  margin-bottom: 10px;
}

.cta-list li::before {
  content: "✓";
  color: var(--green);
  font-weight: 700;
}

/* ── Properties ── */
.properties {
  background: var(--gray-50);
}

.properties-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

@media (max-width: 1024px) {
  .properties-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.property-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}

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

.property-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.property-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.property-card:hover .property-img img {
  transform: scale(1.05);
}

.property-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 6px;
}

.property-body {
  padding: 22px;
}

.property-body h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 6px;
}

.property-location {
  font-size: 0.825rem;
  color: var(--gray-500);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.property-meta {
  display: flex;
  gap: 16px;
  font-size: 0.8rem;
  color: var(--gray-500);
  padding-top: 14px;
  border-top: 1px solid var(--gray-100);
}

.property-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.property-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--brand);
  margin-top: 12px;
}

.property-price small {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gray-500);
}

.investor-note {
  text-align: center;
  margin-top: 40px;
  padding: 22px 28px;
  background: var(--teal-soft);
  border: 1px solid rgba(42, 157, 143, 0.25);
  border-radius: var(--radius);
  font-size: 0.875rem;
  color: var(--gray-700);
}

.investor-note a {
  color: var(--teal);
  font-weight: 700;
}

/* ── Why Us ── */
.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.why-us-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.why-us-image img {
  width: 100%;
  height: 440px;
  object-fit: cover;
}

.why-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.why-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--accent-soft);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.why-item h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 4px;
}

.why-item p {
  font-size: 0.875rem;
  color: var(--gray-500);
}

/* ── Testimonials ── */
.testimonials {
  background: var(--gray-50);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
}

.stars {
  color: var(--accent);
  font-size: 0.9rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.testimonial-card blockquote {
  font-size: 0.925rem;
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--brand);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
}

.author-info strong {
  display: block;
  font-size: 0.875rem;
  color: var(--brand);
}

.author-info span {
  font-size: 0.75rem;
  color: var(--gray-500);
}

/* ── Contact ── */
.contact {
  background: var(--brand);
  color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact .section-label {
  color: var(--accent);
}

.contact .section-title {
  color: var(--white);
}

.contact-desc {
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 32px;
  max-width: 440px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-info-item h4 {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.contact-info-item p {
  font-size: 1rem;
  font-weight: 600;
}

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.contact-form-card h3 {
  font-family: var(--font-display);
  color: var(--brand);
  font-size: 1.3rem;
  margin-bottom: 20px;
}

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

/* ── Footer ── */
.footer {
  background: var(--brand);
  color: rgba(255, 255, 255, 0.6);
  padding: 56px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand p {
  font-size: 0.875rem;
  margin-top: 14px;
  line-height: 1.7;
  max-width: 300px;
}

.footer h5 {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 0.875rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 12px;
}

/* ── Stats ── */
.stats {
  background: var(--cream);
  padding: 64px 0 80px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.stat-item {
  padding: 36px 24px;
  text-align: center;
  border-right: 1px solid var(--gray-200);
}

.stat-item:last-child {
  border-right: none;
}

.stat-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--brand);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-item span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── Compare ── */
.compare {
  background: var(--white);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
}

.compare-table th,
.compare-table td {
  padding: 18px 24px;
  text-align: left;
  font-size: 0.925rem;
  border-bottom: 1px solid var(--gray-200);
}

.compare-table thead th {
  background: var(--brand);
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.compare-table thead th:first-child {
  background: var(--brand-mid);
}

.compare-table tbody tr:last-child td {
  border-bottom: none;
}

.compare-table tbody tr:nth-child(even) {
  background: var(--cream);
}

.compare-table .check {
  color: var(--teal);
  font-weight: 800;
}

.compare-table .cross {
  color: #c0392b;
  font-weight: 700;
}

/* ── Cities ── */
.cities {
  background: var(--cream);
}

.cities-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.city-tag {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 14px 12px;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand);
  transition: all 0.2s;
}

.city-tag:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.faq {
  background: var(--cream);
  padding: 80px 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 960px;
  margin-inline: auto;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 24px;
}

.faq-item h4 {
  font-size: 0.975rem;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 8px;
}

.faq-item p {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.65;
}

/* ── Sticky CTA ── */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  padding: 12px 16px;
  box-shadow: 0 -4px 20px rgba(15, 43, 60, 0.1);
}

.sticky-cta-inner {
  display: flex;
  gap: 10px;
}

.sticky-cta .btn {
  flex: 1;
  padding: 14px;
  font-size: 0.85rem;
}

.form-success {
  display: none;
  text-align: center;
  padding: 32px 16px;
}

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

.form-body.hidden {
  display: none;
}

.form-success .icon {
  width: 56px;
  height: 56px;
  background: var(--teal-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 16px;
}

.form-success h4 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--brand);
  margin-bottom: 8px;
}

.form-success p {
  font-size: 0.875rem;
  color: var(--gray-500);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .lead-card {
    max-width: 480px;
  }

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

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

  .dual-cta {
    grid-template-columns: 1fr;
  }

  .cta-sellers {
    border-right: none;
    border-bottom: 1px solid var(--gray-100);
  }

  .why-us-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

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

  .cities-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {

  .header-phone {
    display: none;
  }

  .nav-links,
  .header .btn-primary {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav.open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--white);
    padding: 24px;
    box-shadow: var(--shadow-lg);
    gap: 16px;
  }

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

  .services-grid,
  .properties-grid,
  .testimonials-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

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

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

  section {
    padding: 56px 0;
  }

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

  .stat-item:nth-child(2) {
    border-right: none;
  }

  .stat-item {
    border-bottom: 1px solid var(--gray-200);
  }

  .stat-item:nth-child(3),
  .stat-item:nth-child(4) {
    border-bottom: none;
  }

  .cities-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .compare-table {
    font-size: 0.8rem;
  }

  .compare-table th,
  .compare-table td {
    padding: 12px 14px;
  }

  .sticky-cta {
    display: block;
  }

  body {
    padding-bottom: 72px;
  }
}

/* ── Prominent Trust Banner (Homepage) ── */
.trust-highlight {
  background: var(--brand);
  padding: 0;
  position: relative;
  z-index: 2;
}

.trust-highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.trust-highlight-item {
  padding: 40px 32px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.trust-highlight-item:last-child {
  border-right: none;
}

.trust-highlight-item .icon {
  width: 56px;
  height: 56px;
  background: rgba(92, 197, 206, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 16px;
}

.trust-highlight-item h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 8px;
}

.trust-highlight-item p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
}

.trust-highlight-item strong {
  display: block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

/* ── Page Hero (inner pages) ── */
.page-hero {
  padding-top: calc(var(--header-height) + 48px);
  padding-bottom: 48px;
  background: var(--gradient-brand);
  color: var(--white);
  text-align: center;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  margin-bottom: 12px;
}

.page-hero p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 560px;
  margin-inline: auto;
}

.page-content {
  padding: 80px 0;
}

.page-content.narrow {
  max-width: 800px;
  margin-inline: auto;
}

/* ── About page ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}

.value-card {
  background: var(--cream);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
}

.value-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 8px;
}

.value-card p {
  font-size: 0.875rem;
  color: var(--gray-500);
}

.nav-links a.active {
  color: var(--accent);
  font-weight: 700;
}

/* ── Contact page ── */
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
}

.contact-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--brand);
  margin-bottom: 24px;
}

/* ── Wholesale Consent Gate ── */
.consent-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(24, 64, 98, 0.85);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.consent-overlay.hidden {
  display: none;
}

.consent-modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 640px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
}

.consent-modal-header {
  background: var(--brand);
  color: var(--white);
  padding: 28px 32px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.consent-modal-header h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 6px;
}

.consent-modal-header p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.consent-modal-body {
  padding: 28px 32px;
}

.consent-terms {
  background: var(--cream);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 24px;
  max-height: 280px;
  overflow-y: auto;
}

.consent-terms h4 {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.consent-terms ul {
  padding-left: 20px;
  font-size: 0.875rem;
  color: var(--gray-700);
  line-height: 1.7;
}

.consent-terms li {
  margin-bottom: 8px;
}

.consent-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 24px;
  cursor: pointer;
}

.consent-checkbox input {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--accent);
  flex-shrink: 0;
  cursor: pointer;
}

.consent-checkbox span {
  font-size: 0.925rem;
  font-weight: 600;
  color: var(--brand);
  line-height: 1.5;
}

.consent-modal .btn {
  width: 100%;
  padding: 16px;
}

.consent-modal .btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Wholesale content locked state */
.wholesale-content {
  filter: blur(8px);
  pointer-events: none;
  user-select: none;
}

.wholesale-content.unlocked {
  filter: none;
  pointer-events: auto;
  user-select: auto;
}

.wholesale-locked-banner {
  background: var(--accent-soft);
  border: 1px solid rgba(92, 197, 206, 0.3);
  border-radius: var(--radius);
  padding: 16px 24px;
  text-align: center;
  font-size: 0.875rem;
  color: var(--gray-700);
  margin-bottom: 32px;
}

.wholesale-locked-banner.hidden {
  display: none;
}

.property-card .property-details-hidden {
  display: none;
}

.wholesale-content.unlocked .property-details-hidden {
  display: block;
}

.property-card .property-teaser {
  font-size: 0.875rem;
  color: var(--gray-500);
  font-style: italic;
}

.wholesale-content.unlocked .property-teaser {
  display: none;
}

@media (max-width: 1024px) {

  .about-grid,
  .contact-page-grid {
    grid-template-columns: 1fr;
  }

  .about-values {
    grid-template-columns: 1fr;
  }

  .trust-highlight-grid {
    grid-template-columns: 1fr;
  }

  .trust-highlight-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .trust-highlight-item:last-child {
    border-bottom: none;
  }
}

/* ── Homepage Enhancements ── */
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.trust-strip {
  background: var(--gradient-brand-deep);
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}

.trust-strip::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--accent-soft) 0%, transparent 70%);
  pointer-events: none;
}

.trust-strip-headline {
  text-align: center;
  margin-bottom: 40px;
}

.trust-strip-headline h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.trust-strip-headline h2 span {
  color: var(--accent);
  font-style: italic;
}

.trust-strip-headline p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  margin-top: 10px;
}

.trust-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.trust-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  transition: transform 0.3s, background 0.3s;
}

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

.trust-card-icon {
  width: 64px;
  height: 64px;
  background: var(--gradient-accent);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 18px;
  box-shadow: 0 8px 24px rgba(92, 197, 206, 0.35);
}

.trust-card h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--white);
  margin-bottom: 10px;
  font-weight: 600;
}

.trust-card p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}

.stats-overlap {
  padding: 64px 0 80px;
  background: var(--gray-50);
}

.situations {
  background: var(--white);
}

.situations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.situation-card {
  background: var(--cream);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  transition: all 0.25s;
}

.situation-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.situation-card .emoji {
  font-size: 1.75rem;
  margin-bottom: 12px;
}

.situation-card h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 6px;
}

.situation-card p {
  font-size: 0.78rem;
  color: var(--gray-500);
  line-height: 1.5;
}

.home-properties {
  background: var(--cream);
}

.property-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.property-preview-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: all 0.3s;
}

.property-preview-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.property-preview-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.property-preview-body {
  padding: 20px;
}

.property-preview-body h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 6px;
}

.property-preview-body p {
  font-size: 0.825rem;
  color: var(--gray-500);
  margin-bottom: 14px;
}

.property-preview-price {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--accent);
}

.section-cta-link {
  text-align: center;
  margin-top: 36px;
}

.steps-grid {
  position: relative;
}

.steps-grid::before {
  content: "";
  position: absolute;
  top: 26px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: rgba(255, 255, 255, 0.15);
  z-index: 0;
}

.step-card {
  position: relative;
  z-index: 1;
}

.faq-accordion {
  max-width: 760px;
  margin-inline: auto;
}

.faq-accordion-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-accordion-item.open {
  box-shadow: var(--shadow);
  border-color: transparent;
}

.faq-accordion-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.975rem;
  font-weight: 700;
  color: var(--brand);
}

.faq-accordion-btn .chevron {
  width: 28px;
  height: 28px;
  background: var(--cream);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.25s;
}

.faq-accordion-item.open .faq-accordion-btn .chevron {
  transform: rotate(45deg);
  background: var(--accent-soft);
}

.faq-accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-accordion-item.open .faq-accordion-body {
  max-height: 200px;
}

.faq-accordion-body p {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.65;
}

.cta-band {
  background: var(--gradient-brand-deep);
  padding: 88px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?w=1200&q=60") center/cover;
  opacity: 0.08;
}

.cta-band .container {
  position: relative;
  z-index: 1;
}

.cta-band .section-title {
  color: var(--white);
}

.cta-band .section-desc {
  color: rgba(255, 255, 255, 0.7);
  margin-inline: auto;
  margin-bottom: 32px;
}

.cta-band-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-band-trust {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 28px;
  font-size: 0.825rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
}

.cta-band-trust span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.cta-band-trust span::before {
  content: "✓";
  color: var(--teal);
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

@media (max-width: 1024px) {
  .situations-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .trust-cards {
    grid-template-columns: 1fr;
  }

  .steps-grid::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-quick-stats {
    grid-template-columns: 1fr 1fr;
  }

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

  .situations-grid,
  .property-preview-grid {
    grid-template-columns: 1fr;
  }
}