/* =========================================
   Gunjan Electronics — Landing Page CSS
   Pure HTML/CSS · No framework
   ========================================= */

/* ----- Reset / Base ----- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background: #FAFAFA;
  color: #111827;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; margin: 0; }
button { font: inherit; cursor: pointer; }

h1, h2, h3, h4, h5 {
  font-family: "Manrope", system-ui, sans-serif;
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 1.1;
  color: #0B2447;
}

::selection { background: #0B2447; color: #fff; }

/* ----- Layout helpers ----- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}
@media (min-width: 640px) {
  .container { padding: 0 24px; }
}
@media (min-width: 1024px) {
  .container { padding: 0 32px; }
}

.text-red { color: #E63946; }
.text-yellow { color: #FFB703; }
.muted { color: #6b7280; font-weight: 500; }
.muted-sm { color: #6b7280; font-size: 13px; margin: 4px 0 0; }
.dot { width: 4px; height: 4px; border-radius: 50%; background: #d1d5db; }

.hide-sm { display: none; }
.show-sm { display: inline; }
@media (min-width: 640px) {
  .hide-sm { display: inline; }
  .show-sm { display: none; }
}

/* ----- Chips ----- */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}
@media (min-width: 640px) { .chip { font-size: 12px; } }

.chip--yellow { background: rgba(255, 183, 3, 0.15); border: 1px solid rgba(255, 183, 3, 0.4); color: #0B2447; }
.chip--yellow-strong { background: #FFB703; color: #0B2447; }
.chip--navy { background: rgba(11, 36, 71, 0.06); color: #0B2447; }
.chip--red { background: rgba(230, 57, 70, 0.1); color: #E63946; }
.chip--green { background: rgba(37, 211, 102, 0.15); color: #0B2447; }

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 14px;
  color: #fff;
  transition: transform 0.15s ease, background-color 0.2s ease, box-shadow 0.2s ease;
  text-align: center;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12); }
.btn:active { transform: scale(0.97); }

.btn--call { background: #E63946; }
.btn--call:hover { background: #cf2f3c; }
.btn--whatsapp { background: #25D366; }
.btn--whatsapp:hover { background: #1fb955; }
.btn--ghost-white { background: #fff; color: #0B2447; }
.btn--ghost-white:hover { background: #f3f4f6; }

.btn--xl {
  padding: 16px 24px;
  border-radius: 18px;
  font-size: 15px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}
.btn--block { width: 100%; justify-content: space-between; }

.btn__stack { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.05; }
.btn__stack small { font-size: 10px; font-weight: 700; opacity: 0.9; text-transform: uppercase; letter-spacing: 0.08em; }
.btn__stack strong { font-size: 16px; font-weight: 900; letter-spacing: -0.01em; }
@media (min-width: 640px) {
  .btn__stack strong { font-size: 18px; }
  .btn--xl { padding: 18px 28px; font-size: 16px; }
}

.btn__circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.btn__arrow { font-size: 22px; margin-left: auto; }

.header__cta { padding: 10px 14px; border-radius: 999px; font-size: 13px; }
@media (min-width: 640px) { .header__cta { padding: 12px 20px; font-size: 14px; } }

/* ----- Pulse animations ----- */
@keyframes pulse-call-anim {
  0% { box-shadow: 0 0 0 0 rgba(230, 57, 70, 0.55); }
  70% { box-shadow: 0 0 0 18px rgba(230, 57, 70, 0); }
  100% { box-shadow: 0 0 0 0 rgba(230, 57, 70, 0); }
}
@keyframes pulse-whatsapp-anim {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55); }
  70% { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
.pulse-call { animation: pulse-call-anim 2s infinite; }
.pulse-whatsapp { animation: pulse-whatsapp-anim 2s infinite; }

/* ===================== HEADER ===================== */
.header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid #e5e7eb;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
@media (min-width: 768px) { .header__inner { height: 80px; } }

.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand__logo {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: #0B2447;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.brand__logo--white { background: #fff; }
.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__name { font-family: "Manrope", sans-serif; font-weight: 800; font-size: 16px; color: #0B2447; }
.brand__sub { font-size: 10px; color: #6b7280; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; margin-top: 2px; }
@media (min-width: 640px) {
  .brand__name { font-size: 18px; }
  .brand__sub { font-size: 11px; }
}

.nav-desktop { display: none; gap: 32px; }
.nav-desktop a {
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  transition: color 0.2s;
}
.nav-desktop a:hover { color: #0B2447; }
@media (min-width: 1024px) { .nav-desktop { display: inline-flex; } }

/* ===================== HERO ===================== */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(to bottom, #fff, #FAFAFA, #fff);
  padding: 40px 0 48px;
}
@media (min-width: 640px) { .hero { padding: 64px 0 80px; } }
@media (min-width: 1024px) { .hero { padding: 80px 0 112px; } }

.hero__grid-bg {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image:
    linear-gradient(#0B2447 1px, transparent 1px),
    linear-gradient(90deg, #0B2447 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}
.hero__blob {
  position: absolute;
  top: -128px;
  right: -128px;
  width: 384px;
  height: 384px;
  border-radius: 50%;
  background: #FFB703;
  opacity: 0.2;
  filter: blur(80px);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero__inner { grid-template-columns: 7fr 5fr; gap: 48px; }
}

.hero__title {
  font-size: clamp(34px, 6vw, 64px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 0.95;
}
.hero__title-sub {
  display: block;
  margin-top: 12px;
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 700;
  color: rgba(11, 36, 71, 0.8);
}
.hero__desc {
  margin: 20px 0 0;
  font-size: 16px;
  color: #4b5563;
  max-width: 640px;
  line-height: 1.65;
}
@media (min-width: 640px) { .hero__desc { font-size: 18px; } }
.hero__desc strong { color: #0B2447; font-weight: 700; }

.hero__ctas {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 640px) { .hero__ctas { flex-direction: row; gap: 16px; margin-top: 36px; } }

.hero__mini-trust {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 20px;
  font-size: 13px;
  color: #374151;
  font-weight: 600;
}
.hero__mini-trust span { display: inline-flex; align-items: center; gap: 6px; }

/* Hero media */
.hero__media { position: relative; }
.hero__img-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 4px solid #fff;
  box-shadow: 0 24px 48px rgba(11, 36, 71, 0.18);
}
.hero__img-wrap img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}
@media (min-width: 640px) { .hero__img-wrap img { height: 420px; } }
@media (min-width: 1024px) { .hero__img-wrap img { height: 520px; } }

.hero__badge-top, .hero__badge-bottom {
  position: absolute;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
  padding: 10px 14px;
}
.hero__badge-top {
  top: 16px; left: 16px;
  background: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero__badge-top small { display: block; font-size: 10px; font-weight: 700; color: #6b7280; text-transform: uppercase; letter-spacing: 0.1em; }
.hero__badge-top strong { display: block; font-size: 14px; font-weight: 800; color: #0B2447; }
.hero__badge-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero__badge-icon--green { background: #25D366; }

.hero__badge-bottom {
  bottom: 16px; right: 16px;
  background: #0B2447;
  color: #fff;
}
.hero__big-num { font-family: "Manrope", sans-serif; font-size: 28px; font-weight: 900; line-height: 1; }
.hero__badge-bottom small { font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; opacity: 0.8; margin-top: 2px; display: block; }

.hero__rating-card {
  display: none;
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
  padding: 12px 18px;
  align-items: center;
  gap: 14px;
  border: 1px solid #f3f4f6;
}
@media (min-width: 640px) { .hero__rating-card { display: inline-flex; } }
.stars { display: inline-flex; gap: 2px; }
.hero__rating-card strong { font-family: "Manrope"; font-size: 22px; font-weight: 900; color: #0B2447; display: block; line-height: 1; }
.hero__rating-card small { display: block; font-size: 10px; font-weight: 600; color: #6b7280; text-transform: uppercase; letter-spacing: 0.1em; margin-top: 2px; }

/* ===================== TRUST BAR ===================== */
.trust-bar {
  background: #fff;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  padding: 24px 0;
}
@media (min-width: 640px) { .trust-bar { padding: 32px 0; } }

.trust-bar__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
}
@media (min-width: 768px) { .trust-bar__grid { grid-template-columns: repeat(4, 1fr); } }

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
}
@media (min-width: 768px) { .trust-item { justify-content: flex-start; } }
.trust-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(11, 36, 71, 0.05);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.trust-item strong { display: block; font-family: "Manrope"; font-size: 16px; font-weight: 900; color: #0B2447; letter-spacing: -0.01em; }
.trust-item small { display: block; font-size: 11px; font-weight: 600; color: #6b7280; text-transform: uppercase; letter-spacing: 0.1em; margin-top: 2px; }
@media (min-width: 640px) {
  .trust-icon { width: 48px; height: 48px; }
  .trust-item strong { font-size: 20px; }
}

/* ===================== SECTIONS ===================== */
.section {
  padding: 64px 0;
}
@media (min-width: 640px) { .section { padding: 96px 0; } }
.section--gray { background: #FAFAFA; }
.section--white { background: #fff; border-top: 1px solid #e5e7eb; border-bottom: 1px solid #e5e7eb; }

.section__head { max-width: 720px; margin-bottom: 40px; }
.section__head--center { text-align: center; margin-left: auto; margin-right: auto; }
.section__head h2 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.section__head p {
  margin: 16px 0 0;
  font-size: 16px;
  color: #4b5563;
  line-height: 1.65;
  max-width: 640px;
}
.section__head--center p { margin-left: auto; margin-right: auto; }
@media (min-width: 640px) { .section__head p { font-size: 18px; } .section__head { margin-bottom: 56px; } }

/* ===================== PRIMARY SERVICE CARD ===================== */
.primary-service {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #0B2447;
  color: #fff;
  padding: 28px;
  margin-bottom: 24px;
}
@media (min-width: 640px) { .primary-service { padding: 40px; } }
@media (min-width: 1024px) { .primary-service { padding: 56px; } }

.primary-service__blob {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(255, 183, 3, 0.15);
  filter: blur(80px);
}
.primary-service__bg-icon {
  position: absolute;
  bottom: 0;
  right: 0;
  opacity: 0.1;
  pointer-events: none;
}
.primary-service__inner { position: relative; max-width: 720px; }
.primary-service h3 {
  color: #fff;
  font-size: clamp(22px, 3.5vw, 36px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.primary-service p {
  margin: 12px 0 20px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 560px;
  line-height: 1.6;
}
@media (min-width: 640px) { .primary-service p { font-size: 18px; } }

.bullet-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 24px;
}
.bullet-grid li { display: flex; align-items: center; gap: 8px; }
.bullet-grid li::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #FFB703;
  flex-shrink: 0;
}

.primary-service__ctas { display: flex; flex-direction: column; gap: 12px; }
@media (min-width: 640px) { .primary-service__ctas { flex-direction: row; } }

/* ===================== SERVICES GRID ===================== */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (min-width: 768px) { .services-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }

.service-card {
  background: #fff;
  padding: 22px;
  border-radius: 18px;
  border: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.service-card:hover {
  border-color: #0B2447;
  box-shadow: 0 12px 28px rgba(11, 36, 71, 0.1);
  transform: translateY(-2px);
}
.service-card__icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(11, 36, 71, 0.05);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  transition: background-color 0.2s;
}
.service-card:hover .service-card__icon { background: rgba(255, 183, 3, 0.2); }
.service-card h4 {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.service-card p {
  margin: 6px 0 0;
  font-size: 13px;
  color: #6b7280;
  line-height: 1.55;
}
.service-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 16px;
  font-size: 12px;
  font-weight: 800;
  color: #E63946;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ===================== BRANDS MARQUEE ===================== */
.brands {
  background: #fff;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  padding: 28px 0;
  overflow: hidden;
}
.brands__heading {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin: 0 0 14px;
}
.brands__strip {
  position: relative;
  overflow: hidden;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.marquee-track {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  animation: marquee 35s linear infinite;
}
.brand-name {
  font-family: "Manrope", sans-serif;
  font-size: 26px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: #d1d5db;
  margin: 0 20px;
  user-select: none;
}
@media (min-width: 640px) { .brand-name { font-size: 32px; margin: 0 28px; } }
.brand-dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: #FFB703; flex-shrink: 0; }

.brands__fade {
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  pointer-events: none;
  z-index: 2;
}
.brands__fade--left { left: 0; background: linear-gradient(to right, #fff, transparent); }
.brands__fade--right { right: 0; background: linear-gradient(to left, #fff, transparent); }

/* ===================== WHY US ===================== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) { .why-grid { grid-template-columns: 1fr 1fr; gap: 20px; } }
@media (min-width: 1024px) { .why-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; } }

.why-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 26px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.why-card:hover { border-color: #0B2447; box-shadow: 0 10px 24px rgba(11, 36, 71, 0.08); }
.why-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.why-card h4 { font-size: 18px; font-weight: 800; letter-spacing: -0.01em; }
.why-card p { margin: 8px 0 0; font-size: 14px; color: #6b7280; line-height: 1.6; }

/* ===================== HOW IT WORKS ===================== */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 640px) { .steps-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .steps-grid { grid-template-columns: repeat(4, 1fr); } }

.step-card {
  position: relative;
  background: #FAFAFA;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 26px;
  transition: border-color 0.2s;
}
.step-card:hover { border-color: #0B2447; }
.step-watermark {
  position: absolute;
  top: 8px; right: 16px;
  font-family: "Manrope", sans-serif;
  font-size: 48px;
  font-weight: 900;
  color: rgba(11, 36, 71, 0.06);
  pointer-events: none;
}
.step-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: #0B2447;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.step-label {
  display: block;
  font-size: 11px;
  font-weight: 800;
  color: #E63946;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}
.step-card h4 { font-size: 18px; font-weight: 800; letter-spacing: -0.01em; }
.step-card p { margin: 8px 0 0; font-size: 13px; color: #6b7280; line-height: 1.6; }
.step-arrow {
  display: none;
  position: absolute;
  top: 50%; right: -12px;
  transform: translateY(-50%);
  width: 24px; height: 24px;
  border-radius: 50%;
  background: #FFB703;
  color: #0B2447;
  font-weight: 900;
  font-size: 12px;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
@media (min-width: 1024px) {
  .step-card .step-arrow { display: inline-flex; }
  .step-card:last-child .step-arrow { display: none; }
}

/* ===================== CTA BANNER ===================== */
.cta-banner-wrap { padding: 48px 0; }
@media (min-width: 640px) { .cta-banner-wrap { padding: 64px 0; } }
.cta-banner {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #0B2447;
  color: #fff;
  padding: 32px;
}
@media (min-width: 640px) { .cta-banner { padding: 48px; } }
@media (min-width: 1024px) { .cta-banner { padding: 64px; } }

.cta-banner__blob {
  position: absolute;
  width: 384px; height: 384px;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.cta-banner__blob--y { top: -96px; right: -96px; background: rgba(255, 183, 3, 0.15); }
.cta-banner__blob--r { bottom: -96px; left: -96px; background: rgba(230, 57, 70, 0.15); width: 320px; height: 320px; }
.cta-banner__dots {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: radial-gradient(circle, #fff 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
}

.cta-banner__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
@media (min-width: 1024px) { .cta-banner__inner { grid-template-columns: 7fr 5fr; } }

.cta-banner__copy h2 {
  color: #fff;
  font-size: clamp(26px, 4vw, 48px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.cta-banner__copy p {
  margin: 14px 0 0;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 520px;
  line-height: 1.6;
}
@media (min-width: 640px) { .cta-banner__copy p { font-size: 18px; } }

.cta-banner__ctas { display: flex; flex-direction: column; gap: 12px; }

/* ===================== TESTIMONIALS ===================== */
.rating-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  font-size: 14px;
  color: #374151;
}
.rating-row strong { font-family: "Manrope"; font-size: 22px; font-weight: 900; color: #0B2447; }

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; } }

.testimonial {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.testimonial:hover { border-color: #0B2447; box-shadow: 0 12px 24px rgba(11, 36, 71, 0.08); }
.testimonial .quote { display: block; }
.testimonial .stars--inline { margin: 10px 0 12px; }
.testimonial p { margin: 0; font-size: 15px; color: #374151; line-height: 1.65; flex: 1; }
.testimonial footer {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid #f3f4f6;
  display: flex;
  align-items: center;
  gap: 12px;
}
.avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: #0B2447;
  color: #fff;
  font-weight: 900;
  font-size: 13px;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.testimonial footer strong { display: block; font-family: "Manrope"; font-size: 14px; color: #0B2447; font-weight: 800; }
.testimonial footer small { display: block; font-size: 12px; color: #6b7280; margin-top: 2px; }

/* ===================== SERVICE AREAS ===================== */
.service-areas {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 1024px) { .service-areas { grid-template-columns: 5fr 7fr; gap: 48px; align-items: start; } }

.service-areas__copy h2 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.service-areas__copy p {
  margin: 16px 0 24px;
  font-size: 16px;
  color: #4b5563;
  line-height: 1.65;
}

.hours-card {
  padding: 22px;
  border-radius: 18px;
  background: #FAFAFA;
  border: 1px solid #e5e7eb;
}
.hours-card small {
  display: block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}
.hours-card strong {
  font-family: "Manrope";
  font-size: 18px;
  font-weight: 900;
  color: #0B2447;
}

.areas-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
}
.area-chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #e5e7eb;
  font-size: 13px;
  font-weight: 600;
  color: #374151;
  transition: all 0.2s;
  cursor: default;
}
.area-chip:hover { border-color: #0B2447; background: #0B2447; color: #fff; }
.area-chip--all { background: #FFB703; color: #0B2447; font-weight: 900; border-color: #FFB703; }

/* ===================== FAQ ===================== */
.faq-wrap { max-width: 720px; margin: 0 auto; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 0 22px;
  transition: border-color 0.2s;
}
.faq-item[open] { border-color: #0B2447; }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: #0B2447;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 26px;
  font-weight: 400;
  color: #6b7280;
  transition: transform 0.2s;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p {
  margin: 0;
  padding: 0 0 20px;
  color: #4b5563;
  font-size: 15px;
  line-height: 1.65;
}
@media (min-width: 640px) {
  .faq-item summary { font-size: 17px; }
}

/* ===================== FOOTER ===================== */
.footer {
  background: #0B2447;
  color: #fff;
  padding: 56px 0 24px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 768px) { .footer__grid { grid-template-columns: 5fr 3fr 4fr; gap: 40px; } }

.brand--footer .brand__name { color: #fff; }
.brand--footer .brand__sub { color: rgba(255, 255, 255, 0.6); }

.footer__about {
  margin: 16px 0 24px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.65;
  max-width: 440px;
}
.footer__cta-row { display: flex; flex-wrap: wrap; gap: 10px; }

.footer__col h5 {
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin: 0 0 16px;
}
.footer__col ul li {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 10px;
}

.footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.footer__contact a { transition: color 0.2s; }
.footer__contact a:hover { color: #FFB703; }
.footer__contact strong { font-size: 15px; font-weight: 800; }

.footer__bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}
.footer__links { display: flex; gap: 20px; }
.footer__links a { transition: color 0.2s; }
.footer__links a:hover { color: #fff; }
@media (min-width: 640px) {
  .footer__bottom { flex-direction: row; justify-content: space-between; align-items: center; }
}

/* ===================== STICKY MOBILE CTA ===================== */
.sticky-mobile {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  background: #fff;
  border-top: 1px solid #e5e7eb;
  box-shadow: 0 -6px 18px rgba(11, 36, 71, 0.12);
}
.sticky-mobile__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 12px;
  color: #fff;
  font-weight: 900;
}
.sticky-mobile__btn--call { background: #E63946; }
.sticky-mobile__btn--call:active { background: #cf2f3c; }
.sticky-mobile__btn--whatsapp { background: #25D366; }
.sticky-mobile__btn--whatsapp:active { background: #1fb955; }
.sticky-mobile__btn small { display: block; font-size: 10px; font-weight: 700; opacity: 0.9; text-transform: uppercase; letter-spacing: 0.08em; line-height: 1; }
.sticky-mobile__btn strong { display: block; font-size: 15px; font-weight: 900; letter-spacing: -0.01em; line-height: 1.2; }

@media (max-width: 767px) {
  body { padding-bottom: 72px; }
}
@media (min-width: 768px) {
  .sticky-mobile { display: none; }
}

/* ===================== FLOATING DESKTOP CTA ===================== */
.floating-desktop {
  display: none;
  position: fixed;
  bottom: 32px;
  right: 24px;
  z-index: 50;
  flex-direction: column;
  gap: 12px;
}
.float-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 999px;
  color: #fff;
  font-weight: 900;
  font-size: 14px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s;
}
.float-btn:hover { transform: scale(1.05); }
.float-btn:active { transform: scale(0.95); }
.float-btn--call { background: #E63946; }
.float-btn--call:hover { background: #cf2f3c; }
.float-btn--whatsapp { background: #25D366; }
.float-btn--whatsapp:hover { background: #1fb955; }

@media (min-width: 768px) {
  .floating-desktop { display: inline-flex; }
}
