/* ============================================================
   Callcorico — COMPONENTS
   Layout · Navigation · Buttons · Cards · Sections · Footer · Animations · Utilities
   ============================================================ */

/* ─── 01. Layout & Container ─────────────────────────────────── */

.anv-container {
  width: min(100% - 48px, 1440px);
  margin-inline: auto;
  padding-left: 96px;
  padding-right: 96px;
}

.anv-container-narrow {
  width: min(100% - 48px, 1180px);
  margin-inline: auto;
  padding-left: 48px;
  padding-right: 48px;
}

.anv-grid-12 {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: 24px;
}

@media (max-width: 1024px) {
  .anv-container { padding-left: 48px; padding-right: 48px; }
}

@media (max-width: 768px) {
  .anv-container        { padding-left: 24px; padding-right: 24px; width: 100%; }
  .anv-container-narrow { padding-left: 24px; padding-right: 24px; width: 100%; }
}

/* ─── 02. Navigation ─────────────────────────────────────────── */

.anv-nav {
  position: fixed;
  left: 50%;
  right: auto;
  top: 30px;
  width: 90%;
  height: 74px;
  transform: translateX(-50%);
  z-index: var(--z-nav);
  display: flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(239, 239, 239, 0.42) !important;
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid rgba(18, 36, 53, 0.08);
  box-shadow: none !important;
  transition: background var(--duration-base) var(--ease-v2);
}

.anv-nav .anv-container {
  width: 100%;
  padding-left: 22px;
  padding-right: 22px;
}

.anv-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  position: relative;
}

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

.anv-nav-logo picture,
.anv-footer-brand picture {
  display: block;
  line-height: 0;
}

.anv-brand-logo {
  width: 158px;
  height: auto;
  max-height: 46px;
  object-fit: contain;
}

.anv-footer-brand .anv-brand-logo {
  width: 140px;
  max-height: 56px;
}

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

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

.anv-nav-item {
  position: relative;
  display: flex;
  align-items: center;
}

.anv-nav-link {
  font-size: 14px;
  font-weight: 500;
  color: rgba(18, 36, 53, 0.62);
  letter-spacing: -0.01em;
  position: relative;
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-v2);
}

.anv-nav-link:hover,
.anv-nav-link.is-active { color: #122435; }

.anv-nav-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 1px;
  background: var(--v2-purple);
  transition: width var(--duration-base) var(--ease-v2);
}

.anv-nav-link:hover::after { width: 100%; }

.anv-submenu-caret {
  display: inline-block;
  width: 7px; height: 7px;
  margin-left: 8px;
  margin-top: -4px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform 160ms ease-out;
}

.anv-nav-item:hover > .anv-nav-link .anv-submenu-caret,
.anv-nav-item:focus-within > .anv-nav-link .anv-submenu-caret {
  transform: rotate(225deg);
  margin-top: 3px;
}

.anv-nav-submenu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  z-index: 50;
  min-width: 260px;
  margin: 0; padding: 12px;
  list-style: none;
  border-radius: 22px;
  background: rgba(239, 239, 239, 0.78);
  border: 1px solid rgba(18, 36, 53, 0.1);
  box-shadow: 0 26px 80px rgba(18, 36, 53, 0.16);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 10px) scale(0.98);
  transition:
    opacity 160ms ease-out,
    transform 180ms cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0s linear 180ms;
}

.anv-nav-item:hover > .anv-nav-submenu,
.anv-nav-item:focus-within > .anv-nav-submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0) scale(1);
  transition-delay: 0s;
}

.anv-nav-submenu .anv-nav-item { display: block; }

.anv-nav-submenu .anv-nav-link {
  display: flex;
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  color: rgba(18, 36, 53, 0.72);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.anv-nav-submenu .anv-nav-link::after { display: none; }
.anv-nav-submenu .anv-nav-link:hover { background: rgba(18, 36, 53, 0.07); color: #122435; }

.anv-nav-item.mega-menu { position: static; }
.anv-nav-item.mega-menu > .anv-nav-submenu {
  width: min(760px, calc(100vw - 64px));
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 18px;
}

.anv-nav-cta {
  height: 40px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(18, 36, 53, 0.92);
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: transform var(--duration-fast) var(--ease-v2), box-shadow var(--duration-fast) var(--ease-v2);
}

.anv-nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(18, 36, 53, 0.18);
}

.anv-nav-cta .arrow { font-size: 16px; transition: transform var(--duration-fast) var(--ease-v2); }
.anv-nav-cta:hover .arrow { transform: translateX(2px); }

.anv-nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.anv-nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--v2-text);
  border-radius: 2px;
  transition: all var(--duration-base) var(--ease-v2);
}

.anv-mobile-menu {
  display: none;
  position: fixed;
  top: calc(30px + 74px + 8px);
  left: 0;
  right: 0;
  background: rgba(239, 239, 239, 0.98);
  backdrop-filter: var(--backdrop-glass);
  padding: 24px;
  border-bottom: 1px solid rgba(18, 36, 53, 0.08);
  z-index: calc(var(--z-nav) - 1);
  flex-direction: column;
  gap: 16px;
}

.anv-mobile-menu.is-open { display: flex; }

.anv-mobile-links { display: flex; flex-direction: column; gap: 4px; margin: 0; padding: 0; list-style: none; }
.anv-mobile-item  { width: 100%; }

.anv-mobile-submenu {
  margin: 4px 0 10px 14px;
  padding-left: 14px;
  list-style: none;
  border-left: 1px solid rgba(18, 36, 53, 0.14);
}

.anv-mobile-submenu .anv-nav-link { font-size: 14px; padding: 10px 0; opacity: 0.78; }
.anv-mobile-menu .anv-nav-link    { font-size: 16px; padding: 12px 0; border-bottom: 1px solid rgba(18, 36, 53, 0.06); }

.anv-mobile-cta {
  margin-top: 8px;
  justify-content: center;
  height: 48px;
  width: 100%;
}

@media (max-width: 768px) {
  .anv-nav {
    top: 16px;
    width: calc(100% - 24px);
    height: 68px;
  }

  .anv-nav .anv-container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .anv-brand-logo { max-height: 40px; }

  .anv-mobile-menu { top: calc(16px + 68px + 8px); }

  .anv-nav-links { display: none; }
  .anv-nav-cta   { display: none; }
  .anv-nav-hamburger { display: flex; }
}

/* ─── 03. Buttons ────────────────────────────────────────────── */

.anv-btn-primary {
  height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  background: #122435;
  color: #EFEFEF;
  border: 1px solid #122435;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 16px 40px rgba(18, 36, 53, 0.18);
  text-decoration: none;
  cursor: pointer;
  font-family: var(--font-sans);
  position: relative;
  transition: transform var(--duration-base) var(--ease-v2), box-shadow var(--duration-base) var(--ease-v2);
}

.anv-btn-primary::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 2px;
  background: #CC361E;
  flex-shrink: 0;
}

.anv-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 52px rgba(18, 36, 53, 0.24), 0 0 0 4px rgba(34, 71, 102, 0.08);
}

.anv-btn-primary:active { transform: translateY(0); }

.anv-btn-secondary {
  color: #122435;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  text-decoration: none;
  font-family: var(--font-sans);
  cursor: pointer;
  background: none;
  border: none;
  transition: color var(--duration-fast) var(--ease-v2);
}

.anv-btn-secondary::after {
  content: "";
  position: absolute;
  left: 0; bottom: -5px;
  height: 1px; width: 100%;
  background: rgba(18, 36, 53, 0.22);
  transition: background var(--duration-fast) var(--ease-v2);
}

.anv-btn-secondary:hover { color: var(--v2-purple); }
.anv-btn-secondary:hover::after { background: var(--v2-purple); }

.anv-btn-secondary-outline {
  height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
  color: #122435;
  border: 1px solid rgba(18, 36, 53, 0.14);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  cursor: pointer;
  font-family: var(--font-sans);
  transition: border-color var(--duration-fast) var(--ease-v2), background var(--duration-fast) var(--ease-v2);
}

.anv-btn-secondary-outline:hover {
  border-color: rgba(34, 71, 102, 0.35);
  background: rgba(34, 71, 102, 0.06);
}

.anv-btn-nav {
  height: 40px;
  padding: 0 18px;
  border-radius: 999px;
  background: #122435;
  color: #EFEFEF;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  cursor: pointer;
  font-family: var(--font-sans);
  transition: transform var(--duration-fast) var(--ease-v2), box-shadow var(--duration-fast) var(--ease-v2);
}

.anv-btn-nav:hover { transform: translateY(-1px); box-shadow: 0 12px 32px rgba(18, 36, 53, 0.18); }

@media (max-width: 640px) {
  .anv-btn-primary,
  .anv-btn-secondary-outline { width: 100%; justify-content: center; }
}

/* ─── 04. Hero Section ───────────────────────────────────────── */

.anv-hero {
  background: var(--v2-bg);
  color: var(--v2-text);
  min-height: 920px;
  position: relative;
  overflow: hidden;
  padding-top: 84px;
}

.anv-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(18, 36, 53, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 36, 53, 0.035) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  z-index: 0;
}

.anv-hero::after {
  content: "";
  position: absolute;
  right: 10%; top: 22%;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(34, 71, 102, 0.14), rgba(34, 71, 102, 0) 68%);
  pointer-events: none;
  z-index: 0;
}

.anv-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  align-items: center;
  padding-top: 72px;
  padding-bottom: 64px;
}

.anv-hero-copy   { grid-column: span 5; max-width: 620px; }
.anv-hero-visual { grid-column: span 7; position: relative; }

.anv-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  font-size: 11px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--v2-purple);
}

.anv-eyebrow::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 2px;
  background: var(--v2-yellow);
  flex-shrink: 0;
}

.anv-hero-title {
  font-family: var(--font-display);
  font-size: var(--h1-size);
  line-height: var(--h1-line-height);
  letter-spacing: -0.045em;
  font-weight: 600;
  color: var(--v2-text);
  margin-bottom: 28px;
}

.anv-hero-title .highlight { color: var(--v2-purple); }

.anv-hero-subtitle {
  max-width: 560px;
  font-size: 18px;
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: rgba(18, 36, 53, 0.66);
  margin-bottom: 36px;
}

.anv-hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 44px;
}

.anv-trust-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.anv-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(18, 36, 53, 0.56);
}

.anv-trust-icon {
  width: 26px; height: 26px;
  border-radius: 8px;
  background: rgba(34, 71, 102, 0.08);
  color: var(--v2-purple);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .anv-hero-inner {
    grid-template-columns: 1fr;
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .anv-hero-copy,
  .anv-hero-visual { grid-column: span 1; }
  .anv-hero-title  { font-size: clamp(2.75rem, 12vw, 4rem); line-height: 0.98; }
  .anv-hero-subtitle { font-size: 16px; }
  .anv-hero-actions { flex-direction: column; align-items: stretch; }
}

/* ─── 05. Feature Grid / System Map ──────────────────────────── */

.anv-feature-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: auto auto;
  gap: 16px;
  align-items: stretch;
}

.anv-feature-card {
  position: relative;
  z-index: 2;
  min-height: 190px;
  border-radius: 24px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform var(--duration-base) var(--ease-v2), box-shadow var(--duration-base) var(--ease-v2), border-color var(--duration-base) var(--ease-v2);
  cursor: default;
}

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

.anv-feature-card--light {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(18, 36, 53, 0.12);
  box-shadow: 0 20px 60px rgba(18, 36, 53, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.76);
}

.anv-feature-card--light:hover { border-color: rgba(34, 71, 102, 0.28); box-shadow: 0 24px 72px rgba(18, 36, 53, 0.1); }

.anv-feature-card--dark {
  background: rgba(255, 255, 255, 0.82);
  color: var(--v2-text);
  border: 1px solid rgba(34, 71, 102, 0.28);
  box-shadow: 0 20px 60px rgba(18, 36, 53, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.76);
}

.anv-feature-card--dark:hover { border-color: rgba(204, 54, 30, 0.38); box-shadow: 0 24px 72px rgba(18, 36, 53, 0.12); }

.anv-feature-card--accent {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.94) 0%, rgba(239, 239, 239, 0.72) 100%);
  color: var(--v2-text);
  border: 1px solid rgba(204, 54, 30, 0.32);
  box-shadow: 0 24px 64px rgba(18, 36, 53, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.anv-card-number { font-size: 12px; font-weight: 600; color: rgba(18, 36, 53, 0.42); margin-bottom: 16px; letter-spacing: 0.04em; }
.anv-feature-card--dark .anv-card-number,
.anv-feature-card--accent .anv-card-number { color: var(--v2-yellow); }

.anv-card-title { font-size: 18px; line-height: 1.2; font-weight: 600; letter-spacing: -0.025em; margin-bottom: 8px; color: var(--v2-text); }
.anv-card-body  { font-size: 14px; line-height: 1.55; font-weight: 400; color: rgba(18, 36, 53, 0.62); }

.anv-card-icon {
  width: 36px; height: 36px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-top: 20px;
  background: rgba(34, 71, 102, 0.08);
  color: var(--v2-purple);
  flex-shrink: 0;
}

.anv-feature-card--dark .anv-card-icon,
.anv-feature-card--accent .anv-card-icon { background: rgba(204, 54, 30, 0.1); color: var(--v2-yellow); }

.anv-core-block {
  position: relative;
  z-index: 2;
  min-height: 210px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(18, 36, 53, 0.12);
  display: grid;
  place-items: center;
  box-shadow: 0 28px 72px rgba(18, 36, 53, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.76);
  transition: box-shadow var(--duration-base) var(--ease-v2);
}

.anv-core-block:hover { box-shadow: 0 32px 84px rgba(18, 36, 53, 0.16); }
.anv-core-logo { width: 84px; height: 84px; display: flex; align-items: center; justify-content: center; }
.anv-core-logo img { width: 84px; height: 84px; object-fit: contain; }

.anv-feature-grid-lines {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 1;
  width: 100%; height: 100%;
  overflow: visible;
}

.anv-connector-line {
  stroke: rgba(34, 71, 102, 0.32);
  stroke-width: 1;
  stroke-dasharray: 4 6;
  fill: none;
  animation: drawLine 1.4s var(--ease-v2) forwards;
  stroke-dashoffset: 400;
}

@keyframes drawLine { to { stroke-dashoffset: 0; } }

.anv-node {
  width: 7px; height: 7px;
  border-radius: 2px;
  background: var(--v2-yellow);
  box-shadow: 0 0 16px rgba(204, 54, 30, 0.45);
  position: absolute;
  z-index: 3;
}

@media (max-width: 768px) {
  .anv-feature-grid { grid-template-columns: 1fr; gap: 12px; }
  .anv-feature-grid-lines { display: none; }
  .anv-core-block   { min-height: 160px; order: -1; }
  .anv-feature-card { min-height: auto; }
}

/* ─── 06. Before / After Comparison ──────────────────────────── */

.anv-before-after {
  display: grid;
  grid-template-columns: 1fr 0.72fr 1fr;
  gap: 24px;
  align-items: stretch;
  margin-top: 80px;
  position: relative;
}

.anv-before-card    { background: rgba(255, 255, 255, 0.66); border: 1px solid rgba(18, 36, 53, 0.12); border-radius: 28px; padding: 28px; box-shadow: 0 20px 60px rgba(18, 36, 53, 0.06); }
.anv-transform-card { background: rgba(255, 255, 255, 0.84); border: 1px solid rgba(204, 54, 30, 0.28); border-radius: 28px; padding: 28px; color: var(--v2-text); box-shadow: 0 24px 72px rgba(18, 36, 53, 0.1); }
.anv-after-card     { background: rgba(255, 255, 255, 0.78); border: 1px solid rgba(34, 71, 102, 0.22); border-radius: 28px; padding: 28px; box-shadow: 0 20px 60px rgba(18, 36, 53, 0.07), 0 0 0 1px rgba(34, 71, 102, 0.04); }

.anv-comparison-label  { font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(18, 36, 53, 0.42); margin-bottom: 12px; }
.anv-transform-card .anv-comparison-label { color: var(--v2-yellow); }
.anv-comparison-title  { font-size: 22px; line-height: 1.15; font-weight: 600; letter-spacing: -0.035em; margin-bottom: 8px; color: var(--v2-text); }
.anv-comparison-text   { font-size: 14px; line-height: 1.55; color: rgba(18, 36, 53, 0.62); margin-bottom: 24px; }

.anv-chip-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.anv-chip-before { min-height: 38px; padding: 10px 12px; border-radius: 12px; background: rgba(18, 36, 53, 0.045); color: rgba(18, 36, 53, 0.64); font-size: 13px; font-weight: 500; }
.anv-chip-after  { min-height: 38px; padding: 10px 12px; border-radius: 12px; background: rgba(34, 71, 102, 0.075); color: #122435; font-size: 13px; font-weight: 500; }

.anv-transform-list  { display: grid; gap: 12px; margin-top: 24px; }
.anv-transform-item  { display: flex; align-items: center; gap: 10px; font-size: 14px; color: rgba(18, 36, 53, 0.72); }
.anv-transform-item::before { content: ""; width: 6px; height: 6px; border-radius: 2px; background: var(--v2-yellow); flex-shrink: 0; }

@media (max-width: 768px) {
  .anv-before-after { grid-template-columns: 1fr; gap: 16px; margin-top: 40px; }
  .anv-chip-grid    { grid-template-columns: 1fr; }
}

/* ─── 07. Sections ───────────────────────────────────────────── */

.anv-section {
  padding-block: 128px;
  background: var(--v2-bg);
}

.anv-section--light { background: var(--v2-bg-soft); }

.anv-section-header {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  margin-bottom: 64px;
  align-items: start;
}

.anv-section-title {
  grid-column: span 7;
  font-family: var(--font-display);
  font-size: var(--h2-size);
  line-height: var(--h2-line-height);
  letter-spacing: -0.042em;
  font-weight: 600;
  color: var(--v2-text);
}

.anv-section-intro {
  grid-column: 9 / span 4;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(18, 36, 53, 0.64);
  padding-top: 8px;
}

.anv-section-intro a { color: var(--v2-purple); text-decoration: underline; text-underline-offset: 2px; }

.anv-dark-band {
  background: rgba(255, 255, 255, 0.84);
  color: var(--v2-text);
  border: 1px solid rgba(18, 36, 53, 0.12);
  border-radius: 40px;
  padding: 72px;
  position: relative;
  overflow: hidden;
  margin-inline: 48px;
  box-shadow: var(--shadow-card-light);
}

.anv-dark-band::after {
  content: "";
  position: absolute;
  right: -120px; bottom: -120px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(204, 54, 30, 0.12), transparent 68%);
  pointer-events: none;
}

.anv-trust-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 24px 0;
  border-top: 1px solid rgba(18, 36, 53, 0.1);
  border-bottom: 1px solid rgba(18, 36, 53, 0.1);
}

.anv-trust-strip-label { font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(18, 36, 53, 0.42); white-space: nowrap; }

.anv-trust-logos { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }

.anv-trust-logo-item {
  font-size: 14px;
  font-weight: 600;
  color: rgba(18, 36, 53, 0.36);
  letter-spacing: -0.01em;
  transition: color var(--duration-fast) var(--ease-v2);
}

.anv-trust-logo-item:hover { color: rgba(18, 36, 53, 0.6); }

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

@media (max-width: 1024px) { .anv-card-grid-3 { grid-template-columns: repeat(2, 1fr); } }

@media (max-width: 768px) {
  .anv-section { padding-block: 72px; }
  .anv-section-header { grid-template-columns: 1fr; gap: 16px; }
  .anv-section-title  { grid-column: span 1; }
  .anv-section-intro  { grid-column: span 1; }
  .anv-card-grid-3,
  .anv-card-grid-2  { grid-template-columns: 1fr; }
  .anv-dark-band    { border-radius: 24px; padding: 40px 24px; margin-inline: 0; }
  .anv-trust-strip  { flex-direction: column; align-items: flex-start; }
  .anv-trust-logos  { gap: 20px; }
}

/* ─── 08. Process Cards ──────────────────────────────────────── */

.anv-process-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(18, 36, 53, 0.1);
  border-radius: 24px;
  padding: 28px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform var(--duration-base) var(--ease-v2), box-shadow var(--duration-base) var(--ease-v2);
}

.anv-process-card:hover { transform: translateY(-4px); box-shadow: 0 24px 72px rgba(18, 36, 53, 0.1); }
.anv-process-number { font-size: 13px; font-weight: 600; color: var(--v2-purple); margin-bottom: 32px; letter-spacing: 0.04em; }
.anv-process-title  { font-size: 24px; line-height: 1.12; font-weight: 600; letter-spacing: -0.035em; margin-bottom: 14px; color: var(--v2-text); }
.anv-process-text   { font-size: 15px; line-height: 1.6; color: rgba(18, 36, 53, 0.62); }

/* ─── 09. Badges & Tags ──────────────────────────────────────── */

.anv-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.anv-badge--purple { background: rgba(34, 71, 102, 0.1);  color: var(--v2-purple); border: 1px solid rgba(34, 71, 102, 0.2); }
.anv-badge--blue   { background: rgba(34, 71, 102, 0.1);  color: #224766;          border: 1px solid rgba(34, 71, 102, 0.2); }
.anv-badge--yellow { background: rgba(204, 54, 30, 0.12); color: #CC361E;          border: 1px solid rgba(204, 54, 30, 0.3); }
.anv-badge--dark   { background: var(--v2-text);          color: var(--v2-bg);     border: 1px solid transparent; }

/* ─── 10. Page Layout Helpers ────────────────────────────────── */

.anv-template-section { padding-top: calc(var(--nav-height) + 72px); min-height: 70vh; }
.anv-page-hero        { padding-top: calc(var(--nav-height) + 72px); }

.anv-split-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.45fr);
  gap: 56px;
  align-items: stretch;
}

.anv-metric-panel,
.anv-seo-aside {
  border: var(--border-thin-light);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow-card-light);
  padding: 32px;
}

.anv-metric-panel span {
  display: block;
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 0.95;
  letter-spacing: -0.045em;
  color: var(--v2-purple);
  font-weight: 600;
}

/* ─── 11. Mosaic Grids ───────────────────────────────────────── */

.anv-case-mosaic,
.anv-resource-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.anv-case-card,
.anv-resource-grid article {
  min-height: 280px;
  padding: 28px;
  border-radius: 24px;
  border: var(--border-thin-light);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-card-light);
}

.anv-case-card--wide { grid-column: span 2; background: rgba(255, 255, 255, 0.84); border-color: rgba(204, 54, 30, 0.28); }

.anv-seo-aside h2,
.anv-resource-grid h2,
.anv-case-card h2 { font-size: clamp(1.45rem, 2vw, 2rem); line-height: 1.08; letter-spacing: -0.032em; }

.anv-case-card span,
.anv-resource-grid span {
  display: inline-flex;
  margin-bottom: 18px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--v2-purple);
  font-weight: 700;
}

.anv-case-card--wide span { color: var(--color-vibrant-yellow); }

.anv-case-card strong     { display: inline-flex; margin-top: 18px; color: var(--v2-purple); }
.anv-case-card--wide strong { color: var(--color-vibrant-yellow); }
.anv-resource-grid a      { display: inline-flex; margin-top: 18px; color: var(--v2-purple); font-weight: 600; }

/* ─── 12. Form Band ──────────────────────────────────────────── */

.anv-form-band {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.72fr);
  gap: 40px;
  align-items: start;
  padding: 48px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.76);
  border: var(--border-thin-light);
  box-shadow: var(--shadow-dashboard);
}

.anv-lead-form {
  display: grid;
  gap: 18px;
  width: 100%;
  padding: 24px;
  border-radius: 24px;
  background: var(--color-white-soft);
  border: var(--border-thin-light);
  box-shadow: var(--shadow-card-light);
}

.anv-form-head p:last-child { color: var(--v2-text-muted); margin-top: -8px; }

.anv-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.anv-form-grid label { display: grid; gap: 7px; font-size: 13px; font-weight: 600; color: var(--v2-text); }

.anv-form-grid input,
.anv-form-grid select,
.anv-form-grid textarea {
  width: 100%;
  border: 1px solid rgba(18, 36, 53, 0.14);
  border-radius: 14px;
  background: #fff;
  padding: 12px 13px;
  color: var(--v2-text);
  outline: none;
  font-family: var(--font-sans);
}

.anv-form-grid input:focus,
.anv-form-grid select:focus,
.anv-form-grid textarea:focus {
  border-color: var(--v2-purple);
  box-shadow: 0 0 0 4px rgba(34, 71, 102, 0.1);
}

.anv-form-full { grid-column: 1 / -1; }
.anv-consent   { grid-template-columns: 18px 1fr !important; align-items: start; color: var(--v2-text-muted) !important; font-weight: 500 !important; }
.anv-hp-field  { display: none; }
.anv-form-status { min-height: 22px; color: var(--v2-purple); font-weight: 600; }

/* ─── 13. FAQ ────────────────────────────────────────────────── */

.anv-faq-list { display: grid; gap: 12px; margin-top: 32px; }

.anv-faq-item {
  border: var(--border-thin-light);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
  padding: 18px 22px;
}

.anv-faq-item summary { cursor: pointer; font-weight: 600; letter-spacing: -0.02em; }
.anv-faq-item p { margin-top: 12px; color: var(--v2-text-muted); }

/* ─── 14. Editorial Page ─────────────────────────────────────── */

.anv-editorial-page h2 { margin-top: 48px; margin-bottom: 14px; font-size: clamp(1.8rem, 2.5vw, 2.7rem); letter-spacing: -0.035em; }
.anv-editorial-page p  { font-size: 18px; line-height: 1.75; color: var(--v2-text-muted); }

/* ─── 15. Footer ─────────────────────────────────────────────── */

.anv-footer {
  background: var(--v2-bg);
  color: var(--v2-text);
  padding: 64px 0 32px;
  border-top: 1px solid rgba(18, 36, 53, 0.1);
}

.anv-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}

.anv-footer-brand p { font-size: 15px; line-height: 1.6; color: rgba(18, 36, 53, 0.62); margin-top: 16px; max-width: 280px; }
.anv-footer-col-title { font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(18, 36, 53, 0.46); margin-bottom: 20px; }
.anv-footer-links { display: flex; flex-direction: column; gap: 12px; }

.anv-footer-link { font-size: 14px; font-weight: 500; color: rgba(18, 36, 53, 0.68); text-decoration: none; transition: color var(--duration-fast) var(--ease-v2); }
.anv-footer-link:hover { color: var(--v2-purple); }

.anv-footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 32px; border-top: 1px solid rgba(18, 36, 53, 0.1); }
.anv-footer-tagline { display: flex; gap: 24px; font-size: 12px; letter-spacing: 0.04em; text-transform: uppercase; color: rgba(18, 36, 53, 0.5); }
.anv-footer-meta    { font-size: 12px; color: rgba(18, 36, 53, 0.52); }

@media (max-width: 768px) {
  .anv-footer-grid    { grid-template-columns: 1fr 1fr; gap: 40px; }
  .anv-footer-brand   { grid-column: span 2; }
  .anv-footer-bottom  { flex-direction: column; gap: 16px; align-items: flex-start; }
  .anv-footer-tagline { flex-direction: column; gap: 8px; }
}

@media (max-width: 480px) {
  .anv-footer-grid  { grid-template-columns: 1fr; }
  .anv-footer-brand { grid-column: span 1; }
}

/* ─── 16. Pagination ─────────────────────────────────────────── */

.anv-pagination { margin-top: 48px; }
.anv-pagination .nav-links { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.anv-pagination a,
.anv-pagination span { border: var(--border-thin-light); border-radius: var(--radius-pill); padding: 10px 14px; }
.anv-pagination .current { background: var(--color-deep-plum); color: var(--color-white-soft); }

/* ─── 17. Animations — Reveal on Scroll ──────────────────────── */

.anv-reveal,
html.anv-js .anv-reveal,
.anv-reveal.is-visible {
  opacity: 1;
  transform: none;
}

.anv-reveal-delay-1 { transition-delay: 80ms; }
.anv-reveal-delay-2 { transition-delay: 160ms; }
.anv-reveal-delay-3 { transition-delay: 240ms; }
.anv-reveal-delay-4 { transition-delay: 320ms; }
.anv-reveal-delay-5 { transition-delay: 400ms; }
.anv-reveal-delay-6 { transition-delay: 480ms; }

.anv-hero-eyebrow      { animation: heroFadeUp 0.6s var(--ease-v2) 0.20s both; }
.anv-hero-title-anim   { animation: heroFadeUp 0.7s var(--ease-v2) 0.35s both; }
.anv-hero-subtitle-anim{ animation: heroFadeUp 0.6s var(--ease-v2) 0.50s both; }
.anv-hero-actions-anim { animation: heroFadeUp 0.6s var(--ease-v2) 0.65s both; }
.anv-hero-trust-anim   { animation: heroFadeUp 0.6s var(--ease-v2) 0.75s both; }
.anv-hero-visual-anim  { animation: heroFadeUp 0.8s var(--ease-v2) 0.40s both; }

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

.anv-fc-1    { animation: heroFadeUp 0.6s var(--ease-v2) 0.50s both; }
.anv-fc-2    { animation: heroFadeUp 0.6s var(--ease-v2) 0.58s both; }
.anv-fc-3    { animation: heroFadeUp 0.6s var(--ease-v2) 0.66s both; }
.anv-fc-4    { animation: heroFadeUp 0.6s var(--ease-v2) 0.74s both; }
.anv-fc-5    { animation: heroFadeUp 0.6s var(--ease-v2) 0.82s both; }
.anv-fc-core { animation: heroFadeUp 0.7s var(--ease-v2) 0.90s both; }

/* ─── 18. Utilities ──────────────────────────────────────────── */

.text-purple { color: var(--v2-purple); }
.text-yellow { color: var(--v2-yellow); }
.text-muted  { color: var(--v2-text-muted); }
.text-light  { color: rgba(18, 36, 53, 0.64); }

.bg-ivory  { background: var(--v2-bg); }
.bg-white  { background: #ffffff; }
.bg-purple { background: var(--v2-purple); }

.rounded-card { border-radius: var(--radius-card); }
.rounded-pill { border-radius: var(--radius-pill); }

.anv-yellow-dot {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 2px;
  background: var(--v2-yellow);
  box-shadow: 0 0 12px rgba(204, 54, 30, 0.4);
}

.anv-divider { height: 1px; background: rgba(18, 36, 53, 0.08); border: none; margin: 0; }

.anv-entry-meta { display: flex; gap: 14px; color: var(--color-text-muted-light); margin-bottom: 18px; }
.anv-post-thumb { display: block; overflow: hidden; border-radius: 18px; margin-bottom: 20px; }
.anv-post-thumb img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }

/* ─── 19. Responsive — wide breakpoints ──────────────────────── */

@media (max-width: 900px) {
  .anv-split-hero,
  .anv-form-band,
  .anv-case-mosaic,
  .anv-resource-grid { grid-template-columns: 1fr; }
  .anv-case-card--wide { grid-column: span 1; }
  .anv-form-grid   { grid-template-columns: 1fr; }
  .anv-form-band   { padding: 24px; border-radius: 24px; }
}

@media (max-width: 640px) {
  .anv-template-section { padding-top: 112px; }
}
