/* ============================================================
   style.css — The CREEA Group
   Light professional theme: White + Orange #E8651A
   Max-width: 1200px | Fonts: Poppins + Inter
   ============================================================ */

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

/* ============================================================
   1. CSS VARIABLES
   ============================================================ */
:root {
  /* Orange — primary accent */
  --orange:        #E8651A;
  --orange-dark:   #C5531A;
  --orange-light:  #F0782B;
  --orange-pale:   #FFF0E8;
  --orange-glass:  rgba(232, 101, 26, 0.10);

  /* Neutrals */
  --white:         #FFFFFF;
  --gray-1:        #F5F7FA;
  --gray-2:        #EDF0F5;
  --gray-3:        #E2E8F0;

  /* Text */
  --text-dark:     #1B2432;
  --text-body:     #3D4F60;
  --text-mid:      #6A7A8A;
  --text-muted:    #99AABB;
  --text-on-orange:#FFFFFF;

  /* Footer dark */
  --footer-bg:     #1B2432;
  --footer-mid:    #253040;

  /* Borders */
  --border:        #E2E8F0;
  --border-orange: rgba(232, 101, 26, 0.20);

  /* Fonts */
  --font-heading:  'Poppins', system-ui, sans-serif;
  --font-body:     'Inter', system-ui, sans-serif;

  /* Layout */
  --nav-height:    78px;
  --max-width:     1200px;
  --container-pad: clamp(1.25rem, 4vw, 2.5rem);
  --section-pad:   clamp(4rem, 8vw, 6.5rem);
  --radius:        6px;
  --radius-md:     10px;
  --radius-lg:     16px;
  --transition:    0.28s ease;

  /* Shadows */
  --shadow-sm:     0 1px 8px rgba(27, 36, 50, 0.07);
  --shadow-md:     0 4px 24px rgba(27, 36, 50, 0.10);
  --shadow-card:   0 2px 16px rgba(27, 36, 50, 0.08);
  --shadow-hover:  0 8px 40px rgba(232, 101, 26, 0.18);
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}
@media (max-width: 480px) {
  html { font-size: 15.5px; }
}
@media (max-width: 360px) {
  html { font-size: 15px; }
}

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text-body);
  line-height: 1.7;
  overflow-x: hidden;
}

img    { max-width: 100%; display: block; object-fit: cover; }
a      { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ============================================================
   3. UTILITIES
   ============================================================ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.section-pad { padding: var(--section-pad) 0; }

.bg-gray     { background: var(--gray-1); }
.bg-orange-pale { background: var(--orange-pale); }

/* Section label */
.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.6rem;
}

/* Orange rule */
.orange-rule {
  width: 40px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
  display: block;
  margin-bottom: 1.1rem;
}
.orange-rule.centered { margin-left: auto; margin-right: auto; }

/* Section headers */
.section-header        { margin-bottom: 3rem; }
.section-header.centered { text-align: center; max-width: 640px; margin-left: auto; margin-right: auto; margin-bottom: 3rem; }

.section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.20;
  margin-bottom: 0.85rem;
}
.section-header h2 span { color: var(--orange); }
.section-header p  { font-size: 1rem; color: var(--text-mid); line-height: 1.75; }
.section-header.centered p { margin: 0 auto; max-width: 520px; }

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   4. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.80rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
}

.btn-orange {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 3px 16px rgba(232, 101, 26, 0.30);
}
.btn-orange:hover {
  background: var(--orange-dark);
  box-shadow: 0 6px 24px rgba(232, 101, 26, 0.42);
  transform: translateY(-1px);
}

.btn-dark {
  background: var(--text-dark);
  color: var(--white);
}
.btn-dark:hover {
  background: #28394F;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

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

.btn-outline-dark {
  background: transparent;
  color: var(--text-dark);
  border: 1.5px solid var(--text-dark);
}
.btn-outline-dark:hover {
  background: var(--text-dark);
  color: var(--white);
  border-color: var(--text-dark);
}

.btn-outline-orange {
  background: transparent;
  color: var(--orange);
  border: 1.5px solid var(--orange);
}
.btn-outline-orange:hover {
  background: var(--orange);
  color: var(--white);
}

/* ============================================================
   5. HEADER & NAVIGATION
   ============================================================ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--nav-height);
  transition: background var(--transition), box-shadow var(--transition);
}

#site-header.transparent { background: transparent; }
#site-header.scrolled {
  background: var(--white);
  box-shadow: 0 1px 20px rgba(27, 36, 50, 0.10);
}
#site-header.scrolled .logo-name   { color: var(--text-dark); }
#site-header.scrolled .nav-links a { color: var(--text-mid); }
#site-header.scrolled .header-phone { color: var(--text-mid); }
#site-header.scrolled .header-phone i { color: var(--orange); }
#site-header.scrolled .hamburger span { background: var(--text-dark); }

.header-inner {
  display: flex;
  align-items: center;
  height: var(--nav-height);
  gap: 1.5rem;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
  margin-right: auto;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--orange);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  flex-shrink: 0;
}

.logo-name {
  font-family: var(--font-heading);
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
  transition: color var(--transition);
  line-height: 1;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.1rem;
}
.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.80);
  padding: 0.45rem 0.80rem;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--orange); }

/* Header CTA */
.header-cta { display: flex; align-items: center; gap: 1rem; flex-shrink: 0; }

.header-phone {
  font-family: var(--font-body);
  font-size: 0.80rem;
  color: rgba(255, 255, 255, 0.72);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.header-phone i { color: var(--orange); font-size: 0.75rem; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.26s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-height); left: 0; right: 0; bottom: 0;
  background: var(--white);
  z-index: 850;
  padding: 2rem var(--container-pad);
  flex-direction: column;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.34s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.mobile-nav.open { transform: translateX(0); }

.mobile-nav a {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-body);
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}
.mobile-nav a:hover,
.mobile-nav a.active { color: var(--orange); }

.mobile-nav-cta {
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.mobile-phone-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
}
.mobile-phone-link i { color: var(--orange); }

/* ============================================================
   6. HERO — split layout
   ============================================================ */
.hero {
  min-height: 92vh;
  display: grid;
  grid-template-columns: 56% 44%;
  overflow: hidden;
  position: relative;
}

/* Decorative orange accent line — top of hero-left */
.hero::before {
  content: '';
  position: absolute;
  top: var(--nav-height); left: 0;
  width: 56%; height: 3px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  opacity: 0.50;
  z-index: 3;
}

/* Left side — dark bg for text contrast.
   Left padding aligns hero content with the centered container's left edge. */
.hero-left {
  background: var(--text-dark);
  display: flex;
  align-items: center;
  padding-top: calc(var(--nav-height) + 2.5rem);
  padding-bottom: 3.5rem;
  padding-right: clamp(1.5rem, 3vw, 3rem);
  padding-left: max(var(--container-pad), calc((100vw - var(--max-width)) / 2 + var(--container-pad)));
  position: relative;
  z-index: 1;
}
/* Subtle radial highlight in upper-left */
.hero-left::before {
  content: '';
  position: absolute;
  top: -40%; left: -20%;
  width: 80%; height: 90%;
  background: radial-gradient(circle, rgba(232,101,26,0.10) 0%, transparent 60%);
  pointer-events: none;
}
/* Subtle diagonal clip connecting to image */
.hero-left::after {
  content: '';
  position: absolute;
  top: 0; right: -60px; bottom: 0;
  width: 120px;
  background: var(--text-dark);
  clip-path: polygon(0 0, 40% 0, 100% 100%, 0 100%);
  z-index: 2;
}

.hero-left-inner {
  max-width: 600px;
  width: 100%;
  position: relative;
  z-index: 2;
}

/* Eyebrow above heading */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange-light);
  margin-bottom: 1.1rem;
}
.hero-eyebrow::before {
  content: '';
  width: 28px; height: 1.5px;
  background: var(--orange);
  border-radius: 2px;
}

/* Forbes badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(232, 101, 26, 0.12);
  border: 1px solid rgba(232, 101, 26, 0.28);
  border-radius: 100px;
  padding: 0.4rem 1rem 0.4rem 0.5rem;
  margin-bottom: 1.5rem;
}
.hero-badge-dot {
  width: 22px;
  height: 22px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.62rem;
  color: var(--white);
  flex-shrink: 0;
}
.hero-badge-text {
  font-family: var(--font-heading);
  font-size: 0.70rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--orange-light);
}

.hero-left h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 2.8vw, 2.55rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.18;
  margin-bottom: 1.1rem;
  letter-spacing: -0.015em;
}
.hero-left h1 span { color: var(--orange); }

.hero-left p {
  font-size: 0.96rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 480px;
}

.hero-ctas {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-bottom: 2.25rem;
}

/* Trust line below CTAs */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  max-width: 480px;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-body);
  font-size: 0.74rem;
  color: rgba(255,255,255,0.50);
}
.hero-trust-item i { color: var(--orange); font-size: 0.74rem; }

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: var(--container-pad);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  z-index: 3;
}
.hero-scroll span {
  font-family: var(--font-heading);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}
.scroll-line {
  width: 36px;
  height: 1px;
  background: var(--orange);
  opacity: 0.55;
}

/* Right side — photo */
.hero-right {
  position: relative;
  overflow: hidden;
}
.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero-right-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(27,36,50,0.40) 0%, transparent 60%);
}

/* Stats strip inside hero-right (bottom) */
.hero-stats-strip {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(27, 36, 50, 0.82);
  backdrop-filter: blur(8px);
  padding: 1.1rem 1.5rem;
  display: flex;
  gap: 2rem;
  z-index: 2;
}
.hero-stat { text-align: center; }
.hero-stat-num {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--orange);
  display: block;
  line-height: 1;
}
.hero-stat-lbl {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  display: block;
  margin-top: 3px;
}

/* ============================================================
   7. STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
}
.stats-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.stat { display: flex; flex-direction: column; align-items: center; text-align: center; flex: 1; padding: 0 0.5rem; }
.stat + .stat { border-left: 1px solid var(--border); }
.stat-num {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1.1;
}
.stat-label {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-top: 0.2rem;
}

/* ============================================================
   8. ABOUT PREVIEW
   ============================================================ */
.about-preview-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-preview-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.20;
  margin-bottom: 1rem;
}
.about-preview-text h2 span { color: var(--orange); }
.about-preview-text p {
  font-size: 0.96rem;
  color: var(--text-mid);
  line-height: 1.80;
  margin-bottom: 1.75rem;
}

.about-img-wrap {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-md);
}
.about-img-wrap img {
  width: 100%;
  height: 100%;
  object-position: top center;
}

.about-award-badge {
  position: absolute;
  bottom: 1.5rem;
  left: -1.25rem;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 0.9rem 1.1rem;
  box-shadow: var(--shadow-md);
  min-width: 160px;
  border-left: 3px solid var(--orange);
}
.about-award-badge .badge-label {
  font-family: var(--font-heading);
  font-size: 0.60rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  display: block;
  margin-bottom: 3px;
}
.about-award-badge .badge-title {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.25;
}
.about-award-badge .badge-year {
  font-family: var(--font-body);
  font-size: 0.70rem;
  color: var(--text-mid);
  margin-top: 2px;
  display: block;
}

/* ============================================================
   9. SERVICES GRID
   ============================================================ */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: center;
}
.service-card {
  flex: 0 0 calc(33.333% - 0.9rem);
  max-width: calc(33.333% - 0.9rem);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  transition: all var(--transition);
  position: relative;
}
.service-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
  border-color: var(--border-orange);
}
.service-icon {
  width: 48px;
  height: 48px;
  background: var(--orange-pale);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  font-size: 1.2rem;
  color: var(--orange);
  transition: all var(--transition);
}
.service-card:hover .service-icon {
  background: var(--orange);
  color: var(--white);
}
.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.55rem;
}
.service-card p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.70;
  margin-bottom: 1.1rem;
}
.service-link {
  font-family: var(--font-heading);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap var(--transition);
}
.service-link:hover { gap: 0.65rem; }

/* ============================================================
   10. PROPERTIES / LISTINGS
   ============================================================ */
.listings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.listing-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.listing-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}
.listing-img {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--gray-2);
}
.listing-img img {
  width: 100%;
  height: 100%;
  transition: transform 0.55s ease;
}
.listing-card:hover .listing-img img { transform: scale(1.04); }

.listing-tag {
  position: absolute;
  top: 0.85rem; left: 0.85rem;
  font-family: var(--font-heading);
  font-size: 0.60rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.28rem 0.70rem;
  border-radius: 100px;
}
.listing-tag.sale  { background: var(--text-dark); color: var(--white); }
.listing-tag.lease { background: var(--orange); color: var(--white); }
.listing-tag.poa   { background: var(--text-mid); color: var(--white); }

.listing-body { padding: 1.35rem; }
.listing-type {
  font-family: var(--font-heading);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.35rem;
}
.listing-body h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}
.listing-price {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.55rem;
}
.listing-body p {
  font-size: 0.84rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 1.1rem;
}
.listing-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.1rem;
  flex-wrap: wrap;
}
.listing-meta span {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.listing-meta i { color: var(--orange); font-size: 0.68rem; }

.listing-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem;
}
.listing-actions .btn { padding: 0.7rem 1rem; font-size: 0.72rem; }
.listing-actions .btn-outline-dark { padding-left: 1.4rem; padding-right: 1.4rem; }

/* Listings CTA — centered button group below grid */
.listings-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

/* ============================================================
   CRE Calculator Tools
   ============================================================ */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.tool-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
}
.tool-card:hover { border-color: var(--border-orange); box-shadow: var(--shadow-card); }
.tool-card-head { display: flex; align-items: center; gap: 0.85rem; margin-bottom: 0.5rem; }
.tool-icon {
  width: 44px; height: 44px;
  background: var(--orange-pale);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.tool-card h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
}
.tool-card-desc {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 1.1rem;
}
.tool-form {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 1rem;
}
.tool-input {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.tool-input label {
  font-family: var(--font-heading);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--text-mid);
}
.tool-input-row {
  display: flex;
  align-items: center;
  background: var(--gray-1);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}
.tool-input-row:focus-within { border-color: var(--orange); }
.tool-input-prefix, .tool-input-suffix {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-mid);
  padding: 0.6rem 0.7rem;
  font-weight: 500;
  flex-shrink: 0;
}
.tool-input-prefix { border-right: 1px solid var(--border); }
.tool-input-suffix { border-left: 1px solid var(--border); }
.tool-input-row input {
  flex: 1;
  border: none;
  background: var(--white);
  padding: 0.6rem 0.85rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text-dark);
  outline: none;
  width: 100%;
  min-width: 0;
}
.tool-result {
  background: var(--orange-pale);
  border: 1px dashed var(--orange);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  margin-top: auto;
}
.tool-result-label {
  font-family: var(--font-heading);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange-dark);
  margin-bottom: 0.25rem;
  display: block;
}
.tool-result-value {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.1;
  letter-spacing: -0.015em;
}
.tool-result-hint {
  font-size: 0.74rem;
  color: var(--text-mid);
  margin-top: 0.45rem;
  line-height: 1.5;
}
.tool-formula {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 0.85rem;
  padding-top: 0.75rem;
  border-top: 1px dashed var(--border);
  font-style: italic;
}
@media (max-width: 768px) {
  .tools-grid { grid-template-columns: 1fr; }
  .tool-card { padding: 1.4rem; }
  .tool-result-value { font-size: 1.5rem; }
}

/* ============================================================
   FAQ Section — accordion style
   ============================================================ */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 1.5rem;
  max-width: 980px;
  margin: 0 auto;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
}
.faq-item:hover { border-color: var(--border-orange); }
.faq-item[open] { border-color: var(--orange); box-shadow: var(--shadow-sm); }
.faq-item summary {
  padding: 1.05rem 1.25rem;
  font-family: var(--font-heading);
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color var(--transition);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--orange);
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-item[open] summary::after { content: '−'; }
.faq-item summary:hover { color: var(--orange); }
.faq-item-body {
  padding: 0 1.25rem 1.15rem;
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.75;
  border-top: 1px solid var(--border);
  padding-top: 0.85rem;
}
@media (max-width: 768px) {
  .faq-grid { grid-template-columns: 1fr; }
  .faq-item summary { font-size: 0.88rem; padding: 0.95rem 1.1rem; }
  .faq-item-body { font-size: 0.85rem; padding: 0.75rem 1.1rem 1rem; }
}

/* ============================================================
   11. WHY CREEA — light orange section
   ============================================================ */
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.why-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.20;
  margin-bottom: 1.25rem;
}
.why-text h2 span { color: var(--orange); }

.why-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2rem;
}
.why-list li {
  font-size: 0.94rem;
  color: var(--text-body);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  line-height: 1.60;
}
.why-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  margin-top: 0.56rem;
  flex-shrink: 0;
}

.why-quote {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2.25rem;
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--orange);
}
.why-quote-mark {
  font-family: var(--font-heading);
  font-size: 4rem;
  line-height: 0.7;
  color: var(--orange);
  opacity: 0.30;
  display: block;
  margin-bottom: 1rem;
}
.why-quote p {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 400;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}
.why-quote cite {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  font-style: normal;
}

/* ============================================================
   12. TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  transition: all var(--transition);
}
.testimonial-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
  border-color: var(--border-orange);
}
.testimonial-stars { display: flex; gap: 3px; margin-bottom: 0.85rem; color: var(--orange); font-size: 0.82rem; }
.testimonial-card blockquote {
  font-size: 0.94rem;
  font-style: italic;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.testimonial-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--orange-pale);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.9rem; font-weight: 700;
  color: var(--orange);
  flex-shrink: 0;
}
.testimonial-name { font-family: var(--font-heading); font-size: 0.85rem; font-weight: 600; color: var(--text-dark); }
.testimonial-role { font-family: var(--font-body); font-size: 0.70rem; color: var(--text-muted); margin-top: 1px; }

/* ============================================================
   13. MARKETS GRID
   ============================================================ */
.markets-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.market-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.4rem 1rem;
  text-align: center;
  transition: all var(--transition);
}
.market-card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}
.market-icon {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--orange-pale);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 0.75rem;
  font-size: 0.95rem; color: var(--orange);
  transition: all var(--transition);
}
.market-card:hover .market-icon { background: var(--orange); color: var(--white); }
.market-card h4 { font-family: var(--font-heading); font-size: 0.95rem; font-weight: 600; color: var(--text-dark); margin-bottom: 0.2rem; }
.market-state  { font-family: var(--font-body); font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); }

/* ============================================================
   14. FREE REPORT CTA SECTION
   ============================================================ */
.report-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.report-cta-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.65rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.20;
  margin-bottom: 0.75rem;
}
.report-cta-text h2 span { color: var(--orange); }
.report-cta-text p { font-size: 0.94rem; color: var(--text-mid); line-height: 1.78; }

/* Form */
.report-form { display: flex; flex-direction: column; gap: 0.75rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.form-group { display: flex; flex-direction: column; gap: 0.3rem; }
.form-group label {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--text-mid);
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.90rem;
  color: var(--text-dark);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 0.72rem 0.95rem;
  outline: none;
  transition: border-color var(--transition);
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-glass);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-honey { display: none !important; }

.form-status { display: none; padding: 0.85rem 1rem; border-radius: var(--radius); font-family: var(--font-body); font-size: 0.84rem; font-weight: 500; margin-top: 0.5rem; line-height: 1.5; }
.form-status i { margin-right: 0.4rem; }
.form-status.success { background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; display: block; }
.form-status.error   { background: #fef2f2; color: #991b1b; border: 1px solid #fca5a5; display: block; }

/* Field validation state */
.form-group input.input-error,
.form-group select.input-error,
.form-group textarea.input-error { border-color: #ef4444; background: #fef2f2; }

/* Success card replacing form on submit */
.form-success-card {
  background: var(--white);
  border: 1.5px solid var(--orange);
  border-radius: var(--radius-md);
  padding: 2.5rem 1.75rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  animation: cgSuccess 0.5s cubic-bezier(.22,1,.36,1);
}
@keyframes cgSuccess { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.form-success-icon {
  width: 64px; height: 64px;
  background: var(--orange-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.1rem;
  font-size: 1.7rem; color: var(--orange);
}
.form-success-card h3 {
  font-family: var(--font-heading);
  font-size: 1.45rem; font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.55rem;
}
.form-success-card p {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 0.4rem;
}

/* ============================================================
   15. TEAM SECTION
   ============================================================ */
/* Team layout — vertical stack: founder spotlight (horizontal card) + 3 equal team cards */
.team-layout {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.team-lead-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 0;
}
.team-lead-img { overflow: hidden; background: var(--gray-2); }
.team-lead-img img { width: 100%; height: 100%; min-height: 380px; object-position: top center; }
.team-lead-body { padding: 2rem 2.25rem; display: flex; flex-direction: column; }
.team-lead-body .team-social { margin-top: 1.25rem; padding-top: 1.25rem; border-top: 1px solid var(--border); }
.team-lead-body h3 { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.2rem; }
.team-lead-title { font-family: var(--font-heading); font-size: 0.68rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--orange); margin-bottom: 0.75rem; display: block; }
.team-lead-bio { font-size: 0.87rem; color: var(--text-mid); line-height: 1.70; margin-bottom: 1.1rem; }
.team-awards { display: flex; flex-direction: column; gap: 0.35rem; margin-bottom: 1.1rem; }
.team-award-item { font-family: var(--font-body); font-size: 0.74rem; color: var(--text-body); display: flex; align-items: flex-start; gap: 0.45rem; line-height: 1.45; }
.team-award-item i { color: var(--orange); font-size: 0.65rem; margin-top: 0.18rem; flex-shrink: 0; }

.team-social { display: flex; gap: 0.55rem; }
.team-social a {
  width: 32px; height: 32px;
  border: 1.5px solid var(--border-orange);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  color: var(--orange);
  transition: all var(--transition);
}
.team-social a:hover { background: var(--orange); color: var(--white); border-color: var(--orange); }

/* Team member cards — equal width, equal height row */
.team-members {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}
.team-member-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.team-member-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.team-member-img {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--gray-2);
  flex-shrink: 0;
}
.team-member-img img { width: 100%; height: 100%; object-position: top center; }
.team-member-body { padding: 1.1rem; flex: 1; }
.team-member-body h4 { font-family: var(--font-heading); font-size: 0.95rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.18rem; }
.team-member-role { font-family: var(--font-heading); font-size: 0.62rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--orange); margin-bottom: 0.45rem; display: block; }
.team-member-bio { font-size: 0.80rem; color: var(--text-mid); line-height: 1.60; }

/* ============================================================
   16. CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--text-dark);
  padding: 5rem 0;
  text-align: center;
}
.cta-banner h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.20;
}
.cta-banner h2 span { color: var(--orange); }
.cta-banner p { font-size: 1rem; color: rgba(255,255,255,0.58); max-width: 480px; margin: 0 auto 2.25rem; line-height: 1.75; }
.cta-banner-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   Newsletter signup strip (above footer)
   ============================================================ */
.newsletter-strip {
  background: var(--text-dark);
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
}
.newsletter-strip::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  opacity: 0.5;
}
.newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2.5rem;
  align-items: center;
}
.newsletter-text h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.4rem;
  line-height: 1.2;
}
.newsletter-text h3 span { color: var(--orange); }
.newsletter-text p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}
.newsletter-form {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.newsletter-form input[type=email] {
  flex: 1;
  min-width: 0;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.10);
  border-radius: var(--radius);
  padding: 0.8rem 1rem;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition);
}
.newsletter-form input[type=email]:focus { border-color: var(--orange); background: rgba(255,255,255,0.10); }
.newsletter-form input[type=email]::placeholder { color: rgba(255,255,255,0.40); }
.newsletter-form button {
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  padding: 0.8rem 1.5rem;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition);
  white-space: nowrap;
}
.newsletter-form button:hover { background: var(--orange-dark); }
.newsletter-form .form-honey { display: none !important; }
.newsletter-form .form-status { margin-top: 0.5rem; flex-basis: 100%; }
@media (max-width: 768px) {
  .newsletter-inner { grid-template-columns: 1fr; gap: 1.25rem; text-align: left; }
  .newsletter-text h3 { font-size: 1.2rem; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form button { width: 100%; }
}

/* ============================================================
   17. FOOTER
   ============================================================ */
footer { background: var(--footer-bg); border-top: 3px solid var(--orange); }

.footer-main {
  padding-top: 4rem;
  padding-bottom: 2.5rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 3rem;
}
.footer-brand .logo-name { color: var(--white); }
.footer-tagline { font-size: 0.86rem; color: rgba(255,255,255,0.45); line-height: 1.72; margin-top: 0.75rem; margin-bottom: 1.35rem; max-width: 240px; }
.footer-social { display: flex; gap: 0.55rem; }
.footer-social a {
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem; color: rgba(255,255,255,0.45);
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--orange); border-color: var(--orange); color: var(--white); }
.footer-license { font-family: var(--font-body); font-size: 0.65rem; letter-spacing: 0.06em; color: rgba(255,255,255,0.25); margin-top: 0.85rem; }

.footer-col h5 { font-family: var(--font-heading); font-size: 0.66rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--orange); margin-bottom: 1.1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col ul li a { font-size: 0.85rem; color: rgba(255,255,255,0.45); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--orange); }

.footer-contact-item { display: flex; gap: 0.65rem; align-items: flex-start; margin-bottom: 0.75rem; }
.footer-contact-item i { color: var(--orange); font-size: 0.78rem; margin-top: 0.20rem; flex-shrink: 0; width: 14px; }
.footer-contact-item span,
.footer-contact-item a { font-size: 0.84rem; color: rgba(255,255,255,0.45); line-height: 1.55; transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--orange); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1.25rem 0;
}
.footer-bottom-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
}
.footer-copyright { font-family: var(--font-body); font-size: 0.75rem; color: rgba(255,255,255,0.30); }
.footer-built { font-family: var(--font-body); font-size: 0.70rem; color: rgba(255,255,255,0.22); }
.footer-built a { color: var(--orange); opacity: 0.60; transition: opacity var(--transition); }
.footer-built a:hover { opacity: 1; }

/* ============================================================
   18. MOBILE FLOAT BAR
   ============================================================ */
.float-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 800;
  background: var(--footer-bg);
  border-top: 2px solid var(--orange);
  padding: 0.6rem var(--container-pad);
}
.float-bar-inner { display: flex; gap: 0.65rem; }
.float-bar-inner a {
  flex: 1; display: flex; align-items: center; justify-content: center;
  gap: 0.4rem; padding: 0.72rem 0.5rem;
  border-radius: var(--radius);
  font-family: var(--font-heading); font-size: 0.73rem; font-weight: 600; letter-spacing: 0.04em;
}
.float-call  { background: var(--orange); color: var(--white); }
.float-email { background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.75); border: 1px solid rgba(255,255,255,0.10); }

/* ============================================================
   19. INNER PAGE HERO
   ============================================================ */
.page-hero {
  background: var(--text-dark);
  padding: calc(var(--nav-height) + 3.5rem) 0 3.5rem;
  text-align: center;
}
.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.18;
  margin-bottom: 0.75rem;
}
.page-hero p { font-size: 1rem; color: rgba(255,255,255,0.58); max-width: 500px; margin: 0 auto; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 0.5rem; margin-bottom: 0.85rem; font-family: var(--font-heading); font-size: 0.70rem; letter-spacing: 0.08em; color: rgba(255,255,255,0.38); }
.breadcrumb a { color: rgba(255,255,255,0.38); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb i { font-size: 0.52rem; }

/* ============================================================
   20. CONTACT PAGE
   ============================================================ */
.contact-layout { display: grid; grid-template-columns: 1fr 1.3fr; gap: 4.5rem; align-items: start; }
.contact-info-card {
  background: var(--text-dark);
  border-radius: var(--radius-md);
  padding: 2.25rem;
  position: sticky;
  top: calc(var(--nav-height) + 1.5rem);
}
.contact-info-card h3 { font-family: var(--font-heading); font-size: 1.45rem; font-weight: 700; color: var(--white); margin-bottom: 0.4rem; }
.contact-info-card > p { font-size: 0.88rem; color: rgba(255,255,255,0.48); line-height: 1.70; margin-bottom: 1.75rem; }
.contact-detail { display: flex; gap: 0.85rem; align-items: flex-start; margin-bottom: 1.25rem; }
.contact-detail-icon { width: 38px; height: 38px; background: var(--orange-glass); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; color: var(--orange); font-size: 0.86rem; flex-shrink: 0; }
.contact-detail-label { font-family: var(--font-heading); font-size: 0.62rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--orange); margin-bottom: 0.15rem; display: block; }
.contact-detail-val { font-size: 0.88rem; color: rgba(255,255,255,0.65); line-height: 1.55; }
.contact-detail-val a { color: rgba(255,255,255,0.65); transition: color var(--transition); }
.contact-detail-val a:hover { color: var(--orange); }
.contact-divider { height: 1px; background: rgba(255,255,255,0.07); margin: 1.5rem 0; }

.contact-form-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 2.25rem; box-shadow: var(--shadow-card); }
.contact-form-card h3 { font-family: var(--font-heading); font-size: 1.55rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.35rem; }
.contact-form-card > p { font-size: 0.88rem; color: var(--text-mid); margin-bottom: 1.5rem; }

.interest-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.25rem; }
.interest-chip {
  font-family: var(--font-heading); font-size: 0.74rem; font-weight: 600;
  padding: 0.45rem 0.95rem; border-radius: 100px;
  border: 1.5px solid var(--border); color: var(--text-mid);
  cursor: pointer; transition: all var(--transition); background: transparent;
}
.interest-chip:hover, .interest-chip.selected { border-color: var(--orange); color: var(--orange); background: var(--orange-pale); }

/* ============================================================
   21. THANK YOU PAGE
   ============================================================ */
.thankyou-wrap { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: var(--gray-1); padding: 3rem var(--container-pad); }
.thankyou-card { background: var(--white); border-radius: var(--radius-lg); padding: 3rem; max-width: 520px; width: 100%; text-align: center; box-shadow: var(--shadow-md); }
.thankyou-icon { width: 68px; height: 68px; background: var(--orange-pale); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.35rem; font-size: 1.6rem; color: var(--orange); }
.thankyou-card h1 { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.65rem; }
.thankyou-card p { font-size: 0.92rem; color: var(--text-mid); line-height: 1.72; margin-bottom: 1.75rem; }

/* ============================================================
   22. RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .nav-links, .header-phone, .header-cta .btn { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: flex; }

  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero::before { width: 100%; }
  .hero-left { padding-top: calc(var(--nav-height) + 3rem); padding-bottom: 3.5rem; }
  .hero-left::after { display: none; }
  .hero-left-inner { max-width: 100%; }
  .hero-right { height: 360px; }
  .hero-stats-strip { gap: 1.25rem; padding: 0.95rem 1.25rem; }
  .hero-trust { gap: 0.75rem 1.25rem; }

  .about-preview-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-preview-image { max-width: 380px; }
  .about-award-badge { left: 0; }

  .service-card { flex: 0 0 calc(50% - 0.65rem); max-width: calc(50% - 0.65rem); }

  .listings-grid { grid-template-columns: repeat(2, 1fr); }
  .listings-grid .listing-card:last-child { grid-column: span 2; }

  .why-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid .testimonial-card:last-child { grid-column: span 2; }

  .markets-grid { grid-template-columns: repeat(4, 1fr); }
  .report-cta-inner { grid-template-columns: 1fr; gap: 2.5rem; }

  .team-lead-card { grid-template-columns: 240px 1fr; }
  .team-lead-img img { min-height: 320px; }
  .team-lead-body { padding: 1.6rem 1.8rem; }
  .team-members { grid-template-columns: repeat(3, 1fr); }

  .footer-main { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-info-card { position: static; }
}

@media (max-width: 768px) {
  :root { --section-pad: clamp(2.5rem, 7vw, 4.5rem); --nav-height: 68px; }

  .hero-left { padding-bottom: 2.75rem; padding-top: calc(var(--nav-height) + 2rem); }
  .hero-left h1 { font-size: clamp(1.65rem, 5.6vw, 2.1rem); }
  .hero-left p { font-size: 0.92rem; }
  .hero-eyebrow { font-size: 0.62rem; }
  .hero-right { height: 260px; }
  .hero-stats-strip { flex-wrap: wrap; gap: 0.5rem; padding: 0.85rem 1rem; }
  .hero-stat { flex: 1 1 30%; }
  .hero-stat-num { font-size: 1.1rem; }
  .hero-trust { gap: 0.5rem 0.95rem; padding-top: 1.1rem; }
  .hero-trust-item { font-size: 0.7rem; }

  .stats-inner { flex-wrap: wrap; }
  .stat { flex: 1 1 45%; }
  .stat:nth-child(n) { border-left: none; border-top: 1px solid var(--border); padding-top: 0.75rem; }
  .stat:first-child { border-top: none; }

  .service-card { flex: 0 0 100%; max-width: 100%; }
  .listings-grid { grid-template-columns: 1fr; }
  .listings-grid .listing-card:last-child { grid-column: span 1; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonials-grid .testimonial-card:last-child { grid-column: span 1; }
  .markets-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }

  .team-lead-card { grid-template-columns: 1fr; }
  .team-lead-img img { min-height: auto; aspect-ratio: 4/3; }
  .team-lead-body { padding: 1.5rem 1.4rem 1.75rem; }
  .team-members { grid-template-columns: repeat(2, 1fr); gap: 1rem; }

  .float-bar { display: block; }
  body { padding-bottom: 78px; }

  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { width: 100%; max-width: 320px; justify-content: center; }

  .footer-main { grid-template-columns: repeat(2, 1fr); gap: 1.5rem 1.25rem; padding-top: 3rem; padding-bottom: 2rem; }
  .footer-brand { grid-column: span 2; max-width: none; padding-bottom: 0.5rem; border-bottom: 1px solid rgba(255,255,255,0.06); margin-bottom: 0.5rem; }
  .footer-tagline { max-width: none; }
  .footer-col h5 { margin-bottom: 0.6rem; font-size: 0.62rem; }
  .footer-col ul { gap: 0.4rem; }
  .footer-col ul li a { font-size: 0.82rem; }
  .footer-contact-item { margin-bottom: 0.5rem; }
  .footer-contact-item span, .footer-contact-item a { font-size: 0.8rem; }
  .footer-bottom { padding: 0.85rem 0; }
  .footer-bottom-inner { flex-direction: column; text-align: center; gap: 0.35rem; }
  .footer-copyright, .footer-built { font-size: 0.7rem; }

  .cta-banner-btns { flex-direction: column; align-items: center; }
  .cta-banner-btns .btn { width: 100%; max-width: 320px; justify-content: center; }

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

  .listings-cta { flex-direction: column; align-items: stretch; gap: 0.75rem; max-width: 320px; margin-left: auto; margin-right: auto; }
  .listings-cta .btn { width: 100%; justify-content: center; }
  .listing-actions { grid-template-columns: 1fr; }
  .listing-actions .btn-outline-dark { padding-left: 1rem; padding-right: 1rem; }

  .page-hero { padding: calc(var(--nav-height) + 2.5rem) 0 2.5rem; }
  .page-hero h1 { font-size: clamp(1.6rem, 5.5vw, 2.1rem); }

  .about-preview-text h2,
  .why-text h2,
  .report-cta-text h2,
  .section-header h2,
  .cta-banner h2 { font-size: clamp(1.5rem, 5vw, 1.95rem); }

  .why-quote { padding: 1.6rem 1.4rem; }
  .about-img-wrap { aspect-ratio: 1; }
}

@media (max-width: 480px) {
  .markets-grid { grid-template-columns: repeat(2, 1fr); }
  .team-members { grid-template-columns: 1fr; }
  .stat { flex: 1 1 100%; }
  .stat:nth-child(n) { border-top: 1px solid var(--border); }
  .thankyou-card { padding: 2rem 1.25rem; }

  .footer-main { grid-template-columns: 1fr; gap: 1.25rem; padding-top: 2.25rem; padding-bottom: 1.5rem; }
  .footer-brand { grid-column: span 1; }
  body { padding-bottom: 72px; }

  .hero-stat { flex: 1 1 45%; }
  .hero-stats-strip { gap: 0.4rem 0.75rem; padding: 0.75rem 0.85rem; }
  .hero-trust { gap: 0.4rem 0.85rem; }
  .hero-trust-item { font-size: 0.66rem; }
  .hero-trust-item i { font-size: 0.66rem; }

  .listing-body { padding: 1.1rem; }
  .listing-img { aspect-ratio: 16/11; }
  .listing-meta { gap: 0.5rem 0.75rem; }
  .listing-meta span { font-size: 0.7rem; }

  .interest-chips { gap: 0.4rem; }
  .interest-chip { font-size: 0.7rem; padding: 0.4rem 0.8rem; }

  .breadcrumb { font-size: 0.65rem; }
  .float-bar-inner a { font-size: 0.7rem; padding: 0.65rem 0.4rem; }

  .testimonial-card, .service-card, .why-quote { padding: 1.4rem; }
  .contact-info-card, .contact-form-card { padding: 1.4rem 1.2rem; }
  .contact-info-card h3, .contact-form-card h3 { font-size: 1.25rem; }
  .contact-detail-icon { width: 34px; height: 34px; font-size: 0.78rem; }
  .contact-detail-val { font-size: 0.82rem; }

  .team-lead-body { padding: 1.25rem 1.2rem 1.4rem; }
  .team-lead-body h3 { font-size: 1.15rem; }
  .team-lead-bio { font-size: 0.85rem; }

  .service-card h3 { font-size: 1rem; }
  .service-card p { font-size: 0.84rem; }

  /* Tighter mobile container padding */
  :root { --container-pad: 1rem; }
}
