/* ============================================================
   ADVANCECRED DESIGN SYSTEM. website
   Source: Claude Design project "AdvanceCred" (ui_kits/website)
   Palette: Ink · Moss · Teal · warm Neutrals · Status
   Type:    Fraunces (display) · Inter (body) · tabular numerals
   ============================================================ */

:root {
  /* ---- Ink (deep green-black) ---- */
  --ac-ink: #131a17;
  --ac-ink-2: #1d2622;
  --ac-ink-3: #2a3630;
  --ac-ink-secondary: #4c5a54;
  --ac-ink-muted: #75837c;
  --ac-ink-soft: #a3ada8;

  /* ---- Moss (primary brand) ---- */
  --ac-moss: #2e5d49;
  --ac-moss-deep: #234a3a;
  --ac-moss-hover: #26503e;
  --ac-moss-soft: #e9f1ec;
  --ac-moss-ring: rgba(46, 93, 73, 0.22);

  /* ---- Teal (accent) ---- */
  --ac-teal: #0f7b6f;
  --ac-teal-bright: #17a294;
  --ac-teal-soft: #e2f2f0;

  /* ---- Warm neutrals ---- */
  --ac-paper: #fafaf9;
  --ac-surface: #ffffff;
  --ac-surface-soft: #f5f5f3;
  --ac-border: #e8e8e5;
  --ac-border-strong: #d6d6d1;

  /* ---- Status ---- */
  --ac-success-bg: #dcfce7;
  --ac-success-text: #15803d;
  --ac-warning-bg: #fef3c7;
  --ac-warning-text: #92400e;
  --ac-danger-bg: #fee2e2;
  --ac-danger-text: #b91c1c;
  --ac-info-bg: #e0f2fe;
  --ac-info-text: #075985;

  /* ---- Type ---- */
  --ac-font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --ac-font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* ---- Radii / shadows ---- */
  --ac-r-sm: 8px;
  --ac-r-md: 12px;
  --ac-r-lg: 18px;
  --ac-r-xl: 26px;
  --ac-shadow-sm: 0 1px 2px rgba(19, 26, 23, 0.05), 0 2px 8px rgba(19, 26, 23, 0.04);
  --ac-shadow-md: 0 2px 6px rgba(19, 26, 23, 0.06), 0 12px 32px rgba(19, 26, 23, 0.08);
  --ac-shadow-lg: 0 4px 12px rgba(19, 26, 23, 0.08), 0 24px 64px rgba(19, 26, 23, 0.14);
}

/* ============================================================
   BASE
   ============================================================ */
body.ac-body {
  font-family: var(--ac-font-body);
  color: var(--ac-ink);
  background: var(--ac-paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

.num,
.ac-num {
  font-variant-numeric: tabular-nums lining-nums;
  letter-spacing: -0.01em;
}

.ac-display,
.ac-section h2.ac-h2 {
  font-family: var(--ac-font-display);
  font-weight: 560;
  letter-spacing: -0.015em;
  line-height: 1.12;
  color: var(--ac-ink);
}

.ac-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ac-teal);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.ac-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-family: var(--ac-font-body);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease,
    border-color 0.16s ease, color 0.16s ease;
}
.ac-btn svg { width: 16px; height: 16px; flex: none; }

.ac-btn--primary {
  background: var(--ac-moss);
  color: #fff;
}
.ac-btn--primary:hover,
.ac-btn--primary:focus {
  background: var(--ac-moss-hover);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px var(--ac-moss-ring);
}

.ac-btn--secondary {
  background: transparent;
  color: var(--ac-ink);
  border-color: var(--ac-border-strong);
}
.ac-btn--secondary:hover,
.ac-btn--secondary:focus {
  border-color: var(--ac-ink);
  color: var(--ac-ink);
  transform: translateY(-1px);
}

.ac-btn--ghost-light {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(6px);
}
.ac-btn--ghost-light:hover,
.ac-btn--ghost-light:focus {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
}

.ac-btn--lg { padding: 15px 28px; font-size: 1.02rem; }
.ac-btn--sm { padding: 9px 16px; font-size: 0.85rem; }

/* ============================================================
   NAVBAR  (.ac-nav wraps Bootstrap navbar for behaviour)
   ============================================================ */
.ac-nav {
  background: rgba(250, 250, 249, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--ac-border);
  box-shadow: none !important;
  position: sticky;
  top: 0;
  z-index: 1030;
  padding: 10px 0;
}
.ac-nav .brand-logo { height: 44px; width: auto; object-fit: contain; }
.ac-nav .nav-link {
  font-weight: 600;
  font-size: 0.93rem;
  color: var(--ac-ink-secondary);
  padding: 10px 14px;
  border-radius: 999px;
  transition: color 0.15s ease, background 0.15s ease;
}
.ac-nav .nav-link:hover,
.ac-nav .nav-link:focus { color: var(--ac-ink); background: var(--ac-surface-soft); }
.ac-nav .nav-link.active { color: var(--ac-moss); }
.ac-nav .ac-nav-cta { margin-left: 10px; }

.ac-nav .dropdown-menu {
  border: 1px solid var(--ac-border);
  border-radius: var(--ac-r-lg);
  box-shadow: var(--ac-shadow-lg);
  padding: 18px;
}

/* Full-width mega menu: anchor to the nav bar itself, not the toggle */
.ac-nav .mega-dropdown { position: static !important; }
.ac-nav .mega-menu {
  border-top: 3px solid var(--ac-moss);
  position: absolute;
  left: 16px;
  right: 16px;
  top: 100%;
  width: auto;
  margin-top: 0;
  padding: 28px 24px;
  border-radius: 0 0 var(--ac-r-lg) var(--ac-r-lg);
  max-height: calc(100vh - 90px);
  overflow-y: auto;
}
@media (max-width: 991.98px) {
  .ac-nav .mega-menu {
    position: static;
    left: auto;
    right: auto;
    box-shadow: none;
    border: 1px solid var(--ac-border);
    max-height: none;
  }
}
.ac-nav .mega-menu-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ac-teal);
  margin-bottom: 10px;
}
.ac-nav .mega-menu-link {
  display: block;
  padding: 7px 10px;
  border-radius: var(--ac-r-sm);
  color: var(--ac-ink-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.14s ease, color 0.14s ease;
}
.ac-nav .mega-menu-link:hover { background: var(--ac-moss-soft); color: var(--ac-moss); }
.ac-nav .mega-menu-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--ac-teal-soft);
  color: var(--ac-teal);
  margin-right: 6px;
}

/* ============================================================
   CINEMATIC HERO
   ============================================================ */
.cinhero {
  position: relative;
  color: #fff;
  overflow: hidden;
  background: var(--ac-ink);
}
.cinhero__bg { position: absolute; inset: 0; }
.cinhero__bg img,
.cinhero__bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.55;
}
.cinhero__wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(78deg, rgba(19, 26, 23, 0.96) 0%, rgba(19, 26, 23, 0.82) 38%, rgba(19, 26, 23, 0.42) 68%, rgba(19, 26, 23, 0.62) 100%),
    linear-gradient(0deg, rgba(19, 26, 23, 0.55) 0%, rgba(19, 26, 23, 0) 30%);
}
.cinhero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
}
.cinhero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 48px;
  align-items: center;
  padding-top: 92px;
  padding-bottom: 92px;
  min-height: 640px;
}
.cinhero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 22px;
}
.cinhero__eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ac-teal-bright);
  box-shadow: 0 0 0 4px rgba(23, 162, 148, 0.25);
}
.cinhero__title {
  font-family: var(--ac-font-display);
  font-weight: 560;
  font-size: clamp(2.1rem, 4.4vw, 3.4rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin-bottom: 20px;
}
.cinhero__lead {
  font-size: 1.08rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
  max-width: 560px;
  margin-bottom: 30px;
}
.cinhero__ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }
.cinhero__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}
.cinhero__btn svg { width: 16px; height: 16px; }
.cinhero__btn--primary { background: var(--ac-teal-bright); color: var(--ac-ink); }
.cinhero__btn--primary:hover {
  background: #1fb5a6;
  color: var(--ac-ink);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(23, 162, 148, 0.35);
}
.cinhero__btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  backdrop-filter: blur(4px);
}
.cinhero__btn--ghost:hover { background: rgba(255, 255, 255, 0.14); color: #fff; }

.cinhero__trust { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.cinhero__trust-cell { min-width: 110px; }
.cinhero__trust-num {
  font-family: var(--ac-font-display);
  font-size: 1.7rem;
  font-weight: 560;
  font-variant-numeric: tabular-nums;
  color: #fff;
}
.cinhero__trust-lab {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 2px;
}
.cinhero__trust-sep { width: 1px; height: 40px; background: rgba(255, 255, 255, 0.18); }

/* ============================================================
   RATE PANEL (hero right column)
   ============================================================ */
.ratepanel {
  background: var(--ac-surface);
  color: var(--ac-ink);
  border-radius: var(--ac-r-xl);
  box-shadow: var(--ac-shadow-lg);
  padding: 26px;
}
.ratepanel__head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 18px; }
.ratepanel__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ac-teal);
  margin-bottom: 4px;
}
.ratepanel__title { font-family: var(--ac-font-display); font-size: 1.35rem; font-weight: 560; }
.ratepanel__as-of { font-size: 0.75rem; color: var(--ac-ink-muted); white-space: nowrap; padding-top: 4px; }

.ratepanel__tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  background: var(--ac-surface-soft);
  border-radius: 999px;
  padding: 5px;
  margin-bottom: 14px;
}
.ratepanel__tab {
  border: 0;
  background: transparent;
  border-radius: 999px;
  padding: 9px 10px;
  font-family: var(--ac-font-body);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--ac-ink-secondary);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  transition: background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}
.ratepanel__tab small,
.ratepanel__tab .ratepanel__tab-sub {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 0.68rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--ac-ink-muted);
}
.ratepanel__tab.is-active { background: var(--ac-ink); color: #fff; box-shadow: var(--ac-shadow-sm); }
.ratepanel__tab.is-active small,
.ratepanel__tab.is-active .ratepanel__tab-sub { color: rgba(255, 255, 255, 0.7); }

.ratepanel__list { list-style: none; margin: 0; padding: 0; }
.ratepanel__row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 10px;
  border-radius: var(--ac-r-md);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  transition: background 0.14s ease;
}
.ratepanel__row + .ratepanel__row { border-top: 1px solid var(--ac-border); }
.ratepanel__row:hover { background: var(--ac-moss-soft); }
.ratepanel__icon {
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: var(--ac-r-md);
  background: var(--ac-teal-soft);
  color: var(--ac-teal);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.ratepanel__icon svg { width: 20px; height: 20px; }
.ratepanel__main { flex: 1; min-width: 0; }
.ratepanel__name { display: block; font-weight: 600; font-size: 0.95rem; }
.ratepanel__meta { display: block; font-size: 0.76rem; color: var(--ac-ink-muted); }
.ratepanel__sep { margin: 0 5px; }
.ratepanel__rate { text-align: right; white-space: nowrap; }
.ratepanel__rate .num { font-weight: 700; font-size: 0.98rem; color: var(--ac-moss); }
.ratepanel__rate small { display: block; font-size: 0.68rem; color: var(--ac-ink-muted); }
.ratepanel__chev { width: 14px; height: 14px; color: var(--ac-ink-soft); flex: none; }
.ratepanel__foot {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--ac-border);
  font-size: 0.76rem;
  line-height: 1.5;
  color: var(--ac-ink-muted);
}
.ratepanel__foot svg { width: 14px; height: 14px; flex: none; margin-top: 2px; }

/* ============================================================
   LENDER STRIP
   ============================================================ */
.lenderstrip { background: var(--ac-surface); border-bottom: 1px solid var(--ac-border); padding: 34px 0; }
.lenderstrip__head {
  text-align: center;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ac-ink-muted);
  margin-bottom: 22px;
}
.lenderstrip__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 5vw, 56px);
  flex-wrap: wrap;
}
.lenderstrip__row img {
  height: 30px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1) opacity(0.62);
  transition: filter 0.2s ease;
}
.lenderstrip__row img:hover { filter: grayscale(0) opacity(1); }

/* ============================================================
   SECTIONS. generic
   ============================================================ */
.ac-section { padding: 88px 0; }
.ac-section--soft { background: var(--ac-surface-soft); }
.ac-section--white { background: var(--ac-surface); }
.ac-section--ink { background: var(--ac-ink); color: #fff; }

.ac-section-head { max-width: 720px; margin-bottom: 52px; }
.ac-section-head.is-center { margin-left: auto; margin-right: auto; text-align: center; }
.ac-section-head h2 {
  font-family: var(--ac-font-display);
  font-weight: 560;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 14px 0 16px;
  color: inherit;
}
.ac-section-head p { font-size: 1.02rem; line-height: 1.7; color: var(--ac-ink-secondary); margin: 0; }
.ac-section--ink .ac-section-head p { color: rgba(255, 255, 255, 0.75); }

/* ============================================================
   PRODUCTS
   ============================================================ */
.prods { padding: 88px 0; background: var(--ac-paper); }
.prods__head { max-width: 760px; margin-bottom: 56px; }
.prods__head h2 {
  font-family: var(--ac-font-display);
  font-weight: 560;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  letter-spacing: -0.015em;
  line-height: 1.15;
  margin: 14px 0 16px;
}
.prods__head p { font-size: 1.02rem; line-height: 1.7; color: var(--ac-ink-secondary); }

.prods__band { margin-bottom: 56px; }
.prods__band-head { max-width: 620px; margin-bottom: 26px; }
.prods__band-head h3 {
  font-family: var(--ac-font-display);
  font-size: 1.45rem;
  font-weight: 560;
  margin: 10px 0 8px;
}
.prods__band-head p { font-size: 0.95rem; line-height: 1.65; color: var(--ac-ink-secondary); margin: 0; }
.prods__band-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  padding: 4px 12px;
  border-radius: 999px;
}
.prods__band-tag--unsecured { background: var(--ac-teal-soft); color: var(--ac-teal); }
.prods__band-tag--secured { background: var(--ac-moss-soft); color: var(--ac-moss); }
.prods__band-tag--feat { background: rgba(255, 255, 255, 0.14); color: #fff; }

.prods__grid { display: grid; gap: 22px; }
.prods__grid--two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.prods__grid--three { grid-template-columns: repeat(3, minmax(0, 1fr)); }

/* product card */
.prodcard {
  background: var(--ac-surface);
  border: 1px solid var(--ac-border);
  border-radius: var(--ac-r-lg);
  padding: 26px;
  display: flex;
  flex-direction: column;
}
.prodcard.is-featured { border-color: var(--ac-moss); box-shadow: 0 0 0 1px var(--ac-moss), var(--ac-shadow-md); }
.prodcard__head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 16px; }
.prodcard__icon {
  width: 46px;
  height: 46px;
  border-radius: var(--ac-r-md);
  background: var(--ac-teal-soft);
  color: var(--ac-teal);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.prodcard__icon.is-featured { background: var(--ac-moss); color: #fff; }
.prodcard__icon svg { width: 22px; height: 22px; }
.prodcard__tag {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  color: var(--ac-ink-muted);
  border: 1px solid var(--ac-border);
  padding: 4px 10px;
  border-radius: 999px;
}
.prodcard__name { font-family: var(--ac-font-display); font-size: 1.28rem; font-weight: 560; margin-bottom: 4px; }
.prodcard__tagline { font-size: 0.88rem; color: var(--ac-ink-secondary); margin-bottom: 18px; }
.prodcard__specs { margin: 0 0 18px; border-top: 1px solid var(--ac-border); }
.prodcard__specs > div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid var(--ac-border);
  font-size: 0.88rem;
}
.prodcard__specs dt { color: var(--ac-ink-muted); font-weight: 500; }
.prodcard__specs dd { margin: 0; font-weight: 600; text-align: right; }
.prodcard__rate-row dd { color: var(--ac-moss); font-weight: 700; }
.prodcard__points { list-style: none; margin: 0 0 22px; padding: 0; flex: 1; }
.prodcard__points li {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--ac-ink-secondary);
  margin-bottom: 9px;
}
.prodcard__points svg { width: 14px; height: 14px; flex: none; margin-top: 3px; color: var(--ac-teal); }

/* hover treatment shared by cards */
.kit-card-hover { transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease; }
.kit-card-hover:hover { transform: translateY(-4px); box-shadow: var(--ac-shadow-md); border-color: var(--ac-border-strong); }

/* featured consolidation panel */
.prods__featured {
  background: var(--ac-ink);
  color: #fff;
  border-radius: var(--ac-r-xl);
  overflow: hidden;
}
.prods__featured-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 40px;
  align-items: center;
  padding: 52px;
}
.prods__featured-copy h3 { font-family: var(--ac-font-display); font-size: 1.8rem; font-weight: 560; margin: 14px 0 12px; }
.prods__featured-copy p { color: rgba(255, 255, 255, 0.78); line-height: 1.7; max-width: 520px; }
.prods__featured-stats { display: flex; gap: 34px; flex-wrap: wrap; margin: 26px 0 30px; }
.prods__featured-stats strong {
  display: block;
  font-family: var(--ac-font-display);
  font-size: 1.6rem;
  font-weight: 560;
  font-variant-numeric: tabular-nums;
}
.prods__featured-stats span { font-size: 0.78rem; color: rgba(255, 255, 255, 0.62); }

.prods__featured-stack { position: relative; min-height: 300px; }
.prods__featured-stack-card {
  position: absolute;
  background: var(--ac-surface);
  color: var(--ac-ink);
  border-radius: var(--ac-r-lg);
  box-shadow: var(--ac-shadow-lg);
  padding: 18px 20px;
  width: 230px;
}
.prods__featured-stack-card img { height: 22px; width: auto; object-fit: contain; margin-bottom: 12px; display: block; }
.prods__featured-stack-rate { font-family: var(--ac-font-display); font-size: 1.5rem; font-weight: 560; font-variant-numeric: tabular-nums; }
.prods__featured-stack-rate small { font-size: 0.85rem; }
.prods__featured-stack-emi { font-size: 0.8rem; font-weight: 600; color: var(--ac-moss); margin-top: 4px; }
.prods__featured-stack-card--back { top: 0; right: 130px; transform: rotate(-5deg); opacity: 0.75; }
.prods__featured-stack-card--mid { top: 44px; right: 64px; transform: rotate(2deg); opacity: 0.9; }
.prods__featured-stack-card--front { top: 96px; right: 0; z-index: 2; }
.prods__featured-stack-ribbon {
  position: absolute;
  top: -11px;
  right: 16px;
  background: var(--ac-teal-bright);
  color: var(--ac-ink);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
}

/* ============================================================
   WHY US
   ============================================================ */
.whyus { padding: 88px 0; background: var(--ac-surface); border-top: 1px solid var(--ac-border); }
.whyus__head { max-width: 700px; margin-bottom: 48px; }
.whyus__head h2 {
  font-family: var(--ac-font-display);
  font-weight: 560;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  letter-spacing: -0.015em;
  line-height: 1.15;
  margin-top: 14px;
}
.whyus__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; }
.whyus__cell {
  background: var(--ac-paper);
  border: 1px solid var(--ac-border);
  border-radius: var(--ac-r-lg);
  padding: 26px;
}
.whyus__num {
  font-family: var(--ac-font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ac-teal);
  margin-bottom: 14px;
}
.whyus__cell h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.whyus__cell p { font-size: 0.87rem; line-height: 1.6; color: var(--ac-ink-secondary); margin: 0; }

/* ============================================================
   HOME CALCULATOR SECTION
   ============================================================ */
.homecalc { padding: 88px 0; background: var(--ac-surface-soft); }
.homecalc__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: start;
}
.homecalc__card {
  background: var(--ac-surface);
  border: 1px solid var(--ac-border);
  border-radius: var(--ac-r-xl);
  box-shadow: var(--ac-shadow-md);
  padding: 30px;
}
.homecalc__field { margin-bottom: 22px; }
.homecalc__field-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
}
.homecalc__field-head label { font-size: 0.88rem; font-weight: 600; color: var(--ac-ink-secondary); }
.homecalc__field-head output {
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--ac-ink);
  font-size: 0.95rem;
}
.homecalc input[type="range"] {
  width: 100%;
  height: 6px;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 999px;
  background: linear-gradient(to right, var(--ac-moss) var(--fill, 50%), var(--ac-border) var(--fill, 50%));
  outline: none;
}
.homecalc input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--ac-surface);
  border: 3px solid var(--ac-moss);
  box-shadow: var(--ac-shadow-sm);
  cursor: pointer;
}
.homecalc input[type="range"]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--ac-surface);
  border: 3px solid var(--ac-moss);
  box-shadow: var(--ac-shadow-sm);
  cursor: pointer;
}
.homecalc__result {
  border-top: 1px solid var(--ac-border);
  margin-top: 6px;
  padding-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.homecalc__result-cell small {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ac-ink-muted);
  margin-bottom: 4px;
}
.homecalc__result-cell strong {
  font-family: var(--ac-font-display);
  font-size: 1.25rem;
  font-weight: 560;
  font-variant-numeric: tabular-nums;
  color: var(--ac-ink);
}
.homecalc__result-cell.is-primary strong { color: var(--ac-moss); font-size: 1.45rem; }

/* ============================================================
   STEPS (how it works)
   ============================================================ */
.acsteps { counter-reset: step; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; }
.acsteps__cell {
  background: var(--ac-surface);
  border: 1px solid var(--ac-border);
  border-radius: var(--ac-r-lg);
  padding: 26px;
  position: relative;
}
.acsteps__num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--ac-moss-soft);
  color: var(--ac-moss);
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.acsteps__cell h4 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.acsteps__cell p { font-size: 0.85rem; line-height: 1.6; color: var(--ac-ink-secondary); margin: 0; }

/* ============================================================
   FORMS (lead capture, ink-on-paper)
   ============================================================ */
.ac-form .form-label { font-weight: 600; font-size: 0.88rem; color: var(--ac-ink-secondary); }
.ac-form .form-control,
.ac-form .form-select {
  border: 1.5px solid var(--ac-border-strong);
  border-radius: var(--ac-r-md);
  padding: 11px 14px;
  font-size: 0.95rem;
  color: var(--ac-ink);
  background: var(--ac-surface);
}
.ac-form .form-control:focus,
.ac-form .form-select:focus {
  border-color: var(--ac-moss);
  box-shadow: 0 0 0 4px var(--ac-moss-ring);
}
.ac-form .form-check-input:checked { background-color: var(--ac-moss); border-color: var(--ac-moss); }

/* modal skin */
.ac-modal .modal-content { border: 0; border-radius: var(--ac-r-xl); box-shadow: var(--ac-shadow-lg); }
.ac-modal .modal-title { font-family: var(--ac-font-display); font-weight: 560; color: var(--ac-ink); }

/* ============================================================
   FOOTER
   ============================================================ */
.ac-footer {
  background: var(--ac-ink);
  color: rgba(255, 255, 255, 0.78);
  padding: 72px 0 36px;
  font-size: 0.92rem;
}
.ac-footer a { color: rgba(255, 255, 255, 0.78); text-decoration: none; transition: color 0.14s ease; }
.ac-footer a:hover { color: #fff; }
.ac-footer__brand img { height: 46px; width: auto; object-fit: contain; }
.ac-footer__tag { color: rgba(255, 255, 255, 0.55); font-size: 0.85rem; }
.ac-footer__title {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--ac-teal-bright);
  margin-bottom: 16px;
}
.ac-footer__links { list-style: none; margin: 0; padding: 0; }
.ac-footer__links li { margin-bottom: 10px; }
.ac-footer__contact { line-height: 1.7; }
.ac-footer__social { display: flex; gap: 12px; }
.ac-footer__social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.ac-footer__social a:hover { background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.5); }
.ac-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 48px;
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

/* WhatsApp float (kept site-wide, stacked above the chatbot toggle) */
.whatsapp-float {
  position: fixed;
  bottom: 90px;
  right: 20px;
  z-index: 1040;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  transition: transform 0.18s ease;
}
.whatsapp-float:hover { transform: scale(1.08); color: #fff; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.ac-pagehero {
  background: var(--ac-ink);
  color: #fff;
  padding: 76px 0 64px;
  position: relative;
  overflow: hidden;
}
.ac-pagehero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(720px 300px at 85% -20%, rgba(23, 162, 148, 0.22), transparent 60%),
    radial-gradient(600px 280px at -10% 120%, rgba(46, 93, 73, 0.35), transparent 60%);
  pointer-events: none;
}
.ac-pagehero .ac-container { position: relative; z-index: 1; }
.ac-pagehero h1 {
  font-family: var(--ac-font-display);
  font-weight: 560;
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
  letter-spacing: -0.015em;
  line-height: 1.12;
  margin: 14px 0 14px;
}
.ac-pagehero p { font-size: 1.05rem; line-height: 1.65; color: rgba(255, 255, 255, 0.8); max-width: 640px; }
.ac-pagehero .ac-eyebrow { color: var(--ac-teal-bright); }

/* ============================================================
   ANIMATIONS  (data-anim reveal)
   ============================================================ */
[data-anim] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s cubic-bezier(0.2, 0.6, 0.2, 1), transform 0.6s cubic-bezier(0.2, 0.6, 0.2, 1);
}
[data-anim].is-inview { opacity: 1; transform: none; }
[data-anim-delay="1"] { transition-delay: 0.08s; }
[data-anim-delay="2"] { transition-delay: 0.16s; }
[data-anim-delay="3"] { transition-delay: 0.24s; }
[data-anim-delay="4"] { transition-delay: 0.32s; }
[data-anim-delay="5"] { transition-delay: 0.4s; }
@media (prefers-reduced-motion: reduce) {
  [data-anim] { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991.98px) {
  .cinhero__grid { grid-template-columns: 1fr; gap: 36px; padding-top: 64px; padding-bottom: 64px; min-height: 0; }
  .prods__grid--two,
  .prods__grid--three { grid-template-columns: 1fr 1fr; }
  .whyus__grid { grid-template-columns: 1fr 1fr; }
  .acsteps { grid-template-columns: 1fr 1fr; }
  .prods__featured-inner { grid-template-columns: 1fr; padding: 36px; }
  .prods__featured-stack { min-height: 260px; }
  .homecalc__grid { grid-template-columns: 1fr; }
  .ac-nav .ac-nav-cta { margin: 10px 0 4px; }
}
@media (max-width: 575.98px) {
  .ac-section, .prods, .whyus, .homecalc { padding: 60px 0; }
  .prods__grid--two,
  .prods__grid--three { grid-template-columns: 1fr; }
  .whyus__grid { grid-template-columns: 1fr; }
  .acsteps { grid-template-columns: 1fr; }
  .cinhero__trust { gap: 18px; }
  .cinhero__trust-sep { display: none; }
  .homecalc__result { grid-template-columns: 1fr; }
  .prods__featured-stack-card { width: 200px; }
  .prods__featured-stack-card--back { right: 90px; }
  .prods__featured-stack-card--mid { right: 45px; }
}
