/* ==========================================================================
   Umzah Net — Stylesheet
   Font: Plus Jakarta Sans
   ========================================================================== */

:root {
  /* Brand colors (diambil dari asset & mockup) */
  --green-900: #0a5f27;
  --green-800: #0c6e2f;
  --green-700: #0f7a34;
  --green-600: #128a3c;
  --green-500: #16a34a;
  --green-400: #6cb32e;
  --teal-900: #12292b;
  --teal-800: #17393b;
  --teal-700: #1c4547;
  --red-500: #f0301f;
  --red-600: #d92a1b;
  --yellow-400: #ffc800;
  --yellow-300: #ffdd55;

  --ink-900: #12211d;
  --ink-700: #33443f;
  --ink-500: #5b6b68;
  --ink-300: #93a19d;
  --line-200: #e6ece8;
  --surface-0: #ffffff;
  --surface-50: #f5f9f6;
  --surface-100: #eef4f0;

  --font-sans: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container-w: 1180px;
  --header-h: 78px;
  --header-h-mobile: 64px;
  --bottom-nav-h: 68px;

  --shadow-sm: 0 2px 10px rgba(18, 33, 29, 0.06);
  --shadow-md: 0 10px 30px rgba(18, 33, 29, 0.10);
  --shadow-lg: 0 20px 50px rgba(18, 33, 29, 0.16);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;
}

/* ---------- Reset ---------- */
* , *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 14px); }
body, h1, h2, h3, h4, p, ul, ol, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input { font-family: inherit; }
button { cursor: pointer; border: none; background: none; }
input:focus, button:focus, a:focus { outline: none; }

/* Visible keyboard focus (accessibility) */
a:focus-visible, button:focus-visible, input:focus-visible {
  outline: 2px solid var(--green-500);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * , *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

body {
  font-family: var(--font-sans);
  color: var(--ink-700);
  background: var(--surface-0);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 0;
}

.container {
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
}

section { position: relative; }

.section-pad { padding: 88px 0; }
.section-pad-sm { padding: 56px 0; }

h1, h2, h3, h4 { color: var(--ink-900); font-weight: 700; line-height: 1.2; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  color: var(--green-600);
}
.eyebrow .eyebrow-dot {
  width: 26px; height: 26px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--green-600);
  color: #fff;
  border-radius: 50%;
  flex-shrink: 0;
}
.eyebrow .eyebrow-dot svg { width: 14px; height: 14px; }

.section-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-head h2 { font-size: clamp(26px, 3.2vw, 36px); margin-top: 12px; }
.section-head.align-left { text-align: left; margin-left: 0; }

.text-muted { color: var(--ink-500); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 15px;
  white-space: nowrap;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}
.btn:active { transform: scale(0.97); }
.btn-primary {
  background: var(--red-500);
  color: #fff;
  box-shadow: 0 8px 20px rgba(240, 48, 31, 0.35);
}
.btn-primary:hover { background: var(--red-600); }
.btn-solid-green {
  background: var(--green-600);
  color: #fff;
  box-shadow: 0 8px 20px rgba(18, 138, 60, 0.28);
}
.btn-solid-green:hover { background: var(--green-800); }
.btn-block { width: 100%; }
.btn[disabled] { opacity: 0.65; cursor: progress; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: var(--green-600);
  transition: box-shadow 0.25s ease, height 0.25s ease;
}
.site-header .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.site-header.is-scrolled { box-shadow: 0 6px 24px rgba(10, 40, 20, 0.22); }

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  color: #fff;
}
.brand-mark {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: rgba(255,255,255,0.14);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.brand-mark svg { width: 22px; height: 22px; }
.brand-name-block { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name { font-weight: 800; font-size: 19px; letter-spacing: -0.01em; }
.brand-tagline { font-size: 10.5px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.75); }

.nav-desktop { display: flex; align-items: center; gap: 4px; }
.nav-desktop a {
  color: rgba(255,255,255,0.88);
  font-weight: 600;
  font-size: 14.5px;
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  transition: background-color 0.15s ease, color 0.15s ease;
}
.nav-desktop a:hover, .nav-desktop a.is-active { background: rgba(255,255,255,0.16); color: #fff; }

.header-cta { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.header-cta .btn-primary { padding: 12px 22px; font-size: 14px; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 50% 0%, #0f3d24 0%, #082a18 48%, #03130a 100%);
  padding: 84px 0 0;
}

/* ---- space decoration ---- */
.hero-space {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  background-repeat: no-repeat;
  background-image:
    radial-gradient(1.73px 1.73px at 95.0% 57.6%, rgba(255,255,255,0.9), rgba(255,255,255,0) 100%),
    radial-gradient(1.7px 1.7px at 7.5% 58.1%, rgba(255,255,255,0.94), rgba(255,255,255,0) 100%),
    radial-gradient(1.36px 1.36px at 17.1% 94.2%, rgba(255,255,255,0.67), rgba(255,255,255,0) 100%),
    radial-gradient(1.49px 1.49px at 59.1% 66.8%, rgba(255,255,255,0.65), rgba(255,255,255,0) 100%),
    radial-gradient(1.78px 1.78px at 87.5% 25.6%, rgba(255,255,255,0.85), rgba(255,255,255,0) 100%),
    radial-gradient(1.72px 1.72px at 42.2% 58.0%, rgba(255,255,255,0.97), rgba(255,255,255,0) 100%),
    radial-gradient(1.49px 1.49px at 21.6% 70.8%, rgba(255,255,255,0.76), rgba(255,255,255,0) 100%),
    radial-gradient(1.55px 1.55px at 66.5% 30.8%, rgba(255,255,255,0.9), rgba(255,255,255,0) 100%),
    radial-gradient(2.1px 2.1px at 9.0% 46.0%, rgba(255,255,255,1.0), rgba(255,255,255,0) 100%),
    radial-gradient(1.51px 1.51px at 9.0% 22.5%, rgba(255,255,255,0.97), rgba(255,255,255,0) 100%),
    radial-gradient(1.6px 1.6px at 86.6% 86.4%, rgba(255,255,255,0.66), rgba(255,255,255,0) 100%),
    radial-gradient(1.79px 1.79px at 82.0% 69.5%, rgba(255,255,255,0.99), rgba(255,255,255,0) 100%),
    radial-gradient(1.95px 1.95px at 64.8% 2.8%, rgba(255,255,255,0.72), rgba(255,255,255,0) 100%),
    radial-gradient(1.41px 1.41px at 65.7% 92.1%, rgba(255,255,255,0.65), rgba(255,255,255,0) 100%),
    radial-gradient(1.52px 1.52px at 12.3% 55.1%, rgba(255,255,255,0.84), rgba(255,255,255,0) 100%),
    radial-gradient(1.81px 1.81px at 70.9% 21.5%, rgba(255,255,255,0.71), rgba(255,255,255,0) 100%),
    radial-gradient(1.98px 1.98px at 48.9% 88.9%, rgba(255,255,255,0.64), rgba(255,255,255,0) 100%),
    radial-gradient(1.3px 1.3px at 42.7% 28.6%, rgba(255,255,255,0.91), rgba(255,255,255,0) 100%),
    radial-gradient(1.89px 1.89px at 63.2% 27.1%, rgba(255,255,255,0.82), rgba(255,255,255,0) 100%),
    radial-gradient(1.36px 1.36px at 43.1% 2.9%, rgba(255,255,255,0.95), rgba(255,255,255,0) 100%),
    radial-gradient(1.97px 1.97px at 88.8% 54.4%, rgba(255,255,255,0.83), rgba(255,255,255,0) 100%),
    radial-gradient(1.55px 1.55px at 16.2% 14.2%, rgba(255,255,255,0.96), rgba(255,255,255,0) 100%),
    radial-gradient(0.79px 0.79px at 63.4% 4.4%, rgba(255,255,255,0.59), rgba(255,255,255,0) 100%),
    radial-gradient(1.22px 1.22px at 72.7% 67.0%, rgba(255,255,255,0.53), rgba(255,255,255,0) 100%),
    radial-gradient(1.05px 1.05px at 4.5% 21.1%, rgba(255,255,255,0.72), rgba(255,255,255,0) 100%),
    radial-gradient(1.17px 1.17px at 23.2% 58.6%, rgba(255,255,255,0.5), rgba(255,255,255,0) 100%),
    radial-gradient(1.16px 1.16px at 83.4% 60.0%, rgba(255,255,255,0.79), rgba(255,255,255,0) 100%),
    radial-gradient(1.2px 1.2px at 81.6% 61.4%, rgba(255,255,255,0.73), rgba(255,255,255,0) 100%),
    radial-gradient(1.05px 1.05px at 27.6% 91.9%, rgba(255,255,255,0.74), rgba(255,255,255,0) 100%),
    radial-gradient(0.99px 0.99px at 97.0% 63.4%, rgba(255,255,255,0.77), rgba(255,255,255,0) 100%),
    radial-gradient(1.06px 1.06px at 86.1% 32.2%, rgba(255,255,255,0.66), rgba(255,255,255,0) 100%),
    radial-gradient(1.01px 1.01px at 55.9% 27.2%, rgba(255,255,255,0.86), rgba(255,255,255,0) 100%),
    radial-gradient(1.3px 1.3px at 40.3% 23.1%, rgba(255,255,255,0.7), rgba(255,255,255,0) 100%),
    radial-gradient(1.28px 1.28px at 97.6% 52.8%, rgba(255,255,255,0.84), rgba(255,255,255,0) 100%),
    radial-gradient(1.08px 1.08px at 3.1% 71.2%, rgba(255,255,255,0.71), rgba(255,255,255,0) 100%),
    radial-gradient(1.21px 1.21px at 45.6% 93.6%, rgba(255,255,255,0.61), rgba(255,255,255,0) 100%),
    radial-gradient(1.24px 1.24px at 50.1% 19.2%, rgba(255,255,255,0.85), rgba(255,255,255,0) 100%),
    radial-gradient(1.15px 1.15px at 75.2% 53.8%, rgba(255,255,255,0.71), rgba(255,255,255,0) 100%),
    radial-gradient(1.14px 1.14px at 8.6% 75.0%, rgba(255,255,255,0.55), rgba(255,255,255,0) 100%),
    radial-gradient(1.3px 1.3px at 21.3% 31.9%, rgba(255,255,255,0.76), rgba(255,255,255,0) 100%),
    radial-gradient(1.25px 1.25px at 22.6% 14.7%, rgba(255,255,255,0.73), rgba(255,255,255,0) 100%),
    radial-gradient(1.17px 1.17px at 47.4% 77.3%, rgba(255,255,255,0.58), rgba(255,255,255,0) 100%),
    radial-gradient(1.29px 1.29px at 72.0% 66.6%, rgba(255,255,255,0.54), rgba(255,255,255,0) 100%),
    radial-gradient(1.2px 1.2px at 40.7% 34.6%, rgba(255,255,255,0.6), rgba(255,255,255,0) 100%),
    radial-gradient(1.3px 1.3px at 54.8% 6.9%, rgba(255,255,255,0.83), rgba(255,255,255,0) 100%),
    radial-gradient(1.19px 1.19px at 95.0% 90.9%, rgba(255,255,255,0.57), rgba(255,255,255,0) 100%),
    radial-gradient(1.27px 1.27px at 45.7% 42.6%, rgba(255,255,255,0.9), rgba(255,255,255,0) 100%);
}
.hero-planet {
  position: absolute;
  top: -70px; right: -70px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle at 34% 32%, rgba(210,255,225,0.20), rgba(210,255,225,0.03) 55%, transparent 72%);
}
.twinkle-star {
  position: absolute;
  width: var(--sz, 2px); height: var(--sz, 2px);
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 6px 1px rgba(255,255,255,0.75);
  animation: umzah-twinkle 2.8s ease-in-out infinite;
  animation-delay: var(--d, 0s);
}
@keyframes umzah-twinkle {
  0%, 100% { opacity: 0.25; transform: scale(0.75); }
  50% { opacity: 1; transform: scale(1.2); }
}
.shooting-star {
  position: absolute;
  top: 16%;
  left: 4%;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 8px 2px rgba(255,255,255,0.9);
  opacity: 0;
  animation: umzah-shoot 8s ease-in infinite;
}
.shooting-star::before {
  content: "";
  position: absolute;
  top: 50%; right: 0;
  width: 80px; height: 1.5px;
  background: linear-gradient(90deg, rgba(255,255,255,0.85), transparent);
  transform: translateY(-50%);
}
@keyframes umzah-shoot {
  0% { transform: translate(0, 0); opacity: 0; }
  3% { opacity: 1; }
  22% { transform: translate(48vw, 20vh); opacity: 0; }
  100% { transform: translate(48vw, 20vh); opacity: 0; }
}

/* ---- layout ---- */
.hero-grid {
  display: grid;
  grid-template-columns: minmax(220px, 400px) 1fr;
  align-items: center;
  gap: 16px;
  position: relative;
  z-index: 1;
}
.hero-figure { display: flex; justify-content: center; align-self: end; }
.hero-figure img {
  width: 100%;
  height: auto;
  max-width: 360px;
  display: block;
}
.hero-banner { display: flex; justify-content: center; }
.hero-banner img { width: 100%; height: auto; max-width: 480px; }

/* ==========================================================================
   Why us
   ========================================================================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
}
.why-card { padding: 4px; border-top: 3px solid var(--line-200); padding-top: 24px; }
.why-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--surface-100);
  color: var(--green-600);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.why-icon svg { width: 24px; height: 24px; }
.why-card h3 { font-size: 19px; margin-bottom: 8px; }
.why-card p { color: var(--ink-500); font-size: 14.5px; }

/* ==========================================================================
   About
   ========================================================================== */
.about-wrap {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 56px;
  align-items: center;
}
.about-copy p { color: var(--ink-500); margin-top: 14px; font-size: 15px; }
.about-copy h2 { font-size: clamp(24px, 3vw, 32px); margin-top: 10px; }
.about-block { margin-top: 22px; }
.about-block h4 { font-size: 15px; color: var(--ink-900); margin-bottom: 6px; }
.about-block p { color: var(--ink-500); font-size: 14.5px; margin-top: 0; }
.misi-list { margin-top: 6px; counter-reset: misi; }
.misi-list li {
  counter-increment: misi;
  display: flex;
  gap: 10px;
  font-size: 14.5px;
  color: var(--ink-500);
  padding: 4px 0;
}
.misi-list li::before {
  content: counter(misi) ".";
  font-weight: 700;
  color: var(--green-600);
  flex-shrink: 0;
}
.about-figure { display: flex; justify-content: center; }
.about-figure img { width: 100%; height: auto; max-width: 320px; }

/* ---------- feature strip (4 icons) ---------- */
.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 44px 0;
  border-top: 1px solid var(--line-200);
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  text-align: left;
}
.feature-item .why-icon { margin-bottom: 0; width: 42px; height: 42px; }
.feature-item span { font-weight: 700; font-size: 14.5px; color: var(--ink-900); }

/* ==========================================================================
   Coverage check (dark)
   ========================================================================== */
.coverage {
  background: var(--teal-800);
  color: #fff;
  padding: 64px 0;
}
.coverage .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}
.coverage .eyebrow { color: var(--yellow-400); }
.coverage .eyebrow .eyebrow-dot { background: var(--yellow-400); color: var(--teal-900); }
.coverage h2 { color: #fff; font-size: clamp(22px, 2.8vw, 30px); margin-top: 10px; max-width: 460px; }

.coverage-form { display: flex; flex-direction: column; gap: 12px; }
.coverage-form input {
  width: 100%;
  padding: 15px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 14.5px;
}
.coverage-form input::placeholder { color: rgba(255,255,255,0.55); }
.coverage-form .btn { margin-top: 4px; }
.form-note { font-size: 13px; margin-top: 2px; min-height: 18px; }
.form-note.ok { color: #9be6a8; }
.form-note.err { color: #ffb4a8; }

/* ==========================================================================
   Pricing
   ========================================================================== */
.pricing { background: var(--surface-0); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 44px;
  align-items: stretch;
}
.price-card {
  background: #fff;
  border: 1px solid var(--line-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.price-card.is-featured { border-color: var(--green-500); box-shadow: var(--shadow-md); }
.price-card-top { display: flex; justify-content: space-between; align-items: flex-start; }
.price-badge {
  background: var(--green-600);
  color: #fff;
  font-size: 11.5px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.02em;
}
.price-speed-ring {
  width: 74px; height: 74px;
  border-radius: 50%;
  border: 3px solid var(--red-500);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  margin: 18px auto 6px;
  color: var(--ink-900);
}
.price-speed-ring small { font-size: 10px; font-weight: 600; color: var(--ink-500); }
.price-speed-ring b { font-size: 21px; line-height: 1; }
.price-speed-ring em { font-size: 10px; font-style: normal; color: var(--ink-500); }
.price-card h3 { text-align: center; font-size: 19px; margin-top: 8px; }
.price-feature-list { margin-top: 18px; flex-grow: 1; }
.price-feature-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  color: var(--ink-700);
  padding: 6px 0;
}
.price-feature-list svg { width: 16px; height: 16px; color: var(--green-600); flex-shrink: 0; }
.price-amount { text-align: center; margin: 18px 0; }
.price-amount b { font-size: 27px; color: var(--ink-900); }
.price-amount span { font-size: 13px; color: var(--ink-500); margin-left: 4px; }

/* ==========================================================================
   Terms (green)
   ========================================================================== */
.terms { background: var(--green-600); color: #fff; }
.terms .container {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: center;
}
.terms .section-head { margin: 0 0 26px; max-width: none; text-align: left; }
.terms .eyebrow { justify-content: flex-start; color: #dff5e2; }
.terms .eyebrow .eyebrow-dot { background: #fff; color: var(--green-700); }
.terms h2 { color: #fff; font-size: clamp(20px, 2.6vw, 26px); letter-spacing: 0.01em; }
.terms-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 9px 0;
  font-size: 15px;
}
.terms-list svg { width: 19px; height: 19px; flex-shrink: 0; margin-top: 2px; }
.terms-figure { display: flex; justify-content: center; }
.terms-figure img { width: 100%; height: auto; max-width: 280px; }

/* ==========================================================================
   Coverage area / map
   ========================================================================== */
.area-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.area-map { display: flex; justify-content: center; }
.area-map svg { width: 100%; max-width: 420px; height: auto; color: var(--green-500); }
.area-copy h2 { font-size: clamp(22px, 2.8vw, 30px); margin: 10px 0 14px; }
.area-copy p { color: var(--ink-500); font-size: 15px; margin-bottom: 20px; }
.area-phone { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 21px; color: var(--green-700); }
.area-phone svg { width: 22px; height: 22px; }
.area-cta-label { font-weight: 600; color: var(--ink-900); margin-bottom: 6px; display: block; }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer-contact { background: var(--teal-700); color: #fff; }
.footer-contact .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 26px 24px;
}
.fc-item { display: flex; align-items: center; gap: 12px; font-size: 13.5px; }
.fc-item svg { width: 20px; height: 20px; color: var(--yellow-400); flex-shrink: 0; }
.fc-item .fc-label { display: block; color: rgba(255,255,255,0.6); font-size: 11.5px; }
.fc-item .fc-value { font-weight: 700; }

.footer-main { background: var(--teal-800); color: rgba(255,255,255,0.86); padding: 56px 0 28px; }
.footer-main .container {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
}
.footer-brand p { margin-top: 14px; font-size: 14px; color: rgba(255,255,255,0.62); max-width: 420px; }
.footer-brand .brand { margin-bottom: 4px; }
.social-row { display: flex; gap: 10px; margin-top: 20px; }
.social-row a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  transition: background-color 0.15s ease;
}
.social-row a:hover { background: var(--green-600); }
.social-row svg { width: 17px; height: 17px; }

.newsletter h4 { color: #fff; font-size: 16px; margin-bottom: 10px; }
.newsletter p { font-size: 13.5px; color: rgba(255,255,255,0.6); margin-bottom: 16px; }
.newsletter-form { display: flex; gap: 10px; }
.newsletter-form input {
  flex: 1;
  min-width: 0;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 13.5px;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter-form .btn { padding: 13px 20px; font-size: 13.5px; flex-shrink: 0; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 40px;
  padding-top: 20px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  text-align: center;
}

/* ==========================================================================
   Floating WhatsApp button
   ========================================================================== */
.fab-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 24px rgba(0,0,0,0.28);
  z-index: 90;
  transition: transform 0.15s ease;
}
.fab-whatsapp:hover { transform: scale(1.06); }
.fab-whatsapp svg { width: 28px; height: 28px; }

/* ==========================================================================
   Bottom mobile navigation
   ========================================================================== */
.bottom-nav {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 95;
  background: #fff;
  box-shadow: 0 -6px 20px rgba(18, 33, 29, 0.10);
  padding-bottom: env(safe-area-inset-bottom, 0px);
}
.bottom-nav ul { display: flex; }
.bottom-nav li { flex: 1; }
.bottom-nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 10px 2px 8px;
  color: var(--ink-300);
  font-size: 10.5px;
  font-weight: 600;
}
.bottom-nav a svg { width: 21px; height: 21px; }
.bottom-nav a.is-active { color: var(--green-600); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1080px) {
  .why-grid { gap: 22px; }
  .about-wrap { grid-template-columns: 1fr 300px; gap: 34px; }
  .terms .container { grid-template-columns: 1fr 260px; }
}

@media (max-width: 880px) {
  :root { --header-h: var(--header-h-mobile); }
  body { padding-bottom: var(--bottom-nav-h); }

  .nav-desktop { display: none; }
  .bottom-nav { display: block; }

  .header-cta .btn-primary { padding: 10px 18px; font-size: 13px; }
  .brand-tagline { display: none; }

  .section-pad { padding: 56px 0; }
  .section-pad-sm { padding: 36px 0; }

  .hero { padding: 40px 0 0; }
  .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 6px; }
  .hero-banner { order: 1; }
  .hero-figure { order: 2; align-self: end; }
  .hero-figure img { max-width: 240px; }
  .hero-banner img { max-width: 320px; margin: 0 auto; }

  .why-grid { grid-template-columns: 1fr; gap: 26px; }
  .why-card { text-align: center; }
  .why-icon { margin-left: auto; margin-right: auto; }

  .about-wrap { grid-template-columns: 1fr; gap: 30px; }
  .about-figure { order: -1; }
  .about-figure img { max-width: 220px; }
  .about-copy, .about-copy .section-head.align-left { text-align: center; }
  .section-head.align-left { text-align: center; margin: 0 auto; }

  .feature-strip { grid-template-columns: repeat(2, 1fr); gap: 26px 16px; }
  .feature-item { flex-direction: column; text-align: center; }

  .coverage .container { grid-template-columns: 1fr; text-align: center; gap: 26px; }
  .coverage .eyebrow { justify-content: center; }
  .coverage h2 { margin: 10px auto 0; }

  .pricing-grid { grid-template-columns: 1fr; gap: 20px; }

  .terms .container { grid-template-columns: 1fr; text-align: center; gap: 12px; }
  .terms .section-head { text-align: center; margin: 0 auto 8px; }
  .terms .eyebrow { justify-content: center; }
  .terms-figure { order: -1; margin-bottom: 6px; }
  .terms-figure img { max-width: 200px; }
  .terms-list li { text-align: left; }

  .area-section .container { grid-template-columns: 1fr; text-align: center; gap: 26px; }
  .area-map svg { max-width: 280px; }
  .area-phone { justify-content: center; }

  .footer-contact .container { grid-template-columns: repeat(2, 1fr); }
  .footer-main .container { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .footer-brand .brand { justify-content: center; }
  .footer-brand p { margin-left: auto; margin-right: auto; }
  .social-row { justify-content: center; }
  .newsletter-form { max-width: 360px; margin: 0 auto; }

  .fab-whatsapp { bottom: calc(var(--bottom-nav-h) + 14px); }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .footer-contact .container { grid-template-columns: 1fr; text-align: center; justify-items: center; }
}
