/* ==============================
   RESET & BASE
============================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', sans-serif;
  color: #444;
  line-height: 1.65;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ==============================
   DESIGN TOKENS
============================== */
:root {
  --teal: #00BDB4;
  --teal-dark: #009A93;
  --navy: #1E2D3D;
  --navy-deep: #0D1A26;
  --red: #E74C3C;
  --red-dark: #C0392B;
  --green: #25D366;
  --light: #F5F8FA;
  --border: #E0E6EB;
  --text: #444;
  --text-light: #777;
  --white: #fff;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.14);
}

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

.sec {
  padding: 88px 0;
}

.t-center {
  text-align: center;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  transition: all .3s;
  cursor: pointer;
  border: none;
}

.btn-lg {
  padding: 16px 40px;
  font-size: 14px;
}

.btn-red {
  background: var(--red);
  color: var(--white);
}

.btn-red:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(231, 76, 60, .35);
}

.btn-teal {
  background: var(--teal);
  color: var(--white);
}

.btn-teal:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 189, 180, .35);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--teal);
}

.btn-outline-wa {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  background: rgba(37, 211, 102, .18);
  border: 2px solid var(--green);
  color: var(--white);
  transition: all .3s;
  cursor: pointer;
}

.btn-outline-wa:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-2px);
}

/* Pulsing CTA button */
.btn-pulse {
  background: var(--red);
  color: var(--white);
  animation: pulse 2.4s infinite;
}

.btn-pulse:hover {
  animation: none;
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(231, 76, 60, .45);
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(231, 76, 60, .5); }
  50% { box-shadow: 0 0 0 12px rgba(231, 76, 60, 0); }
}

.btn-ghost {
  background: transparent;
  border: 2px solid var(--teal);
  color: var(--teal);
}

.btn-ghost:hover {
  background: var(--teal);
  color: var(--white);
}

.sec-head {
  margin-bottom: 52px;
}

.sec-head .kicker {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px;
}

.sec-head h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 34px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
}

.sec-head p {
  color: var(--text-light);
  font-size: 15px;
  margin-top: 14px;
  max-width: 620px;
}

.sec-head.t-center p {
  margin-left: auto;
  margin-right: auto;
}

.rule {
  width: 48px;
  height: 3px;
  background: var(--teal);
  margin: 14px 0 0;
  border-radius: 2px;
}

.rule-center {
  margin-left: auto;
  margin-right: auto;
}

.form-privacy {
  text-align: center;
  font-size: 12px;
  color: #aaa;
  margin-top: 10px;
}

.form-privacy i {
  margin-right: 4px;
  color: var(--teal);
}

/* ==============================
   TOP BAR
============================== */
.topbar {
  background: var(--navy-deep);
  padding: 7px 0;
  font-size: 12.5px;
  color: rgba(255, 255, 255, .65);
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar-left span {
  margin-right: 20px;
}

.topbar-left i {
  margin-right: 5px;
  color: var(--teal);
}

.topbar-promo {
  background: rgba(231, 76, 60, .18);
  border: 1px solid rgba(231, 76, 60, .35);
  color: #ff9a8b;
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 11.5px;
}

.topbar-promo strong {
  color: #fff;
}

.topbar-right a {
  margin-left: 12px;
  color: rgba(255, 255, 255, .6);
  transition: color .3s;
  font-size: 13px;
}

.topbar-right a:hover {
  color: var(--teal);
}

/* ==============================
   NAVBAR
============================== */
.navbar {
  background: var(--white);
  height: 68px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, .09);
  position: sticky;
  top: 0;
  z-index: 900;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 48px;
  width: auto;
  max-width: 200px;
  display: block;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  padding: 8px 13px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .4px;
  text-transform: uppercase;
  color: var(--navy);
  transition: color .25s;
  border-radius: 3px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--teal);
}

.nav-links .nav-cta {
  background: var(--red);
  color: var(--white) !important;
  padding: 9px 18px !important;
  border-radius: 3px;
  transition: background .3s !important;
}

.nav-links .nav-cta:hover {
  background: var(--red-dark) !important;
}

.burger {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  color: var(--navy);
  cursor: pointer;
}

/* ==============================
   HERO
============================== */
.hero {
  position: relative;
  height: 620px;
  overflow: hidden;
  background: var(--navy);
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.3s ease;
}

.hero-slide.active {
  opacity: .52;
}

.hero-arr {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  background: rgba(255, 255, 255, .18);
  border: 1.5px solid rgba(255, 255, 255, .35);
  color: var(--white);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s;
  backdrop-filter: blur(4px);
}

.hero-arr:hover {
  background: rgba(255, 255, 255, .35);
}

.hero-arr.prev {
  left: 24px;
}

.hero-arr.next {
  right: 24px;
}

.hero-copy {
  transition: opacity .5s ease;
}

.hero-copy.fade {
  opacity: 0;
}

.hero-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13, 26, 38, .92) 42%, rgba(13, 26, 38, .15) 100%);
}

.hero-body {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
}

/* Social proof pill */
.hero-sp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .22);
  backdrop-filter: blur(6px);
  padding: 6px 14px;
  border-radius: 30px;
  margin-bottom: 20px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, .88);
}

.hero-stars {
  color: #F4C542;
  font-size: 13px;
  letter-spacing: 1px;
}

.hero-badge {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  margin-bottom: 22px;
}

.hero-body h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 56px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.06;
  margin-bottom: 18px;
  max-width: 580px;
}

.hero-body p {
  color: rgba(255, 255, 255, .82);
  font-size: 16px;
  max-width: 460px;
  margin-bottom: 12px;
}

.hero-urgency {
  font-size: 13px;
  color: #ffd580;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-urgency i {
  color: #ff8c42;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

/* Trust signals row */
.hero-trust {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.hero-trust span {
  font-size: 12px;
  color: rgba(255, 255, 255, .65);
  display: flex;
  align-items: center;
  gap: 5px;
}

.hero-trust i {
  color: var(--teal);
  font-size: 12px;
}

.hero-dots {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: row;
  gap: 10px;
  z-index: 4;
}

.hero-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .4);
  cursor: pointer;
  transition: all .3s;
  border: 1.5px solid rgba(255, 255, 255, .6);
}

.hero-dots span.on {
  background: var(--white);
  transform: scale(1.25);
}

/* ==============================
   STATS BAR
============================== */
.stats-bar {
  background: var(--navy);
  padding: 48px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.stat-item {
  flex: 1;
  text-align: center;
  padding: 8px 24px;
}

.stat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
}

.stat-suf {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--teal);
  vertical-align: super;
  line-height: 1;
}

.stat-item p {
  color: rgba(255, 255, 255, .6);
  font-size: 13px;
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, .12);
  flex-shrink: 0;
}

/* ==============================
   INFO BAR
============================== */
.infobar {
  background: var(--teal);
}

.infobar .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.ib {
  padding: 32px 28px;
  border-right: 1px solid rgba(255, 255, 255, .2);
  color: var(--white);
}

.ib:last-child {
  border-right: none;
}

.ib-appt {
  background: rgba(0, 0, 0, .08);
}

.ib .lbl {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: .72;
  margin-bottom: 4px;
}

.ib h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.ib-free-badge {
  background: var(--red);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 2px 8px;
  border-radius: 2px;
}

.ib-line {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  margin-bottom: 7px;
}

.ib-line i {
  color: rgba(255, 255, 255, .7);
  width: 14px;
}

.ib form {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ib input,
.ib select {
  flex: 1;
  min-width: 110px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, .3);
  background: rgba(255, 255, 255, .14);
  color: var(--white);
  font-size: 13px;
  border-radius: 3px;
  outline: none;
  font-family: inherit;
}

.ib input::placeholder {
  color: rgba(255, 255, 255, .68);
}

.ib select option {
  color: #333;
}

.ib .cta-appt {
  background: var(--red);
  color: var(--white);
  border: none;
  padding: 10px 16px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 3px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: .6px;
  white-space: nowrap;
  transition: background .3s;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.ib .cta-appt:hover {
  background: var(--red-dark);
}

.ib-note {
  font-size: 11px;
  color: rgba(255, 255, 255, .58);
  margin-top: 8px;
}

.ib-note i {
  margin-right: 4px;
}

.ib-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 16px;
  background: rgba(37, 211, 102, .2);
  border: 1.5px solid rgba(37, 211, 102, .5);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 3px;
  font-size: 12.5px;
  font-weight: 700;
  transition: background .3s;
}

.ib-wa-btn:hover {
  background: var(--green);
}

.hours-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 5px 18px;
  font-size: 13px;
}

.hday {
  font-weight: 600;
}

.htime {
  text-align: right;
  opacity: .82;
}

/* ==============================
   FEATURES
============================== */
.features {
  background: var(--white);
}

.feat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feat-card {
  text-align: center;
  padding: 36px 20px;
  border-radius: 4px;
  transition: box-shadow .3s;
}

.feat-card:hover {
  box-shadow: var(--shadow);
}

.feat-ico {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
}

.feat-card h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 12px;
}

.feat-card p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.75;
}

/* ==============================
   HOW IT WORKS
============================== */
.how-it-works {
  background: var(--light);
}

.steps-grid {
  display: flex;
  align-items: flex-start;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}

.step-card {
  flex: 1;
  text-align: center;
  padding: 40px 28px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
  position: relative;
  transition: transform .3s;
}

.step-card:hover {
  transform: translateY(-6px);
}

.step-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3px;
  color: var(--teal);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.step-ico {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(0, 189, 180, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.step-ico i {
  font-size: 26px;
  color: var(--teal);
}

.step-card h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.step-card p {
  font-size: 13.5px;
  color: var(--text-light);
  line-height: 1.75;
}

.step-badge {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 3px 10px;
  border-radius: 2px;
  margin-top: 14px;
}

.step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  color: var(--teal);
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 60px;
}

/* ==============================
   SERVICES
============================== */
.services {
  background: var(--white);
}

.srv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.srv-card {
  background: var(--white);
  border-radius: 5px;
  padding: 32px 26px;
  border: 1px solid var(--border);
  transition: all .3s;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.srv-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--teal);
  transform: scaleX(0);
  transition: transform .3s;
  transform-origin: left;
}

.srv-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.srv-card:hover::after {
  transform: scaleX(1);
}

.srv-featured {
  border-color: var(--teal);
  border-width: 2px;
}

.srv-popular-badge {
  display: inline-block;
  background: var(--teal);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 2px;
  margin-bottom: 16px;
}

.srv-ico {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(0, 189, 180, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.srv-ico i {
  font-size: 22px;
  color: var(--teal);
}

.srv-card h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.srv-card p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 16px;
  flex: 1;
}

.srv-meta {
  display: flex;
  gap: 16px;
  font-size: 12px;
  color: #aaa;
  margin-bottom: 14px;
}

.srv-meta i {
  color: var(--teal);
  margin-right: 4px;
}

.srv-cta {
  font-size: 12.5px;
  color: var(--teal);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: gap .2s;
  margin-top: auto;
}

.srv-cta:hover {
  gap: 10px;
}

.srv-footer {
  margin-top: 36px;
}

.srv-incl {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 189, 180, .08);
  border: 1px solid rgba(0, 189, 180, .25);
  color: var(--teal);
  padding: 10px 22px;
  border-radius: 30px;
  font-size: 13.5px;
  font-weight: 600;
}

.srv-incl i {
  font-size: 16px;
}

/* ==============================
   DEPARTMENTS
============================== */
.depts {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.depts .container {
  display: grid;
  grid-template-columns: 270px 1fr;
}

.dept-side {
  background: rgba(255, 255, 255, .04);
  padding: 56px 30px;
}

.dept-side h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
}

.dept-list li {
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.dept-list li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 0;
  color: rgba(255, 255, 255, .65);
  font-size: 13.5px;
  transition: color .3s;
}

.dept-list li a i {
  font-size: 11px;
  opacity: .45;
}

.dept-list li.on a,
.dept-list li a:hover {
  color: var(--teal);
}

.dept-main {
  padding: 56px 50px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.dept-copy {
  flex: 1;
  color: var(--white);
}

.dept-copy .kicker {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px;
  display: block;
}

.dept-copy h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 18px;
}

.dept-copy p {
  color: rgba(255, 255, 255, .7);
  font-size: 14px;
  line-height: 1.85;
  margin-bottom: 26px;
}

.dept-img {
  flex-shrink: 0;
  width: 210px;
  height: 270px;
  object-fit: cover;
  border-radius: 5px;
}

/* ==============================
   CTA BAND – LEAD CAPTURE
============================== */
.cta-band {
  background: var(--teal);
  padding: 72px 0;
  text-align: center;
}

.cta-band .kicker {
  display: block;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .75);
  margin-bottom: 10px;
}

.cta-band h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 38px;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.cta-sub {
  color: rgba(255, 255, 255, .82);
  font-size: 15px;
  margin-bottom: 30px;
}

.cta-lead-form {
  display: flex;
  justify-content: center;
  max-width: 480px;
  margin: 0 auto 22px;
  gap: 0;
}

.cta-lead-form input {
  flex: 1;
  padding: 16px 20px;
  border: none;
  font-size: 14px;
  outline: none;
  font-family: inherit;
  border-radius: 3px 0 0 3px;
}

.cta-lead-form button {
  background: var(--navy);
  color: var(--white);
  border: none;
  padding: 0 26px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  transition: background .3s;
  border-radius: 0 3px 3px 0;
  white-space: nowrap;
}

.cta-lead-form button:hover {
  background: var(--navy-deep);
}

.cta-guarantees {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.cta-guarantees span {
  color: rgba(255, 255, 255, .88);
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.cta-guarantees i {
  color: rgba(255, 255, 255, .9);
}

.cta-band small {
  display: block;
  color: rgba(255, 255, 255, .6);
  font-size: 12px;
}

/* ==============================
   GUARANTEE
============================== */
.guarantee {
  background: var(--light);
}

.guarantee-box {
  display: flex;
  align-items: center;
  gap: 36px;
  background: var(--white);
  border-radius: 8px;
  padding: 48px 52px;
  box-shadow: var(--shadow-lg);
  border-left: 5px solid var(--teal);
}

.g-ico {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(0, 189, 180, .12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.g-ico i {
  font-size: 36px;
  color: var(--teal);
}

.g-copy {
  flex: 1;
}

.g-copy h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}

.g-copy p {
  font-size: 14.5px;
  color: var(--text-light);
  line-height: 1.8;
}

.g-copy strong {
  color: var(--navy);
}

/* ==============================
   TEAM
============================== */
.team {
  background: var(--white);
}

.team-layout {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.team-intro {
  flex: 0 0 260px;
}

.team-intro p {
  color: var(--text-light);
  font-size: 14px;
  margin: 18px 0 26px;
}

.team-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.t-card {
  border-radius: 5px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .3s;
}

.t-card:hover {
  transform: translateY(-5px);
}

.t-photo {
  position: relative;
  height: 195px;
  overflow: hidden;
}

.t-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}

.t-card:hover .t-photo img {
  transform: scale(1.06);
}

.t-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 189, 180, .88);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  transition: opacity .3s;
}

.t-card:hover .t-overlay {
  opacity: 1;
}

.t-overlay a {
  width: 34px;
  height: 34px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: 13px;
  transition: background .3s;
}

.t-overlay a:hover {
  background: var(--navy);
  color: var(--white);
}

.t-info {
  padding: 16px;
  text-align: center;
  background: var(--white);
}

.t-info h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--navy);
}

.t-info span {
  font-size: 12px;
  color: var(--teal);
  font-weight: 500;
}

/* ==============================
   TESTIMONIALS
============================== */
.testi {
  background: var(--navy);
}

.testi-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
}

.testi-stars {
  color: #F4C542;
  font-size: 18px;
  letter-spacing: 2px;
}

.testi-score {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
}

.testi-count {
  font-size: 13px;
  color: rgba(255, 255, 255, .55);
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.t-quote {
  background: rgba(255, 255, 255, .05);
  border-radius: 5px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, .08);
  display: flex;
  flex-direction: column;
}

.stars {
  color: #F4C542;
  font-size: 13px;
  margin-bottom: 14px;
}

.t-quote p {
  color: rgba(255, 255, 255, .78);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 22px;
  font-style: italic;
  flex: 1;
}

.t-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.t-av {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--white);
  font-size: 15px;
  flex-shrink: 0;
}

.t-av-info h5 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: var(--white);
  font-size: 13.5px;
}

.t-av-info span {
  font-size: 11.5px;
  color: rgba(255, 255, 255, .5);
}

.t-result {
  font-size: 12px;
  color: var(--teal);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ==============================
   INSURANCE BAR
============================== */
.insurance-bar {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}

.ins-label {
  text-align: center;
  font-size: 12.5px;
  color: var(--text-light);
  margin-bottom: 18px;
  letter-spacing: .3px;
}

.ins-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.ins-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 18px;
  border: 1px solid var(--border);
  border-radius: 3px;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: .4px;
  background: var(--light);
  transition: border-color .3s;
}

.ins-item i {
  color: var(--teal);
  font-size: 14px;
}

.ins-item:hover {
  border-color: var(--teal);
}

/* ==============================
   BLOG
============================== */
.blog {
  background: var(--light);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.b-card {
  background: var(--white);
  border-radius: 5px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .3s;
}

.b-card:hover {
  transform: translateY(-4px);
}

.b-img {
  height: 185px;
  position: relative;
  overflow: hidden;
}

.b-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}

.b-card:hover .b-img img {
  transform: scale(1.06);
}

.b-cat {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: var(--teal);
  color: var(--white);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
}

.b-body {
  padding: 22px;
}

.b-meta {
  font-size: 11.5px;
  color: #aaa;
  margin-bottom: 9px;
}

.b-meta i {
  margin-right: 4px;
}

.b-body h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.4;
}

.b-body p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 14px;
}

.readmore {
  font-size: 13px;
  color: var(--teal);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: gap .2s;
}

.readmore:hover {
  gap: 9px;
}

/* ==============================
   FAQ
============================== */
.faq {
  background: var(--white);
}

.faq .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--navy);
  transition: color .3s;
  gap: 14px;
}

.faq-q:hover {
  color: var(--teal);
}

.faq-q i {
  font-size: 11px;
  transition: transform .3s;
  flex-shrink: 0;
  color: var(--text-light);
}

.faq-item.open .faq-q i {
  transform: rotate(180deg);
  color: var(--teal);
}

.faq-a {
  display: none;
  padding-bottom: 18px;
  font-size: 13.5px;
  color: var(--text-light);
  line-height: 1.8;
}

.faq-item.open .faq-a {
  display: block;
}

.faq-aside {}

.cred-box {
  background: var(--light);
  border-radius: 5px;
  padding: 32px;
  margin-bottom: 20px;
}

.cred-box h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.cred-box p {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 22px;
  line-height: 1.7;
}

.cert-box {
  background: var(--teal);
  border-radius: 5px;
  padding: 26px;
  color: var(--white);
}

.cert-box h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 12px;
}

.cert-box p {
  font-size: 13px;
  opacity: .9;
  margin-bottom: 8px;
  line-height: 1.7;
}

.cert-box i {
  margin-right: 6px;
}

/* ==============================
   CONTACT
============================== */
.contact {
  background: var(--navy);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
}

.contact-copy .sec-head h2 {
  color: var(--white);
}

.contact-copy .sec-head .kicker {
  color: var(--teal);
}

.contact-copy p {
  color: rgba(255, 255, 255, .68);
  font-size: 14px;
  margin-bottom: 30px;
}

.c-detail {
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
  align-items: flex-start;
}

.c-ico {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.c-ico i {
  color: var(--white);
  font-size: 15px;
}

.c-txt h5 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: var(--white);
  font-size: 13.5px;
  margin-bottom: 3px;
}

.c-txt p {
  color: rgba(255, 255, 255, .62);
  font-size: 13px;
  margin: 0;
}

.c-form {
  background: var(--white);
  border-radius: 6px;
  padding: 42px;
}

.c-form h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.f-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.f-group {
  margin-bottom: 14px;
}

.f-group label {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 5px;
}

.f-group input,
.f-group select,
.f-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 3px;
  font-size: 13.5px;
  font-family: inherit;
  outline: none;
  transition: border-color .3s;
}

.f-group input:focus,
.f-group select:focus,
.f-group textarea:focus {
  border-color: var(--teal);
}

.f-group textarea {
  height: 96px;
  resize: vertical;
}

/* ==============================
   MAP PLACEHOLDER
============================== */
.map-ph {
  height: 290px;
  background: #111D28;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(255, 255, 255, .4);
  font-size: 14px;
}

.map-ph i {
  font-size: 38px;
  color: var(--teal);
}

/* ==============================
   FOOTER
============================== */
.footer {
  background: var(--navy-deep);
}

.footer-main {
  padding: 64px 0 42px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 40px;
}

.f-brand p {
  color: rgba(255, 255, 255, .58);
  font-size: 13.5px;
  line-height: 1.8;
  margin: 16px 0 22px;
}

.f-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 16px;
  background: rgba(37, 211, 102, .15);
  border: 1.5px solid rgba(37, 211, 102, .4);
  color: rgba(255, 255, 255, .75);
  padding: 8px 16px;
  border-radius: 3px;
  font-size: 12.5px;
  font-weight: 600;
  transition: all .3s;
}

.f-wa-btn:hover {
  background: var(--green);
  color: var(--white);
}

.f-wa-btn i {
  font-size: 16px;
  color: var(--green);
}

.socials {
  display: flex;
  gap: 9px;
}

.socials a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .07);
  color: rgba(255, 255, 255, .6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  transition: all .3s;
}

.socials a:hover {
  background: var(--teal);
  color: var(--white);
}

.footer h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 20px;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul li a {
  color: rgba(255, 255, 255, .58);
  font-size: 13.5px;
  transition: color .3s;
}

.footer ul li a:hover {
  color: var(--teal);
}

.footer ul li a::before {
  content: '›';
  margin-right: 7px;
  color: var(--teal);
}

.f-contact-li {
  display: flex;
  gap: 10px;
  margin-bottom: 13px;
  color: rgba(255, 255, 255, .58);
  font-size: 13.5px;
}

.f-contact-li i {
  color: var(--teal);
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-bot {
  border-top: 1px solid rgba(255, 255, 255, .07);
  padding: 18px 0;
}

.footer-bot .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  color: rgba(255, 255, 255, .4);
}

/* ==============================
   WHATSAPP FAB
============================== */
.wa-fab {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 6px 22px rgba(214, 36, 159, .48);
  z-index: 800;
  transition: transform .3s;
}

.wa-fab:hover {
  transform: scale(1.1);
}

.wa-fab-label {
  position: absolute;
  right: 68px;
  background: var(--white);
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  white-space: nowrap;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateX(8px);
  transition: all .3s;
  pointer-events: none;
}

.wa-fab:hover .wa-fab-label {
  opacity: 1;
  transform: translateX(0);
}

/* ==============================
   MOBILE STICKY BAR
============================== */
.sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 950;
  background: var(--white);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, .15);
  transform: translateY(100%);
  transition: transform .4s ease;
}

.sticky-bar.visible {
  transform: translateY(0);
}

.sticky-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 10px 8px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .4px;
  text-transform: uppercase;
  transition: opacity .2s;
}

.sticky-btn i {
  font-size: 20px;
}

.sticky-btn span {
  font-size: 10px;
  letter-spacing: .5px;
}

.sticky-btn:active {
  opacity: .75;
}

.sticky-call {
  color: var(--navy);
  border-right: 1px solid var(--border);
}

.sticky-appt {
  color: var(--white);
  background: var(--red);
}

.sticky-wa {
  color: var(--white);
  background: #25D366;
  border-left: 1px solid rgba(255,255,255,.2);
}

/* ==============================
   MODAL
============================== */
.modal-wrap {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .6);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
}

.modal-wrap.open {
  display: flex;
}

.modal-box {
  background: var(--white);
  border-radius: 7px;
  width: 94%;
  max-width: 640px;
  max-height: 92vh;
  overflow-y: auto;
}

.modal-head {
  background: var(--teal);
  padding: 20px 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-head h3 {
  font-family: 'Montserrat', sans-serif;
  color: var(--white);
  font-weight: 700;
  font-size: 17px;
}

.modal-x {
  background: none;
  border: none;
  color: var(--white);
  font-size: 20px;
  cursor: pointer;
  line-height: 1;
}

.modal-body {
  padding: 28px 26px;
}

/* ==============================
   BOOKING CALENDAR & SLOTS
============================== */
.booking-duration {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.booking-duration-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
}
.duration-btns { display: flex; gap: 8px; }
.dur-btn {
  padding: 6px 16px;
  border: 2px solid var(--teal);
  border-radius: 20px;
  background: none;
  color: var(--teal);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all .2s;
  font-family: inherit;
}
.dur-btn.active { background: var(--teal); color: #fff; }
.dur-btn:hover:not(.active) { background: #e6f9f8; }

.booking-picker {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.cal-wrap {
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  overflow: hidden;
}
.cal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--navy);
  padding: 9px 12px;
}
.cal-nav span {
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
}
.cal-nav button {
  background: none;
  border: none;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  padding: 0 4px;
  line-height: 1;
  opacity: .8;
}
.cal-nav button:hover { opacity: 1; }
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  padding: 6px 4px;
  gap: 2px;
}
.cal-hdr {
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  color: #aaa;
  padding: 3px 0 4px;
}
.cal-cell {
  text-align: center;
  font-size: 11px;
  padding: 4px 2px;
  border-radius: 4px;
  line-height: 1.4;
  min-height: 24px;
}
.cal-cell.empty { background: none; }
.cal-cell.cal-disabled { color: #d5d5d5; cursor: not-allowed; }
.cal-cell.cal-available {
  cursor: pointer;
  color: var(--navy);
  font-weight: 600;
}
.cal-cell.cal-available:hover { background: #e6f9f8; color: var(--teal); }
.cal-cell.cal-today { background: #f0f4ff; font-weight: 800; }
.cal-cell.cal-full { color: #ffb3b3; cursor: not-allowed; text-decoration: line-through; }
.cal-cell.cal-selected { background: var(--teal) !important; color: #fff !important; border-radius: 4px; }

.slots-wrap {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.slots-hint {
  font-size: 11px;
  color: #999;
  margin: 0;
  font-style: italic;
}
.slots-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
}
.slot-btn {
  padding: 6px 4px;
  font-size: 10.5px;
  border-radius: 5px;
  border: 2px solid transparent;
  cursor: pointer;
  font-weight: 700;
  transition: all .15s;
  white-space: nowrap;
  font-family: inherit;
  text-align: center;
}
.slot-free { background: #f0faf9; border-color: var(--teal); color: var(--teal); }
.slot-free:hover { background: var(--teal); color: #fff; }
.slot-selected { background: var(--teal); color: #fff; border-color: var(--teal); }
.slot-booked { background: #f8f8f8; border-color: #e8e8e8; color: #ccc; cursor: not-allowed; }

@media (max-width: 560px) {
  .booking-picker { grid-template-columns: 1fr; }
}

/* ==============================
   NOTIFICATION TOAST
============================== */
.toast {
  position: fixed;
  bottom: 90px;
  right: 26px;
  z-index: 1100;
  background: var(--navy);
  color: var(--white);
  padding: 14px 22px;
  border-radius: 5px;
  font-size: 14px;
  box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--teal);
  max-width: 300px;
  transform: translateX(120%);
  transition: transform .4s;
}

.toast.show {
  transform: translateX(0);
}

/* ==============================
   RESPONSIVE
============================== */
@media (max-width: 1024px) {
  .hero-body h1 {
    font-size: 44px;
  }

  .feat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .depts .container {
    grid-template-columns: 1fr;
  }

  .dept-main {
    padding: 36px;
  }

  .dept-img {
    display: none;
  }

  .team-layout {
    flex-direction: column;
    gap: 34px;
  }

  .team-intro {
    flex: none;
  }

  .blog-grid,
  .testi-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .guarantee-box {
    flex-direction: column;
    text-align: center;
    padding: 40px 32px;
  }

  .steps-grid {
    flex-direction: column;
    gap: 16px;
    max-width: 480px;
  }

  .step-arrow {
    transform: rotate(90deg);
    margin: 0 auto;
    padding: 0;
  }
}

@media (max-width: 768px) {
  .topbar {
    display: none;
  }

  .logo-img {
    height: 38px;
    max-width: 160px;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 16px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .12);
    gap: 4px;
    z-index: 900;
  }

  .nav-links.open {
    display: flex;
  }

  .burger {
    display: block;
  }

  .hero {
    height: 540px;
  }

  .hero-body h1 {
    font-size: 34px;
  }

  .stats-grid {
    flex-wrap: wrap;
  }

  .stat-item {
    flex: 0 0 45%;
  }

  .stat-divider {
    display: none;
  }

  .infobar .container {
    grid-template-columns: 1fr;
  }

  .ib {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, .2);
  }

  .srv-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr 1fr;
  }

  .blog-grid,
  .testi-grid {
    grid-template-columns: 1fr;
  }

  .faq .container {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bot .container {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .f-row {
    grid-template-columns: 1fr;
  }

  .sec-head h2 {
    font-size: 28px;
  }

  .cta-band h2 {
    font-size: 26px;
  }

  .cta-lead-form {
    flex-direction: column;
  }

  .cta-lead-form input {
    border-radius: 3px;
  }

  .cta-lead-form button {
    padding: 14px;
    border-radius: 3px;
  }

  .cta-guarantees {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  /* Show sticky bar on mobile */
  .sticky-bar {
    display: flex;
  }

  /* Add padding bottom so content isn't hidden behind sticky bar */
  body {
    padding-bottom: 60px;
  }

  .wa-fab {
    bottom: 78px;
  }

  .toast {
    bottom: 78px;
  }
}

@media (max-width: 480px) {
  .team-grid {
    grid-template-columns: 1fr;
  }

  .hero-btns {
    flex-direction: column;
  }

  .hero-body h1 {
    font-size: 30px;
  }

  .hero-trust {
    gap: 10px;
  }

  .stats-bar {
    padding: 36px 0;
  }

  .stat-num {
    font-size: 38px;
  }

  .guarantee-box {
    padding: 32px 22px;
  }

  .c-form {
    padding: 28px 20px;
  }
}
