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

:root {
  --black: #0a0a0a;
  --white: #ffffff;
  --gray-100: #f2f2f2;
  --gray-200: #e0e0e0;
  --gray-400: #999999;
  --gray-600: #555555;
  --font-display: 'Oswald', sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --max-width: 1200px;
  --nav-height: 70px;
  --transition: 0.3s ease;
}

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

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

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

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

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 0.75rem;
}

.section-label-light {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--gray-600);
  margin-bottom: 3rem;
  max-width: 560px;
}

.btn {
  display: inline-block;
  padding: 1rem 2.25rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.btn-primary:hover {
  background: transparent;
  color: var(--black);
}

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

.btn-outline:hover {
  background: var(--white);
  color: var(--black);
}

.btn-full { width: 100%; text-align: center; }

/* =============================================
   NAVIGATION
   ============================================= */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  background: var(--black);
  z-index: 1000;
  transition: box-shadow var(--transition);
}

#navbar.scrolled {
  box-shadow: 0 2px 30px rgba(0,0,0,0.4);
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--white);
}

.logo-title {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.45);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}

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

.nav-cta {
  background: var(--white) !important;
  color: var(--black) !important;
  padding: 0.5rem 1.25rem;
  font-family: var(--font-display) !important;
}

.nav-cta:hover {
  background: rgba(255,255,255,0.85) !important;
}

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

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
}

/* =============================================
   HERO
   ============================================= */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: var(--nav-height);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: grayscale(100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.92) 0%,
    rgba(0,0,0,0.75) 50%,
    rgba(0,0,0,0.4) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 6rem 2rem 3rem;
  width: 100%;
  max-width: 800px;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.5rem;
}

.hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero-content h1 span {
  color: rgba(255,255,255,0.85);
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

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

.hero-bottom {
  position: relative;
  z-index: 1;
  margin-top: auto;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-stats {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2.5rem 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.stat {
  text-align: center;
  padding: 1rem;
  border-right: 1px solid rgba(255,255,255,0.1);
}

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

.ticker-wrap {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  overflow: hidden;
}

.ticker, .ticker-static, .ticker-suffix {
  font-family: var(--font-display) !important;
  font-size: 3.5rem !important;
  font-weight: 900 !important;
  color: #ffffff !important;
  line-height: 1;
}

.ticker {
  display: inline-block;
  transition: transform 0.1s ease;
}

.stat span {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 0.6rem;
}

.valuation-widget {
  background: var(--white);
  border-radius: 2px;
  overflow: hidden;
}

/* =============================================
   WHAT I DO
   ============================================= */
#what-i-do {
  background: var(--gray-100);
  padding: 0;
}

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

.what-card {
  display: block;
  padding: 3.5rem 2.5rem;
  background: var(--white);
  border-right: 1px solid var(--gray-200);
  transition: all var(--transition);
  cursor: pointer;
}

.what-card:last-child { border-right: none; }

.what-card--dark {
  background: var(--black);
  color: var(--white);
}

.what-card:hover {
  background: var(--black);
  color: var(--white);
}

.what-icon {
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
}

.what-card h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.what-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  opacity: 0.7;
  margin-bottom: 1.5rem;
}

.what-link {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 2px solid currentColor;
  padding-bottom: 2px;
}

/* =============================================
   ABOUT
   ============================================= */
#about {
  padding: 7rem 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  object-position: center 20%;
  filter: grayscale(20%);
}

.about-tag {
  position: absolute;
  bottom: 0;
  right: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.875rem 1.5rem;
}

.about-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.about-divider {
  width: 60px;
  height: 4px;
  background: var(--black);
  margin-bottom: 1.75rem;
}

.about-text p {
  color: var(--gray-600);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.about-counties {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.75rem 0;
}

.about-counties span {
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  padding: 0.4rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* =============================================
   HOME VALUATION
   ============================================= */
#valuation {
  background: var(--black);
  padding: 5rem 0;
}

.valuation-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.valuation-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1rem;
}

.valuation-text p {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  line-height: 1.7;
}

.valuation-form form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.valuation-form input {
  width: 100%;
  padding: 1rem 1.25rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: border-color var(--transition);
}

.valuation-form input::placeholder { color: rgba(255,255,255,0.4); }
.valuation-form input:focus { border-color: rgba(255,255,255,0.6); }

.valuation-form .btn-primary {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.valuation-form .btn-primary:hover {
  background: transparent;
  color: var(--white);
}

.valuation-note {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  margin-top: 0.5rem;
}

/* =============================================
   LISTINGS
   ============================================= */
#listings {
  padding: 7rem 0;
  background: var(--white);
}

.realscout-wrapper {
  width: 100%;
  min-height: 500px;
}

/* =============================================
   TESTIMONIALS
   ============================================= */
#testimonials {
  padding: 7rem 0;
  background: var(--gray-100);
}

/* =============================================
   SCHEDULE
   ============================================= */
#schedule {
  padding: 7rem 0;
  background: var(--white);
}

.calendly-wrapper { width: 100%; }

/* =============================================
   CONTACT
   ============================================= */
#contact {
  padding: 7rem 0;
  background: var(--black);
  color: var(--white);
}

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

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}

.contact-left h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.contact-left > p {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-icon { font-size: 1.4rem; flex-shrink: 0; }

.contact-item strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.2rem;
}

.contact-item p, .contact-item a {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
}

.contact-item a:hover { color: var(--white); }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.35); }

.form-group select { color: rgba(255,255,255,0.6); }
.form-group select option { background: var(--black); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: rgba(255,255,255,0.5); }

.form-group textarea { resize: vertical; }

.contact-form .btn-primary {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
  font-family: var(--font-display);
}

.contact-form .btn-primary:hover {
  background: transparent;
  color: var(--white);
}

.form-success {
  display: none;
  text-align: center;
  padding: 1rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}

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

/* =============================================
   FOOTER
   ============================================= */
footer {
  background: #050505;
  color: var(--white);
  padding: 5rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.footer-brokerage {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  margin-bottom: 0.4rem;
}

.footer-tagline {
  font-size: 0.85rem;
  font-style: italic;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.5rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}

.social-link:hover { color: var(--white); }

.footer-nav-title {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1.25rem;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-nav a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}

.footer-nav a:hover { color: var(--white); }

.footer-counties p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
}

/* =============================================
   NAV PHONE & CONTACT
   ============================================= */
.nav-phone {
  font-family: var(--font-body) !important;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  color: rgba(255,255,255,0.7) !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.nav-phone:hover { color: var(--white) !important; }

.nav-contact {
  font-family: var(--font-display) !important;
  font-size: 0.85rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  color: rgba(255,255,255,0.7) !important;
}

.nav-contact:hover { color: var(--white) !important; }

/* =============================================
   FOOTER PHONE
   ============================================= */
.footer-phone {
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-top: 0.75rem;
  transition: opacity var(--transition);
}

.footer-phone:hover { opacity: 0.75; }

/* =============================================
   WRITTEN TESTIMONIALS
   ============================================= */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-top: 4px solid var(--black);
  padding: 2rem;
}

.testimonial-stars {
  color: #f5a623;
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--gray-600);
  margin-bottom: 1.25rem;
  font-style: italic;
}

.testimonial-author {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black);
}

.google-reviews-wrapper {
  margin-top: 1rem;
}

/* =============================================
   FAQ
   ============================================= */
#faq {
  padding: 7rem 0;
  background: var(--black);
  color: var(--white);
}

#faq .section-label { color: rgba(255,255,255,0.4); }
#faq .section-title { color: var(--white); }

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid rgba(255,255,255,0.1);
  margin-top: 3rem;
}

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

.faq-item:nth-child(even) { border-right: none; }
.faq-item:nth-last-child(-n+2) { border-bottom: none; }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.75rem 2rem;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--white);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: background var(--transition);
}

.faq-question:hover { background: rgba(255,255,255,0.05); }

.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 2rem 1.75rem;
}

.faq-answer.open { display: block; }

.faq-answer p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
}

/* =============================================
   FLOATING TEXT BUTTON
   ============================================= */
.float-text-btn {
  position: fixed;
  bottom: 5.5rem;
  right: 1.5rem;
  background: var(--black);
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 900;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  transition: all var(--transition);
}

.float-text-btn:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--black);
}

/* =============================================
   STICKY CTA BAR
   ============================================= */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.15);
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  z-index: 800;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.sticky-cta.visible { transform: translateY(0); }
.sticky-cta.hidden { display: none; }

.sticky-cta p {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
}

.sticky-cta-buttons {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
  padding: 0.6rem 1.25rem;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all var(--transition);
  display: inline-block;
}

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

.btn-white {
  background: var(--white);
  color: var(--black);
  border: 2px solid var(--white);
  padding: 0.6rem 1.25rem;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all var(--transition);
  display: inline-block;
}

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

.sticky-cta-close {
  position: absolute;
  right: 1rem;
  background: none;
  border: none;
  color: rgba(255,255,255,0.4);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.25rem;
  line-height: 1;
}

.sticky-cta-close:hover { color: var(--white); }

/* =============================================
   CONTACT POPUP
   ============================================= */
.popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

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

.popup {
  background: var(--white);
  max-width: 540px;
  width: 100%;
  padding: 2.5rem;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.popup h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.popup > p {
  color: var(--gray-600);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.popup-close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  background: none;
  border: none;
  font-size: 1.75rem;
  cursor: pointer;
  color: var(--gray-400);
  line-height: 1;
}

.popup-close:hover { color: var(--black); }

.popup-form {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

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

.popup-form input,
.popup-form select,
.popup-form textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid var(--gray-200);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--black);
  outline: none;
  transition: border-color var(--transition);
}

.popup-form input:focus,
.popup-form select:focus,
.popup-form textarea:focus { border-color: var(--black); }

.popup-form textarea { resize: vertical; }

.popup-form .btn-primary {
  font-family: var(--font-display);
}

.popup-form .form-success {
  display: none;
  text-align: center;
  padding: 1rem;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  font-size: 0.9rem;
  color: var(--gray-600);
}

.popup-form .form-success.visible { display: block; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .about-grid { gap: 3rem; }
  .valuation-inner { gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0; right: 0;
    background: var(--black);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }

  .hero-content h1 { font-size: 2.5rem; }
  .hero-content { padding: 4rem 1.25rem 2rem; }

  /* Stats bar - 2 columns, smaller font */
  .hero-stats {
    grid-template-columns: 1fr 1fr;
    padding: 1.5rem 1rem;
  }

  .ticker, .ticker-static, .ticker-suffix {
    font-size: 2.2rem !important;
  }

  .stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .stat:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.1); }
  .stat:nth-last-child(-n+2) { border-bottom: none; }

  /* Sections */
  .what-grid { grid-template-columns: 1fr; }
  .what-card { border-right: none; border-bottom: 1px solid var(--gray-200); }

  .about-grid { grid-template-columns: 1fr; }
  .about-image img { height: 350px; }

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

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

  /* FAQ */
  .faq-grid { grid-template-columns: 1fr; }
  .faq-item { border-right: none !important; }
  .faq-item:last-child { border-bottom: none; }

  /* Sticky CTA */
  .sticky-cta {
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem;
    text-align: center;
  }

  .sticky-cta p { font-size: 0.75rem; }

  .sticky-cta-buttons { gap: 0.5rem; }

  .btn-outline-white, .btn-white {
    padding: 0.5rem 0.875rem;
    font-size: 0.75rem;
  }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }

  /* Popup form */
  .popup-form .form-row { grid-template-columns: 1fr; }
  .popup { padding: 1.75rem; }

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

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .hero-content h1 { font-size: 2rem; }
  .ticker, .ticker-static, .ticker-suffix { font-size: 1.8rem !important; }
  .footer-grid { grid-template-columns: 1fr; }
  .sticky-cta-buttons { flex-direction: column; width: 100%; }
  .btn-outline-white, .btn-white { width: 100%; text-align: center; }
}
