/* =============================================================
   RealEstate24x7 — style.css
   Mobile-first. Breakpoints: 480px, 768px, 1024px
   Colors: Deep Navy #001F3F | Green #228B22 | Gold #DAA520
           Soft Gray #F5F5F5 | White #FFFFFF
   Fonts: Poppins (headings) | Open Sans (body)
   ============================================================= */

/* ---- CSS CUSTOM PROPERTIES ---- */
:root {
  --navy:    #001F3F;
  --green:   #228B22;
  --gold:    #DAA520;
  --gray:    #F5F5F5;
  --white:   #FFFFFF;
  --text:    #1a1a2e;
  --muted:   #555a6e;
  --border:  #d1d5db;

  --font-head: 'Poppins', sans-serif;
  --font-body: 'Open Sans', sans-serif;

  --radius:  10px;
  --radius-lg: 18px;
  --shadow:  0 4px 24px rgba(0,31,63,0.10);
  --shadow-lg: 0 8px 40px rgba(0,31,63,0.18);

  --transition: 0.25s ease;
  --max-w: 1140px;
}

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

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

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

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); }

/* ---- UTILITY ---- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
}

.section-pad { padding: 64px 0; }
.bg-soft  { background: var(--gray); }
.bg-navy  { background: var(--navy); }
.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.hidden { display: none !important; }

.highlight { color: var(--gold); }

.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-header h2 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  margin-bottom: 12px;
}
.section-header p {
  font-size: 1.05rem;
  color: var(--muted);
}
.section-header.light h2,
.section-header.light p {
  color: var(--white);
}
.section-header.light p { opacity: 0.85; }

.section-tag {
  display: inline-block;
  background: rgba(34,139,34,0.12);
  color: var(--green);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 99px;
  margin-bottom: 12px;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition),
              transform var(--transition), box-shadow var(--transition);
  text-align: center;
  min-height: 52px;
  line-height: 1.3;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn-primary:hover, .btn-primary:focus {
  background: #1a6e1a;
  border-color: #1a6e1a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(34,139,34,0.35);
  outline: none;
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline:hover, .btn-outline:focus {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  transform: translateY(-2px);
  outline: none;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  font-weight: 700;
}
.btn-gold:hover, .btn-gold:focus {
  background: #c0931a;
  border-color: #c0931a;
  transform: translateY(-2px);
  outline: none;
}

.btn-full { width: 100%; }

/* Pulse animation for main CTAs */
@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(34,139,34,0.6); }
  70%  { box-shadow: 0 0 0 14px rgba(34,139,34,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,139,34,0); }
}
.btn-pulse { animation: pulse-ring 2.5s ease-out infinite; }
.btn-pulse:hover { animation: none; }

/* ---- NAVIGATION ---- */
.nav-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--navy);
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
  transition: box-shadow var(--transition);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
}
.logo-re    { color: var(--white); }
.logo-estate{ color: var(--gold); }
.logo-24    { color: var(--green); }

.nav-links {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 64px;
  left: 0;
  right: 0;
  background: var(--navy);
  padding: 20px;
  gap: 4px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.nav-links.open { display: flex; }

.nav-links a {
  color: rgba(255,255,255,0.85);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 10px 12px;
  border-radius: 6px;
  transition: background var(--transition), color var(--transition);
}
.nav-links a:hover { background: rgba(255,255,255,0.08); color: var(--white); }

.nav-cta-link {
  background: var(--green) !important;
  color: var(--white) !important;
  text-align: center;
  margin-top: 8px;
  border-radius: var(--radius) !important;
}
.nav-cta-link:hover { background: #1a6e1a !important; }

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
  align-items: center;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.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); }

/* ---- HERO ---- */
.hero {
  position: relative;
  background: linear-gradient(rgba(0,31,63,0.65), rgba(0,31,63,0.65)), url('images/hero.jpg') center/cover no-repeat;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 0 60px;
  overflow: hidden;
}

/* Decorative background pattern */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(218,165,32,0.08) 0%, transparent 60%),
                    radial-gradient(circle at 80% 20%, rgba(34,139,34,0.10) 0%, transparent 50%);
  pointer-events: none;
}

.hero-overlay {
  display: none; /* fallback, used when bg image is added */
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 760px;
}

.hero-badge {
  display: inline-block;
  background: rgba(218,165,32,0.18);
  border: 1px solid rgba(218,165,32,0.4);
  color: var(--gold);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 6px 18px;
  border-radius: 99px;
  margin-bottom: 20px;
}

.hero-content h1 {
  color: var(--white);
  font-size: clamp(2rem, 7vw, 3.8rem);
  font-weight: 800;
  margin-bottom: 20px;
}

.hero-sub {
  color: rgba(255,255,255,0.85);
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  margin-bottom: 36px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  margin-bottom: 36px;
}

.hero-trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  justify-content: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  font-family: var(--font-head);
  font-weight: 600;
}
.hero-trust-bar span { letter-spacing: 0.01em; }

/* VIDEO PLACEHOLDER */
.hero-video-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 560px;
  margin: 40px auto 0;
  padding: 0 20px;
}

.video-placeholder {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: rgba(255,255,255,0.06);
  border: 2px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
}

.video-overlay-btn {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: background var(--transition);
}
.video-overlay-btn:hover { background: rgba(0,0,0,0.1); }
.video-overlay-btn p {
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
}

.play-icon {
  width: 64px;
  height: 64px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(34,139,34,0.5);
  transition: transform var(--transition), box-shadow var(--transition);
}
.video-overlay-btn:hover .play-icon {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(34,139,34,0.7);
}

.luke-iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ---- PROCESS ---- */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.step-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  text-align: center;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 2px solid transparent;
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green);
}

.step-icon {
  font-size: 2.8rem;
  margin-bottom: 12px;
}

.step-num {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green);
  margin-bottom: 8px;
}

.step-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.step-card p { color: var(--muted); font-size: 0.95rem; }

.step-detail {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  color: var(--navy);
  font-size: 0.9rem;
  font-style: italic;
}

/* ---- ABOUT ---- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

.about-visual { display: flex; flex-direction: column; gap: 24px; }

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

.photo-placeholder {
  background: linear-gradient(135deg, var(--navy), #003870);
  aspect-ratio: 4/5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: var(--radius-lg);
}
.photo-initials {
  width: 80px;
  height: 80px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--navy);
}
.photo-placeholder p {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
}

.about-badges { display: flex; flex-direction: column; gap: 12px; }

.badge-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--gray);
  border-radius: var(--radius);
  padding: 14px 18px;
  border-left: 4px solid var(--gold);
}
.badge-icon { font-size: 1.5rem; }
.badge-item strong {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--navy);
  font-size: 0.95rem;
}
.badge-item small { color: var(--muted); font-size: 0.82rem; }

.about-text h2 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  margin-bottom: 20px;
}
.about-text p {
  color: var(--muted);
  margin-bottom: 16px;
  font-size: 0.97rem;
}
.about-text p em { color: var(--navy); font-style: italic; }

.about-list { display: flex; flex-direction: column; gap: 10px; margin: 24px 0; }
.about-list li {
  color: var(--navy);
  font-weight: 600;
  font-family: var(--font-head);
  font-size: 0.92rem;
}

/* ---- TESTIMONIALS ---- */
.testi-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 48px;
}

.testi-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;
  transition: transform var(--transition);
}
.testi-card:hover { transform: translateY(-4px); }

.testi-featured {
  background: rgba(218,165,32,0.08);
  border-color: rgba(218,165,32,0.3);
}

.testi-stars {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testi-card blockquote {
  font-style: italic;
  color: rgba(255,255,255,0.88);
  font-size: 0.97rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--navy);
  flex-shrink: 0;
}

.testi-author strong {
  display: block;
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.9rem;
}
.testi-author small {
  color: rgba(255,255,255,0.55);
  font-size: 0.8rem;
}

.testi-stat-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.stat-item {
  text-align: center;
  padding: 24px 16px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.1);
}

.stat-num {
  display: block;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 4px;
}
.stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  font-family: var(--font-head);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ---- FAQ ---- */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  text-align: left;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.97rem;
  color: var(--navy);
  gap: 12px;
  transition: background var(--transition);
  min-height: 60px;
}
.faq-question:hover { background: var(--gray); }
.faq-question[aria-expanded="true"] { color: var(--green); background: rgba(34,139,34,0.04); }

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 300;
  transition: transform var(--transition), background var(--transition);
}
.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
  background: var(--green);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s ease;
}
.faq-answer.open {
  max-height: 300px;
  padding-bottom: 4px;
}
.faq-answer p {
  padding: 0 24px 20px;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.7;
}

/* ---- LEAD FORM ---- */
.form-wrap {
  max-width: 640px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 40px 32px;
  border: 1px solid var(--border);
}

.form-step { display: none; }
.form-step.active { display: block; }

.form-step-label {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green);
  margin-bottom: 24px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-group:last-child { margin-bottom: 0; }

.form-group label {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--navy);
}

.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  min-height: 48px;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(34,139,34,0.12);
}
.form-group textarea { min-height: 100px; resize: vertical; }

.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 0.95rem;
  padding: 10px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition), background var(--transition);
  min-height: 44px;
}
.radio-label:hover { border-color: var(--green); background: rgba(34,139,34,0.04); }
.radio-label input[type="radio"]:checked + span,
.radio-label:has(input:checked) {
  border-color: var(--green);
  background: rgba(34,139,34,0.08);
}

.form-consent { margin-top: 8px; }
.form-consent .radio-label {
  border: none;
  padding: 0;
  font-size: 0.85rem;
  color: var(--muted);
  flex-wrap: wrap;
  min-height: unset;
}
.form-consent .radio-label:hover { background: none; border: none; }

.form-btn-row {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 8px;
  flex-wrap: wrap;
}
.form-btn-row .btn-outline {
  color: var(--navy);
  border-color: var(--border);
}
.form-btn-row .btn-outline:hover { border-color: var(--navy); background: var(--gray); }

/* Success state */
.form-success {
  text-align: center;
  padding: 24px 0;
}
.success-icon { font-size: 3rem; margin-bottom: 16px; }
.form-success h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}
.form-success p { color: var(--muted); }

.form-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  justify-content: center;
  margin-top: 20px;
  font-size: 0.82rem;
  color: var(--muted);
  font-family: var(--font-head);
  font-weight: 600;
}

/* ---- FOOTER ---- */
.footer {
  background: var(--navy);
  padding-top: 64px;
}

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

.footer-logo { font-size: 1.5rem; margin-bottom: 16px; display: inline-block; }

.footer-brand p {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.footer-license {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }

.footer-contact p {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  margin-bottom: 8px;
  line-height: 1.5;
}
.footer-contact a { color: var(--gold); transition: opacity var(--transition); }
.footer-contact a:hover { opacity: 0.8; }

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  transition: background var(--transition), color var(--transition);
}
.footer-social a:hover { background: var(--gold); color: var(--navy); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  text-align: center;
}
.footer-bottom p {
  color: rgba(255,255,255,0.4);
  font-size: 0.78rem;
}
.footer-bottom a {
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer-bottom a:hover { color: var(--gold); }

/* ---- MOBILE STICKY CTA ---- */
.mobile-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  display: flex;
  gap: 0;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
  transform: translateY(100%);
  transition: transform 0.35s ease;
}
.mobile-sticky-cta.visible { transform: translateY(0); }

.btn-sticky {
  flex: 1;
  border-radius: 0;
  padding: 16px 12px;
  font-size: 0.9rem;
  min-height: 56px;
}

/* ============================================================
   BREAKPOINT: 480px
   ============================================================ */
@media (min-width: 480px) {
  .hero-cta-group { flex-direction: row; justify-content: center; }
  .form-row { grid-template-columns: 1fr 1fr; }
  .testi-stat-row { grid-template-columns: repeat(4, 1fr); }
}

/* ============================================================
   BREAKPOINT: 768px
   ============================================================ */
@media (min-width: 768px) {
  .section-pad { padding: 88px 0; }

  /* Nav */
  .hamburger { display: none; }
  .nav-links {
    display: flex;
    flex-direction: row;
    position: static;
    background: none;
    border: none;
    padding: 0;
    gap: 4px;
  }
  .nav-links a { padding: 8px 12px; font-size: 0.88rem; }
  .nav-cta-link { margin-top: 0; padding: 10px 18px !important; }

  /* Hero */
  .hero { padding: 100px 0 80px; }

  /* Process */
  .steps-grid { grid-template-columns: repeat(3, 1fr); }

  /* About */
  .about-grid { grid-template-columns: 1fr 1.5fr; align-items: start; }

  /* Testimonials */
  .testi-grid { grid-template-columns: repeat(3, 1fr); }

  /* Footer */
  .footer-grid { grid-template-columns: 2fr 1fr 1.5fr; }
  .footer-bottom-inner { flex-direction: row; justify-content: space-between; }

  /* Mobile CTA — hide on wider screens */
  .mobile-sticky-cta { display: none; }
}

/* ============================================================
   BREAKPOINT: 1024px
   ============================================================ */
@media (min-width: 1024px) {
  .hero { flex-direction: row; align-items: stretch; justify-content: stretch; min-height: 85vh; padding: 0; }
  .hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    padding: 80px 60px;
    max-width: none;
  }
  .hero-cta-group { justify-content: flex-start; }
  .hero-trust-bar { justify-content: flex-start; }
  .hero-badge { display: inline-block; }

  .hero-video-wrap {
    flex: 0 0 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 60px 60px 0;
    margin: 0;
  }
  .video-placeholder { max-width: 100%; }

  .hero-content h1 { font-size: 3.6rem; }

  .nav-links a { font-size: 0.93rem; padding: 10px 14px; }
}

/* ============================================================
   ACCESSIBILITY & MISC
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: 0.01ms !important; }
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

/* Input error state */
.form-group input.error,
.form-group select.error {
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220,38,38,0.12);
}

.error-msg {
  color: #dc2626;
  font-size: 0.8rem;
  font-family: var(--font-head);
  font-weight: 600;
  margin-top: 4px;
}
