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

:root {
  --teal:       #0d9488;
  --teal-dark:  #0f766e;
  --teal-light: #ccfbf1;
  --orange:     #f97316;
  --orange-dark:#ea6c0a;
  --dark:       #0f172a;
  --mid:        #334155;
  --soft:       #64748b;
  --light:      #f8fafc;
  --white:      #ffffff;
  --border:     #e2e8f0;
  --radius:     14px;
  --shadow:     0 4px 24px rgba(15,23,42,.08);
  --shadow-lg:  0 12px 48px rgba(15,23,42,.14);
  --font-body:  'Inter', sans-serif;
  --font-head:  'Playfair Display', serif;
}

html { scroll-behavior: smooth; }

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

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =============================================
   TYPOGRAPHY HELPERS
   ============================================= */
.section-tag {
  display: inline-block;
  background: var(--teal-light);
  color: var(--teal-dark);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.section-header h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--dark);
}

.section-header p {
  color: var(--soft);
  font-size: 1.05rem;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  border: none;
  transition: all .2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--teal);
  color: var(--white);
}
.btn-primary:hover { background: var(--teal-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(13,148,136,.35); }

.btn-secondary {
  background: var(--white);
  color: var(--teal-dark);
  border: 2px solid var(--teal);
}
.btn-secondary:hover { background: var(--teal-light); transform: translateY(-1px); }

.btn-card {
  display: inline-flex;
  align-items: center;
  color: var(--teal);
  font-weight: 600;
  font-size: .9rem;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  transition: gap .2s;
  gap: 4px;
}
.btn-card:hover { gap: 8px; color: var(--teal-dark); }

.btn-card-featured {
  display: inline-flex;
  align-items: center;
  color: var(--orange);
  font-weight: 600;
  font-size: .9rem;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  transition: gap .2s;
  gap: 4px;
}
.btn-card-featured:hover { gap: 8px; color: var(--orange-dark); }

.btn-full { width: 100%; justify-content: center; }

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}

.navbar.scrolled {
  border-color: var(--border);
  box-shadow: var(--shadow);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--dark);
}

.logo-paw { font-size: 1.4rem; }
.logo-accent { color: var(--teal); }

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

.nav-links a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--mid);
  transition: color .2s;
}
.nav-links a:hover { color: var(--teal); }

.nav-cta {
  background: var(--teal) !important;
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: 600 !important;
  transition: background .2s, transform .2s !important;
}
.nav-cta:hover { background: var(--teal-dark) !important; transform: translateY(-1px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all .3s;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 24px 60px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 60px;
  position: relative;
}

.hero-bg {
  position: fixed;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 70% 40%, rgba(204,251,241,.45) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.hero-content {
  flex: 1;
  max-width: 580px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal-light);
  color: var(--teal-dark);
  font-size: .8rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
  letter-spacing: .04em;
}
.hero-badge::before { content: '⭐'; }

.hero-content h1 {
  font-family: var(--font-head);
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--dark);
}

.hero-highlight {
  color: var(--teal);
  position: relative;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--soft);
  margin-bottom: 32px;
  line-height: 1.7;
}

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

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.stat { text-align: center; }
.stat-num {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark);
}
.stat-label {
  display: block;
  font-size: .75rem;
  color: var(--soft);
  font-weight: 500;
}
.stat-divider {
  width: 1px; height: 36px;
  background: var(--border);
}

/* Hero visual side */
.hero-image {
  flex: 1;
  max-width: 440px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pet-illustration {
  width: 340px; height: 340px;
  position: relative;
}

.pet-circle {
  width: 100%; height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-light) 0%, rgba(249,115,22,.12) 100%);
  border: 3px dashed rgba(13,148,136,.2);
  animation: spin 20s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.paw-prints {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translate(-50%, -50%); }
  50% { transform: translate(-50%, -58%); }
}

.hero-card {
  position: absolute;
  background: var(--white);
  border-radius: 14px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  white-space: nowrap;
}

.hero-card.floating {
  top: 10%; left: -10%;
  animation: float1 3s ease-in-out infinite;
}

.hero-card.floating-2 {
  bottom: 15%; right: -10%;
  animation: float2 3.5s ease-in-out infinite;
}

@keyframes float1 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes float2 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

.card-icon { font-size: 1.8rem; }
.card-info { display: flex; flex-direction: column; }
.card-info strong { font-size: .85rem; color: var(--dark); }
.card-info span { font-size: .75rem; color: var(--soft); }

/* =============================================
   TRUST BAR
   ============================================= */
.trust-bar {
  background: var(--dark);
  padding: 20px 0;
}

.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.85);
  font-size: .85rem;
  font-weight: 500;
}

.trust-icon { font-size: 1rem; }

/* =============================================
   SERVICES
   ============================================= */
.services {
  padding: 100px 0;
  background: var(--light);
}

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

.service-card {
  background: var(--white);
  border-radius: 20px;
  padding: 36px 32px;
  border: 1px solid var(--border);
  position: relative;
  transition: transform .3s, box-shadow .3s;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.service-card.featured {
  border-color: var(--teal);
  box-shadow: 0 0 0 1px var(--teal), var(--shadow);
}

.service-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: white;
  font-size: .7rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 999px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.service-icon { font-size: 2.4rem; }

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
}

.service-card p {
  color: var(--soft);
  font-size: .95rem;
  line-height: 1.6;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.service-list li {
  font-size: .88rem;
  color: var(--mid);
  padding-left: 20px;
  position: relative;
}
.service-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}

/* =============================================
   SPLIT LAYOUT (Boarding & Transport)
   ============================================= */
.boarding-section,
.transport-section {
  padding: 100px 0;
}

.boarding-section { background: var(--white); }
.transport-section { background: var(--light); }

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

.split-layout.reverse .split-text { order: 1; }
.split-layout.reverse .split-visual { order: 2; }

.split-text h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  line-height: 1.25;
  margin-bottom: 16px;
  color: var(--dark);
}

.split-text p {
  color: var(--soft);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 28px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-item strong {
  display: block;
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: 2px;
  color: var(--dark);
}

.feature-item p {
  margin: 0;
  font-size: .88rem;
  color: var(--soft);
}

/* Boarding visual */
.boarding-visual {
  position: relative;
  padding: 20px;
}

.room-card {
  background: var(--white);
  border-radius: 16px;
  padding: 20px 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  margin-bottom: 16px;
}

.room-card.second {
  margin-left: 40px;
  background: var(--teal);
  color: white;
  border-color: var(--teal);
}

.room-header {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 10px;
}

.room-features {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.room-features span {
  background: rgba(0,0,0,.06);
  font-size: .75rem;
  padding: 3px 10px;
  border-radius: 999px;
}

.room-card.second .room-features span {
  background: rgba(255,255,255,.2);
  color: white;
}

.rating-bubble {
  background: var(--white);
  border-radius: 14px;
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  margin-left: 20px;
  border-left: 3px solid var(--orange);
}

.rating-bubble .stars { color: var(--orange); font-size: 1rem; display: block; margin-bottom: 6px; }
.rating-bubble em { display: block; font-size: .9rem; color: var(--dark); font-style: italic; margin-bottom: 4px; }
.rating-bubble small { font-size: .78rem; color: var(--soft); }

/* Transport visual */
.map-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.usa-map-placeholder {
  background: linear-gradient(135deg, #e0f2fe 0%, #ccfbf1 100%);
  border-radius: 20px;
  padding: 48px 32px;
  position: relative;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 1px solid var(--border);
  overflow: hidden;
}

.usa-map-placeholder::before {
  content: '🗺️';
  font-size: 6rem;
  position: absolute;
  opacity: .08;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.map-pin {
  background: var(--white);
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .85rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.map-pin.origin { color: var(--teal-dark); }
.map-pin.destination { color: var(--orange); }

.map-route {
  width: 2px;
  height: 40px;
  background: repeating-linear-gradient(to bottom, var(--teal) 0px, var(--teal) 6px, transparent 6px, transparent 12px);
}

.map-vehicle {
  font-size: 1.8rem;
  animation: drive 2s ease-in-out infinite;
}

@keyframes drive {
  0%, 100% { transform: translateX(-4px); }
  50% { transform: translateX(4px); }
}

.transport-stat-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.t-stat {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px 20px;
  text-align: center;
  box-shadow: var(--shadow);
}

.t-stat strong {
  display: block;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--teal);
  margin-bottom: 4px;
}

.t-stat span {
  font-size: .78rem;
  color: var(--soft);
}

/* Transport routes */
.transport-routes {
  margin-bottom: 24px;
}

.transport-routes h4 {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--soft);
  margin-bottom: 10px;
}

.route-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.route-tag {
  background: var(--teal-light);
  color: var(--teal-dark);
  font-size: .8rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 999px;
}

/* =============================================
   HOW IT WORKS
   ============================================= */
.how-it-works {
  padding: 100px 0;
  background: var(--white);
}

.steps-tabs { max-width: 900px; margin: 0 auto; }

.tab-buttons {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
  background: var(--light);
  padding: 6px;
  border-radius: 12px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.tab-btn {
  padding: 10px 28px;
  border-radius: 9px;
  border: none;
  background: none;
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 600;
  color: var(--soft);
  cursor: pointer;
  transition: all .2s;
}

.tab-btn.active {
  background: var(--white);
  color: var(--teal);
  box-shadow: var(--shadow);
}

.tab-content { display: none; }
.tab-content.active { display: block; }

.steps-grid {
  display: flex;
  align-items: center;
  gap: 16px;
}

.step {
  flex: 1;
  background: var(--light);
  border-radius: 18px;
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--border);
  transition: box-shadow .3s;
}
.step:hover { box-shadow: var(--shadow-lg); }

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

.step h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark);
}

.step p {
  font-size: .88rem;
  color: var(--soft);
  line-height: 1.6;
}

.step-arrow {
  font-size: 1.5rem;
  color: var(--border);
  flex-shrink: 0;
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials {
  padding: 100px 0;
  background: var(--dark);
}

.testimonials .section-tag { background: rgba(255,255,255,.1); color: rgba(255,255,255,.7); }
.testimonials .section-header h2 { color: var(--white); }

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

.review-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  padding: 32px 28px;
  transition: background .3s;
}
.review-card:hover { background: rgba(255,255,255,.08); }

.review-stars {
  color: var(--orange);
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.review-card p {
  color: rgba(255,255,255,.8);
  font-size: .93rem;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

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

.reviewer-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--teal);
  color: white;
  font-size: .75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reviewer strong {
  display: block;
  color: var(--white);
  font-size: .9rem;
}

.reviewer span {
  font-size: .78rem;
  color: rgba(255,255,255,.5);
}

/* =============================================
   FAQ
   ============================================= */
.faq-section {
  padding: 100px 0;
  background: var(--light);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 40px;
  max-width: 980px;
  margin: 0 auto;
}

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

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 0;
  text-align: left;
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color .2s;
}
.faq-question:hover { color: var(--teal); }

.faq-question span {
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--teal);
  transition: transform .3s;
  flex-shrink: 0;
}

.faq-item.open .faq-question span { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .3s;
}

.faq-answer p {
  padding-bottom: 18px;
  color: var(--soft);
  font-size: .9rem;
  line-height: 1.7;
}

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

/* =============================================
   CONTACT
   ============================================= */
.contact-section {
  padding: 100px 0;
  background: var(--white);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: flex-start;
}

.contact-info h2 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  line-height: 1.25;
  margin-bottom: 14px;
  color: var(--dark);
}

.contact-info p {
  color: var(--soft);
  font-size: .95rem;
  line-height: 1.7;
  margin-bottom: 28px;
}

.contact-options {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-opt {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--light);
  border-radius: 14px;
  padding: 16px 18px;
  border: 1px solid var(--border);
}

.contact-opt span:first-child { font-size: 1.4rem; }

.contact-opt strong {
  display: block;
  font-size: .9rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 2px;
}

.contact-opt a, .contact-opt span:last-child {
  font-size: .85rem;
  color: var(--teal);
  font-weight: 500;
}

/* Form */
.contact-form {
  background: var(--light);
  border-radius: 24px;
  padding: 40px 36px;
  border: 1px solid var(--border);
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

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

label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--mid);
  letter-spacing: .03em;
}

input, select, textarea {
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--dark);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  width: 100%;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(13,148,136,.12);
}

textarea { resize: vertical; }

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

/* Success message */
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success .success-icon { font-size: 3rem; margin-bottom: 16px; }
.form-success h3 { font-size: 1.3rem; margin-bottom: 8px; color: var(--dark); }
.form-success p { color: var(--soft); font-size: .95rem; }

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--dark);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-brand .logo-text { color: var(--white); }

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

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  font-weight: 700;
  transition: background .2s, color .2s;
}
.footer-social a:hover { background: var(--teal); color: white; }

.footer-col h4 {
  color: var(--white);
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 16px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li, .footer-col ul a {
  color: rgba(255,255,255,.5);
  font-size: .87rem;
  transition: color .2s;
}
.footer-col ul a:hover { color: var(--teal-light); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}

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

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: rgba(255,255,255,.35);
  font-size: .8rem;
  transition: color .2s;
}
.footer-links a:hover { color: rgba(255,255,255,.6); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .hero { flex-direction: column; text-align: center; padding-top: 120px; }
  .hero-content { max-width: 100%; }
  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-image { display: none; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .split-layout { grid-template-columns: 1fr; gap: 40px; }
  .split-layout.reverse .split-text { order: unset; }
  .split-layout.reverse .split-visual { order: unset; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-wrapper { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: var(--white); border-top: 1px solid var(--border); padding: 20px 24px; gap: 4px; box-shadow: var(--shadow-lg); }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .steps-grid { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); }
  .reviews-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 24px 20px; }
  .trust-items { gap: 20px; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .hero-buttons .btn { justify-content: center; }
}
