/* ══════════════════════════════════════════════════
   INDIVIDUAL CHECKS PAGE — STANDALONE STYLESHEET
   Based on VeriSafe styling with section differences
   ══════════════════════════════════════════════════ */

/* ── FONT FACE ────────────────────────────── */
@font-face {
  font-family: 'Century Gothic';
  src: url('../fonts/CenturyGothic-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Century Gothic';
  src: url('../fonts/CenturyGothic-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

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

html {
  scroll-behavior: smooth;
}

:root {
  --bg: #FAFBFF;
  --surface: #FFFFFF;
  --navy: rgba(26, 31, 23, 1);
  --green: rgba(68, 214, 44, 1);
  --green-dark: #38b824;
  --dark-text: rgba(26, 31, 23, 1);
  --muted: rgba(90, 101, 84, 1);
  --border: #E2E8F4;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.1);
}

body {
  font-family: 'Century Gothic', CenturyGothic, AppleGothic, sans-serif;
  background: var(--bg);
  color: var(--navy);
  overflow-x: hidden;
  font-size: 12px;
}

/* ── BURGER ───────────────────────────────── */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 101;
}

.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── NAV ──────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 249, 247, 1);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  height: 64px;
}

.admin-bar nav { top: 32px; }
@media screen and (max-width: 782px) {
  .admin-bar nav { top: 46px; }
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo img {
  height: 40px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links > li {
  position: relative;
}

.nav-links > li > a {
  color: #5A6A85;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 20px 0;
  cursor: pointer;
}

.nav-links > li > a:hover {
  color: var(--green);
}

.nav-dropdown {
  position: absolute;
  top: 62px;
  left: -12px;
  background: var(--green);
  padding: 8px 0;
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  z-index: 200;
  backface-visibility: hidden;
}

.nav-links > li:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 400;
  color: white;
  text-decoration: none;
  transition: background-color 0.15s;
  background-color: transparent;
}

.nav-dropdown a:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

.nav-cta {
  background: var(--green);
  color: white !important;
  padding: 10px 22px !important;
  border-radius: 8px;
  font-weight: 400 !important;
  font-size: 14px !important;
  transition: background 0.2s, transform 0.2s !important;
  text-decoration: none;
  align-self: center;
}

.nav-cta:hover {
  background: var(--green-dark) !important;
  transform: translateY(-1px);
}

/* ── PRICING / PACKAGES SECTION ──────────── */
.pricing-section {
  background: #f5f5f0;
  padding: 80px 60px;
}

.pricing-header {
  text-align: left;
  margin-bottom: 48px;
}

.pricing-h {
  font-size: 48px;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -1.5px;
  line-height: 1.05;
}

.pricing-p {
  font-size: 18px;
  font-weight: 100;
  color: rgba(107, 127, 101, 1);
  line-height: 1.05;
  padding-top: 25px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin: 0 auto;
  align-items: stretch;
}

.pricing-card-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: stretch;
}

.pricing-card {
  background: white;
  border-radius: 20px;
  padding: clamp(24px, 3.5vw, 52px) clamp(20px, 3vw, 48px) clamp(24px, 3.5vw, 48px);
  border: 1.5px solid #e8e8e8;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s;
  flex: 1;
}

.pricing-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
  border-color: var(--green);
  border-width: 2px;
}

.pricing-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: white;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-name {
  font-size: 28px;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 8px;
}

.pricing-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 15px;
}

/* ── PACKAGE CARD INNER CONTENT ──────────────────── */
.ic-pkg-price {
  font-size: 36px;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 0;
}

.ic-pkg-currency {
  font-size: 14px;
  font-weight: 400;
  color: var(--navy);
}

.ic-pkg-label {
  font-size: 13px;
  font-weight: 700;
  color: rgba(138, 148, 133, 1);
  letter-spacing: 1px;
  margin-bottom: 24px;
  padding-top: 0;
}

.ic-pkg-includes {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}

.ic-pkg-includes li {
  font-size: 14px;
  color: var(--muted);
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(228, 232, 224, 1);
}

.ic-pkg-includes li::before {
  content: "\2713";
  color: var(--green-dark);
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ic-pkg-includes li.ic-turnaround::before {
  content: none;
}

.ic-clock {
  color: var(--green-dark);
  display: inline-flex;
  width: 20px;
  justify-content: center;
  flex-shrink: 0;
}


.ic-pkg-summary {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
  margin-top: 16px;
  margin-bottom: 24px;
  padding-top: 12px;
  border-top: 1px solid rgba(228, 232, 224, 1);
  flex: 1;
}

.ic-pkg-addons {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  flex: 1;
}

.ic-pkg-addons li {
  font-size: 14px;
  color: var(--muted);
  padding: 4px 0;
}

.ic-pkg-addons li::before {
  content: "+ ";
  color: var(--green-dark);
  font-weight: 700;
}

.ic-pkg-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px 24px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  box-sizing: border-box;
  margin-top: auto;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.ic-pkg-btn-outline {
  background: #fff;
  color: var(--navy);
  border: 1px solid rgba(228, 232, 224, 1);
}

.ic-pkg-btn-outline:hover {
  background: rgba(68, 214, 44, 0.1);
  border-color: var(--green);
  color: var(--green-dark);
}

.ic-pkg-btn-fill {
  background: var(--green);
  color: var(--navy);
  border: 1px solid var(--green);
  box-shadow: 0 4px 20px rgba(68, 214, 44, 0.35);
}

.ic-pkg-btn-fill:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: #fff;
  transform: translateY(-2px);
}

/* ── HERO ─────────────────────────────────── */
.hero {
  background: var(--green);
  text-align: center;
  flex: 1;
  position: relative;
  overflow: visible;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 40px 40px;
}

.hero-and-ticker {
  min-height: calc(100vh - 64px);
  display: flex;
  flex-direction: column;
}

.hero h1 {
  font-size: clamp(48px, 10vw, 128px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -3px;
  margin-bottom: 24px;
  color: #fff;
  overflow: visible;
}

.cycle-wrapper {
  display: inline-block;
  position: relative;
}

.cycle-text {
  color: var(--navy);
  display: inline-block;
  min-width: 2ch;
}

.cycle-cursor {
  display: inline-block;
  color: var(--navy);
  font-weight: 300;
  animation: blink-cursor 0.7s step-end infinite;
  margin-left: -0.2em;
}

@keyframes blink-cursor {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.hero-sub {
  font-size: 19px;
  color: white;
  max-width: 680px;
  line-height: 1.7;
  font-weight: 500;
  margin-bottom: 20px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.ic-hero-btn {
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: background 0.5s cubic-bezier(0.4, 0, 0.2, 1), color 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.5s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.ic-hero-btn-dark {
  background: black;
  color: #fff;
  border: 2px solid black;
}

.ic-hero-btn-dark:hover {
  background: #fff;
  color: black;
  border-color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.ic-hero-btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.ic-hero-btn-outline:hover {
  background: #fff;
  color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

/* ── SECTION LABEL (shared) ──────────────────────── */
.ic-section-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

/* ── WHY INDIVIDUAL CHECKS SECTION ─────────────── */
.ic-why-section {
  background: rgba(245, 251, 240, 1);
  padding: 100px 5vw;
}

.ic-why-inner {
  margin: 0 auto;
}

.ic-why-heading {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 48px;
}

.ic-green {
  font-weight: 900;
  color: var(--green);
}

.ic-why-sublabel {
  font-size: 13px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.ic-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 64px;
}

.ic-why-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
}

.ic-check-circle {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: var(--green);
  color: var(--navy);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  margin-top: 2px;
}

.ic-why-item strong {
  font-size: 15px;
  color: var(--navy);
  display: block;
  margin-bottom: 4px;
}

.ic-why-item p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.ic-why-value-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
}

.ic-why-value-item p {
  font-size: 15px;
  color: var(--navy);
  line-height: 1.6;
  margin: 0;
}

/* ── WHO IS IT FOR SECTION ──────────────────────── */
.ic-who-section {
  background: rgba(248, 249, 247, 1);
  padding: 100px 0;
}

.ic-who-inner {
  margin: 0 auto;
}

.ic-who-section .ic-section-label,
.ic-who-heading,
.ic-who-desc,
.ic-who-carousel {
  padding-left: 5vw;
  padding-right: 5vw;
}

.ic-who-heading {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}

.ic-who-desc {
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 48px;
  max-width: 600px;
}

.ic-who-carousel {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
}

.ic-who-carousel::before,
.ic-who-carousel::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 220px;
  pointer-events: none;
  z-index: 2;
}

.ic-who-carousel::before {
  left: 0;
  background: linear-gradient(to right, rgba(248, 249, 247, 1) 0%, rgba(248, 249, 247, 0.95) 30%, rgba(248, 249, 247, 0.6) 65%, rgba(248, 249, 247, 0) 100%);
}

.ic-who-carousel::after {
  right: 0;
  background: linear-gradient(to left, rgba(248, 249, 247, 1) 0%, rgba(248, 249, 247, 0.95) 30%, rgba(248, 249, 247, 0.6) 65%, rgba(248, 249, 247, 0) 100%);
}

.ic-who-track-outer {
  overflow: hidden;
  padding: 24px 0 32px;
}

.ic-who-cards {
  display: flex;
  gap: 20px;
  width: max-content;
  will-change: transform;
}

.ic-who-card {
  background: #fff;
  border-radius: 12px;
  padding: 32px 28px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border: 1px solid #e5e5e0;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease, border-color 0.3s;
  min-width: 300px;
  max-width: 300px;
}

.ic-who-card:hover {
  transform: translateY(-8px);
  border-color: var(--green);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.1);
}

.ic-who-card-icon {
  font-size: 24px;
  margin-bottom: 18px;
  width: 44px;
  height: 44px;
  background: rgba(238, 241, 247, 1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ic-who-card-icon svg {
  width: 26px;
  height: 26px;
  color: rgba(47, 184, 24, 1);
  display: block;
}

.ic-who-emoji {
  font-size: 22px;
  line-height: 1;
}

.ic-who-card strong {
  font-size: 16px;
  color: var(--navy);
  display: block;
  margin-bottom: 8px;
}

.ic-who-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

/* ── HOW IT WORKS SECTION ────────────────────────── */
.ic-how-section {
  background: rgba(248, 249, 247, 1);
  padding: 100px 5vw;
}

.ic-how-inner {
  margin: 0 auto;
}

.ic-how-header {
  text-align: left;
  margin-bottom: 56px;
}

.ic-how-heading {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.2;
}

.ic-how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

.ic-how-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(12.5% + 60px);
  right: calc(12.5% + 60px);
  height: 2px;
  background: rgba(228, 232, 224, 1);
  z-index: 0;
}

.ic-how-step {
  text-align: center;
  padding: 0 8px;
  position: relative;
  z-index: 1;
}

.ic-step-icon-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: #fff;
  border-radius: 50%;
  border: 1.5px solid rgba(228, 232, 224, 1);
  margin-bottom: 24px;
}

.ic-step-emoji {
  font-size: 32px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--green-dark);
}

.ic-step-emoji svg {
  width: 32px;
  height: auto;
  max-height: 32px;
  display: block;
}

.ic-step-num {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 24px;
  height: 24px;
  background: var(--green);
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ic-how-step strong {
  font-size: 16px;
  color: var(--navy);
  display: block;
  margin-bottom: 10px;
}

.ic-how-step p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

/* ── SLOGAN SECTION ───────────────────────── */
.slogan-section {
  background: rgba(68, 214, 44, 1);
  padding: 80px 40px;
  text-align: center;
}

.slogan-section h2:first-child {
  color: black;
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1.2;
  margin: 0 auto 16px;
}

.slogan-section h2:nth-child(2) {
  color: white;
  font-size: 22px;
  font-weight: 400 !important;
  letter-spacing: 0;
  line-height: 1.5;
  margin: 12px auto 0;
  max-width: none;
  white-space: nowrap;
}

.slogan-ctas {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 36px;
}

.btn-slogan {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 240px;
  padding: 14px 36px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  box-sizing: border-box;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.btn-slogan-outline {
  color: #44d62c;
  background: #fff;
  border: 2px solid #fff;
}

.btn-slogan-outline:hover {
  background: #f0f0f0;
}

.btn-slogan-fill {
  color: #fff;
  background: transparent;
  border: 2px solid #fff;
}

.btn-slogan-fill:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* ── FOOTER ───────────────────────────────── */
footer {
  background: #f8f8f6;
  padding: 56px 60px 48px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 40px;
}

.footer-heading {
  display: block;
  font-size: 15px;
  font-weight: 400;
  color: #5A6A85;
  margin-bottom: 16px;
  text-transform: none;
}

.footer-col a {
  display: block;
  color: var(--navy);
  text-decoration: none;
  font-size: 15px;
  margin-bottom: 14px;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--green);
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 24px;
  flex-shrink: 0;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.2s, opacity 0.2s;
}

.social-icon svg {
  width: 24px;
  height: 24px;
}

.social-icon:hover {
  transform: translateY(-3px);
  opacity: 0.88;
}

.footer-logo-img {
  height: 110px;
  width: auto;
  display: block;
}

.footer-bar {
  background: var(--green);
  padding: 14px 60px;
  font-size: 11px;
  color: white;
  text-align: center;
}

/* ── ANIMATIONS ───────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════ */

@media (max-width: 960px) {
  nav {
    padding: 0 24px;
  }

  .nav-burger {
    display: flex;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid var(--border);
    padding: 16px 24px 24px;
    gap: 0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    z-index: 100;
  }

  .nav-links.open {
    display: flex;
    animation: navSlideDown 0.25s ease forwards;
  }

  @keyframes navSlideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .nav-links > li {
    width: 100%;
  }

  .nav-links > li > a {
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    width: 100%;
  }

  .nav-links > li:last-child > a {
    border-bottom: none;
  }

  .nav-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: #f4f4f4;
    border-radius: 0 0 8px 8px;
    padding: 4px 12px;
    margin-bottom: 8px;
  }

  .nav-dropdown a {
    color: var(--navy);
    padding: 10px 8px;
  }

  .hero {
    padding: 40px 24px 40px;
  }

  .hero h1 {
    font-size: clamp(28px, 8vw, 56px);
    letter-spacing: -1px;
  }

  .hero-sub {
    font-size: 18px;
  }

  .pricing-section {
    padding: 60px 24px;
  }

  .pricing-h {
    font-size: 32px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 700px;
    margin: 0 auto;
  }

  .ic-why-section {
    padding: 60px 24px;
  }

  .ic-why-heading {
    font-size: clamp(22px, 5vw, 32px);
  }

  .ic-why-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .ic-who-section {
    padding: 60px 0;
  }

  .ic-who-section .ic-section-label,
  .ic-who-heading,
  .ic-who-desc,
  .ic-who-carousel {
    padding-left: 24px;
    padding-right: 24px;
  }

  .ic-who-heading {
    font-size: clamp(26px, 6vw, 36px);
  }

  .ic-who-carousel::before,
  .ic-who-carousel::after {
    width: 80px;
  }

  .ic-who-card {
    padding: 24px 20px;
  }

  .ic-how-section {
    padding: 60px 24px;
  }

  .ic-how-heading {
    font-size: clamp(26px, 6vw, 36px);
  }

  .ic-how-steps {
    grid-template-columns: 1fr 1fr;
    gap: 32px 24px;
  }

  .ic-how-steps::before {
    display: none;
  }

  footer {
    padding: 40px 24px 40px;
    overflow: hidden;
  }

  .footer-inner {
    flex-direction: row;
    align-items: flex-start;
    gap: 40px;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
    gap: 16px 24px;
    flex: 1;
  }

  .footer-right {
    align-items: flex-end;
    flex-shrink: 0;
  }

  .footer-bar {
    padding: 14px 24px;
  }

  .slogan-section {
    padding: 60px 24px;
  }

  .slogan-section h2:first-child {
    font-size: clamp(24px, 6vw, 36px);
    letter-spacing: -0.5px;
  }

  .slogan-section h2:nth-child(2) {
    font-size: 16px;
    white-space: normal;
    max-width: 600px;
  }

  .slogan-ctas {
    flex-direction: column;
    align-items: center;
  }

  .btn-slogan {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .ic-hero-btn {
    width: 100%;
    text-align: center;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 0 16px;
  }

  .pricing-h {
    font-size: 26px;
  }

  .ic-pkg-price {
    font-size: 28px;
  }

  .ic-why-heading {
    font-size: clamp(20px, 5vw, 28px);
  }

  .ic-why-heading br {
    display: none;
  }

  .ic-who-heading {
    font-size: clamp(22px, 6vw, 32px);
  }

  .ic-who-heading br {
    display: none;
  }

  .ic-who-carousel::before,
  .ic-who-carousel::after {
    width: 40px;
  }

  .ic-how-steps {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ic-how-heading {
    font-size: clamp(22px, 6vw, 32px);
  }

  .footer-inner {
    flex-direction: column;
    align-items: center;
  }

  .footer-links {
    width: 100%;
    justify-items: center;
  }

  .footer-col {
    text-align: center;
  }

  .footer-right {
    align-items: center;
    width: 100%;
  }

  .footer-logo-img {
    height: 70px;
  }
}

/* ── FLOATING CTAs ─────────────────────────────────── */
.vs-floating-ctas {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

.vs-fab {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(46, 184, 30, 1);
  color: #fff;
  padding: 8px 22px 8px 8px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}

.vs-fab:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(46, 184, 30, 0.5);
}

.vs-fab-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
}

.vs-fab-icon svg {
  width: 15px;
  height: 15px;
}

.vs-fab-label {
  white-space: nowrap;
}

@media (max-width: 480px) {
  .vs-floating-ctas {
    bottom: 16px;
    right: 16px;
    gap: 8px;
  }

  .vs-fab {
    font-size: 13px;
    padding: 6px 18px 6px 6px;
  }

  .vs-fab-icon {
    width: 26px;
    height: 26px;
  }

  .vs-fab-icon svg {
    width: 13px;
    height: 13px;
  }
}
