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

:root {
  --orange:        #FF6B00;
  --orange-hover:  #E55A00;
  --orange-light:  #FFF3EB;
  --orange-mid:    #FFD4B3;
  --dark:          #111111;
  --text:          #2D2D2D;
  --text-2:        #616161;
  --text-3:        #9E9E9E;
  --white:         #FFFFFF;
  --bg:            #FAFAFA;
  --bg-warm:       #FFF8F3;
  --bg-gray:       #F5F5F5;
  --border:        #E8E8E8;
  --border-warm:   #F0E0D0;
  --shadow-xs:     0 2px 8px rgba(0,0,0,0.06);
  --shadow-sm:     0 4px 16px rgba(0,0,0,0.08);
  --shadow:        0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg:     0 20px 60px rgba(0,0,0,0.13);
  --r-sm:          8px;
  --r:             14px;
  --r-lg:          22px;
  --r-xl:          32px;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--orange-mid); border-radius: 10px; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  padding: 0 5%;
  height: 68px;
  display: flex; align-items: center; justify-content: space-between;
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: var(--shadow); }

.nav-logo {
  display: flex; align-items: center;
  text-decoration: none;
}
.nav-logo-img {
  height: 38px;
  width: auto;
  display: block;
  object-fit: contain;
}

.nav-links {
  display: flex; gap: 8px; align-items: center;
}
.nav-links a {
  padding: 8px 14px;
  color: var(--text-2);
  font-size: 0.88rem; font-weight: 500;
  border-radius: var(--r-sm);
  transition: all 0.2s;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--orange);
  background: var(--orange-light);
}

.nav-cta {
  background: var(--orange); color: white;
  padding: 9px 22px; border-radius: 50px;
  font-weight: 700; font-size: 0.85rem;
  transition: all 0.25s;
  box-shadow: 0 4px 16px rgba(255,107,0,0.3);
}
.nav-cta:hover {
  background: var(--orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(255,107,0,0.4);
}

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

/* Mobile Drawer */
.mobile-drawer {
  position: fixed; top: 68px; left: 0; right: 0; bottom: 0;
  background: white; z-index: 999;
  display: flex; flex-direction: column;
  padding: 24px 5%;
  gap: 6px;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  overflow-y: auto;
}
.mobile-drawer.open { transform: translateX(0); }
.mobile-drawer a {
  padding: 14px 16px;
  font-size: 1rem; font-weight: 600;
  color: var(--text);
  border-radius: var(--r);
  transition: background 0.2s;
  border-bottom: 1px solid var(--border);
}
.mobile-drawer a:hover { background: var(--orange-light); color: var(--orange); }
.mobile-drawer .m-cta {
  margin-top: 12px; text-align: center;
  background: var(--orange); color: white;
  padding: 16px; border-radius: var(--r);
  font-size: 1rem; font-weight: 700;
  border-bottom: none;
}

/* ===== PAGE HEADER (for inner pages) ===== */
.page-hero {
  margin-top: 68px;
  background: linear-gradient(135deg, var(--bg-warm) 0%, var(--orange-light) 100%);
  padding: 70px 5%;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; right: -100px; top: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,107,0,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-label {
  display: inline-flex; align-items: center; gap: 8px;
  background: white;
  border: 1px solid var(--border-warm);
  color: var(--orange);
  font-size: 0.78rem; font-weight: 700;
  padding: 6px 14px; border-radius: 50px;
  margin-bottom: 18px;
  box-shadow: var(--shadow-xs);
}
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 16px;
}
.page-hero h1 span { color: var(--orange); }
.page-hero p {
  font-size: 1.05rem;
  color: var(--text-2);
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 28px;
}

/* ===== SECTION UTILITIES ===== */
.section { padding: 90px 5%; }
.section-white { background: var(--white); }
.section-bg { background: var(--bg); }
.section-warm { background: var(--bg-warm); }
.section-orange {
  background: var(--orange);
  color: white;
}

.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--orange); font-size: 0.75rem;
  font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; margin-bottom: 12px;
}
.section-label::before {
  content: '';
  width: 24px; height: 2px; background: var(--orange);
}
.section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 900; line-height: 1.2;
  color: var(--dark);
  margin-bottom: 14px;
}
.section-title span { color: var(--orange); }
.section-sub {
  font-size: 1rem; color: var(--text-2);
  line-height: 1.75; max-width: 560px;
}
.text-center { text-align: center; }
.text-center .section-label { justify-content: center; }
.text-center .section-sub { margin: 0 auto; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 50px;
  font-weight: 700; font-size: 0.95rem;
  transition: all 0.25s;
  cursor: pointer; border: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange); color: white;
  box-shadow: 0 6px 20px rgba(255,107,0,0.35);
}
.btn-primary:hover {
  background: var(--orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255,107,0,0.45);
}
.btn-secondary {
  background: white; color: var(--orange);
  border: 2px solid var(--orange);
}
.btn-secondary:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent; color: white;
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline:hover { background: white; color: var(--orange); }
.btn-dark {
  background: var(--dark); color: white;
}
.btn-dark:hover { background: #333; transform: translateY(-2px); }
.btn-sm { padding: 9px 20px; font-size: 0.82rem; }
.btn-lg { padding: 17px 36px; font-size: 1.05rem; }

/* ===== CARDS ===== */
.card {
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xs);
  transition: all 0.3s;
  overflow: hidden;
}
.card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-6px);
  border-color: var(--orange-mid);
}
.card-pad { padding: 30px; }

/* ===== BADGE ===== */
.badge {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 5px 12px; border-radius: 50px;
  font-size: 0.72rem; font-weight: 700;
}
.badge-orange { background: var(--orange-light); color: var(--orange); }
.badge-green { background: #EDFDF4; color: #16a34a; }
.badge-dark { background: var(--dark); color: white; }

/* ===== STEPS ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px; margin-top: 50px;
}
.step-card {
  background: white;
  border-radius: var(--r-lg);
  padding: 30px 22px;
  border: 1px solid var(--border);
  position: relative;
  text-align: center;
  transition: all 0.3s;
}
.step-card:hover {
  border-color: var(--orange-mid);
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}
.step-num {
  width: 52px; height: 52px;
  background: var(--orange);
  color: white; font-weight: 900; font-size: 1.2rem;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 6px 16px rgba(255,107,0,0.3);
}
.step-icon { font-size: 1.8rem; margin-bottom: 10px; }
.step-card h3 { font-size: 1rem; font-weight: 800; color: var(--dark); margin-bottom: 8px; }
.step-card p { font-size: 0.85rem; color: var(--text-2); line-height: 1.65; }
.step-connector {
  position: absolute; top: 36px; right: -12px;
  color: var(--orange-mid); font-size: 1.3rem; z-index: 1;
}

/* ===== STATS BAR ===== */
.stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.stat-item {
  padding: 36px 20px; text-align: center;
  background: var(--orange);
  position: relative;
}
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute; right: 0; top: 20%; bottom: 20%;
  width: 1px; background: rgba(255,255,255,0.2);
}
.stat-item:first-child { border-radius: var(--r-lg) 0 0 var(--r-lg); }
.stat-item:last-child { border-radius: 0 var(--r-lg) var(--r-lg) 0; }
.stat-num {
  font-size: 2.8rem; font-weight: 900;
  color: white; line-height: 1;
  display: block;
}
.stat-label {
  font-size: 0.8rem; color: rgba(255,255,255,0.85);
  margin-top: 6px;
  line-height: 1.4;
}
.stat-sub { font-size: 0.7rem; color: rgba(255,255,255,0.55); margin-top: 3px; }

/* ===== FEATURE ICON CARD ===== */
.feat-card {
  background: white;
  border-radius: var(--r-lg);
  padding: 28px;
  border: 1px solid var(--border);
  transition: all 0.3s;
}
.feat-card:hover {
  border-color: var(--orange-mid);
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}
.feat-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--orange-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}
.feat-card h3 { font-size: 1rem; font-weight: 800; color: var(--dark); margin-bottom: 8px; }
.feat-card p { font-size: 0.85rem; color: var(--text-2); line-height: 1.65; }

/* ===== CHECKLIST ===== */
.checklist { display: flex; flex-direction: column; gap: 12px; }
.checklist li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.92rem; color: var(--text);
}
.checklist li::before {
  content: '✓';
  min-width: 24px; height: 24px;
  background: var(--orange-light);
  color: var(--orange);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 900;
  margin-top: 1px;
}

/* ===== PHONE MOCKUP ===== */
.phone-wrap {
  position: relative;
  display: flex; justify-content: center;
}
.phone-outer {
  width: 260px;
  background: var(--dark);
  border-radius: 40px;
  padding: 10px;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(0,0,0,0.1);
  position: relative;
}
.phone-inner {
  background: white;
  border-radius: 32px;
  overflow: hidden;
  aspect-ratio: 9/19;
}
.phone-notch {
  width: 70px; height: 20px;
  background: var(--dark);
  border-radius: 0 0 12px 12px;
  position: absolute; top: 10px; left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

/* ===== FORM ===== */
.form-group { margin-bottom: 18px; }
.form-label {
  display: block;
  font-size: 0.82rem; font-weight: 700;
  color: var(--text); margin-bottom: 7px;
}
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: var(--r);
  font-size: 0.92rem; font-family: inherit;
  color: var(--text); background: white;
  transition: border-color 0.25s, box-shadow 0.25s;
  outline: none;
}
.form-control:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,107,0,0.12);
}
.form-control::placeholder { color: var(--text-3); }
textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control { cursor: pointer; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ===== CONTACT CARD ===== */
.contact-card {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 20px;
  background: white; border-radius: var(--r);
  border: 1px solid var(--border);
  transition: all 0.25s;
}
.contact-card:hover { border-color: var(--orange-mid); transform: translateX(6px); }
.contact-card-icon {
  width: 46px; height: 46px;
  background: var(--orange-light);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.contact-card-text small { font-size: 0.75rem; color: var(--text-3); display: block; }
.contact-card-text strong { font-size: 0.95rem; color: var(--dark); }

/* ===== TESTIMONIAL ===== */
.testi-card {
  background: white; border-radius: var(--r-lg);
  padding: 28px;
  border: 1px solid var(--border);
  transition: all 0.3s;
}
.testi-card:hover { box-shadow: var(--shadow); border-color: var(--orange-mid); }
.testi-stars { color: var(--orange); font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 14px; }
.testi-text {
  font-size: 0.92rem; color: var(--text-2);
  line-height: 1.75; font-style: italic;
  margin-bottom: 20px;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-hover));
  color: white; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem;
}
.testi-name { font-weight: 700; font-size: 0.88rem; color: var(--dark); }
.testi-role { font-size: 0.75rem; color: var(--text-3); }

/* ===== FOOTER ===== */
.footer {
  background: #111111;
  color: rgba(255,255,255,0.75);
  padding: 50px 5% 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 0;
}
.footer-logo {
  margin-bottom: 12px;
}
.footer-logo-img {
  height: 48px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.88;
}
.footer-desc {
  font-size: 0.83rem; line-height: 1.7;
  color: rgba(255,255,255,0.38);
  margin-bottom: 18px;
  max-width: 280px;
}
.footer-socials { display: flex; gap: 8px; }
.footer-social {
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.07);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; cursor: pointer;
  transition: all 0.25s; border: none; color: white;
  text-decoration: none;
}
.footer-social:hover { background: var(--orange); transform: translateY(-3px); }
.footer-col h4 {
  font-size: 0.72rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: rgba(255,255,255,0.45); margin-bottom: 14px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a {
  font-size: 0.83rem; color: rgba(255,255,255,0.4);
  transition: color 0.2s;
  word-break: break-all;
  overflow-wrap: break-word;
}
.footer-col ul li a:hover { color: var(--orange); }
.footer-bottom {
  padding-top: 20px;
  padding-bottom: 80px; /* avoid overlap with floating WhatsApp/FAB buttons */
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 10px;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.28); }
.footer-bottom a { color: var(--orange); }

@media (min-width: 700px) {
  .footer-bottom { padding-bottom: 24px; }
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0; transform: translateX(-32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0; transform: translateX(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ===== GRIDS ===== */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.gap-8 { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }
.gap-50 { gap: 50px; }

/* ===== DIVIDER ===== */
.divider {
  height: 1px; background: var(--border);
  margin: 0;
}

/* ===== FAB ===== */
.fab {
  position: fixed; bottom: 28px; right: 28px;
  width: 52px; height: 52px;
  background: var(--orange); color: white;
  border-radius: 50%; border: none;
  font-size: 1.2rem; cursor: pointer;
  box-shadow: 0 6px 22px rgba(255,107,0,0.4);
  transition: all 0.3s;
  display: flex; align-items: center; justify-content: center;
  z-index: 500;
  opacity: 0; visibility: hidden; transform: scale(0.7);
}
.fab.show { opacity: 1; visibility: visible; transform: scale(1); }
.fab:hover { background: var(--orange-hover); transform: scale(1.1) translateY(-3px); }

/* ===== TOAST ===== */
.toast {
  position: fixed; bottom: 90px; right: 28px;
  background: var(--dark); color: white;
  border-radius: var(--r); padding: 16px 20px;
  display: flex; align-items: center; gap: 12px;
  z-index: 800; min-width: 280px;
  box-shadow: var(--shadow-lg);
  transform: translateX(140%);
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
.toast.show { transform: translateX(0); }
.toast-text strong { display: block; font-size: 0.9rem; }
.toast-text small { color: rgba(255,255,255,0.5); font-size: 0.75rem; }

/* ===== IMAGE SECTIONS ===== */
.img-cover {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.img-rounded { border-radius: var(--r-lg); overflow: hidden; }
.img-shadow { box-shadow: var(--shadow-lg); }

/* ===== ORANGE BANNER ===== */
.orange-banner {
  background: linear-gradient(160deg, #FFF8F2 0%, #FFF2E5 60%, #FFF8F2 100%);
  border: 1.5px solid rgba(255,107,0,0.14);
  border-radius: var(--r-xl);
  padding: 60px;
  color: var(--dark);
  position: relative; overflow: hidden;
}
.orange-banner::before {
  content: '';
  position: absolute; right: -60px; top: -60px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(255,107,0,0.1), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.orange-banner::after {
  content: '';
  position: absolute; left: -40px; bottom: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(255,107,0,0.07), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* ===== EXPANSION TIMELINE ===== */
.timeline { display: flex; flex-direction: column; gap: 0; }
.timeline-item { display: flex; gap: 18px; }
.tl-left { display: flex; flex-direction: column; align-items: center; }
.tl-dot {
  width: 36px; height: 36px;
  background: var(--orange); color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 0.85rem;
  flex-shrink: 0; z-index: 1;
}
.tl-dot.soon {
  background: white; border: 2px solid var(--orange-mid);
  color: var(--orange);
}
.tl-line {
  width: 2px; flex: 1;
  background: linear-gradient(to bottom, var(--orange), var(--orange-mid));
  margin: 4px 0;
}
.tl-content { padding-bottom: 36px; }
.tl-tag {
  display: inline-block;
  font-size: 0.7rem; font-weight: 700;
  padding: 3px 10px; border-radius: 50px;
  margin-bottom: 8px;
}
.tl-tag-active { background: #EDFDF4; color: #16a34a; }
.tl-tag-soon { background: var(--orange-light); color: var(--orange); }
.tl-tag-future { background: var(--bg-gray); color: var(--text-3); }
.tl-content h4 { font-size: 1rem; font-weight: 800; color: var(--dark); margin-bottom: 6px; }
.tl-content p { font-size: 0.85rem; color: var(--text-2); line-height: 1.65; }

/* ===== IMAGE WITH OVERLAY CARD ===== */
.img-card {
  position: relative; border-radius: var(--r-lg);
  overflow: hidden; box-shadow: var(--shadow);
}
.img-card img { width: 100%; display: block; }
.img-card-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
  color: white;
}
.img-card-overlay h4 { font-size: 1rem; font-weight: 800; }
.img-card-overlay p { font-size: 0.8rem; opacity: 0.8; margin-top: 4px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; gap: 28px; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .grid-2 { grid-template-columns: 1fr; gap: 30px; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .stat-item:first-child { border-radius: var(--r-lg) 0 0 0; }
  .stat-item:nth-child(2) { border-radius: 0 var(--r-lg) 0 0; }
  .stat-item:nth-child(3) { border-radius: 0 0 0 var(--r-lg); }
  .stat-item:last-child { border-radius: 0 0 var(--r-lg) 0; }
  .stat-item::after { display: none; }
  .orange-banner { padding: 36px 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .section { padding: 60px 5%; }
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .footer-desc { max-width: 100%; }
  .page-hero { padding: 50px 5%; }
  .page-hero h1 { font-size: 2rem; }
}
