/* ==========================================================================
   AGENT PAGE — Become an Insurance Agent
   Palette: Navy #13264b · Green #0d6936 · White #ffffff
   ========================================================================== */

:root {
  --ag-navy: #13264b;
  --ag-green: #0d6936;
  --ag-white: #ffffff;
  --ag-muted: rgba(19, 38, 75, 0.64);
  --ag-muted-light: rgba(255, 255, 255, 0.72);
  --ag-line: rgba(19, 38, 75, 0.12);
  --ag-line-light: rgba(255, 255, 255, 0.16);
}

.pb-btn-cta-agent {
  font-size: 0.75rem !important;
  padding: 10px 14px;
  letter-spacing: -0.015em;
}

@media (max-width: 1199px) {
  .pb-btn-cta-agent {
    font-size: 0.7rem !important;
    padding: 9px 12px;
  }
}

/* --------------------------------------------------------------------------
   Hero — matches homepage platform-hero inset + header breathing room
   -------------------------------------------------------------------------- */
.ag-hero {
  position: relative;
  min-height: min(85vh, 760px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ag-navy);
  color: var(--ag-white);
  /* Same shell as .platform-hero-section on homepage */
  margin: 10px;
  border-radius: 10px;
  padding: 48px 0 52px;
}

.ag-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  overflow: hidden;
}

.ag-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  transform: scale(1.04);
  transition: transform 8s cubic-bezier(0.16, 1, 0.3, 1);
  filter: brightness(1.08) contrast(1.04);
}

.ag-hero.is-ready .ag-hero-img {
  transform: scale(1);
}

.ag-hero-scrim {
  position: absolute;
  inset: 0;
  /* Lighter center so the person stays visible; keep left readable for copy */
  background:
    linear-gradient(90deg, rgba(19, 38, 75, 0.88) 0%, rgba(19, 38, 75, 0.45) 38%, rgba(19, 38, 75, 0.12) 55%, rgba(19, 38, 75, 0.28) 100%),
    linear-gradient(180deg, rgba(19, 38, 75, 0.18) 0%, rgba(19, 38, 75, 0.08) 45%, rgba(19, 38, 75, 0.72) 100%);
}

.ag-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  width: 100%;
  padding: 12px 16px 8px;
}

.ag-brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--ag-navy);
  background: var(--ag-white);
  border: 1px solid var(--ag-white);
  padding: 7px 15px;
  border-radius: 999px;
  margin: 0 0 16px;
  box-shadow: 0 6px 18px rgba(8, 16, 32, 0.25);
  opacity: 0;
  transform: translateY(16px);
  animation: agRise 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.15s forwards;
}

.ag-brand-mark i {
  color: var(--ag-green);
  font-size: 0.8rem;
}

.ag-hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.25rem, 4vw, 3.05rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--ag-white);
  margin: 0 0 12px;
  max-width: 14ch;
  opacity: 0;
  transform: translateY(20px);
  animation: agRise 0.75s cubic-bezier(0.16, 1, 0.3, 1) 0.28s forwards;
}

.ag-hero-sub {
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--ag-muted-light);
  max-width: 38ch;
  margin: 0 0 26px;
  opacity: 0;
  transform: translateY(16px);
  animation: agRise 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

.ag-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  opacity: 0;
  transform: translateY(16px);
  animation: agRise 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.52s forwards;
}

.ag-hero-panel {
  justify-self: end;
  width: 100%;
  max-width: 340px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--ag-line-light);
  border-radius: 20px;
  padding: 22px;
  backdrop-filter: blur(12px);
  opacity: 0;
  transform: translateY(24px);
  animation: agRise 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
}

.ag-live-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ag-white);
  margin-bottom: 18px;
}

.ag-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ag-green);
  box-shadow: 0 0 0 0 rgba(13, 105, 54, 0.55);
  animation: agPulse 1.8s ease-out infinite;
}

.ag-hero-stats {
  display: grid;
  gap: 14px;
}

.ag-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 12px;
  border-top: 1px solid var(--ag-line-light);
}

.ag-stat:first-of-type {
  border-top: none;
  padding-top: 0;
}

.ag-stat strong {
  font-family: var(--font-head);
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--ag-white);
  letter-spacing: -0.03em;
}

.ag-stat span {
  font-size: 0.82rem;
  color: var(--ag-muted-light);
  font-weight: 500;
}

.ag-hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.ag-hero-scroll span {
  display: block;
  width: 18px;
  height: 28px;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  position: relative;
}

.ag-hero-scroll span::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  width: 3px;
  height: 6px;
  margin-left: -1.5px;
  border-radius: 2px;
  background: var(--ag-green);
  animation: agScrollDot 1.6s ease-in-out infinite;
}

@keyframes agRise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes agPulse {
  0% { box-shadow: 0 0 0 0 rgba(13, 105, 54, 0.55); }
  70% { box-shadow: 0 0 0 10px rgba(13, 105, 54, 0); }
  100% { box-shadow: 0 0 0 0 rgba(13, 105, 54, 0); }
}

@keyframes agScrollDot {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(8px); opacity: 0.35; }
}

/* Buttons */
.ag-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--ag-green);
  color: var(--ag-white) !important;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 22px;
  border-radius: 999px;
  border: none;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}

.ag-btn-primary:hover {
  background: #0a552b;
  color: var(--ag-white) !important;
  transform: translateY(-1px);
}

.ag-btn-primary i {
  font-size: 0.75rem;
  transition: transform 0.25s ease;
}

.ag-btn-primary:hover i {
  transform: translateX(3px);
}

.ag-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ag-white) !important;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  text-decoration: none;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.ag-btn-ghost:hover {
  border-color: var(--ag-green);
  background: rgba(13, 105, 54, 0.18);
  color: var(--ag-white) !important;
}

.ag-btn-block {
  width: 100%;
}

/* Trust strip */
.ag-trust {
  background: var(--ag-white);
  border-bottom: 1px solid var(--ag-line);
  overflow: hidden;
}

.ag-trust-track {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 28px;
  padding: 18px 12px;
}

.ag-trust-track span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ag-navy);
}

.ag-trust-track i {
  color: var(--ag-green);
  font-size: 0.85rem;
}

/* Shared bands */
.ag-band {
  padding: 88px 0;
}

.ag-band-light {
  background: var(--ag-white);
  color: var(--ag-navy);
}

.ag-band-dark {
  background: var(--ag-navy);
  color: var(--ag-white);
}

.ag-section-head {
  max-width: 680px;
  margin: 0 auto 48px;
  text-align: center;
}

.ag-section-head--left {
  margin: 0 0 28px;
  text-align: left;
  max-width: 420px;
}

.ag-section-head--dark .pb-section-main-title {
  color: var(--ag-white) !important;
  -webkit-text-fill-color: var(--ag-white) !important;
}

.ag-section-head--dark .pb-section-main-title span {
  color: var(--ag-green);
  -webkit-text-fill-color: var(--ag-green);
}

.ag-section-sub {
  margin: 12px 0 0;
  font-size: 1.08rem;
  line-height: 1.65;
  color: var(--ag-muted);
}

.ag-section-head--dark .ag-section-sub {
  color: var(--ag-muted-light);
}

.ag-pill {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ag-green);
  border: 1px solid rgba(13, 105, 54, 0.35);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.ag-pill--light {
  color: var(--ag-white);
  border-color: rgba(255, 255, 255, 0.28);
}

/* Feature grid */
.ag-feature-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
}

.ag-feature {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--ag-line);
  border-radius: 20px;
  background: var(--ag-white);
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.ag-feature:hover {
  border-color: rgba(13, 105, 54, 0.45);
  transform: translateY(-3px);
}

.ag-feature--wide {
  grid-row: span 2;
  display: grid;
  grid-template-rows: 1.1fr auto;
}

.ag-feature-visual {
  position: relative;
  overflow: hidden;
  min-height: 200px;
  background: var(--ag-navy);
}

.ag-feature--wide .ag-feature-visual {
  min-height: 320px;
}

.ag-feature-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.ag-feature:hover .ag-feature-visual img {
  transform: scale(1.05);
}

.ag-feature-copy {
  padding: 24px 22px 26px;
}

.ag-feature-copy h3 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
  color: var(--ag-navy);
}

.ag-feature-copy p {
  margin: 0;
  color: var(--ag-muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

.ag-check-list {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.ag-check-list li {
  position: relative;
  padding-left: 22px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ag-navy);
}

.ag-check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ag-green);
}

/* Path / steps */
.ag-path {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 28px;
}

.ag-path-step {
  text-align: left;
  background: transparent;
  border: 1px solid var(--ag-line-light);
  border-radius: 16px;
  padding: 18px 16px;
  color: var(--ag-white);
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.ag-path-step:hover {
  border-color: rgba(13, 105, 54, 0.55);
}

.ag-path-step.active {
  background: var(--ag-green);
  border-color: var(--ag-green);
}

.ag-path-num {
  display: block;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  opacity: 0.7;
  margin-bottom: 8px;
}

.ag-path-step strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.ag-path-step small {
  font-size: 0.78rem;
  opacity: 0.75;
}

.ag-path-stage {
  position: relative;
  min-height: 260px;
}

.ag-path-panel {
  display: none;
  grid-template-columns: 1.1fr 1fr;
  gap: 28px;
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--ag-line-light);
  border-radius: 20px;
  overflow: hidden;
  animation: agPanelIn 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.ag-path-panel.active {
  display: grid;
}

.ag-path-panel img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.ag-path-panel > div {
  padding: 8px 28px 8px 8px;
}

.ag-path-panel h3 {
  font-family: var(--font-head);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--ag-white);
  margin: 0 0 10px;
}

.ag-path-panel p {
  margin: 0;
  color: var(--ag-muted-light);
  font-size: 1.02rem;
  line-height: 1.65;
}

@keyframes agPanelIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Calculator */
.ag-calc-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.ag-calc-copy .ag-section-sub {
  max-width: 42ch;
}

.ag-eligible-block {
  margin-top: 28px;
}

.ag-eligible-label {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ag-navy);
  margin: 0 0 12px;
}

.ag-eligible-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ag-tag {
  border: 1px solid var(--ag-line);
  background: var(--ag-white);
  color: var(--ag-navy);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.ag-tag:hover,
.ag-tag.active {
  background: var(--ag-navy);
  border-color: var(--ag-navy);
  color: var(--ag-white);
}

.ag-calc-board {
  background: var(--ag-navy);
  color: var(--ag-white);
  border-radius: 20px;
  padding: 18px 20px 18px;
  box-shadow: 0 24px 50px -20px rgba(19, 38, 75, 0.45);
}

.ag-calc-field {
  margin-bottom: 12px;
}

.ag-calc-label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 6px;
}

.ag-calc-label span {
  font-size: 0.82rem;
  color: var(--ag-muted-light);
  font-weight: 500;
}

.ag-calc-label strong {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--ag-white);
}

.ag-calc-board input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  outline: none;
  cursor: pointer;
}

.ag-calc-board input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--ag-green);
  border: 2px solid var(--ag-white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  transition: transform 0.15s ease;
}

.ag-calc-board input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.1);
}

.ag-calc-board input[type="range"]::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--ag-green);
  border: 2px solid var(--ag-white);
  cursor: pointer;
}

.ag-calc-result {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--ag-line-light);
  border-radius: 12px;
  padding: 10px 14px;
  margin: 4px 0 12px;
  text-align: center;
}

.ag-calc-result span {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--ag-muted-light);
  margin-bottom: 2px;
}

.ag-calc-result strong {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(1.55rem, 3vw, 1.9rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ag-white);
  line-height: 1.1;
  transition: transform 0.2s ease;
}

.ag-calc-result strong.is-updating {
  transform: scale(1.04);
  color: #8fd4a8;
}

.ag-calc-result small {
  display: block;
  margin-top: 2px;
  font-size: 0.75rem;
  color: var(--ag-muted-light);
}

.ag-calc-board .ag-btn-primary {
  background: var(--ag-green);
  padding: 11px 18px;
  font-size: 0.88rem;
}

/* FAQ — smooth accordion */
.ag-faq-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: start;
}

.ag-faq {
  display: grid;
  gap: 10px;
}

.ag-faq-item {
  border: 1px solid var(--ag-line);
  border-radius: 14px;
  padding: 0;
  background: var(--ag-white);
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.ag-faq-item.is-open {
  border-color: rgba(13, 105, 54, 0.45);
}

.ag-faq-q {
  width: 100%;
  display: block;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--ag-navy);
  padding: 16px 52px 16px 20px;
  position: relative;
  line-height: 1.35;
}

.ag-faq-q::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--ag-green);
  line-height: 1;
  transition: transform 0.3s ease;
}

.ag-faq-item.is-open .ag-faq-q::after {
  content: "–";
}

.ag-faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.ag-faq-item.is-open .ag-faq-a {
  grid-template-rows: 1fr;
}

.ag-faq-a-inner {
  overflow: hidden;
  min-height: 0;
}

.ag-faq-a-inner p {
  margin: 0;
  padding: 0 20px 16px;
  color: var(--ag-muted);
  font-size: 0.98rem;
  line-height: 1.65;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.3s ease 0.05s, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.ag-faq-item.is-open .ag-faq-a-inner p {
  opacity: 1;
  transform: translateY(0);
}
.ag-cinema-band {
  position: relative;
  padding: 96px 0;
  overflow: hidden;
  background: var(--ag-navy);
}

.ag-cinema-bg {
  position: absolute;
  inset: 0;
  opacity: 0.22;
}

.ag-cinema-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ag-cinema {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 40px;
  align-items: center;
}

.ag-cinema-copy .pb-section-main-title {
  color: var(--ag-white) !important;
  -webkit-text-fill-color: var(--ag-white) !important;
  text-align: left;
}

.ag-cinema-copy .pb-section-main-title span {
  color: var(--ag-green);
  -webkit-text-fill-color: var(--ag-green);
}

.ag-cinema-copy .ag-section-sub {
  color: var(--ag-muted-light);
  text-align: left;
  max-width: 40ch;
}

.ag-cinema-points {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.ag-cinema-points li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--ag-white);
  font-size: 0.98rem;
}

.ag-cinema-points i {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--ag-green);
  color: var(--ag-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
}

.ag-cinema-frame {
  position: relative;
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--ag-line-light);
}

.ag-cinema-frame img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.ag-cinema-frame figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(19, 38, 75, 0.88);
  color: var(--ag-white);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 10px 14px;
  border-radius: 999px;
}

/* Apply */
.ag-apply-band {
  background: var(--ag-navy);
  color: var(--ag-white);
  padding: 96px 0;
}

.ag-apply-layout {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 40px;
  align-items: center;
}

.ag-apply-copy {
  color: var(--ag-white);
}

.ag-apply-copy .pb-section-main-title {
  color: var(--ag-white) !important;
  -webkit-text-fill-color: var(--ag-white) !important;
  text-align: left;
}

.ag-apply-copy .pb-section-main-title span {
  color: var(--ag-green) !important;
  -webkit-text-fill-color: var(--ag-green) !important;
}

.ag-apply-copy .ag-section-sub {
  color: var(--ag-muted-light);
  text-align: left;
}

.ag-apply-bullets {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.ag-apply-bullets li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--ag-white);
}

.ag-apply-bullets i {
  color: var(--ag-green);
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ag-white);
  border-radius: 50%;
  font-size: 0.85rem;
  text-align: center;
}

.ag-apply-form {
  background: var(--ag-white);
  color: var(--ag-navy);
  border-radius: 24px;
  padding: 28px 26px 24px;
  box-shadow: 0 28px 60px -24px rgba(0, 0, 0, 0.35);
}

.ag-field-label {
  display: block;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
  color: var(--ag-navy);
}

.ag-input {
  width: 100%;
  border: 1px solid var(--ag-line);
  border-radius: 12px;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ag-navy);
  background: var(--ag-white);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.ag-input:focus {
  border-color: var(--ag-green);
  box-shadow: 0 0 0 3px rgba(13, 105, 54, 0.15);
}

.ag-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 18px 0 16px;
  font-size: 0.85rem;
  color: var(--ag-muted);
  cursor: pointer;
}

.ag-consent input {
  margin-top: 3px;
  accent-color: var(--ag-green);
}

.ag-form-note {
  margin: 14px 0 0;
  text-align: center;
  font-size: 0.8rem;
  color: var(--ag-muted);
}

.ag-form-note i {
  color: var(--ag-green);
  margin-right: 4px;
}

/* Responsive */
@media (max-width: 991px) {
  .ag-hero {
    min-height: auto;
    padding: 40px 0 44px;
  }

  .ag-hero-inner {
    grid-template-columns: 1fr;
    padding: 8px 16px 4px;
    gap: 28px;
  }

  .ag-hero-panel {
    justify-self: stretch;
    max-width: none;
  }

  .ag-hero-title {
    max-width: none;
  }

  .ag-feature-grid,
  .ag-calc-layout,
  .ag-cinema,
  .ag-faq-layout,
  .ag-apply-layout,
  .ag-path {
    grid-template-columns: 1fr;
  }

  .ag-feature--wide {
    grid-row: auto;
  }

  .ag-path {
    grid-template-columns: 1fr 1fr;
  }

  .ag-path-panel.active {
    grid-template-columns: 1fr;
  }

  .ag-path-panel img {
    height: 200px;
  }

  .ag-path-panel > div {
    padding: 8px 20px 22px;
  }

  .ag-cinema-frame img {
    height: 300px;
  }

  .ag-section-head--left {
    max-width: none;
  }
}

@media (max-width: 575px) {
  .ag-hero {
    min-height: auto;
    margin: 8px;
    padding: 32px 0 36px;
    border-radius: 10px;
  }

  .ag-path {
    grid-template-columns: 1fr;
  }

  .ag-hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .ag-btn-ghost {
    justify-content: center;
  }

  .pb-btn-cta-agent {
    font-size: 0.875rem !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ag-brand-mark,
  .ag-hero-title,
  .ag-hero-sub,
  .ag-hero-cta,
  .ag-hero-panel,
  .ag-hero-img,
  .ag-live-dot,
  .ag-hero-scroll span::after,
  .ag-path-panel {
    animation: none !important;
    transition: none !important;
    opacity: 1;
    transform: none;
  }
}
