    :root {
  --accent: #2b9d88; /* teal */
  --accent-dark: #217a66;
  --muted: #6b7280;
  --bg: #f8fafc;
  --card: #ffffff;
  --max-width: 1100px;
  --shadow: 0 8px 30px rgba(16, 24, 40, 0.06);
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: var(--bg);
  color: #0f172a;
  line-height: 1.5;
}
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 16px 32px;
}

/* ── HEADER ── */
header {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(43,157,136,0.10);
  box-shadow: 0 1px 16px rgba(15,23,42,0.06);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 0;
}
.brand {
  display: flex;
  gap: 11px;
  align-items: center;
}
.logo {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.03em;
  box-shadow: 0 4px 12px rgba(43,157,136,0.30);
  flex-shrink: 0;
}
.brand h1 {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a.nav-link {
  color: #475569;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 7px 13px;
  border-radius: 8px;
  transition: background 0.18s ease, color 0.18s ease;
}
.nav-links a.nav-link:hover {
  background: rgba(43,157,136,0.08);
  color: #1a7a67;
}
.cta, a.cta {
  background: linear-gradient(135deg, #2b9d88, #1f7a68);
  color: white !important;
  padding: 10px 20px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.01em;
  box-shadow: 0 4px 14px rgba(43,157,136,0.30);
  transition: all 0.22s ease;
  display: inline-block;
}
.cta:hover, a.cta:hover {
  background: linear-gradient(135deg, #217a66, #175d4e);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(43,157,136,0.38);
}

/* ── HERO SECTION ── */
.hero-wrapper {
  background: linear-gradient(160deg, #f0fdf9 0%, #f8fafc 55%, #eef7f4 100%);
  position: relative;
  overflow: hidden;
  width: 100%;
}
.hero-wrapper-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 24px 32px 8px;
}
/* Decorative background blobs */
.hero-wrapper::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(43,157,136,0.10) 0%, transparent 70%);
  pointer-events: none;
}
.hero-wrapper::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(43,157,136,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 36px;
  align-items: center;
  padding: 2px 0 8px;
  position: relative;
  z-index: 1;
}
/* Trust badge pill */
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(43,157,136,0.10);
  border: 1px solid rgba(43,157,136,0.22);
  color: #1a7a67;
  font-size: 12.5px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
  letter-spacing: 0.03em;
}
.hero-pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2b9d88;
  flex-shrink: 0;
}
.hero h2 {
  font-size: 34px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.7px;
  color: #0f172a;
  margin: 0 0 18px;
}
.hero h2 .hero-highlight {
  color: #2b9d88;
  position: relative;
}
.hero-sub {
  color: #64748b;
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 32px;
  max-width: 520px;
}
/* CTA row */
.hero-cta-row {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #2b9d88, #1f7a68);
  color: white;
  padding: 13px 24px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 6px 20px rgba(43,157,136,0.35);
  transition: all 0.22s ease;
  letter-spacing: 0.01em;
}
.hero-btn-primary:hover {
  background: linear-gradient(135deg, #217a66, #175d4e);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(43,157,136,0.42);
}
.hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  color: #2b9d88;
  padding: 13px 20px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  border: 1.5px solid rgba(43,157,136,0.25);
  transition: all 0.22s ease;
}
.hero-btn-secondary:hover {
  border-color: #2b9d88;
  background: rgba(43,157,136,0.04);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(43,157,136,0.15);
}
/* KPI row */
.kpis {
  display: flex;
  gap: 0;
  margin-top: 0;
  background: #ffffff;
  border: 1px solid rgba(43,157,136,0.12);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(15,23,42,0.06);
}
.kpi {
  flex: 1;
  padding: 16px 20px;
  border-right: 1px solid rgba(43,157,136,0.10);
  transition: background 0.22s ease;
  min-width: unset;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
}
.kpi:last-child { border-right: none; }
.kpi:hover {
  background: rgba(43,157,136,0.04) !important;
  box-shadow: none !important;
  transform: none;
}
.kpi strong {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.5px;
  line-height: 1.2;
}
.kpi span {
  font-size: 12px;
  color: #6b7280;
  font-weight: 500;
  margin-top: 2px;
  display: block;
}

/* ── HERO CARD (right column) ── */
.hero-card {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(15,23,42,0.10), 0 4px 16px rgba(43,157,136,0.08);
  border: 1px solid rgba(43,157,136,0.12);
  overflow: hidden;
}
.hero-card-body {
  padding: 20px 22px 22px;
}
.hero-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.hero-card-title {
  font-weight: 700;
  font-size: 15px;
  color: #0f172a;
  margin-bottom: 2px;
}
.hero-card-sub {
  font-size: 12.5px;
  color: #6b7280;
}
.hero-card-price-block {
  text-align: right;
}
.hero-card-from {
  font-size: 11px;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}
.hero-card-price {
  font-size: 24px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.1;
}
.hero-card-order {
  display: block;
  margin-top: 14px;
  text-align: center;
  background: linear-gradient(135deg, #2b9d88, #1f7a68);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 11px 16px;
  border-radius: 10px;
  text-decoration: none;
  letter-spacing: 0.03em;
  box-shadow: 0 4px 14px rgba(43,157,136,0.30);
  transition: all 0.22s ease;
}
.hero-card-order:hover {
  background: linear-gradient(135deg, #217a66, #175d4e);
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(43,157,136,0.38);
}

/* Keep old helper for ordernowcta inside hero-card if still used */
.view-services {
  padding: 10px 14px;
  border-radius: 8px;
  background: transparent;
  border: 1px solid rgba(15,23,42,0.08);
  text-decoration: none;
  color: var(--muted);
  transition: all 0.25s ease;
  font-size: 14px;
}
.view-services:hover {
  border-color: #2b9d88;
  box-shadow: 0 4px 14px rgba(43,157,136,0.18);
  transform: translateY(-2px);
  color: #1a7a67;
}

/* Services */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 36px 0;
}
.card {
  background: var(--card);
  padding: 18px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(16, 24, 40, 0.03);
}
.card h3 {
  margin-top: 0;
}

/* How it works */
.steps {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.step {
  flex: 1;
  background: linear-gradient(180deg, #ffffff, #fbfffd);
  padding: 18px;
  border-radius: 12px;
  text-align: center;
}
.step .num {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--accent);
  color: white;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

/* Mobile-only layout for How It Works (no other component is affected) */
@media (max-width: 700px) {
  .steps {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  .step {
    text-align: left;
  }
  .step .num {
    margin: 0 0 8px; /* align number box with text on mobile */
  }
}

/* Testimonials */
.testimonials {
  display: flex;
  gap: 12px;
}
.test {
  flex: 1;
  padding: 18px;
  border-radius: 12px;
  background: linear-gradient(180deg, #fff, #f0faf8);
  box-shadow: var(--shadow);
}

/* About/contact */
.about {
  display: flex;
  gap: 22px;
  align-items: center;
  margin: 36px 0;
}
.about .photo {
  width: 140px;
  height: 140px;
  border-radius: 12px;
  background: linear-gradient(135deg, #fff, #f3f7f6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--muted);
}

footer {
  padding: 36px 0;
  color: var(--muted);
  font-size: 14px;
  background: linear-gradient(180deg, #ffffff, #f0f9f7);
  border-top: 1px solid rgba(43, 157, 136, 0.1);
  
}

/* responsive */
@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 52px 0 60px;
  }
  .hero h2 { font-size: 34px; }
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .nav {
    gap: 10px;
    padding: 10px 0;
  }

  .brand {
    min-width: 0;
    gap: 8px;
  }

  .brand h1 {
    font-size: 13px;
    line-height: 1.15;
  }

  .logo {
    width: 38px;
    height: 38px;
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
  }

  .nav-links a.nav-link {
    display: none;
  }

  .cta,
  a.cta {
    padding: 9px 12px;
    font-size: 12px;
    line-height: 1.2;
  }

  .hero-wrapper-inner {
    padding: 18px 12px 8px;
  }

  .hero {
    padding: 1px 0 28px;
    gap: 20px;
  }

  .hero-pill {
    margin-top: 8px;
    margin-bottom: 16px;
    font-size: 11.5px;
    padding: 6px 12px;
  }

  .hero h2 {
    font-size: 28px;
    letter-spacing: -0.5px;
  }

  .hero-sub {
    font-size: 15px;
    margin-bottom: 24px;
  }

  .hero-cta-row {
    margin-bottom: 24px;
  }

  .kpis {
    flex-direction: row;
  }

  .kpi {
    padding: 12px 14px;
  }

  .kpi strong {
    font-size: 18px;
  }
}

/* small helpers */
.muted {
  color: var(--muted);
}
.center {
  text-align: center;
}
.pill {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(43, 157, 136, 0.1);
  color: var(--accent-dark);
  font-weight: 600;
}

form .row {
  display: flex;
  gap: 8px;
}
form input,
form textarea {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #e6e9ee;
}
form button {
  background: var(--accent);
  border: none;
  color: white;
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 700;
}
.ordernowcta {
  background: var(--accent);
  color: white;
  padding: 6px 12px; /* Smaller padding */
  border-radius: 8px; /* Slightly smaller border radius */
  text-decoration: none;
  font-weight: 600;
  font-size: 14px; /* Smaller font size */
  display: inline-block;
  transition: all 0.3s ease;
}

.ordernowcta:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

/* ── Hero Carousel ── */
.mockup-carousel {
  width: 100%;
  height: 280px;
  border-radius: 0;
  background: linear-gradient(180deg, #eef7f4, #f0fdf9);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.mockup-carousel-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.mockup-carousel-item {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.carousel-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  gap: 6px;
  z-index: 10;
}
.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.6);
  transition: all 0.25s ease;
}
.dot.active {
  background: #fff;
  width: 20px;
  border-radius: 999px;
}
.dot:hover {
  background: rgba(255,255,255,0.8);
}

/* ── Hero entry animation ── */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(4px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  border: 1px solid rgba(255,255,255,0.5);
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  transition: all 0.2s ease;
  opacity: 0;
}
.mockup-carousel:hover .hero-arrow { opacity: 1; }
.hero-arrow:hover { background: #fff; box-shadow: 0 4px 14px rgba(0,0,0,0.15); }
.hero-arrow svg {
  width: 14px; height: 14px;
  stroke: #1a7a67;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hero-arrow-prev { left: 10px; }
.hero-arrow-next { right: 10px; }

/* ── Hero entry animation ── */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero > * {
  animation: heroFadeUp 0.6s ease both;
}
.hero > *:nth-child(2) {
  animation-delay: 0.12s;
}
    

    .ps {
      margin-top: 0px;
    }

    .ps-inner {
      display: flex;
      align-items: center;
      gap: 0;
      background: #f8fafc;
      border: 1px solid rgba(43,157,136,0.15);
      border-radius: 12px;
      overflow: hidden;
      flex-wrap: wrap;
    }

    .ps-label {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: #fff;
      background: linear-gradient(135deg, #2b9d88, #1f7a6a);
      padding: 13px 20px;
      white-space: nowrap;
      flex-shrink: 0;
    }

    .ps-item {
      display: flex;
      align-items: center;
      gap: 7px;
      font-size: 13px;
      font-weight: 600;
      color: #334155;
      padding: 13px 18px;
      border-left: 1px solid rgba(43,157,136,0.1);
      white-space: nowrap;
      transition: background 0.18s ease, color 0.18s ease;
    }

    .ps-item:hover {
      background: rgba(43,157,136,0.06);
      color: #1a7a67;
    }

    .psdot {
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: #2b9d88;
      flex-shrink: 0;
    }

    @media (max-width: 700px) {
      .ps-inner { border-radius: 10px; }
      .ps-label { width: 100%; border-radius: 0; }
      .ps-item { border-left: none; border-top: 1px solid rgba(43,157,136,0.1); flex: 1 1 40%; }
    }

    

  

  /* ── Services Section ── */
  #services {
    padding: 48px 0 56px;
    background: #f8fafc;
    text-align: center;
  }

  .services-label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(43,157,136,0.10);
    color: #1a7a67;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 999px;
    margin-bottom: 14px;
  }

  .services-label span {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #2b9d88;
    display: inline-block;
  }

  #services .services-heading {
    font-size: 32px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 10px;
    letter-spacing: -0.5px;
    line-height: 1.2;
  }

  #services .services-sub {
    color: #6b7280;
    font-size: 16px;
    max-width: 560px;
    margin: 0 auto 44px;
    line-height: 1.6;
  }

  #services .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    max-width: 1100px;
    margin: 0 auto;
    text-align: left;
  }

  .svc-card {
    background: #ffffff;
    padding: 28px 26px 26px;
    border-radius: 16px;
    border: 1.5px solid #e9eef4;
    box-shadow: 0 2px 12px rgba(15,23,42,0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    display: flex;
    flex-direction: column;
  }

  .svc-card:hover {
    transform: translateY(-6px);
    border-color: rgba(43,157,136,0.35);
    box-shadow: 0 12px 32px rgba(43,157,136,0.18), 0 2px 8px rgba(15,23,42,0.06);
  }

  .svc-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(43,157,136,0.12), rgba(43,157,136,0.06));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    flex-shrink: 0;
  }

  .svc-icon svg {
    width: 22px;
    height: 22px;
    stroke: #2b9d88;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .svc-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 9px;
    line-height: 1.3;
  }

  .svc-card p {
    font-size: 14.5px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
    flex: 1;
  }

  .svc-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 20px;
    font-size: 13.5px;
    font-weight: 600;
    color: #2b9d88;
    text-decoration: none;
    transition: gap 0.2s ease, color 0.2s ease;
  }

  .svc-link svg {
    width: 16px;
    height: 16px;
    stroke: #2b9d88;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.2s ease;
  }

  .svc-link:hover {
    color: #217a66;
    gap: 10px;
  }

  .svc-link:hover svg {
    transform: translateX(3px);
    stroke: #217a66;
  }

  @media (max-width: 900px) {
    #services .services-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 580px) {
    #services .services-grid { grid-template-columns: 1fr; }
    #services .services-heading { font-size: 26px; }
  }


  .hiw-section {
    padding: 12px 0;
    background: #f8fafc;
  }

  .hiw-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 48px;
    align-items: start;
  }

  /* ── Left Panel ── */
  .hiw-left {
    background: linear-gradient(160deg, #1f7a68 0%, #155a4c 100%);
    border-radius: 20px;
    padding: 40px 36px;
    color: #fff;
    position: sticky;
    top: 100px;
  }

  .hiw-left-label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.9);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 999px;
    margin-bottom: 20px;
  }

  .hiw-left-label span {
    width: 5px; height: 5px;
    border-radius: 50%;
    background: rgba(255,255,255,0.7);
    display: inline-block;
  }

  .hiw-left h2 {
    font-size: 26px;
    font-weight: 800;
    line-height: 1.25;
    margin: 0 0 14px;
    letter-spacing: -0.3px;
    color: #fff;
  }

  .hiw-left p {
    font-size: 14px;
    color: rgba(255,255,255,0.72);
    line-height: 1.65;
    margin: 0 0 32px;
  }

  .hiw-left-stats {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
    padding: 20px;
    background: rgba(255,255,255,0.07);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.10);
  }

  .hiw-stat {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .hiw-stat-icon {
    width: 32px; height: 32px;
    border-radius: 8px;
    background: rgba(255,255,255,0.12);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }

  .hiw-stat-icon svg {
    width: 15px; height: 15px;
    stroke: rgba(255,255,255,0.9);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .hiw-stat-text strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
  }

  .hiw-stat-text span {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
  }

  .hiw-left-cta {
    display: block;
    background: #fff;
    color: #1a7a67;
    text-align: center;
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.22s ease;
  }

  .hiw-left-cta:hover {
    background: #e8f7f4;
    transform: translateY(-2px);
  }

  /* ── Right Steps — Vertical Timeline ── */
  .hiw-steps {
    display: flex;
    flex-direction: column;
    padding: 4px 0;
  }

  .hiw-row {
    display: flex;
    gap: 0;
    align-items: stretch;
    position: relative;
  }

  /* Rail: node + connecting line */
  .hiw-row-rail {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    width: 52px;
  }

  /* Numbered circle */
  .hiw-node {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #d1e8e4;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
    color: #2b9d88;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 2px 8px rgba(43,157,136,0.10);
  }

  .hiw-row:hover .hiw-node {
    background: #2b9d88;
    border-color: #2b9d88;
    color: #fff;
    box-shadow: 0 0 0 6px rgba(43,157,136,0.13);
  }

  /* Vertical connecting line */
  .hiw-line {
    width: 2px;
    flex: 1;
    background: linear-gradient(to bottom, #c5e0db 0%, #e2ecf0 100%);
    margin: 3px 0 3px;
    min-height: 28px;
  }

  .hiw-row:last-child .hiw-line {
    display: none;
  }

  /* Content body */
  .hiw-row-body {
    flex: 1;
    padding: 8px 0 34px 20px;
  }

  .hiw-row:last-child .hiw-row-body {
    padding-bottom: 4px;
  }

  .hiw-row-num {
    font-size: 10.5px;
    font-weight: 800;
    color: #2b9d88;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 3px;
    display: block;
  }

  .hiw-row-title {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 7px;
    display: block;
    line-height: 1.3;
    transition: color 0.22s ease;
  }

  .hiw-row:hover .hiw-row-title {
    color: #2b9d88;
  }

  .hiw-row-desc {
    font-size: 13.5px;
    color: #6b7280;
    line-height: 1.65;
    margin: 0;
  }

  @media (max-width: 860px) {
    .hiw-inner {
      grid-template-columns: 1fr;
    }
    .hiw-left { position: static; }
  }


  .gig-section {
    padding: 10px 0 0px;
  }

  .gig-section-header {
    text-align: center;
    margin-bottom: 40px;
  }

  .gig-label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(43,157,136,0.10);
    color: #1a7a67;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 999px;
    margin-bottom: 14px;
  }

  .gig-label span {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #2b9d88;
    display: inline-block;
  }

  .gig-section-header h2 {
    font-size: 32px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 10px;
    letter-spacing: -0.5px;
  }

  .gig-section-header p {
    color: #6b7280;
    font-size: 16px;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.6;
  }

  .gig-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
  }

  .gig-card {
    background: #ffffff;
    border-radius: 20px;
    border: 1.5px solid #e9eef4;
    box-shadow: 0 4px 20px rgba(15,23,42,0.06);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  }

  .gig-card:hover {
    transform: translateY(-6px);
    border-color: rgba(43,157,136,0.40);
    box-shadow: 0 16px 40px rgba(43,157,136,0.14), 0 4px 12px rgba(15,23,42,0.06);
  }

  .gig-carousel {
    width: 100%;
    height: 280px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, #e8f5f2, #f5faf9);
  }

  .gig-carousel-track {
    display: flex;
    height: 100%;
    transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
  }

  .gig-carousel-item {
    flex: 0 0 100%;
    height: 100%;
    object-fit: cover;
  }

  .gig-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(6px);
    color: #1a7a67;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 999px;
    border: 1px solid rgba(43,157,136,0.2);
    z-index: 5;
  }

  .gig-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 10;
  }

  .gig-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.6);
    transition: all 0.25s ease;
  }

  .gig-dot.active {
    background: #fff;
    width: 20px;
    border-radius: 999px;
  }

  .gig-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.88);
    backdrop-filter: blur(4px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    border: 1px solid rgba(255,255,255,0.5);
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    transition: all 0.2s ease;
    opacity: 0;
  }

  .gig-card:hover .gig-arrow { opacity: 1; }
  .gig-arrow:hover { background: #fff; box-shadow: 0 4px 14px rgba(0,0,0,0.15); }

  .gig-arrow svg {
    width: 14px; height: 14px;
    stroke: #1a7a67;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .gig-arrow-prev { left: 10px; }
  .gig-arrow-next { right: 10px; }

  .gig-body {
    padding: 22px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
  }

  .gig-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
  }

  .gig-title {
    font-size: 17px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 4px;
    line-height: 1.25;
  }

  .gig-subtitle {
    font-size: 13px;
    color: #6b7280;
    margin: 0;
  }

  .gig-price-block {
    text-align: right;
    flex-shrink: 0;
  }

  .gig-price-from {
    font-size: 11px;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
    display: block;
    margin-bottom: 2px;
  }

  .gig-price {
    font-size: 26px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1;
  }

  .gig-price sup {
    font-size: 14px;
    font-weight: 700;
    vertical-align: super;
    color: #374151;
  }

  .gig-features {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .gig-features li {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    color: #374151;
    background: #f3f9f8;
    border: 1px solid rgba(43,157,136,0.15);
    border-radius: 999px;
    padding: 4px 10px;
    font-weight: 500;
  }

  .gig-features li svg {
    width: 11px; height: 11px;
    stroke: #2b9d88;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
  }

  .gig-cta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 4px;
    border-top: 1px solid #f1f5f9;
  }

  .gig-rating {
    display: flex;
    align-items: center;
    gap: 5px;
  }

  .gig-stars {
    color: #f59e0b;
    font-size: 13px;
    letter-spacing: 1px;
  }

  .gig-rating-text {
    font-size: 12px;
    color: #6b7280;
    font-weight: 500;
  }

  .gig-order-btn {
    background: linear-gradient(135deg, #2b9d88, #1f7a68);
    color: #fff;
    padding: 10px 22px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 13.5px;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 4px 12px rgba(43,157,136,0.3);
    letter-spacing: 0.02em;
  }

  .gig-order-btn:hover {
    background: linear-gradient(135deg, #217a66, #175d4e);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(43,157,136,0.38);
  }

  @media (max-width: 768px) {
    .gig-grid { grid-template-columns: 1fr; }
    .gig-carousel { height: 240px; }
    .gig-arrow { opacity: 1; }
  }


  .fmt2 * { box-sizing: border-box; margin: 0; padding: 0; }

  .fmt2 {
    padding: 28px 0 4px;
  }

  .fmt2-top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
  }

  .fmt2-pill {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #0f6e56;
    background: #e1f5ee;
    padding: 3px 10px;
    border-radius: 999px;
    display: inline-block;
    margin-bottom: 6px;
  }

  .fmt2-top h2 {
    font-size: 28px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.5px;
    line-height: 1.15;
  }

  .fmt2-sub {
    font-size: 13.5px;
    color: #6b7280;
    line-height: 1.5;
    max-width: 340px;
  }

  .fmt2-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    background: #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
  }

  .fmt2-item {
    background: #ffffff;
    padding: 20px 22px 18px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: background 0.18s;
  }

  .fmt2-item:hover { background: #f8fafc; }

  .fmt2-num {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #5DCAA5;
  }

  .fmt2-title {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 5px;
  }

  .fmt2-desc {
    font-size: 12.5px;
    color: #6b7280;
    line-height: 1.5;
  }

  .fmt2-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 2px;
  }

  .fmt2-tag {
    font-size: 11px;
    color: #085041;
    background: #e1f5ee;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 500;
  }

  .fmt2-checks {
    display: flex;
    gap: 20px;
    margin-top: 14px;
    flex-wrap: wrap;
  }

  .fmt2-check {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #6b7280;
  }

  .fmt2-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #1D9E75;
    flex-shrink: 0;
  }

  @media (max-width: 560px) {
    .fmt2-row { grid-template-columns: 1fr; }
    .fmt2-top { flex-direction: column; align-items: flex-start; }
  }


    /* ============================================================ */
    /* START: Real Work Section CSS */
    /* ============================================================ */
    .releases {
        background: linear-gradient(135deg, #0f2027 0%, #0d3d35 35%, #1a7a67 70%, #2b9d88 100%);
        color: #fff;
        padding: 56px 0;
        width: 100%;
        max-width: 100%;          /* full-bleed: override any inherited constraint */
        margin-left: 0;
        margin-right: 0;
        margin-top: 20px;
        position: relative;
    }

    .releases .intro {
        max-width: 820px;
        margin: 0 auto 28px;
        padding: 0 20px;
        text-align: center;
    }

    .releases-label {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        background: rgba(255,255,255,0.15);
        border: 1px solid rgba(255,255,255,0.25);
        color: #fff;
        font-size: 11.5px;
        font-weight: 700;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        padding: 5px 14px;
        border-radius: 999px;
        margin-bottom: 12px;
    }

    .releases-label span {
        width: 6px; height: 6px;
        border-radius: 50%;
        background: rgba(255,255,255,0.85);
        display: inline-block;
    }

    .releases h2 { 
        font-size:28px; 
        margin:0 0 8px; 
        font-weight: 700;
    }

    .releases p { 
        color:#eaf7f4; 
        font-size: 16px;
        line-height: 1.6;
    }

    /* Marquee container */
    .marquee-row { 
        overflow:hidden; 
        position:relative; 
        margin:36px 0; 
        width:100%;
    }

    .marquee-track {
        display:flex;
        align-items:center;
        gap:50px;
        will-change: transform;
    }

    /* Book images – updated for WIDE open book mockups */
    .book {
        flex:0 0 auto;
        width:420px;  
        height:280px;
        overflow:hidden;
        background:transparent;
        transition: transform 0.3s ease;
        border-radius: 8px;
    }

    .book img {
        width:100%;
        height:100%;
        object-fit:cover;
        display:block;
    }

    .book:hover {
        transform:scale(1.05);
    }

    /* Animations */
    @keyframes marquee-left {
        0%   { transform: translateX(0); }
        100% { transform: translateX(-50%); }
    }

    @keyframes marquee-right {
        0%   { transform: translateX(-50%); }
        100% { transform: translateX(0); }
    }

    .marquee-track.slow { animation: marquee-right 40s linear infinite; }
    .marquee-track.fast { animation: marquee-left 28s linear infinite; }

    .marquee-row:hover .marquee-track { 
        animation-play-state: paused; 
    }

    @media (max-width:1100px){
        .book { width:360px; height:240px; }
        .marquee-track { gap:40px; }
    }

    @media (max-width:700px){
        .book { width:300px; height:200px; }
        .marquee-track { gap:28px; }
    }
    /* ============================================================ */
    /* END: Real Work Section CSS */
    /* ============================================================ */


            .pricing {
                background: #ffffff;
                padding: 52px 20px 80px;
                font-family: 'Inter', 'Segoe UI', sans-serif;
                text-align: center;
                border-top: 1px solid #e9eef4;
            }

            .pricing-label {
                display: inline-flex;
                align-items: center;
                gap: 7px;
                background: rgba(43,157,136,0.10);
                color: #1a7a67;
                font-size: 12px;
                font-weight: 700;
                letter-spacing: 0.10em;
                text-transform: uppercase;
                padding: 5px 14px;
                border-radius: 999px;
                margin-bottom: 14px;
            }

            .pricing-label span {
                width: 6px; height: 6px;
                border-radius: 50%;
                background: #2b9d88;
                display: inline-block;
            }

            .pricing h2 {
                font-size: 36px;
                margin: 0 0 14px;
                color: #0f172a;
                font-weight: 800;
                letter-spacing: -0.5px;
                transition: color 0.2s ease;
                cursor: default;
            }
            .pricing h2:hover {
                color: #2b9d88;
            }

            .pricing > p {
                max-width: 580px;
                margin: 0 auto 52px;
                color: #6b7280;
                font-size: 16px;
                line-height: 1.6;
                font-weight: 400;
            }

			.pricing-grid {
				display: grid;
				grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
				gap: 24px;
				max-width: 1100px;
				margin: 0 auto;
				align-items: stretch;
			}

			.plan {
				background: #fff;
				border: 2px solid #e2e8f0;
				border-radius: 20px;
				padding: 38px 30px 34px;
				text-align: left;
				position: relative;
				transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
				box-shadow: 0 2px 16px rgba(15,23,42,0.06);

				display: flex;
				flex-direction: column;
			}

            .plan:hover {
                transform: translateY(-6px);
                border-color: rgba(43,157,136,0.5);
                box-shadow: 0 16px 40px rgba(43,157,136,0.15), 0 2px 8px rgba(15,23,42,0.06);
            }

            /* Plan tier badge (replaces icon) */
            .plan-tier {
                display: inline-block;
                font-size: 11px;
                font-weight: 800;
                letter-spacing: 0.12em;
                text-transform: uppercase;
                color: #2b9d88;
                background: rgba(43,157,136,0.10);
                padding: 4px 12px;
                border-radius: 999px;
                margin-bottom: 14px;
            }

            .plan h3 {
                font-size: 24px;
                font-weight: 800;
                color: #0f172a;
                margin: 0 0 6px;
                line-height: 1.2;
            }

            .plan-desc {
                font-size: 13.5px;
                color: #6b7280;
                margin: 0 0 20px;
                font-weight: 400;
                line-height: 1.5;
            }

            .price {
                font-size: 46px;
                font-weight: 900;
                color: #0f172a;
                margin-bottom: 2px;
                line-height: 1;
                letter-spacing: -1px;
            }

            .price sup {
                font-size: 22px;
                font-weight: 700;
                vertical-align: super;
                letter-spacing: 0;
            }

            .price-note {
                font-size: 13px;
                color: #6b7280;
                margin-bottom: 24px;
                font-weight: 400;
            }

            .plan-divider {
                border: none;
                border-top: 1.5px solid #f0f4f8;
                margin: 0 0 22px;
            }

			.features {
				list-style: none;
				padding: 0;
				margin: 0 0 28px;
				flex-grow: 1;
			}

            .features li {
                margin-bottom: 11px;
                color: #374151;
                font-size: 14.5px;
                font-weight: 400;
                display: flex;
                align-items: center;
                gap: 10px;
                line-height: 1.4;
            }

            .features li::before {
                content: "";
                width: 18px;
                height: 18px;
                border-radius: 50%;
                background: rgba(43,157,136,0.15);
                flex-shrink: 0;
                background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.5 8l3 3 6-6' stroke='%232b9d88' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
                background-repeat: no-repeat;
                background-position: center;
            }

            .order-btn {
                display: block;
                text-align: center;
                background: #0f172a;
                color: #fff;
                text-decoration: none;
                padding: 14px;
                font-weight: 700;
                font-size: 15px;
                border-radius: 12px;
                transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
                letter-spacing: 0.03em;
            }

            .order-btn:hover {
                background: linear-gradient(135deg, #2b9d88, #217a66);
                transform: translateY(-2px);
                box-shadow: 0 8px 20px rgba(43,157,136,0.35);
            }

            /* Popular plan */
            .plan.popular {
                border-color: #2b9d88;
                border-width: 2.5px;
                background: #ffffff;
                box-shadow: 0 10px 36px rgba(43,157,136,0.20), 0 2px 8px rgba(15,23,42,0.06);
            }

            .plan.popular .order-btn {
                background: #0f172a;
            }

            .plan.popular .order-btn:hover {
                background: linear-gradient(135deg, #2b9d88, #217a66);
                box-shadow: 0 8px 20px rgba(43,157,136,0.35);
            }

            .popular::before {
                content: "Most Popular";
                position: absolute;
                top: -14px;
                left: 50%;
                transform: translateX(-50%);
                background: linear-gradient(135deg, #2b9d88, #217a66);
                color: #fff;
                font-size: 11.5px;
                font-weight: 800;
                padding: 5px 16px;
                border-radius: 999px;
                white-space: nowrap;
                letter-spacing: 0.06em;
                text-transform: uppercase;
            }

            @media (max-width: 700px) {
                .pricing h2 { font-size: 28px; }
                .price { font-size: 38px; }
            }
        

  /* ── Section wrapper ── */
  .quote-section-outer {
    padding: 30px 20px;
    background: linear-gradient(180deg, #f0faf8 0%, #ffffff 100%);
  }

  .quote-section-inner {
    max-width: 980px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    align-items: start;
  }

  /* ── Left panel ── */
  .quote-left {
    position: static;
  }

  .quote-section-label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(43,157,136,0.10);
    color: #1a7a67;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 999px;
    margin-bottom: 16px;
  }

  .quote-section-label span {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #2b9d88;
    display: inline-block;
  }

  .quote-left h2 {
    font-size: 28px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.25;
    letter-spacing: -0.4px;
    margin: 0 0 12px;
  }

  .quote-left p {
    font-size: 14.5px;
    color: #6b7280;
    line-height: 1.7;
    margin: 0 0 28px;
  }

  /* Trust bullets */
  .quote-trust {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .quote-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    color: #374151;
    font-weight: 500;
  }

  .quote-trust-item .qt-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: rgba(43,157,136,0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .quote-trust-item .qt-icon svg {
    width: 15px; height: 15px;
    stroke: #2b9d88;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  /* ── Right panel: the card ── */
  .quote-form-wrapper {
    background: #fff;
    border-radius: 16px;
    padding: 36px;
    box-shadow: 0 4px 24px rgba(16,24,40,0.07), 0 1px 4px rgba(16,24,40,0.04);
    border: 1.5px solid #e9eef4;
  }

  /* Section headings inside form */
  .form-section-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: #2b9d88;
    margin: 22px 0 10px;
    padding-bottom: 6px;
    border-bottom: 1px solid #f0f4f8;
  }

  .form-section-title:first-child { margin-top: 0; }

  .quote-form label {
    display: block;
    font-size: 13px;
    margin: 12px 0 5px;
    font-weight: 600;
    color: #374151;
  }

  .quote-form input,
  .quote-form textarea,
  .quote-form select {
    width: 100%;
    padding: 10px 13px;
    border: 1.5px solid #e5eaf1;
    border-radius: 9px;
    font-size: 13.5px;
    color: #1e293b;
    background: #fafbfc;
    box-sizing: border-box;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    margin-bottom: 0;
    font-family: inherit;
  }

  .quote-form input:focus,
  .quote-form textarea:focus,
  .quote-form select:focus {
    outline: none;
    border-color: #2b9d88;
    box-shadow: 0 0 0 3px rgba(43,157,136,0.12);
    background: #fff;
  }

  .quote-form input::placeholder,
  .quote-form textarea::placeholder {
    color: #b0bac6;
  }

  /* Grid layouts */
  .two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  /* Option Cards */
  .options-grid {
    display: flex;
    gap: 10px;
    margin: 8px 0 4px;
    flex-wrap: wrap;
  }

  .option-card {
    flex: 1;
    min-width: 120px;
    border: 1.5px solid #e5eaf1;
    border-radius: 10px;
    padding: 10px 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 600;
    font-size: 13px;
    color: #475569;
    user-select: none;
    background: #fafbfc;
    line-height: 1.3;
  }

  .option-card input { display: none; }

  .option-card:hover {
    border-color: rgba(43,157,136,0.4);
    background: rgba(43,157,136,0.04);
    color: #1a7a67;
  }

  .option-card.selected {
    border-color: #2b9d88;
    background: rgba(43,157,136,0.09);
    color: #1a7a67;
    box-shadow: 0 0 0 3px rgba(43,157,136,0.10);
  }

  /* Trim size select */
  #trimsize {
    border-color: #e5eaf1;
    background: #fafbfc;
    color: #374155;
    font-weight: 500;
  }

  #trimsize:focus {
    outline: none;
    border-color: #2b9d88;
    box-shadow: 0 0 0 3px rgba(43,157,136,0.12);
  }

  #trimsize optgroup {
    background: rgba(43,157,136,0.06);
    color: #1a7a67;
    font-weight: 700;
  }

  #trimsize option {
    color: #334155;
  }

  /* Submit button */
  .quote-form button[type="submit"] {
    background: linear-gradient(135deg, #2b9d88, #217a66);
    color: #fff;
    padding: 13px 22px;
    border-radius: 10px;
    border: none;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    margin-top: 20px;
    width: 100%;
    letter-spacing: 0.02em;
    transition: opacity 0.2s ease, transform 0.2s ease;
    font-family: inherit;
  }

  .quote-form button[type="submit"]:hover {
    opacity: 0.92;
    transform: translateY(-1px);
  }

  .quote-form button[type="submit"]:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
  }

  /* Responsive */
  @media (max-width: 820px) {
    .quote-section-inner {
      grid-template-columns: 1fr;
    }
    .quote-left {
      position: static;
    }
    .two-col {
      grid-template-columns: 1fr;
    }
  }


            .faq-section {
                background: linear-gradient(180deg, #ffffff 0%, #f0faf8 100%);
                padding: 10px 20px;
                font-family: 'Inter', 'Segoe UI', sans-serif;
            }

            .faq-container {
                max-width: 1100px;
                margin: 0 auto;
            }

            /* Header */
            .faq-header {
                text-align: center;
                margin-bottom: 52px;
            }

            .faq-label {
                display: inline-flex;
                align-items: center;
                gap: 7px;
                background: rgba(43,157,136,0.10);
                color: #1a7a67;
                font-size: 12px;
                font-weight: 700;
                letter-spacing: 0.10em;
                text-transform: uppercase;
                padding: 5px 14px;
                border-radius: 999px;
                margin-bottom: 14px;
            }

            .faq-label span {
                width: 6px; height: 6px;
                border-radius: 50%;
                background: #2b9d88;
                display: inline-block;
            }

            .faq-title {
                font-size: 34px;
                font-weight: 800;
                color: #0f172a;
                margin: 0 0 12px;
                letter-spacing: -0.5px;
                line-height: 1.2;
            }

            .faq-subtitle {
                font-size: 16px;
                color: #6b7280;
                max-width: 500px;
                margin: 0 auto;
                line-height: 1.6;
            }

            /* Two-column grid */
            .faq-grid {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 14px;
            }

            @media (max-width: 900px) {
                .faq-grid { grid-template-columns: 1fr; }
                .faq-title { font-size: 26px; }
            }

            /* Each item */
            .faq-item {
                background: #fff;
                border-radius: 14px;
                overflow: hidden;
                border: 1.5px solid #e9eef4;
                box-shadow: 0 2px 8px rgba(15,23,42,0.04);
                transition: border-color 0.25s ease, box-shadow 0.25s ease;
                margin-bottom: 0;
            }

            .faq-item:hover {
                border-color: rgba(43,157,136,0.35);
                box-shadow: 0 6px 20px rgba(43,157,136,0.10);
            }

            .faq-item.active {
                border-color: #2b9d88;
                box-shadow: 0 6px 24px rgba(43,157,136,0.14);
            }

            .faq-question {
                cursor: pointer;
                padding: 18px 20px;
                font-size: 15px;
                font-weight: 600;
                display: flex;
                justify-content: space-between;
                align-items: center;
                gap: 12px;
                color: #0f172a;
                line-height: 1.4;
                user-select: none;
            }

            .faq-icon {
                width: 28px;
                height: 28px;
                border-radius: 50%;
                background: rgba(43,157,136,0.10);
                color: #2b9d88;
                font-size: 18px;
                font-weight: 400;
                display: flex;
                align-items: center;
                justify-content: center;
                flex-shrink: 0;
                transition: transform 0.25s ease, background 0.25s ease;
                line-height: 1;
            }

            .faq-item.active .faq-icon {
                transform: rotate(45deg);
                background: rgba(43,157,136,0.18);
            }

            .faq-answer {
                display: none;
                padding: 0 20px 18px;
                font-size: 14.5px;
                line-height: 1.7;
                color: #475569;
                border-top: 1px solid #f0f4f8;
            }

            .faq-item.active .faq-answer {
                display: block;
            }

            .faq-answer strong {
                color: #1a7a67;
            }
        

  /* ============================================================ */
  /* START: Verified Author Reviews Section CSS */
  /* ============================================================ */
  .tf-testimonials {
    background: linear-gradient(160deg, #0d3d35 0%, #0a2e28 100%);
    width: 100%;
    max-width: 100%;          /* full-bleed: override any inherited constraint */
    margin-left: 0;
    margin-right: 0;
    position: relative;
    padding: 72px 0 80px;
    color: #fff;
    overflow: hidden;
  }

  .tf-testimonials::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    border: 1px solid rgba(43,157,136,0.18);
    pointer-events: none;
  }

  .tf-testimonials::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    border: 1px solid rgba(43,157,136,0.12);
    pointer-events: none;
  }

  .tf-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
  }

  .tf-header {
    text-align: center;
    margin-bottom: 52px;
  }

  .tf-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(43,157,136,0.18);
    color: #6edcc8;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 999px;
    margin-bottom: 18px;
    border: 1px solid rgba(43,157,136,0.25);
  }

  .tf-eyebrow span {
    width: 5px; height: 5px;
    border-radius: 50%;
    background: #2b9d88;
    display: inline-block;
  }

  .tf-testimonials h2 {
    font-size: 34px;
    font-weight: 800;
    margin: 0 0 12px;
    color: #fff;
    letter-spacing: -0.5px;
    line-height: 1.2;
    text-align: center;
  }

  .tf-subhead {
    font-size: 16px;
    color: rgba(255,255,255,0.55);
    margin: 0;
    line-height: 1.6;
  }

  .tf-rating-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 20px;
    flex-wrap: wrap;
  }

  .tf-overall-score {
    font-size: 44px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
  }

  .tf-overall-right {
    display: flex;
    flex-direction: column;
    gap: 3px;
  }

  .tf-overall-stars { font-size: 18px; color: #f59e0b; letter-spacing: 2px; }
  .tf-overall-label { font-size: 13px; color: rgba(255,255,255,0.5); font-weight: 500; }

  .tf-divider {
    width: 1px;
    height: 44px;
    background: rgba(255,255,255,0.15);
  }

  .tf-platform {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    font-weight: 500;
  }

  .tf-platform svg {
    width: 16px; height: 16px;
    stroke: #6edcc8;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .tf-marquee {
    position: relative;
    overflow: hidden;
    padding: 8px 0;
    -webkit-mask-image: linear-gradient(to right, transparent, black 80px, black calc(100% - 80px), transparent);
    mask-image: linear-gradient(to right, transparent, black 80px, black calc(100% - 80px), transparent);
  }

  .tf-track {
    display: flex;
    gap: 20px;
    align-items: stretch;
    width: max-content;
    animation: tf-scroll 36s linear infinite;
    will-change: transform;
  }

  .tf-marquee:hover .tf-track,
  .tf-marquee:focus-within .tf-track {
    animation-play-state: paused;
  }

  .tf-card {
    flex: 0 0 360px;
    background: rgba(255,255,255,0.05);
    border-radius: 18px;
    padding: 24px;
    box-sizing: border-box;
    border: 1px solid rgba(255,255,255,0.10);
    backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: transform .22s ease, border-color .22s ease, background .22s ease;
  }

  .tf-card:hover {
    transform: translateY(-6px);
    border-color: rgba(43,157,136,0.45);
    background: rgba(255,255,255,0.08);
  }

  .tf-card-stars { font-size: 13px; color: #f59e0b; letter-spacing: 1px; }

  .tf-quote {
    font-size: 15px;
    color: rgba(255,255,255,0.82);
    line-height: 1.65;
    margin: 0;
    position: relative;
    padding-left: 18px;
    flex: 1;
  }

  .tf-quote::before {
    content: '\201C';
    color: #2b9d88;
    font-size: 40px;
    position: absolute;
    left: -2px;
    top: -10px;
    line-height: 1;
    opacity: 0.9;
  }

  .tf-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 14px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }

  .tf-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(43,157,136,0.4);
    flex-shrink: 0;
  }

  .tf-author {
    font-weight: 700;
    font-size: 14.5px;
    color: #fff;
    line-height: 1.2;
  }

  .tf-author-sub {
    font-size: 12.5px;
    color: rgba(255,255,255,0.5);
    margin-top: 2px;
  }

  .tf-cover {
    width: 56px;
    height: 78px;
    object-fit: cover;
    margin-left: auto;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.15);
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(0,0,0,0.3);
  }

  @keyframes tf-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  @media (max-width: 700px) {
    .tf-testimonials { width: 100%; }
    .tf-card { flex: 0 0 300px; }
    .tf-testimonials h2 { font-size: 26px; }
    .tf-marquee { -webkit-mask-image: none; mask-image: none; }
  }
  /* ============================================================ */
  /* END: Verified Author Reviews Section CSS */
  /* ============================================================ */


  .aplus-section {
    background: linear-gradient(160deg, #0d3d35 0%, #0a2e28 55%, #071e1a 100%);
    width: 100%;
    position: relative;
    margin-top: 0;
    margin-bottom: 0;
    padding: 56px 0 60px;
    overflow: hidden;
    display: block;
  }
 
  .aplus-section::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 360px; height: 360px;
    border-radius: 50%;
    border: 1px solid rgba(43,157,136,0.15);
    pointer-events: none;
  }
 
  .aplus-section::after {
    content: '';
    position: absolute;
    bottom: -60px; left: -60px;
    width: 260px; height: 260px;
    border-radius: 50%;
    border: 1px solid rgba(43,157,136,0.10);
    pointer-events: none;
  }
 
  .aplus-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 2;
  }
 
  .aplus-card-wrap {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 20px;
    padding: 44px 44px 44px 44px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 32px;
    align-items: center;
  }
 
  .aplus-left {
    max-width: 520px;
  }
 
  .aplus-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #2b9d88;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 14px;
  }
 
  .aplus-eyebrow span {
    width: 5px; height: 5px;
    border-radius: 50%;
    background: #2b9d88;
    display: inline-block;
  }
 
  .aplus-heading {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 14px;
    line-height: 1.2;
    letter-spacing: -0.4px;
  }
 
  .aplus-sub {
    font-size: 15px;
    color: rgba(255,255,255,0.52);
    line-height: 1.65;
    margin: 0;
    max-width: 460px;
  }
 
  .aplus-cta-cards {
    display: flex;
    gap: 14px;
    align-items: stretch;
    flex-shrink: 0;
  }
 
  .aplus-cta-card {
    border-radius: 16px;
    padding: 24px 26px 22px;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-decoration: none;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
  }
 
  .aplus-cta-card:hover {
    transform: translateY(-3px);
  }
 
  /* ── PRIMARY BUTTON: now white ── */
  .aplus-cta-card.primary {
    background: #ffffff;
    box-shadow: 0 8px 28px rgba(255,255,255,0.18);
  }
 
  .aplus-cta-card.primary:hover {
    box-shadow: 0 14px 36px rgba(255,255,255,0.28);
  }
 
  .aplus-cta-card.secondary {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
  }
 
  .aplus-cta-card.secondary:hover {
    background: rgba(255,255,255,0.11);
    border-color: rgba(43,157,136,0.40);
    box-shadow: 0 8px 24px rgba(0,0,0,0.18);
  }
 
  .aplus-cta-label {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    margin-bottom: 4px;
  }
 
  /* Label and text on white bg now use dark teal for contrast */
  .aplus-cta-card.primary .aplus-cta-label {
    color: #1f7a68;
  }
 
  .aplus-cta-card.secondary .aplus-cta-label {
    color: #2b9d88;
  }
 
  .aplus-cta-title {
    font-size: 18px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 10px;
  }
 
  /* Title on white bg: dark colour */
  .aplus-cta-card.primary .aplus-cta-title {
    color: #0a2e28;
  }
 
  .aplus-cta-card.secondary .aplus-cta-title {
    color: #fff;
  }
 
  .aplus-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    font-weight: 600;
    transition: gap 0.18s ease;
  }
 
  /* Link on white bg: dark teal */
  .aplus-cta-card.primary .aplus-cta-link {
    color: #1f7a68;
  }
 
  .aplus-cta-card.secondary .aplus-cta-link {
    color: rgba(255,255,255,0.60);
  }
 
  .aplus-cta-card:hover .aplus-cta-link {
    gap: 9px;
  }
 
  @media (max-width: 900px) {
    .aplus-card-wrap {
      grid-template-columns: 1fr;
      gap: 28px;
      padding: 32px 28px;
    }
    .aplus-cta-cards { flex-direction: row; }
    .aplus-heading { font-size: 26px; }
  }
 
  @media (max-width: 560px) {
    .aplus-cta-cards { flex-direction: column; }
    .aplus-cta-card { min-width: unset; }
    .aplus-inner { padding: 0 20px; }
  }


			/* ============================================================ */
			/* START: Footer CSS */
			/* ============================================================ */
			.site-footer {
				background: linear-gradient(160deg, #0d3d35 0%, #0a2e28 100%);
				color: #e2f4f1;
				width: 100%;
				max-width: 100%;      /* full-bleed: override any inherited constraint */
				margin-left: 0;
				margin-right: 0;
			}

			.footer-inner {
				max-width: 1100px;
				margin: 0 auto;
				padding: 28px 32px 22px;
			}

			.footer-main {
				display: flex;
				align-items: center;
				justify-content: space-between;
				gap: 20px;
				flex-wrap: wrap;
			}

			.footer-brand {
				display: flex;
				align-items: center;
				gap: 10px;
			}

			.footer-logo {
				width: 36px;
				height: 36px;
				border-radius: 8px;
				background: linear-gradient(135deg, #2b9d88, #1a7a67);
				display: flex;
				align-items: center;
				justify-content: center;
				color: #fff;
				font-weight: 800;
				font-size: 12px;
				flex-shrink: 0;
			}

			.footer-brand-name {
				font-weight: 700;
				font-size: 13px;
				color: #fff;
			}

			.footer-brand-sub {
				font-size: 11px;
				color: rgba(226,244,241,0.45);
				margin-top: 1px;
			}

			.footer-nav {
				display: flex;
				gap: 18px;
				flex-wrap: wrap;
			}

			.footer-nav a {
				color: rgba(226,244,241,0.6);
				text-decoration: none;
				font-size: 13px;
				transition: color 0.2s ease;
			}

			.footer-nav a:hover { color: #2b9d88; }

			.footer-trust {
				display: flex;
				gap: 8px;
			}

			.footer-badge {
				display: inline-flex;
				align-items: center;
				gap: 5px;
				background: rgba(43,157,136,0.12);
				border: 1px solid rgba(43,157,136,0.22);
				color: rgba(226,244,241,0.75);
				font-size: 12px;
				font-weight: 600;
				padding: 5px 11px;
				border-radius: 999px;
			}

			.footer-badge svg {
				width: 13px;
				height: 13px;
				flex-shrink: 0;
			}

			.footer-divider {
				border-top: 1px solid rgba(255,255,255,0.07);
				margin: 18px 0 14px;
			}

			/* Single bottom row: social | copyright | email */
			.footer-bottom-row {
				display: flex;
				align-items: center;
				justify-content: space-between;
				flex-wrap: wrap;
				gap: 10px;
			}

			.footer-social-row {
				display: flex;
				align-items: center;
				gap: 8px;
			}

			.footer-copy {
				font-size: 12px;
				color: rgba(226,244,241,0.35);
			}

			.footer-email {
				font-size: 12px;
				color: #2b9d88;
				text-decoration: none;
				transition: color 0.2s ease;
			}

			.footer-email:hover { color: #7dd4c5; }

			.footer-social-link {
				width: 34px;
				height: 34px;
				border-radius: 8px;
				background: rgba(43,157,136,0.10);
				border: 1px solid rgba(43,157,136,0.18);
				color: rgba(226,244,241,0.60);
				display: flex;
				align-items: center;
				justify-content: center;
				text-decoration: none;
				transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
				flex-shrink: 0;
			}

			.footer-social-link:hover {
				background: rgba(43,157,136,0.22);
				border-color: rgba(43,157,136,0.40);
				color: #6edcc8;
				transform: translateY(-2px);
			}

			.footer-social-link svg {
				width: 15px;
				height: 15px;
			}

			@media (max-width: 760px) {
				.footer-main { flex-direction: column; align-items: flex-start; gap: 14px; }
				.footer-bottom-row { flex-direction: column; align-items: center; text-align: center; }
			}
			/* ============================================================ */
			/* END: Footer CSS */
			/* ============================================================ */
/* brand tagline (replaces inline style) */
.brand-tagline {
  font-size: 11px;
  color: #6b7280;
  font-weight: 500;
  margin: 1px 0 0;
  line-height: 1.2;
}
