@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --black: #111111;
  --olive: #2ec4a0;
  --olive-dark: #25a888;
  --white: #f0ede8;
  --gray-50: #f8f8f8;
  --gray-100: #f0f0f0;
  --gray-200: #e0e0e0;
  --gray-400: #999;
  --gray-500: #777;
  --gray-600: #555;
  --gray-800: #333;
  --text: #1a1a1a;
  --text-secondary: #555;
  --border: #e2e2e2;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ═══════════════════ NAV ═══════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}

.nav.scrolled {
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.06);
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 32px;
  height: 72px;
  max-width: 1140px;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo img {
  height: 28px;
  width: auto;
}

.nav-logo-text {
  font-size: 18px;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -0.3px;
  text-transform: uppercase;
  white-space: nowrap;
}

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

.nav-links > li {
  flex-shrink: 0;
}

.nav-links a {
  color: var(--gray-600);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: color 0.2s;
  letter-spacing: 0.2px;
}

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

.nav-phone {
  color: var(--black) !important;
  font-weight: 700 !important;
}

.nav-cta {
  background: var(--olive);
  color: var(--black) !important;
  padding: 10px 24px;
  border-radius: 4px;
  font-weight: 700 !important;
  transition: background 0.2s;
}

.nav-cta:hover {
  background: var(--olive-dark);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border-radius: 6px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  padding: 8px 0;
  min-width: 200px;
  z-index: 1001;
  list-style: none;
}

.nav-dropdown:hover .nav-dropdown-menu {
  display: block;
}

.nav-dropdown-menu li {
  margin: 0;
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--black) !important;
  white-space: nowrap;
  transition: background 0.15s;
}

.nav-dropdown-menu a:hover {
  background: rgba(0,0,0,0.05);
  color: var(--olive) !important;
}

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

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  margin: 6px 0;
  transition: all 0.3s;
}

/* ═══════════════════ HERO ═══════════════════ */
.hero {
  padding: 140px 0 80px;
  border-bottom: 1px solid var(--border);
}

.hero-inner {
  display: flex;
  align-items: center;
  gap: 64px;
}

.hero-content {
  flex: 1;
}

.hero-logo-mark {
  flex: 0 0 280px;
  display: flex;
  justify-content: center;
}

.hero-logo-mark img {
  max-width: 260px;
  height: auto;
}

.hero-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.5s ease forwards 0.15s;
}

.hero-title {
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 800;
  line-height: 1.0;
  color: var(--black);
  margin-bottom: 12px;
  letter-spacing: -1.5px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.5s ease forwards 0.3s;
}

.hero-tagline {
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 600;
  color: var(--olive);
  margin-bottom: 24px;
  letter-spacing: -0.3px;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.5s ease forwards 0.45s;
}

.hero-body {
  max-width: 480px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.5s ease forwards 0.55s;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.5s ease forwards 0.65s;
}

.btn-primary {
  display: inline-block;
  background: var(--black);
  color: var(--white);
  padding: 15px 32px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  letter-spacing: 0.2px;
}

.btn-primary:hover {
  background: #000;
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-block;
  background: var(--olive);
  color: var(--black);
  padding: 15px 32px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: background 0.2s;
}

.btn-secondary:hover {
  background: var(--olive-dark);
}

.hero-phone {
  font-size: 15px;
  color: var(--text-secondary);
}

.hero-phone a {
  color: var(--black);
  font-weight: 700;
  text-decoration: none;
}

.hero-trust {
  display: flex;
  gap: 32px;
  margin-top: 40px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.5s ease forwards 0.8s;
}

.hero-trust span {
  font-size: 13px;
  color: var(--gray-500);
  font-weight: 600;
}

/* ═══════════════════ HERO PHOTO ═══════════════════ */
.hero-photo {
  position: absolute;
  top: 0;
  right: 0;
  width: 45%;
  height: 100%;
  overflow: hidden;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--white) 0%, transparent 40%);
}

.hero {
  position: relative;
}

/* ═══════════════════ SERVICES ═══════════════════ */
.services {
  background: var(--black);
  color: var(--white);
  padding: 96px 0;
  position: relative;
}

.services::before,
.quote::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px;
  pointer-events: none;
}

.services-header {
  margin-bottom: 48px;
}

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 12px;
}

.services-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.8px;
}

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

.service-card {
  background: var(--black);
  padding: 32px;
  transition: background 0.25s;
}

.service-card:hover {
  background: #1a1a1a;
}

.service-icon {
  width: 32px;
  height: 32px;
  color: var(--olive);
  margin-bottom: 16px;
}

.service-name {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}

.service-desc {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.45);
}

/* ═══════════════════ WHY US ═══════════════════ */
.why {
  padding: 96px 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.why-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.why-headline {
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--black);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.why-sub {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
}

.why-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-point {
  display: flex;
  gap: 14px;
  align-items: start;
}

.why-check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: var(--olive);
  color: var(--black);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  margin-top: 2px;
}

.why-point-title {
  font-weight: 700;
  font-size: 15px;
  color: var(--text);
  margin-bottom: 2px;
}

.why-point-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ═══════════════════ REVIEWS ═══════════════════ */
.reviews {
  padding: 96px 0;
  background: var(--gray-50);
  overflow: hidden;
}

.reviews-header {
  margin-bottom: 40px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.reviews-title {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 800;
  color: var(--black);
  letter-spacing: -0.5px;
  margin-top: 4px;
}

.reviews-rating {
  display: flex;
  align-items: center;
  gap: 10px;
}

.reviews-rating-stars {
  color: var(--olive);
  font-size: 18px;
  letter-spacing: 1px;
}

.reviews-rating-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
}

.reviews-carousel {
  position: relative;
}

.reviews-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 8px;
  margin: 0 -4px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

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

.review-card {
  scroll-snap-align: start;
  flex: 0 0 calc(33.333% - 14px);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 28px;
  transition: box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}

.review-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.review-stars {
  color: var(--olive);
  font-size: 15px;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.review-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 18px;
  flex-grow: 1;
}

.review-footer {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

.review-name {
  font-weight: 700;
  font-size: 14px;
  color: var(--black);
}

.review-source {
  font-size: 12px;
  color: var(--gray-500);
  flex-shrink: 0;
}

.reviews-nav {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.review-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--black);
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}

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

.reviews-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
  text-decoration: none;
  border-bottom: 1px solid var(--black);
  padding-bottom: 2px;
}

.reviews-cta:hover {
  color: var(--olive-dark);
  border-color: var(--olive-dark);
}

/* ═══════════════════ STATS ═══════════════════ */
.stats {
  background: var(--white);
  padding: 64px 0;
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-value {
  display: flex;
  align-items: baseline;
  justify-content: center;
}

.stat-number {
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 800;
  color: var(--black);
  letter-spacing: -1px;
  line-height: 1;
}

.stat-suffix {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
  color: var(--olive);
  margin-left: 2px;
}

.stat-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-top: 6px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ═══════════════════ FAQ ═══════════════════ */
.faq {
  padding: 96px 0;
  background: var(--gray-50);
}

.faq-header {
  margin-bottom: 40px;
}

.faq-title {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 800;
  color: var(--black);
  letter-spacing: -0.5px;
}

.faq-list {
  max-width: 720px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  padding: 20px 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: '+';
  font-size: 22px;
  font-weight: 400;
  color: var(--olive);
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform 0.2s;
}

details[open] .faq-question::after {
  content: '\2212';
}

.faq-answer {
  padding: 0 0 20px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 600px;
}

/* ═══════════════════ CTA BAND ═══════════════════ */
.cta-band {
  background: var(--olive);
  padding: 56px 0;
  text-align: center;
}

.cta-band-title {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 800;
  color: var(--black);
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.cta-band-sub {
  font-size: 15px;
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 24px;
}

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

.btn-dark {
  display: inline-block;
  background: var(--black);
  color: var(--white);
  padding: 15px 32px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: transform 0.1s;
}

.btn-dark:hover {
  transform: translateY(-1px);
}

.btn-outline-dark {
  display: inline-block;
  background: transparent;
  color: var(--black);
  padding: 13px 32px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border: 2px solid rgba(0, 0, 0, 0.3);
  transition: border-color 0.2s;
}

.btn-outline-dark:hover {
  border-color: var(--black);
}

/* ═══════════════════ QUOTE FORM ═══════════════════ */
.quote {
  background: var(--black);
  padding: 96px 0;
  color: var(--white);
  position: relative;
}

.quote-inner {
  max-width: 560px;
  margin: 0 auto;
}

.quote-title {
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.quote-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 32px;
}

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

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

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  padding: 13px 14px;
  color: var(--white);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  transition: border-color 0.2s;
  outline: none;
}

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

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

.form-input[type="date"] {
  color-scheme: dark;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1.5l5 5 5-5' stroke='%23666' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
}

.form-select option {
  background: var(--black);
  color: var(--white);
}

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

.form-submit {
  width: 100%;
  background: var(--olive);
  color: var(--black);
  border: none;
  border-radius: 4px;
  padding: 15px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 6px;
  letter-spacing: 0.3px;
}

.form-submit:hover {
  background: var(--olive-dark);
}

.form-trust {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.form-trust span {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}

/* ═══════════════════ SERVICE CARD CTA ═══════════════════ */
.service-cta-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 700;
  color: var(--olive) !important;
  text-decoration: none;
  transition: color 0.15s;
}

.service-cta-link:hover {
  color: var(--olive-dark) !important;
}

/* ═══════════════════ HERO RESPONSE TIME ═══════════════════ */
.hero-response-time {
  font-size: 13px;
  color: var(--olive);
  font-weight: 600;
  margin-top: 12px;
  opacity: 0;
  animation: fadeUp 0.5s ease forwards 0.6s;
}

/* ═══════════════════ FOOTER ═══════════════════ */
.footer {
  background: #0a0a0a;
  padding: 48px 0 28px;
  color: var(--gray-500);
  font-size: 13px;
}

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

.footer-brand {
  font-size: 16px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-address {
  line-height: 1.9;
  color: var(--gray-500);
}

.footer-address a {
  color: var(--olive);
  text-decoration: none;
}

.footer-heading {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 14px;
}

.footer-list {
  list-style: none;
  line-height: 2.1;
}

.footer-list a {
  color: var(--gray-500);
  text-decoration: none;
  transition: color 0.2s;
}

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

.footer-google {
  display: inline-block;
  margin-top: 10px;
  font-size: 13px;
  color: var(--olive);
  text-decoration: none;
  font-weight: 600;
}

.footer-google:hover {
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid #1a1a1a;
  padding-top: 20px;
  text-align: center;
  color: #444;
  font-size: 12px;
}

/* ═══════════════════ ANIMATIONS ═══════════════════ */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

/* ═══════════════════ TRUST BADGES ═══════════════════ */
.trust-badges {
  background: var(--black);
  padding: 40px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.trust-badges-grid {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}

.trust-badge-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--olive);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-badge-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--olive);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-badge-text {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

/* ═══════════════════ FLOATING MOBILE CTA ═══════════════════ */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 12px 16px;
  background: var(--white);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  gap: 8px;
}

.mobile-cta-call {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  background: var(--black);
  color: var(--white) !important;
  border-radius: 4px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
}

.mobile-cta-quote {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  background: var(--olive);
  color: var(--black) !important;
  border-radius: 4px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
}

/* ═══════════════════ RESPONSIVE ═══════════════════ */
/* Nav switches to the mobile menu earlier than the rest of the layout
   so the extra "Partners" link never crowds/wraps the desktop nav row. */
@media (max-width: 1080px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 24px 32px;
    gap: 20px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  }
  .nav-toggle { display: block; }

  .nav-dropdown-menu {
    display: none;
    position: static;
    transform: none;
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
    padding: 4px 0 0 16px;
    min-width: 0;
  }
  .nav-dropdown.open .nav-dropdown-menu { display: block; }
  .nav-dropdown-menu a {
    padding: 6px 0;
    font-size: 14px;
  }
  .nav-dropdown-menu a:hover { background: transparent; }
}

@media (max-width: 900px) {
  .hero { padding: 110px 0 56px; }
  .hero-inner { flex-direction: column; gap: 40px; text-align: center; }
  .hero-logo-mark { flex: 0 0 auto; }
  .hero-logo-mark img { max-width: 180px; }
  .hero-body { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }

  .hero-photo {
    position: relative;
    width: 100%;
    height: 240px;
  }
  .hero-photo::after {
    background: linear-gradient(to bottom, transparent 50%, var(--white) 100%);
  }

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

  .why-layout { grid-template-columns: 1fr; gap: 36px; }

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

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

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

  .mobile-cta { display: flex; }
  .footer { padding-bottom: 80px; }
  .trust-badges-grid { gap: 24px; }

  .review-card { flex: 0 0 calc(70% - 10px); }
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .nav-inner { padding: 0 20px; }
  .nav-logo-text { display: none; }
  .hero-trust { flex-direction: column; gap: 6px; }
  .hero-actions { flex-direction: column; align-items: stretch; text-align: center; }
  .cta-band-actions { flex-direction: column; align-items: center; }
  .service-card { padding: 24px 20px; }

  .reviews-header { align-items: flex-start; }
  .review-card { flex: 0 0 88%; }
}
