/* ===== VARIABLES ===== */
:root {
  --blue-dark: #1a3a5c;
  --blue-mid: #1d6fa4;
  --blue-navy: #0d2d5e;
  --blue-deep: #0a1f3d;
  --teal: #0096c7;
  --teal-light: #00b4d8;
  --orange: #f97316;
  --orange-yellow: #f59e0b;
  --green: #22c55e;
  --white: #ffffff;
  --light-blue-bg: #e8f4fb;
  --light-blue-2: #dbeafe;
  --card-bg: #f0f7ff;
  --text-dark: #1e293b;
  --text-gray: #64748b;
  --text-light: #94a3b8;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.12);
  --radius: 14px;
  --radius-sm: 8px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: #fff;
  font-size: 16px;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s ease;
  text-align: center;
  justify-content: center;
  white-space: nowrap;
}
.btn--sm  { padding: 10px 20px; font-size: 14px; }
.btn--lg  { padding: 14px 28px; font-size: 16px; }
.btn--block { display: flex; width: 100%; }

.btn--primary {
  background: var(--blue-dark);
  color: #fff;
  border-color: var(--blue-dark);
}
.btn--primary:hover { background: #122d4a; border-color: #122d4a; }

.btn--outline {
  background: #f1f5f9;
  color: var(--text-dark);
  border-color: #e2e8f0;
}
.btn--outline:hover { background: #e2e8f0; }

.btn--gradient {
  background: linear-gradient(90deg, var(--blue-mid) 0%, var(--teal) 100%);
  color: #fff;
  border: none;
}
.btn--gradient:hover { opacity: 0.9; }

.btn--white {
  background: #fff;
  color: var(--blue-dark);
  border-color: #fff;
}
.btn--white:hover { background: #f1f5f9; }

.btn--outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.btn--outline-white:hover { background: rgba(255,255,255,0.1); }

/* ===== BADGES ===== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
}
.badge--teal   { background: #0096c7; color: #fff; }
.badge--orange { background: var(--orange-yellow); color: #fff; }
.badge--orange-solid { background: var(--orange-yellow); color: #fff; }

.tag--orange-pill {
  display: inline-block;
  background: var(--orange);
  border-radius: 50px;
  height: 8px;
  width: 60px;
}
.tag--green-pill {
  display: inline-block;
  background: var(--green);
  border-radius: 50px;
  height: 8px;
  width: 50px;
}
.tag--dark-pill {
  display: inline-block;
  background: var(--blue-dark);
  border-radius: 50px;
  height: 8px;
  width: 50px;
}

.section-tag-wrap { text-align: center; margin-bottom: 18px; }
.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  text-align: center;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 16px;
}
.section-subtitle {
  text-align: center;
  color: var(--text-gray);
  font-size: 15px;
  max-width: 600px;
  margin: 0 auto 52px;
}

/* ===== TEXT COLORS ===== */
.text-blue   { color: var(--blue-mid); }
.text-orange { color: var(--orange); }
.text-green  { color: var(--green); }
.text-white  { color: #fff; }

/* ===== HEADER LOGO ===== */
.header__logo-placeholder { flex: 0 0 160px; }
.header__logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}
.header__inner {
  display: flex;
  align-items: center;
  height: 68px;
  gap: 32px;
}
.header__logo-placeholder { flex: 0 0 160px; }
.header__nav {
  display: flex;
  gap: 28px;
  flex: 1;
}
.header__nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
  transition: color 0.2s;
}
.header__nav a:hover { color: var(--blue-mid); }
.header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.header__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.3s;
}
.header__mobile-menu {
  display: none;
  flex-direction: column;
  gap: 12px;
  padding: 16px 24px 20px;
  border-top: 1px solid #f1f5f9;
  background: #fff;
}
.header__mobile-menu.open { display: flex; }
.mobile-link {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-dark);
  padding: 8px 0;
  border-bottom: 1px solid #f1f5f9;
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, #dbeafe 0%, #e8f4fb 50%, #f0f9ff 100%);
  padding: 72px 0 80px;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}
.hero__content { display: flex; flex-direction: column; gap: 20px; }
.hero__title {
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-dark);
}
.hero__desc { color: var(--text-gray); font-size: 15px; max-width: 480px; }
.hero__checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 16px;
}
.hero__checks li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
}
.hero__checks li i { color: var(--teal); font-size: 16px; }
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero__trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  color: var(--text-gray);
  font-size: 13px;
}
.hero__trust span { display: flex; align-items: center; gap: 6px; }
.hero__trust i { color: var(--teal); }

.hero__image-wrap {
  position: relative;
}
.hero__img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  height: 380px;
}

.badge--float {
  position: absolute;
  background: #fff;
  border-radius: 12px;
  padding: 12px 18px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 130px;
}
.badge--float-top {
  top: -20px;
  right: -20px;
  background: var(--orange-yellow);
  color: #fff;
}
.badge--float-bottom {
  bottom: 24px;
  left: -20px;
}
.badge-big-num { font-size: 26px; font-weight: 800; line-height: 1; }
.badge-big-label { font-size: 12px; font-weight: 500; opacity: 0.85; }

/* ===== PROBLEMS ===== */
.problems {
  padding: 80px 0;
  background: #fff;
}
.problems__inner {}
.problems__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.problems__grid--4col {
  grid-template-columns: repeat(4, 1fr);
}
.problem-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.problem-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.problem-icon {
  width: 44px;
  height: 44px;
  background: var(--orange);
  border-radius: 8px;
  margin-bottom: 16px;
}
.problem-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 10px; }
.problem-card p  { font-size: 14px; color: var(--text-gray); line-height: 1.6; }

.problems__banner {
  background: var(--light-blue-2);
  border-radius: var(--radius);
  padding: 24px 32px;
  text-align: center;
  color: var(--blue-dark);
}
.problems__banner strong { font-size: 17px; color: var(--blue-mid); }
.problems__banner p:last-child { font-size: 14px; color: var(--text-gray); margin-top: 6px; }

/* ===== CTA FORM ===== */
.cta-form {
  padding: 80px 0;
  background-color: #0a1f3d;
  background: #0a1f3d;
  background: radial-gradient(ellipse at 30% 50%, #0d3266 0%, #0a1f3d 60%, #0d3266 100%);
  position: relative;
}
.cta-form__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.cta-form__left {
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 20px;
}
.cta-form__title {
  font-size: clamp(22px, 2.6vw, 34px);
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
}
.cta-form__desc {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
}
.cta-form__features { display: flex; flex-direction: column; gap: 20px; }
.cta-form__features li { display: flex; align-items: flex-start; gap: 16px; }
.cta-form__features li > div { flex: 1; min-width: 0; }
.cta-form__features li strong {
  display: block;
  font-size: 15px;
  margin-bottom: 2px;
  color: #fff;
}
.cta-form__features li p {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin: 0;
}
.feature-icon {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--orange-yellow);
  font-size: 18px;
}

.cta-form__card {
  background: #fff;
  border-radius: 18px;
  padding: 36px 32px;
  box-shadow: var(--shadow-md);
}
.cta-form__card h3 { font-size: 22px; font-weight: 800; color: var(--text-dark); margin-bottom: 4px; }
.form-subtitle { font-size: 14px; color: var(--text-gray); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--text-dark); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 14px;
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.2s;
  background: #fff;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--teal); }
.form-group select { 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='%2364748b' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }
.form-group textarea { resize: vertical; }
.form-privacy { text-align: center; font-size: 12px; color: var(--text-gray); margin-top: 12px; display: flex; align-items: center; justify-content: center; gap: 6px; }
.form-privacy i { color: var(--green); }

/* ===== ABOUT ===== */
.about {
  padding: 80px 0;
  background: linear-gradient(135deg, #0d2d5e 0%, #0f3460 40%, #0d4a6e 100%);
}
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about__content { color: #fff; display: flex; flex-direction: column; gap: 20px; }
.about__title {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800;
  line-height: 1.2;
}
.about__desc { font-size: 15px; opacity: 0.85; line-height: 1.7; }
.about__features { display: flex; flex-direction: column; gap: 16px; }
.about__features li { display: flex; align-items: flex-start; gap: 14px; }
.about-icon {
  width: 44px; height: 44px;
  background: var(--orange-yellow);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: #fff;
  font-size: 18px;
}
.about__features li strong { display: block; font-size: 15px; margin-bottom: 2px; }
.about__features li p { font-size: 13px; opacity: 0.75; margin: 0; }

.about__image-wrap { position: relative; }
.about__img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  height: 420px;
}
.badge--float-about {
  position: absolute;
  bottom: 24px;
  left: -16px;
  background: var(--orange-yellow);
  color: #fff;
  border-radius: 12px;
  padding: 12px 18px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  box-shadow: var(--shadow-md);
}

/* ===== BENEFITS ===== */
.benefits { padding: 80px 0; background: #fff; }
.benefits__inner {}
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.benefit-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.benefit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.benefit-icon {
  width: 52px; height: 52px;
  background: var(--blue-dark);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 22px;
}
.benefit-card h3 { font-size: 16px; font-weight: 700; }
.benefit-card p  { font-size: 14px; color: var(--text-gray); line-height: 1.6; flex: 1; }
.benefit-link { font-size: 14px; font-weight: 600; color: var(--blue-mid); }
.benefit-link:hover { text-decoration: underline; }

/* ===== MINI CTA ===== */
.mini-cta { padding: 40px 0; background: #fff; }
.mini-cta__box {
  background: linear-gradient(90deg, var(--blue-mid) 0%, var(--teal) 100%);
  border-radius: 18px;
  padding: 40px 48px;
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.mini-cta__box h2 { font-size: clamp(20px, 3vw, 28px); font-weight: 800; }
.mini-cta__box p  { font-size: 15px; opacity: 0.9; }
.mini-cta__note   { font-size: 13px; opacity: 0.8; display: flex; align-items: center; gap: 6px; }

/* ===== HOW IT WORKS ===== */
.how-it-works {
  padding: 80px 0;
  background: linear-gradient(135deg, #dbeafe 0%, #e8f4fb 100%);
}
.how__inner {}
.how__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}
.how__grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 2px;
  background: linear-gradient(90deg, var(--blue-dark), var(--teal), var(--orange), var(--green));
  z-index: 0;
}
.step-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 20px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow);
}
.step-number {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  position: absolute;
  top: -18px;
}
.step-number--navy   { background: var(--blue-navy); }
.step-number--teal   { background: var(--teal); }
.step-number--orange { background: var(--orange-yellow); }
.step-number--green  { background: var(--green); }

.step-circle {
  width: 60px; height: 60px;
  border-radius: 50%;
  margin-top: 12px;
}
.step-circle--navy   { background: var(--blue-navy); }
.step-circle--teal   { background: var(--teal); }
.step-circle--orange { background: var(--orange-yellow); }
.step-circle--green  { background: var(--green); }

.step-card h3 { font-size: 15px; font-weight: 700; }
.step-card p  { font-size: 13px; color: var(--text-gray); line-height: 1.6; }

/* ===== COMMITMENT ===== */
.commitment {
  padding: 80px 0;
  background: linear-gradient(180deg, #f8faff 0%, #fff 100%);
}
.commitment__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.commitment__img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  height: 360px;
}
.commitment__content { display: flex; flex-direction: column; gap: 18px; }
.commitment__content h2 { font-size: clamp(26px, 3vw, 36px); font-weight: 800; line-height: 1.2; }
.commitment__content p  { font-size: 15px; color: var(--text-gray); line-height: 1.7; }
.commitment__checks { display: flex; flex-direction: column; gap: 12px; }
.commitment__checks li {
  display: flex; align-items: center; gap: 10px;
  font-size: 15px; font-weight: 500;
}
.commitment__checks li i { font-size: 18px; }

/* ===== FINAL CTA ===== */
.final-cta {
  padding: 80px 0 0;
  background: linear-gradient(135deg, #0a1f3d 0%, #0d3266 50%, #006994 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.final-cta__inner {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 28px;
  padding-bottom: 60px;
  position: relative; z-index: 1;
}
.final-cta__badge {
  display: inline-block;
  border: 1.5px solid rgba(255,255,255,0.5);
  border-radius: 50px;
  padding: 8px 22px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.final-cta__title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.2;
}
.final-cta__desc { font-size: 16px; opacity: 0.85; max-width: 560px; }
.final-cta__stats {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.stat-box {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  padding: 18px 32px;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  min-width: 160px;
}
.stat-num { font-size: 28px; font-weight: 800; }
.stat-label { font-size: 13px; opacity: 0.8; }
.final-cta__actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.final-cta__wave { line-height: 0; margin-top: 20px; }
.final-cta__wave svg { width: 100%; display: block; }

/* ===== FOOTER ===== */
.footer {
  background: #0a1f3d;
  color: rgba(255,255,255,0.75);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 48px;
  padding: 60px 24px 48px;
}
.footer__brand { display: flex; flex-direction: column; gap: 16px; }
.footer__logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 22px; font-weight: 800;
}
.footer__logo-img { height: 56px; width: auto; object-fit: contain; display: block; }
.footer-logo-text .text-white { color: #fff; }
.footer-logo-text .text-orange { color: var(--orange-yellow); }
.footer__brand p { font-size: 14px; line-height: 1.7; }
.footer__social { display: flex; gap: 10px; margin-top: 4px; }
.footer__social a {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 14px;
  transition: background 0.2s;
}
.footer__social a:hover { background: var(--blue-mid); }

.footer__col h4 {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 20px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col ul li {
  font-size: 14px;
  display: flex; align-items: center; gap: 8px;
}
.footer__col ul a {
  color: rgba(255,255,255,0.7);
  display: flex; align-items: center; gap: 8px;
  transition: color 0.2s;
}
.footer__col ul a:hover { color: #fff; }
.footer__col ul i { font-size: 10px; color: var(--orange-yellow); }
.footer__col ul .fa-check { color: var(--teal-light); font-size: 12px; }
.contact-icon i { color: #fff; font-size: 16px; }

.footer__contact { display: flex; flex-direction: column; gap: 16px !important; }
.footer__contact li { display: flex; align-items: flex-start; gap: 12px !important; }
.contact-icon {
  width: 36px; height: 36px;
  background: var(--orange-yellow);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 14px;
  flex-shrink: 0;
}
.footer__contact small { display: block; font-size: 11px; opacity: 0.6; }
.footer__contact span:last-child { font-size: 14px; color: #fff; font-weight: 500; }
.footer__contact div { display: flex; flex-direction: column; gap: 2px; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
}
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__bottom p { font-size: 13px; }
.footer__bottom-links { display: flex; gap: 24px; }
.footer__bottom-links a { font-size: 13px; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer__bottom-links a:hover { color: #fff; }

/* ===== ABOUT TAGLINE ===== */
.about__tagline {
  font-size: 16px;
  font-weight: 700;
  color: var(--orange-yellow);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}

/* ===== SERVICES ===== */
.services {
  padding: 80px 0;
  background: #fff;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* ===== WHY US ===== */
.why-us {
  padding: 80px 0;
  background: linear-gradient(135deg, #f0f7ff 0%, #e8f4fb 100%);
}
.why-us__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 36px;
}
.why-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px 28px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  flex: 1 1 calc(33.33% - 14px);
  max-width: calc(33.33% - 14px);
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.why-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.why-card__dot {
  width: 12px;
  height: 12px;
  background: var(--blue-mid);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 5px;
}
.why-card__content strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.why-card__content p {
  font-size: 13px;
  color: var(--text-gray);
  line-height: 1.6;
  margin: 0;
}
.why-us__tagline {
  text-align: center;
  font-size: 22px;
  font-weight: 800;
  color: var(--blue-dark);
}

/* ===== PROBLEMS PHOTO STRIP ===== */
.problems__gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}
.problems__gallery-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.problems__gallery-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  filter: brightness(0.82);
  transition: filter 0.3s;
}
.problems__gallery-item:hover .problems__gallery-img { filter: brightness(0.7); }
.problems__gallery-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(249, 115, 22, 0.92);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 12px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* ===== SERVICE CARD WITH IMAGE ===== */
.service-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-left: 4px solid var(--blue-mid);
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.service-card__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.service-card__body {
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.service-card__icon { font-size: 34px; line-height: 1; }
.service-card h3 { font-size: 18px; font-weight: 700; color: var(--text-dark); }
.service-card p  { font-size: 14px; color: var(--text-gray); line-height: 1.7; }

/* ===== EQUIPMENT GALLERY ===== */
.equipment-gallery {
  padding: 80px 0;
  background: var(--card-bg);
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery__img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
  transition: transform 0.3s, box-shadow 0.3s;
}
.gallery__img:hover { transform: scale(1.03); box-shadow: var(--shadow-md); }
.gallery__grid .gallery__img:last-child:nth-child(3n+1) {
  grid-column: 1 / -1;
  height: 280px;
}

/* ===== FLOATING WHATSAPP ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: #25D366;
  color: #fff;
  border-radius: 50px;
  padding: 14px 20px 14px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  z-index: 999;
  transition: transform 0.2s, box-shadow 0.2s;
  animation: wa-pulse 3s infinite;
}
.whatsapp-float i { font-size: 26px; }
.whatsapp-float__label { font-size: 14px; white-space: nowrap; }
.whatsapp-float:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(37,211,102,0.6); }
@keyframes wa-pulse {
  0%,100% { box-shadow: 0 6px 24px rgba(37,211,102,0.45); }
  50%      { box-shadow: 0 6px 32px rgba(37,211,102,0.7), 0 0 0 8px rgba(37,211,102,0.1); }
}

/* ===== FORM SUCCESS ===== */
.form-success {
  text-align: center;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.form-success i { font-size: 52px; color: #22c55e; }
.form-success h3 { font-size: 20px; font-weight: 800; color: var(--text-dark); }
.form-success p  { font-size: 14px; color: var(--text-gray); }

/* ===== WHATSAPP BUTTON ===== */
.btn--whatsapp {
  background: #25D366;
  color: #fff;
  border-color: #25D366;
}
.btn--whatsapp:hover { background: #1fba58; border-color: #1fba58; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .how__grid { grid-template-columns: repeat(2, 1fr); }
  .how__grid::before { display: none; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .header__nav { display: none; }
  .header__inner > .btn { display: none; }
  .header__burger { display: flex; }

  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .badge--float-top { top: -12px; right: 12px; }
  .badge--float-bottom { bottom: 12px; left: 12px; }
  .hero__img { height: 280px; }

  .problems__grid { grid-template-columns: 1fr 1fr; }
  .problems__grid--4col { grid-template-columns: 1fr 1fr; }
  .cta-form__inner { grid-template-columns: 1fr; }
  .cta-form__left { padding-top: 0; }
  .about__inner { grid-template-columns: 1fr; }
  .about__img { height: 300px; }
  .badge--float-about { left: 12px; bottom: 12px; }
  .problems__gallery { grid-template-columns: 1fr 1fr; }
  .services__grid { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__grid .gallery__img:last-child:nth-child(3n+1) { grid-column: auto; height: 220px; }
  .why-card { flex: 1 1 calc(50% - 10px); max-width: calc(50% - 10px); }
  .how__grid { grid-template-columns: 1fr 1fr; }
  .commitment__inner { grid-template-columns: 1fr; }
  .commitment__img { height: 280px; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .mini-cta__box { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .final-cta__actions { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .problems__grid { grid-template-columns: 1fr; }
  .problems__grid--4col { grid-template-columns: 1fr; }
  .how__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .final-cta__stats { flex-direction: column; align-items: center; }
  .hero__checks { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; }
  .footer__bottom-inner { flex-direction: column; text-align: center; }
  .footer__bottom-links { flex-wrap: wrap; justify-content: center; }
  .why-card { flex: 1 1 100%; max-width: 100%; }
  .problems__gallery { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: 1fr; }
}
