/* ============================================================
   PHOENIX ELECTRONICS — style.css
   Color Palette: Navy #0D1B3E | Teal #00A8B5 | White #FFFFFF
   Accent: Electric Blue #1A73E8 | Light Teal #E0F7FA
   ============================================================ */

:root {
  --navy:       #0D1B3E;
  --navy-light: #162550;
  --teal:       #00A8B5;
  --teal-light: #00C4D4;
  --blue:       #1A73E8;
  --white:      #FFFFFF;
  --off-white:  #F4F8FB;
  --light-teal: #E0F7FA;
  --text:       #1A1A2E;
  --text-muted: #5A6175;
  --border:     #E2E8F0;
  --shadow:     0 4px 24px rgba(13,27,62,0.10);
  --shadow-lg:  0 12px 48px rgba(13,27,62,0.16);
  --radius:     14px;
  --radius-sm:  8px;
  --font-head:  'Montserrat', sans-serif;
  --font-body:  'DM Sans', sans-serif;
  --transition: all 0.3s ease;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); line-height: 1.65; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }
ul { list-style: none; }

/* ── UTILITY ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.dark-section { background: var(--navy); color: var(--white); }
.gradient-text {
  background: linear-gradient(135deg, var(--teal-light), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  color: var(--white);
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0,168,181,0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,168,181,0.45);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: transparent;
  color: var(--white);
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid rgba(255,255,255,0.5);
  cursor: pointer;
  transition: var(--transition);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

/* ── SECTION LABELS ── */
.section-label {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--light-teal);
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}
.section-label.light {
  color: var(--teal-light);
  background: rgba(0,200,212,0.15);
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 1.2rem;
}
.section-title.light { color: var(--white); }

/* ════════════════════════════════════════
   NAVBAR
════════════════════════════════════════ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 16px rgba(13,27,62,0.07);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1160px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--navy);
  letter-spacing: 0.04em;
}
.logo-icon { font-size: 1.4rem; color: var(--teal); }
.logo-text span { color: var(--teal); }
/* Image logo */
.logo-img {
  height: 150px;
  width: auto;
  object-fit: contain;
  display: block;
}
.logo-img--footer {
  height: 150px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links a {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 0.4rem 0.85rem;
  border-radius: 8px;
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--navy); background: var(--off-white); }
.btn-nav {
  background: linear-gradient(135deg, var(--teal), var(--blue)) !important;
  color: var(--white) !important;
  padding: 0.45rem 1.2rem !important;
  border-radius: 50px !important;
}
.btn-nav:hover { opacity: 0.9; transform: translateY(-1px); }
.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--navy);
}
.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 0.75rem 1.5rem 1rem;
  border-top: 1px solid var(--border);
  gap: 0.1rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--navy);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}

/* ════════════════════════════════════════
   HERO
════════════════════════════════════════ */
.hero {
  min-height: 91vh;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, #0f2d5e 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 5rem 1.5rem;
  gap: 3rem;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-bg-shapes { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.shape {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,168,181,0.18) 0%, transparent 70%);
}
.shape-1 { width: 600px; height: 600px; top: -200px; right: -150px; }
.shape-2 { width: 400px; height: 400px; bottom: -100px; left: -100px; background: radial-gradient(circle, rgba(26,115,232,0.15) 0%, transparent 70%); }
.shape-3 { width: 300px; height: 300px; top: 40%; left: 35%; background: radial-gradient(circle, rgba(0,168,181,0.08) 0%, transparent 70%); }

.hero-content {
  flex: 1;
  min-width: 300px;
  max-width: 580px;
  position: relative;
  z-index: 2;
  animation: fadeUp 0.8s ease both;
}
.hero-badge {
  display: inline-block;
  background: rgba(0,168,181,0.2);
  color: var(--teal-light);
  border: 1px solid rgba(0,168,181,0.35);
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.2rem;
}
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  margin-bottom: 2rem;
  max-width: 480px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-visual {
  flex: 1;
  min-width: 260px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  z-index: 2;
}
.hero-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 1.1rem 1.3rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--white);
  transition: var(--transition);
}
.hero-card:hover { background: rgba(255,255,255,0.14); transform: translateX(4px); }
.card-icon { font-size: 1.8rem; }
.card-label { font-family: var(--font-head); font-weight: 700; font-size: 0.95rem; }
.card-brands { font-size: 0.78rem; color: rgba(255,255,255,0.6); margin-top: 0.2rem; }

.card-float { animation: floatUp 0.7s ease both; }
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }

@keyframes fadeUp { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }
@keyframes floatUp { from { opacity:0; transform:translateX(30px); } to { opacity:1; transform:translateX(0); } }

/* ════════════════════════════════════════
   STATS STRIP
════════════════════════════════════════ */
.stats-strip {
  background: var(--teal);
  background: linear-gradient(90deg, var(--teal), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  padding: 1.8rem 2rem;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.5rem 2.5rem;
  color: var(--white);
}
.stat-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}
.stat-label {
  font-size: 0.8rem;
  opacity: 0.85;
  margin-top: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.3); }

/* ════════════════════════════════════════
   CLIENTS GRID
════════════════════════════════════════ */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.client-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow);
}
.client-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--teal); }
.client-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.client-card h3 { font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; color: var(--navy); margin-bottom: 0.6rem; }
.client-card p { color: var(--text-muted); font-size: 0.9rem; }

/* ════════════════════════════════════════
   SERVICES PREVIEW
════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.service-item {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 2rem 1.6rem;
  transition: var(--transition);
  position: relative;
}
.service-item:hover { background: rgba(255,255,255,0.1); border-color: var(--teal); transform: translateY(-4px); }
.svc-num {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--teal);
  margin-bottom: 0.8rem;
}
.svc-icon { font-size: 2rem; margin-bottom: 0.8rem; }
.service-item h3 { font-family: var(--font-head); font-weight: 700; font-size: 1rem; color: var(--white); margin-bottom: 0.7rem; }
.service-item p { color: rgba(255,255,255,0.65); font-size: 0.88rem; line-height: 1.6; }
.svc-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--teal-light);
  font-size: 0.85rem;
  font-weight: 600;
  font-family: var(--font-head);
  transition: var(--transition);
}
.svc-link:hover { letter-spacing: 0.04em; }

/* ════════════════════════════════════════
   WHY CHOOSE US
════════════════════════════════════════ */
.why-container {
  display: flex;
  gap: 4rem;
  align-items: center;
  flex-wrap: wrap;
}
.why-text { flex: 1; min-width: 280px; }
.why-desc { color: var(--text-muted); margin-bottom: 1.5rem; font-size: 0.97rem; }
.why-list { display: flex; flex-direction: column; gap: 0.65rem; }
.why-list li { display: flex; align-items: center; gap: 0.6rem; color: var(--text); font-size: 0.95rem; }
.check {
  width: 22px; height: 22px;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}
.why-visual { flex: 0 0 300px; display: flex; justify-content: center; }
.why-badge {
  width: 280px; height: 280px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 20px rgba(0,168,181,0.08), 0 0 0 40px rgba(0,168,181,0.04);
}
.badge-inner { text-align: center; color: var(--white); padding: 2rem; }
.badge-icon { font-size: 3rem; margin-bottom: 0.8rem; }
.badge-title { font-family: var(--font-head); font-size: 1.1rem; font-weight: 800; }
.badge-sub { font-size: 0.78rem; color: rgba(255,255,255,0.65); margin-top: 0.4rem; }

/* ════════════════════════════════════════
   CTA BANNER
════════════════════════════════════════ */
.cta-banner {
  background: linear-gradient(135deg, var(--teal) 0%, var(--blue) 100%);
  text-align: center;
  padding: 4.5rem 1.5rem;
  color: var(--white);
}
.cta-banner h2 { font-family: var(--font-head); font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; margin-bottom: 0.75rem; }
.cta-banner p { font-size: 1rem; opacity: 0.88; margin-bottom: 2rem; }
.cta-banner .btn-primary {
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.cta-banner .btn-primary:hover { background: var(--off-white); }

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
.footer { background: var(--navy); color: var(--white); padding: 4rem 0 0; }
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.4fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo { margin-bottom: 1rem; color: var(--white); }
.footer-brand .logo-icon { color: var(--teal-light); }
.footer-brand .logo-text span { color: var(--teal-light); }
.footer-brand p { color: rgba(255,255,255,0.55); font-size: 0.9rem; max-width: 280px; }
.footer-links h4, .footer-contact h4 {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal-light);
  margin-bottom: 1rem;
}
.footer-links ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a { color: rgba(255,255,255,0.65); font-size: 0.9rem; transition: var(--transition); }
.footer-links a:hover { color: var(--white); padding-left: 4px; }
.footer-contact p { color: rgba(255,255,255,0.65); font-size: 0.9rem; margin-bottom: 0.5rem; }
.footer-bottom { text-align: center; padding: 1.25rem; font-size: 0.82rem; color: rgba(255,255,255,0.35); }

/* ════════════════════════════════════════
   PAGE HERO (inner pages)
════════════════════════════════════════ */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #0f2d5e 100%);
  padding: 5rem 1.5rem;
  position: relative;
  overflow: hidden;
}
.page-hero-shapes { position: absolute; inset: 0; pointer-events: none; }
.page-hero-content { position: relative; z-index: 2; max-width: 640px; }
.page-hero-content h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.page-hero-content p { color: rgba(255,255,255,0.7); font-size: 1rem; max-width: 520px; }

/* ════════════════════════════════════════
   ABOUT PAGE
════════════════════════════════════════ */
.two-col {
  display: flex;
  gap: 4rem;
  align-items: flex-start;
  flex-wrap: wrap;
}
.col-text { flex: 1; min-width: 260px; }
.col-text p { color: var(--text-muted); font-size: 0.97rem; }
.col-cards { flex: 1; min-width: 260px; display: flex; flex-direction: column; gap: 1rem; }
.mini-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--off-white);
  border-radius: var(--radius-sm);
  padding: 1.2rem;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.mini-card:hover { border-color: var(--teal); box-shadow: var(--shadow); }
.mini-icon { font-size: 1.6rem; margin-top: 0.1rem; }
.mini-card strong { font-family: var(--font-head); font-weight: 700; color: var(--navy); display: block; margin-bottom: 0.3rem; }
.mini-card p { color: var(--text-muted); font-size: 0.85rem; }

.mv-grid {
  display: flex;
  gap: 0;
  align-items: stretch;
  flex-wrap: wrap;
}
.mv-card { flex: 1; min-width: 260px; padding: 2.5rem; }
.mv-divider { width: 1px; background: rgba(255,255,255,0.12); margin: 2rem 0; }
.mv-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.mv-card h3 { font-family: var(--font-head); font-weight: 700; font-size: 1.3rem; color: var(--teal-light); margin-bottom: 1rem; }
.mv-card p { color: rgba(255,255,255,0.72); font-size: 0.95rem; line-height: 1.75; }

/* ════════════════════════════════════════
   SERVICES DETAIL
════════════════════════════════════════ */
.services-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.svc-detail-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.svc-detail-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--teal); }
.svc-detail-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.2rem; }
.svc-detail-num {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--light-teal);
  line-height: 1;
}
.svc-detail-icon { font-size: 2rem; }
.svc-detail-card h3 { font-family: var(--font-head); font-weight: 700; font-size: 1.1rem; color: var(--navy); margin-bottom: 0.75rem; }
.svc-detail-card p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1.2rem; }
.svc-list { display: flex; flex-direction: column; gap: 0.45rem; }
.svc-list li {
  font-size: 0.88rem;
  color: var(--text);
  padding-left: 1.2rem;
  position: relative;
}
.svc-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-size: 0.8rem;
}

/* ════════════════════════════════════════
   PRODUCTS PAGE
════════════════════════════════════════ */
.product-category {
  border-radius: var(--radius);
  padding: 2.5rem;
  margin-bottom: 2rem;
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.product-category:hover { box-shadow: var(--shadow-lg); }
.product-category.alt { background: var(--off-white); }
.product-cat-header { display: flex; align-items: center; gap: 1.2rem; margin-bottom: 1.5rem; }
.product-cat-icon img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}
.product-cat-header h2 { font-family: var(--font-head); font-weight: 800; color: var(--navy); font-size: 1.4rem; }
.product-cat-sub { color: var(--text-muted); font-size: 0.88rem; margin-top: 0.2rem; }
.brands-grid { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 1rem; }
.brand-pill {
  background: var(--light-teal);
  color: var(--navy);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.82rem;
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  border: 1px solid rgba(0,168,181,0.25);
  transition: var(--transition);
}
.brand-pill:hover { background: var(--teal); color: var(--white); }
.product-note { color: var(--text-muted); font-size: 0.9rem; }

/* ════════════════════════════════════════
   CONTACT PAGE
════════════════════════════════════════ */
.contact-container {
  display: flex;
  gap: 4rem;
  align-items: flex-start;
  flex-wrap: wrap;
}
.contact-info { flex: 1; min-width: 260px; }
.contact-info h2 { font-family: var(--font-head); font-weight: 800; font-size: 1.8rem; color: var(--navy); margin-bottom: 0.75rem; }
.contact-info > p { color: var(--text-muted); font-size: 0.97rem; margin-bottom: 2rem; }
.contact-details { display: flex; flex-direction: column; gap: 1.2rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-item-icon {
  width: 44px; height: 44px;
  background: var(--light-teal);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-item strong { font-family: var(--font-head); font-weight: 700; color: var(--navy); display: block; margin-bottom: 0.2rem; font-size: 0.9rem; }
.contact-item p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.5; }

.contact-form-wrap {
  flex: 1;
  min-width: 300px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}
.contact-form-wrap h3 { font-family: var(--font-head); font-weight: 800; font-size: 1.3rem; color: var(--navy); margin-bottom: 1.8rem; }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.82rem; font-weight: 600; font-family: var(--font-head); color: var(--navy); letter-spacing: 0.03em; }
.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.7rem 0.9rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text);
  outline: none;
  background: var(--off-white);
  transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(0,168,181,0.12);
}
.form-group textarea { resize: vertical; }
.form-success {
  background: #e6f9f0;
  border: 1px solid #34d399;
  border-radius: var(--radius-sm);
  padding: 0.9rem 1rem;
  color: #065f46;
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 0.5rem;
}

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
  .hero { flex-direction: column; align-items: flex-start; min-height: auto; padding: 4rem 1.5rem 3rem; }
  .hero-visual { width: 100%; max-width: 100%; }
  .stats-strip { gap: 0.5rem; }
  .stat { padding: 0.5rem 1.2rem; }
  .stat-divider { display: none; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .mv-divider { width: 100%; height: 1px; margin: 0; }
  .form-row { grid-template-columns: 1fr; }
  .why-visual { display: none; }
  .two-col { flex-direction: column; gap: 2rem; }
  .contact-container { flex-direction: column; gap: 2rem; }
}
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  margin-top: 1.2rem;
  background: #25D366;
  color: white;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.65rem 1.4rem;
  border-radius: 50px;
  transition: var(--transition);
  width: fit-content;
}