/* ══════════════════════════════════════════════════════════
   SHIVYA FORGE — agent.css
   Theme: #ff6600 orange · dark grey · white | Font: Nunito
══════════════════════════════════════════════════════════ */

/* ── CSS Variables ───────────────────────────────────── */
:root {
  --orange:        #ff6600;
  --orange-dark:   #e05500;
  --orange-light:  #ff8533;
  --orange-bg:     #fff4ee;
  --grey-dark:     #1a1a2e;
  --grey-mid:      #4a4a6a;
  --grey-light:    #f4f4f6;
  --grey-border:   #e0e0e8;
  --white:         #ffffff;
  --text-primary:  #1a1a2e;
  --text-body:     #4a4a6a;
  --header-h:      76px;
  --topbar-h:      38px;
  --radius:        12px;
  --shadow-sm:     0 2px 12px rgba(0,0,0,.08);
  --shadow-md:     0 8px 32px rgba(0,0,0,.12);
  --shadow-lg:     0 20px 60px rgba(0,0,0,.18);
  --transition:    0.32s cubic-bezier(.4,0,.2,1);
  --sf-bg:         #0d0d0d;
  --sf-body:       #181818;
  --sf-border:     rgba(255,255,255,.07);
  --sf-orange:     #ff6600;
  --sf-muted:      rgba(255,255,255,.52);
  --sf-link:       rgba(255,255,255,.76);
  --sf-radius:     8px;
}

/* ── Reset ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--white);
  overflow-x: hidden;
}
img  { display: block; max-width: 100%; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; padding: 0; margin: 0; }
p    { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ── Utility ─────────────────────────────────────────── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.text-center { text-align: center; }
.orange-text { color: var(--orange); }
.section-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  background: var(--orange-bg);
  border: 1.5px solid var(--orange-light);
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.22;
  color: var(--text-primary);
  margin-bottom: 16px;
}
.section-title em { font-style: normal; color: var(--orange); }
.req-star { color: var(--orange); }

/* ── Reveal Animations ───────────────────────────────── */
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity .65s ease, transform .65s ease;
  transition-delay: var(--delay, 0s);
}
.reveal-up    { transform: translateY(30px); }
.reveal-left  { transform: translateX(-30px); }
.reveal-right { transform: translateX(30px); }
.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: none;
}

/* ── Buttons ─────────────────────────────────────────── */
.btn-cta {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: .85rem;
  padding: 10px 22px;
  border-radius: 50px;
  white-space: nowrap;
  transition: background var(--transition), box-shadow var(--transition);
  box-shadow: 0 3px 14px rgba(255,102,0,.3);
}
.btn-cta:hover { background: var(--orange-dark); box-shadow: 0 6px 20px rgba(255,102,0,.4); }

/* ══════════════════════════════════════════════════════════
   TOP BAR
══════════════════════════════════════════════════════════ */
.top-bar {
  background: var(--grey-dark);
  height: var(--topbar-h);
  display: flex;
  align-items: left;
  position: relative;
  z-index: 110;
}
.top-bar::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
}
.top-bar__inner {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: left;
  gap: 28px;
  flex-wrap: nowrap;
  overflow: visible;
}
.top-bar__item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .8rem;
  color: rgba(255,255,255,.75);
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
  line-height: 1;
}
.top-bar__item svg {
  color: var(--orange);
  flex-shrink: 0;
  display: block;
  align-self: center;
  position: relative;
  top: 0;
}
.top-bar__item a   { color: var(--orange); font-weight: 700; transition: color var(--transition); }
.top-bar__item a:hover { color: var(--orange-light); }
.top-bar__label { }

/* ══════════════════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════════════════ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  height: var(--header-h);
  box-shadow: 0 2px 20px rgba(0,0,0,.10);
  transition: box-shadow var(--transition), height var(--transition);
}
.header.scrolled {
  height: 62px;
  box-shadow: 0 4px 28px rgba(0,0,0,.15);
}
.header__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* ── Logo ── */
.header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  transition: height var(--transition);
  display: block;
}
.header.scrolled .logo-img { height: 42px; }
.logo-fallback {
  display: none;
  flex-direction: column;
  line-height: 1;
}
.logo-fallback__main {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--text-primary);
  letter-spacing: .03em;
}
.logo-o { color: var(--orange); }
.logo-fallback__sub {
  font-size: .65rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: .2em;
  text-transform: uppercase;
}

/* ── Nav ── */
.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav__list {
  display: flex;
  align-items: center;
  gap: 0;
}
.nav__link {
  display: block;
  padding: 8px 13px;
  font-size: .87rem;
  font-weight: 700;
  color: var(--text-body);
  position: relative;
  transition: color var(--transition);
  white-space: nowrap;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; right: 50%;
  height: 2.5px;
  background: var(--orange);
  border-radius: 2px;
  transition: left var(--transition), right var(--transition);
}
.nav__link:hover,
.nav__link.active { color: var(--orange); }
.nav__link:hover::after,
.nav__link.active::after { left: 13px; right: 13px; }

/* ── Hamburger ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 200;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ── Nav Overlay ── */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(3px);
  z-index: 90;
  opacity: 0;
  transition: opacity var(--transition);
}
.nav-overlay.show { display: block; opacity: 1; }

/* ══════════════════════════════════════════════════════════
   PAGE HERO
══════════════════════════════════════════════════════════ */
.page-hero {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--grey-dark);
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(255,102,0,.13) 0%, transparent 70%),
    linear-gradient(135deg, #0d0d20 0%, #1a1a2e 60%, #23232f 100%);
}
.page-hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(255,255,255,.025) 40px),
    repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(255,255,255,.025) 40px);
}
.page-hero__content {
  position: relative;
  z-index: 2;
  padding-top: 64px;
  padding-bottom: 64px;
}
.page-hero__title {
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 16px;
}
.page-hero__title em { font-style: normal; color: var(--orange); }
.page-hero__sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.7);
  max-width: 560px;
  margin-bottom: 28px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  font-weight: 600;
}
.breadcrumb a { color: rgba(255,255,255,.65); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb svg { color: rgba(255,255,255,.4); flex-shrink: 0; }
.breadcrumb span { color: var(--orange); }

/* ══════════════════════════════════════════════════════════
   BENEFITS STRIP
══════════════════════════════════════════════════════════ */
.benefits-strip {
  background: var(--grey-light);
  padding: 64px 0;
  border-bottom: 1px solid var(--grey-border);
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.benefit-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--grey-border);
  padding: 32px 24px;
  text-align: center;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.benefit-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--orange-light);
}
.benefit-card__icon {
  width: 64px;
  height: 64px;
  background: var(--orange-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--orange);
  transition: background var(--transition), transform var(--transition);
}
.benefit-card:hover .benefit-card__icon {
  background: var(--orange);
  color: var(--white);
  transform: scale(1.08);
}
.benefit-card h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.benefit-card p {
  font-size: .88rem;
  color: var(--text-body);
  line-height: 1.6;
  margin: 0;
}

/* ══════════════════════════════════════════════════════════
   FORM SECTION
══════════════════════════════════════════════════════════ */
.form-section {
  padding: 96px 0;
  background: var(--white);
  position: relative;
}
.form-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
}
.form-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

/* ── Info panel ── */
.form-info { position: sticky; top: calc(var(--header-h) + 24px); }
.form-info p {
  font-size: .95rem;
  color: var(--text-body);
  margin-bottom: 32px;
}
.form-info__list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 36px;
}
.form-info__list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.info-dot {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  background: var(--orange);
  border-radius: 50%;
  margin-top: 7px;
  box-shadow: 0 0 0 4px rgba(255,102,0,.15);
}
.form-info__list strong {
  display: block;
  font-size: .9rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 2px;
}
.form-info__list span {
  font-size: .82rem;
  color: var(--text-body);
}
.form-info__contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange-bg);
  border: 1.5px solid rgba(255,102,0,.25);
  color: var(--orange);
  font-size: .85rem;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 50px;
  transition: background var(--transition), box-shadow var(--transition);
  width: fit-content;
}
.contact-pill:hover {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(255,102,0,.3);
}

/* ── Form card ── */
.form-card {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.form-card__header {
  background: var(--grey-dark);
  padding: 28px 36px 24px;
  position: relative;
}
.form-card__header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
}
.form-card__header h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
}
.form-card__header p {
  font-size: .82rem;
  color: rgba(255,255,255,.55);
  margin: 0;
}
.agent-form {
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ── Field Groups ── */
.field-group { margin-bottom: 20px; }
.field-full { width: 100%; }
.field-half {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ── Floating Label Fields ── */
.field-wrap { position: relative; }
.field-wrap input,
.field-wrap textarea {
  width: 100%;
  background: var(--grey-light);
  border: 2px solid var(--grey-border);
  border-radius: var(--radius);
  padding: 20px 44px 8px 16px;
  font-family: 'Nunito', sans-serif;
  font-size: .92rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
  outline: none;
  appearance: none;
}
.field-wrap textarea {
  resize: vertical;
  min-height: 110px;
  padding-top: 26px;
}
.field-wrap input:focus,
.field-wrap textarea:focus {
  border-color: var(--orange);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(255,102,0,.1);
}
.field-wrap label {
  position: absolute;
  left: 16px;
  top: 14px;
  font-size: .85rem;
  font-weight: 700;
  color: var(--grey-mid);
  pointer-events: none;
  transition: transform var(--transition), font-size var(--transition), color var(--transition);
  transform-origin: left top;
}
.field-wrap input:focus ~ label,
.field-wrap input:not(:placeholder-shown) ~ label,
.field-wrap textarea:focus ~ label,
.field-wrap textarea:not(:placeholder-shown) ~ label {
  transform: translateY(-7px) scale(.78);
  color: var(--orange);
}
.field-icon {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--grey-mid);
  pointer-events: none;
  transition: color var(--transition);
}
.field-wrap--textarea .field-icon { top: 20px; transform: none; }
.field-wrap input:focus ~ .field-icon,
.field-wrap textarea:focus ~ .field-icon { color: var(--orange); }

.field-error-msg {
  display: none;
  font-size: .78rem;
  font-weight: 700;
  color: #ef4444;
  margin-top: 6px;
  padding-left: 4px;
  animation: ts-fadeSlideIn .22s ease both;
}
.field-wrap input.invalid,
.field-wrap textarea.invalid {
  border-color: #ef4444 !important;
  background: #fff5f5 !important;
  box-shadow: 0 0 0 4px rgba(239,68,68,.08) !important;
}

/* ── Submit Button ── */
.btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: var(--orange);
  color: var(--white);
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  padding: 16px 32px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
  box-shadow: 0 6px 24px rgba(255,102,0,.4);
  letter-spacing: .03em;
}
.btn-submit:hover:not(:disabled) {
  background: var(--orange-dark);
  box-shadow: 0 10px 32px rgba(255,102,0,.5);
  transform: translateY(-2px);
}
.btn-submit:active:not(:disabled) { transform: translateY(0); }
.btn-submit:disabled {
  opacity: .65;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.btn-submit__icon {
  display: flex;
  align-items: center;
  transition: transform var(--transition);
}
.btn-submit:hover:not(:disabled) .btn-submit__icon { transform: translateX(4px); }

/* ── Success State ── */
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
  animation: ts-fadeSlideIn .4s ease;
}
.form-success svg { color: #22c55e; margin: 0 auto 16px; }
.form-success h4 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.form-success p { color: var(--text-body); font-size: .95rem; }

/* ══════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════ */
.footer {
  background: var(--sf-bg);
  color: var(--sf-link);
  font-size: .9rem;
}
.footer__top {
  padding: 72px 0 48px;
  border-bottom: 1px solid var(--sf-border);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1.2fr;
  gap: 56px;
}

/* ── Footer Brand ── */
.footer__logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 24px;
}
.footer-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: brightness(1.1);
}
.footer-logo-fallback {
  display: none;
  flex-direction: column;
  line-height: 1;
}
.footer-logo-main {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: .04em;
}
.footer-logo-sub {
  font-size: .6rem;
  font-weight: 700;
  color: var(--sf-orange);
  letter-spacing: .18em;
  text-transform: uppercase;
}
.footer__about {
  font-size: .85rem;
  color: var(--sf-muted);
  line-height: 1.75;
  margin-bottom: 28px;
}
.footer__about strong { color: rgba(255,255,255,.85); }
.footer__social { display: flex; gap: 10px; }
.social-btn {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.5);
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}
.social-btn:hover {
  background: var(--sf-orange);
  color: var(--white);
  border-color: var(--sf-orange);
  transform: translateY(-2px);
}

/* ── Footer Heading ── */
.footer__heading {
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 12px;
  position: relative;
}
.footer__heading::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 32px;
  height: 2px;
  background: var(--sf-orange);
  border-radius: 2px;
}

/* ── Footer Links ── */
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer__links li {
  position: relative;
}
.footer__links a {
  font-size: .88rem;
  color: var(--sf-muted);
  font-weight: 600;
  display: flex;
  align-items: center;
  padding: 6px 0;
  transition: color 0.18s ease;
}
.footer__links a:hover {
  color: #f56200;
}

/* ── Footer Contact ── */
.footer__contact-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer__contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.footer-contact-icon {
  width: 36px;
  height: 36px;
  background: rgba(255,102,0,.12);
  border: 1px solid rgba(255,102,0,.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sf-orange);
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-contact-label {
  display: block;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--sf-orange);
  margin-bottom: 3px;
}
.footer__contact-list a,
.footer__contact-list span {
  font-size: .88rem;
  color: var(--sf-muted);
  font-weight: 500;
  transition: color var(--transition);
}
.footer__contact-list a:hover { color: var(--white); }

/* ── Footer Bottom ── */
.footer__bottom { padding: 20px 0; }
.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__bottom p {
  font-size: .82rem;
  color: rgba(255,255,255,.35);
  margin: 0;
}
.footer__credit { display: flex; align-items: center; gap: 5px; }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .form-wrapper { grid-template-columns: 1fr; gap: 48px; }
  .form-info { position: static; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer__col--brand { grid-column: 1 / -1; }
  .footer__about { max-width: 600px; }
}
@media (max-width: 900px) {
  .hamburger { display: flex; }
  .nav {
    position: fixed;
    top: 0; right: -100%;
    width: min(320px, 85vw);
    height: 100dvh;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: calc(var(--header-h) + 16px) 0 24px;
    box-shadow: -8px 0 40px rgba(0,0,0,.18);
    transition: right var(--transition);
    z-index: 150;
    overflow-y: auto;
  }
  .nav.open { right: 0; }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0; padding: 0 8px; }
  .nav__link { padding: 13px 16px; font-size: 1rem; border-radius: 8px; }
  .nav__link::after { display: none; }
  .nav__link:hover, .nav__link.active { color: var(--orange); background: var(--orange-bg); }
  .btn-cta { margin: 20px 16px 0; text-align: center; display: block; }
}
@media (max-width: 768px) {
  .top-bar { height: auto; min-height: 32px; padding: 6px 0; }
  .top-bar__inner { gap: 16px; padding: 0 16px; justify-content: flex-start; flex-wrap: nowrap; overflow: visible; }
  .top-bar__item { font-size: .72rem; gap: 5px; white-space: nowrap; line-height: 1; }
  .top-bar__item svg { width: 12px; height: 12px; display: block; align-self: center; }
  .top-bar__label { display: inline; }
  .page-hero__content { padding-top: 48px; padding-bottom: 48px; }
  .form-section { padding: 64px 0; }
  .field-half { grid-template-columns: 1fr; gap: 20px; }
  .agent-form { padding: 24px 20px; }
  .form-card__header { padding: 22px 20px 18px; }
  .footer__grid { grid-template-columns: 1fr; gap: 36px; }
  .footer__col--brand { grid-column: auto; }
  .footer__links a { padding: 7px 0; }
  .footer__links a:hover { color: #f56200; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .page-hero__title { font-size: 2rem; }
  .benefits-grid { grid-template-columns: 1fr; }
  .benefit-card { padding: 24px 20px; }
  .form-info__contact { flex-direction: column; }
  .footer__bottom-inner { flex-direction: column; text-align: center; }
  .footer__credit { justify-content: center; }
  .top-bar__inner { gap: 10px; }
  .top-bar__item { font-size: .68rem; }
  .footer__links a:hover { color: #f56200; }
}


/* ══════════════════════════════════════════════════════════
   CLOUDFLARE TURNSTILE CAPTCHA MODAL
══════════════════════════════════════════════════════════ */
@keyframes ts-fadeSlideIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.ts-overlay {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(10,10,20,.75);
  backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px);
  display: flex; align-items: center; justify-content: center; padding: 20px;
  opacity: 0; visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}
.ts-overlay.ts-open { opacity: 1; visibility: visible; }
.ts-modal {
  background: var(--white); border-radius: 20px;
  box-shadow: 0 4px 6px rgba(0,0,0,.07), 0 24px 64px rgba(0,0,0,.28);
  width: 100%; max-width: 460px; overflow: hidden;
  transform: translateY(28px) scale(.96);
  transition: transform .38s cubic-bezier(.34,1.56,.64,1);
}
.ts-overlay.ts-open .ts-modal { transform: translateY(0) scale(1); }
.ts-modal__header {
  background: var(--grey-dark); padding: 22px 24px 20px;
  display: flex; align-items: center; gap: 14px;
  border-bottom: 3px solid var(--orange);
}
.ts-modal__header-text { flex: 1; min-width: 0; }
.ts-modal__icon {
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(255,102,0,.15); border: 1.5px solid rgba(255,102,0,.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange); flex-shrink: 0;
}
.ts-modal__title { font-size: 1.05rem; font-weight: 800; color: var(--white); margin: 0 0 3px; line-height: 1.2; }
.ts-modal__sub { font-size: .8rem; color: rgba(255,255,255,.55); margin: 0; line-height: 1.4; }
.ts-modal__close {
  flex-shrink: 0; width: 34px; height: 34px; border: none;
  background: rgba(255,255,255,.08); border-radius: 8px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6);
  transition: background var(--transition), color var(--transition); margin-left: auto;
}
.ts-modal__close:hover { background: rgba(255,102,0,.25); color: var(--orange); }
.ts-modal__close:focus-visible { outline: 2px solid var(--orange); outline-offset: 2px; }
.ts-modal__body {
  padding: 28px 28px 8px; display: flex; flex-direction: column;
  align-items: center; gap: 16px;
}
.ts-modal__instruction { font-size: .88rem; color: var(--text-body); text-align: center; margin: 0; line-height: 1.5; }
.ts-widget-wrap { display: flex; justify-content: center; align-items: center; width: 100%; min-height: 68px; }
.ts-modal__status {
  font-size: .84rem; font-weight: 700; text-align: center;
  min-height: 22px; margin: 0; transition: color .2s ease;
  animation: ts-fadeSlideIn .25s ease both;
}
.ts-modal__status:empty { display: none; }
.ts-modal__status.ts-status--ok   { color: #16a34a; }
.ts-modal__status.ts-status--err  { color: #dc2626; }
.ts-modal__status.ts-status--wait { color: var(--orange); }
.ts-modal__footer {
  padding: 16px 28px 26px; display: flex; align-items: center;
  justify-content: flex-end; gap: 12px;
  border-top: 1px solid var(--grey-border); margin-top: 8px;
}
.ts-btn-cancel {
  font-family: 'Nunito', sans-serif; font-size: .9rem; font-weight: 700;
  padding: 11px 24px; border-radius: 50px; border: 2px solid var(--grey-border);
  background: transparent; color: var(--text-body); cursor: pointer; line-height: 1;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.ts-btn-cancel:hover { background: var(--grey-light); border-color: var(--grey-mid); color: var(--text-primary); }
.ts-btn-cancel:focus-visible { outline: 2px solid var(--orange); outline-offset: 2px; }
.ts-btn-proceed {
  font-family: 'Nunito', sans-serif; font-size: .9rem; font-weight: 800;
  padding: 11px 24px; border-radius: 50px; border: none;
  background: var(--orange); color: var(--white); cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px; line-height: 1;
  transition: background var(--transition), box-shadow var(--transition), opacity var(--transition), transform var(--transition);
  box-shadow: 0 4px 18px rgba(255,102,0,.35);
}
.ts-btn-proceed:disabled { background: #c8c8d0; color: #888; cursor: not-allowed; box-shadow: none; opacity: .75; }
.ts-btn-proceed:not(:disabled):hover { background: var(--orange-dark); box-shadow: 0 8px 26px rgba(255,102,0,.45); transform: translateY(-1px); }
.ts-btn-proceed:not(:disabled):active { transform: translateY(0); }
.ts-btn-proceed:focus-visible { outline: 2px solid var(--orange); outline-offset: 2px; }
@media (max-width: 480px) {
  .ts-modal { border-radius: 16px; }
  .ts-modal__header { padding: 18px 18px 16px; gap: 12px; }
  .ts-modal__body   { padding: 22px 18px 8px; }
  .ts-modal__footer { padding: 14px 18px 22px; flex-direction: column-reverse; gap: 10px; }
  .ts-btn-cancel, .ts-btn-proceed { width: 100%; justify-content: center; text-align: center; }
}


/* ══════════════════════════════════════════════════════════
   GOOGLE reCAPTCHA v2 MODAL
══════════════════════════════════════════════════════════ */
@keyframes rc-fadeSlideIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.rc-overlay {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(10,10,20,.75);
  backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px);
  display: flex; align-items: center; justify-content: center; padding: 20px;
  opacity: 0; visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}
.rc-overlay.rc-open { opacity: 1; visibility: visible; }
.rc-modal {
  background: var(--white); border-radius: 20px;
  box-shadow: 0 4px 6px rgba(0,0,0,.07), 0 24px 64px rgba(0,0,0,.28);
  width: 100%; max-width: 440px; overflow: hidden;
  transform: translateY(28px) scale(.96);
  transition: transform .38s cubic-bezier(.34,1.56,.64,1);
}
.rc-overlay.rc-open .rc-modal { transform: translateY(0) scale(1); }
.rc-modal__header {
  background: var(--grey-dark); padding: 22px 24px 20px;
  display: flex; align-items: center; gap: 14px;
  border-bottom: 3px solid var(--orange);
}
.rc-modal__header-text { flex: 1; min-width: 0; }
.rc-modal__icon {
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(255,102,0,.15); border: 1.5px solid rgba(255,102,0,.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange); flex-shrink: 0;
}
.rc-modal__title { font-size: 1.05rem; font-weight: 800; color: var(--white); margin: 0 0 3px; line-height: 1.2; }
.rc-modal__sub { font-size: .8rem; color: rgba(255,255,255,.55); margin: 0; line-height: 1.4; }
.rc-modal__close {
  flex-shrink: 0; width: 34px; height: 34px; border: none;
  background: rgba(255,255,255,.08); border-radius: 8px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6);
  transition: background var(--transition), color var(--transition); margin-left: auto;
}
.rc-modal__close:hover { background: rgba(255,102,0,.25); color: var(--orange); }
.rc-modal__body {
  padding: 28px 28px 8px; display: flex; flex-direction: column;
  align-items: center; gap: 16px;
}
.rc-modal__instruction { font-size: .88rem; color: var(--text-body); text-align: center; margin: 0; line-height: 1.5; }
.rc-widget-wrap { display: flex; justify-content: center; align-items: center; width: 100%; min-height: 78px; }
.rc-modal__status {
  font-size: .84rem; font-weight: 700; text-align: center;
  min-height: 22px; margin: 0; transition: color .2s ease;
}
.rc-modal__status:empty { display: none; }
.rc-modal__status.rc-status--ok   { color: #16a34a; }
.rc-modal__status.rc-status--err  { color: #dc2626; }
.rc-modal__status.rc-status--wait { color: var(--orange); }
.rc-modal__footer {
  padding: 16px 28px 26px; display: flex; align-items: center;
  justify-content: flex-end; gap: 12px;
  border-top: 1px solid var(--grey-border); margin-top: 8px;
}
.rc-btn-cancel {
  font-family: 'Nunito', sans-serif; font-size: .9rem; font-weight: 700;
  padding: 11px 24px; border-radius: 50px; border: 2px solid var(--grey-border);
  background: transparent; color: var(--text-body); cursor: pointer; line-height: 1;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.rc-btn-cancel:hover { background: var(--grey-light); border-color: var(--grey-mid); color: var(--text-primary); }
.rc-btn-proceed {
  font-family: 'Nunito', sans-serif; font-size: .9rem; font-weight: 800;
  padding: 11px 24px; border-radius: 50px; border: none;
  background: var(--orange); color: var(--white); cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px; line-height: 1;
  transition: background var(--transition), box-shadow var(--transition), opacity var(--transition), transform var(--transition);
  box-shadow: 0 4px 18px rgba(255,102,0,.35);
}
.rc-btn-proceed:disabled { background: #c8c8d0; color: #888; cursor: not-allowed; box-shadow: none; opacity: .75; }
.rc-btn-proceed:not(:disabled):hover { background: var(--orange-dark); box-shadow: 0 8px 26px rgba(255,102,0,.45); transform: translateY(-1px); }
.rc-btn-proceed:not(:disabled):active { transform: translateY(0); }
@media (max-width: 480px) {
  .rc-modal { border-radius: 16px; }
  .rc-modal__header { padding: 18px 18px 16px; gap: 12px; }
  .rc-modal__body   { padding: 22px 18px 8px; }
  .rc-modal__footer { padding: 14px 18px 22px; flex-direction: column-reverse; gap: 10px; }
  .rc-btn-cancel, .rc-btn-proceed { width: 100%; justify-content: center; }
}