/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: 'Open Sans', system-ui, sans-serif;
  color: #1a2a3a;
  background: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: 'Nunito', system-ui, sans-serif; line-height: 1.25; color: #0d1b2a; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.text-center { text-align: center; }

/* ===== COLORS ===== */
:root {
  --midnight: #0d1b2a;
  --midnight-light: #1a2d42;
  --mint: #a8e6cf;
  --mint-light: #d4f5e5;
  --mint-dark: #7bc8a8;
  --cream: #f0faf4;
  --white: #ffffff;
  --gray-100: #f7f8fa;
  --gray-200: #eef1f5;
  --gray-400: #9aa5b4;
  --gray-600: #5a6a7a;
  --shadow-sm: 0 2px 8px rgba(13,27,42,0.06);
  --shadow-md: 0 4px 20px rgba(13,27,42,0.08);
  --shadow-lg: 0 8px 40px rgba(13,27,42,0.12);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(13,27,42,0.06);
  transition: box-shadow 0.3s ease;
}
.header.scrolled { box-shadow: var(--shadow-md); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--midnight);
}
.logo-text { white-space: nowrap; }
.logo-light { color: var(--white); }
.logo-light .logo-text { color: var(--white); }

/* NAV */
.nav-list {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-list a {
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--midnight);
  transition: background 0.2s, color 0.2s;
}
.nav-list a:hover { background: var(--cream); }
.btn-nav {
  background: var(--midnight);
  color: var(--white) !important;
  font-weight: 700;
}
.btn-nav:hover { background: var(--midnight-light); }

/* HAMBURGER */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  position: relative;
}
.hamburger,
.hamburger::before,
.hamburger::after {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--midnight);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.hamburger::before { content: ''; top: -7px; }
.hamburger::after { content: ''; top: 7px; }
.nav-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.nav-toggle[aria-expanded="true"] .hamburger::before { transform: translateX(-50%) rotate(45deg); top: 0; }
.nav-toggle[aria-expanded="true"] .hamburger::after { transform: translateX(-50%) rotate(-45deg); top: 0; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  border: 2px solid transparent;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--midnight);
  color: var(--white);
  border-color: var(--midnight);
}
.btn-primary:hover {
  background: var(--midnight-light);
  border-color: var(--midnight-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn-outline {
  background: transparent;
  color: var(--midnight);
  border-color: var(--midnight);
}
.btn-outline:hover {
  background: var(--midnight);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline-light:hover {
  background: var(--white);
  color: var(--midnight);
  transform: translateY(-2px);
}
.btn-sm { padding: 8px 20px; font-size: 0.85rem; }
.btn-lg { padding: 14px 32px; font-size: 1rem; }
.btn-full { width: 100%; padding: 16px 24px; font-size: 1rem; }
.btn-cta-call {
  background: var(--mint);
  color: var(--midnight);
  border-color: var(--mint);
}
.btn-cta-call:hover {
  background: var(--mint-dark);
  border-color: var(--mint-dark);
  color: var(--midnight);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ===== SECTION TAGS ===== */
.section-tag {
  display: inline-block;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mint-dark);
  background: var(--mint-light);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 16px;
}
.section-desc {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 620px;
  margin: 0 auto;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 0;
  background: linear-gradient(160deg, #f0faf4 0%, #e8f5ec 40%, #ffffff 100%);
  overflow: hidden;
}
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.shape { position: absolute; border-radius: 50%; opacity: 0.4; }
.shape-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--mint) 0%, transparent 70%);
  top: -100px; right: -100px;
}
.shape-2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(168,230,207,0.5) 0%, transparent 70%);
  bottom: 10%; left: -50px;
}
.shape-3 {
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(13,27,42,0.05) 0%, transparent 70%);
  top: 30%; left: 30%;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--mint);
  color: var(--midnight);
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}
.hero-headline {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--midnight);
  margin-bottom: 20px;
}
.text-mint { color: var(--mint-dark); }
.hero-sub {
  font-size: 1.1rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 520px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-trust {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--midnight);
}

/* HERO VISUAL */
.hero-visual { position: relative; }
.hero-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.hero-card img { width: 100%; height: 420px; object-fit: cover; }
.hero-card-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--white);
  padding: 10px 18px;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--midnight);
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-md);
}
.hero-float-card {
  position: absolute;
  background: var(--white);
  padding: 14px 22px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  z-index: 2;
}
.float-1 { top: 30px; right: -20px; }
.float-2 { bottom: 60px; left: -20px; }
.float-label {
  display: block;
  font-size: 0.75rem;
  color: var(--gray-400);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.float-value {
  display: block;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--midnight);
}
.hero-wave { position: absolute; bottom: 0; left: 0; right: 0; }
.hero-wave svg { width: 100%; height: 80px; display: block; }

/* ===== SERVICES ===== */
.services { background: var(--cream); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(13,27,42,0.04);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.service-card.featured {
  border: 2px solid var(--mint);
  background: linear-gradient(180deg, var(--mint-light) 0%, var(--white) 40%);
}
.featured-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--midnight);
  color: var(--white);
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  padding: 6px 18px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.service-icon-wrap {
  width: 64px;
  height: 64px;
  background: var(--cream);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-card.featured .service-icon-wrap { background: var(--mint); }
.service-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 12px;
}
.service-card p {
  color: var(--gray-600);
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.65;
}
.service-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--midnight);
}
.service-features li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--mint-dark);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ===== HOW IT WORKS ===== */
.how-it-works { background: var(--white); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
  margin-bottom: 56px;
}
.step-card {
  text-align: center;
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  transition: transform 0.3s, box-shadow 0.3s;
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.step-number {
  width: 56px;
  height: 56px;
  background: var(--midnight);
  color: var(--mint);
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.step-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 10px;
}
.step-card p {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.65;
}
.steps-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  max-width: 640px;
  margin: 0 auto;
}
.steps-visual img { width: 100%; height: 360px; object-fit: cover; }

/* ===== WHY US ===== */
.why-us { background: var(--cream); }
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.why-content .section-title { margin-bottom: 20px; }
.why-desc {
  color: var(--gray-600);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 36px;
}
.why-list { display: flex; flex-direction: column; gap: 24px; }
.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.why-check {
  width: 28px;
  height: 28px;
  background: var(--mint);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.why-item strong {
  display: block;
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: var(--midnight);
  margin-bottom: 2px;
}
.why-item span {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.55;
}
.why-image { position: relative; }
.why-image img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}
.why-stat-card {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--midnight);
  color: var(--white);
  padding: 28px 36px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.stat-number {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 2.4rem;
  color: var(--mint);
  line-height: 1;
}
.stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
}

/* ===== FAQ ===== */
.faq { background: var(--white); }
.faq-grid {
  max-width: 800px;
  margin: 56px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.faq-item.active {
  border-color: var(--mint);
  box-shadow: var(--shadow-sm);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--midnight);
  transition: background 0.2s;
}
.faq-question:hover { background: var(--cream); }
.faq-chevron {
  flex-shrink: 0;
  transition: transform 0.3s;
  color: var(--gray-400);
}
.faq-item.active .faq-chevron { transform: rotate(180deg); color: var(--mint-dark); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-item.active .faq-answer { max-height: 200px; }
.faq-answer p {
  padding: 0 24px 20px;
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===== CTA ===== */
.cta {
  background: linear-gradient(135deg, var(--midnight) 0%, var(--midnight-light) 100%);
  padding: 80px 0;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-title {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}
.cta-text {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 560px;
}
.cta-text a {
  color: var(--mint);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cta-text a:hover { color: var(--mint-light); }
.cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===== CONTACT ===== */
.contact { background: var(--cream); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.contact-info .section-title { margin-bottom: 16px; }
.contact-desc {
  color: var(--gray-600);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 36px;
}
.contact-details { display: flex; flex-direction: column; gap: 24px; margin-bottom: 32px; }
.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-icon {
  width: 52px;
  height: 52px;
  background: var(--white);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}
.contact-detail strong {
  display: block;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--midnight);
  margin-bottom: 4px;
}
.contact-detail p {
  color: var(--gray-600);
  font-size: 0.9rem;
  line-height: 1.5;
}
.contact-detail a {
  color: var(--mint-dark);
  font-weight: 600;
  text-decoration: none;
}
.contact-detail a:hover { text-decoration: underline; }
.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.contact-map img { width: 100%; height: 200px; object-fit: cover; }

/* FORM */
.contact-form-wrap { position: sticky; top: 100px; }
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(13,27,42,0.04);
}
.contact-form-card h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.contact-form-card > p {
  color: var(--gray-600);
  font-size: 0.9rem;
  margin-bottom: 28px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--midnight);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: 'Open Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--midnight);
  background: var(--gray-100);
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--mint-dark);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(168,230,207,0.3);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-400); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%230d1b2a' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }

/* FORM SUCCESS */
.form-success {
  text-align: center;
  padding: 40px 20px;
}
.form-success h4 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--midnight);
  margin: 16px 0 8px;
}
.form-success p { color: var(--gray-600); font-size: 0.95rem; }

/* ===== FOOTER ===== */
.footer {
  background: var(--midnight);
  color: rgba(255,255,255,0.7);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 56px;
}
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 280px;
}
.footer-links h4,
.footer-contact h4 {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.footer-links ul,
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a,
.footer-contact a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s, padding-left 0.2s;
}
.footer-links a:hover,
.footer-contact a:hover {
  color: var(--mint);
  padding-left: 4px;
}
.footer-contact li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.88rem;
  line-height: 1.5;
}
.footer-contact svg { flex-shrink: 0; margin-top: 2px; color: var(--mint); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.4); }
.footer-disclaimer { font-size: 0.78rem !important; max-width: 500px; }

/* ===== MOBILE NAV ===== */
@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav-list {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    gap: 8px;
    box-shadow: var(--shadow-lg);
    transform: translateY(-120%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    z-index: 999;
  }
  .nav-list.open {
    transform: translateY(0);
    opacity: 1;
  }
  .nav-list a { width: 100%; text-align: center; padding: 12px; }
  .btn-nav { margin-top: 8px; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-visual { max-width: 480px; margin: 40px auto 0; }
  .float-1 { right: 0; }
  .float-2 { left: 0; }
  .services-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .steps-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .why-inner { grid-template-columns: 1fr; }
  .why-image { order: -1; max-width: 480px; margin: 0 auto; }
  .why-image img { height: 400px; }
  .why-stat-card { right: 16px; bottom: -16px; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { sticky: unset; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
}

@media (max-width: 600px) {
  .section { padding: 64px 0; }
  .hero { padding: 100px 0 0; min-height: auto; }
  .hero-card img { height: 280px; }
  .hero-float-card { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-card { padding: 28px 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
