:root {
  color-scheme: dark;
  --bg: #050505;
  --bg-soft: #0b0b0c;
  --bg-panel: rgba(255, 255, 255, 0.065);
  --bg-panel-strong: rgba(255, 255, 255, 0.105);
  --gold: #d8a84f;
  --gold-light: #f5d28a;
  --gold-dark: #8a6428;
  --text: #f7f0df;
  --muted: #b9b6ad;
  --line: rgba(245, 210, 138, 0.22);
  --line-soft: rgba(255, 255, 255, 0.1);
  --emerald: #8ad8b0;
  --danger: #ff9d8b;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.45);
  --max-width: 1180px;
  --radius: 8px;
  --radius-sm: 6px;
  --pill: 999px;
  --header-height: 82px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  font-family: "Segoe UI", Inter, Roboto, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(180deg, #050505 0%, #080808 42%, #050505 100%),
    var(--bg);
  color: var(--text);
  font-family: "Segoe UI", Inter, Roboto, Arial, sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.modal-open {
  overflow: hidden;
}

img,
iframe {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

::selection {
  background: rgba(216, 168, 79, 0.35);
  color: var(--text);
}

.skip-link {
  position: fixed;
  left: 18px;
  top: 18px;
  z-index: 1000;
  transform: translateY(-160%);
  border-radius: var(--pill);
  background: var(--gold);
  color: #070707;
  padding: 10px 16px;
  font-weight: 700;
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.section {
  position: relative;
  padding: 112px 24px;
}

.section-inner {
  width: min(100%, var(--max-width));
  margin: 0 auto;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 44px;
}

.section-heading h2,
.about-copy h2,
.contact-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4.1rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.section-heading p,
.about-copy p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.03rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 30px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light));
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 900;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled,
.site-header.menu-open {
  border-bottom-color: var(--line-soft);
  background: rgba(5, 5, 5, 0.78);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(22px);
}

.navbar {
  width: min(100%, var(--max-width));
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border: 1px solid rgba(245, 210, 138, 0.6);
  border-radius: var(--radius);
  background: linear-gradient(145deg, #f2cf84, #ad7d35);
  color: #080808;
  font-size: 0.92rem;
  box-shadow: 0 10px 34px rgba(216, 168, 79, 0.2);
}

.brand-text {
  color: #fff5dd;
  font-size: 1.08rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-menu a,
.nav-login {
  position: relative;
  border: 0;
  border-radius: var(--pill);
  background: transparent;
  color: rgba(247, 240, 223, 0.82);
  padding: 10px 12px;
  font-size: 0.9rem;
  font-weight: 650;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-menu a:hover,
.nav-menu a:focus-visible,
.nav-login:hover,
.nav-login:focus-visible {
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  outline: none;
}

.nav-login {
  margin-left: 8px;
  border: 1px solid rgba(245, 210, 138, 0.55);
  background: rgba(216, 168, 79, 0.12);
  color: var(--gold-light);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.nav-toggle {
  display: none;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  padding: 10px;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  border-radius: var(--pill);
  background: var(--text);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.site-header.menu-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.menu-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.menu-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  min-height: 86svh;
  padding-top: 138px;
  padding-bottom: 70px;
  display: grid;
  align-items: center;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(120deg, rgba(5, 5, 5, 0.96) 0%, rgba(5, 5, 5, 0.78) 42%, rgba(5, 5, 5, 0.95) 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 88px);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 170px;
  z-index: -1;
  background: linear-gradient(180deg, transparent, var(--bg));
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1.1fr);
  align-items: center;
  gap: 46px;
}

.hero-content,
.hero-visual {
  min-width: 0;
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(3rem, 7vw, 7.7rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero-subtitle {
  max-width: 580px;
  margin: 26px 0 0;
  color: rgba(247, 240, 223, 0.78);
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 0;
  border-radius: var(--pill);
  padding: 13px 22px;
  overflow: hidden;
  font-weight: 800;
  line-height: 1;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  color: #090909;
  box-shadow: 0 18px 42px rgba(216, 168, 79, 0.24);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 22px 54px rgba(216, 168, 79, 0.34);
}

.btn-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
  backdrop-filter: blur(14px);
}

.btn-card {
  width: 100%;
  margin-top: auto;
  border: 1px solid rgba(245, 210, 138, 0.5);
  background: rgba(216, 168, 79, 0.12);
  color: var(--gold-light);
}

.btn-card:hover,
.btn-card:focus-visible {
  background: rgba(216, 168, 79, 0.22);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.32);
}

.ripple {
  position: absolute;
  z-index: -1;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  transform: translate(-50%, -50%) scale(0);
  animation: ripple 0.55s ease-out forwards;
  pointer-events: none;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.hero-trust span {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--pill);
  background: rgba(255, 255, 255, 0.045);
  color: rgba(247, 240, 223, 0.72);
  padding: 8px 12px;
  font-size: 0.84rem;
}

.hero-visual {
  position: relative;
  min-height: 550px;
  border: 1px solid rgba(245, 210, 138, 0.18);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: var(--shadow);
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.7), transparent 50%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.1), rgba(5, 5, 5, 0.58));
  pointer-events: none;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 550px;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.05);
  transform: scale(1.02);
}

.chart-orbit {
  position: absolute;
  right: -90px;
  top: 24%;
  z-index: 2;
  width: 310px;
  aspect-ratio: 1;
  border: 1px solid rgba(245, 210, 138, 0.42);
  border-radius: 50%;
  box-shadow: 0 0 54px rgba(216, 168, 79, 0.18), inset 0 0 42px rgba(216, 168, 79, 0.08);
  animation: floatGraph 6s var(--ease) infinite;
}

.hero-metric {
  position: absolute;
  z-index: 3;
  display: grid;
  gap: 1px;
  min-width: 142px;
  border: 1px solid rgba(245, 210, 138, 0.24);
  border-radius: var(--radius);
  background: rgba(5, 5, 5, 0.55);
  padding: 14px 16px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
}

.hero-metric span {
  color: var(--muted);
  font-size: 0.76rem;
}

.hero-metric strong {
  color: var(--gold-light);
  font-size: 1.6rem;
  line-height: 1;
}

.metric-one {
  left: 24px;
  bottom: 24px;
}

.metric-two {
  right: 24px;
  top: 24px;
}

.features,
.plans,
.faq {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), transparent 22%),
    var(--bg);
}

.feature-grid,
.stats-grid,
.plan-grid,
.why-grid,
.process-grid,
.value-grid {
  display: grid;
  gap: 18px;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.stat-card,
.plan-card,
.value-card,
.why-card,
.process-step {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: var(--bg-panel);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
  transition: transform 0.26s var(--ease), border-color 0.26s ease, background 0.26s ease, box-shadow 0.26s ease;
}

.feature-card:hover,
.stat-card:hover,
.plan-card:hover,
.value-card:hover,
.why-card:hover,
.process-step:hover {
  transform: translateY(-7px);
  border-color: rgba(245, 210, 138, 0.34);
  background: var(--bg-panel-strong);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.32);
}

.feature-card {
  padding: 26px;
}

.icon-badge {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
  border: 1px solid rgba(245, 210, 138, 0.42);
  border-radius: var(--radius);
  background: rgba(216, 168, 79, 0.11);
  color: var(--gold-light);
  font-weight: 900;
}

.feature-card h3,
.plan-card h3,
.value-card h3,
.why-card h3,
.process-step h3 {
  margin: 0 0 12px;
  color: #fff8e8;
  font-size: 1.1rem;
  line-height: 1.2;
}

.feature-card p,
.value-card p,
.why-card p,
.process-step p {
  margin: 0;
  color: var(--muted);
}

.stats {
  padding-top: 84px;
  padding-bottom: 84px;
  background:
    linear-gradient(90deg, rgba(216, 168, 79, 0.09), rgba(138, 216, 176, 0.045), rgba(216, 168, 79, 0.08)),
    #080808;
}

.stats-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.stat-card {
  padding: 24px 18px;
  min-height: 160px;
}

.stat-card span {
  color: rgba(247, 240, 223, 0.62);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.stat-card strong {
  display: block;
  margin: 14px 0 8px;
  color: var(--gold-light);
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  line-height: 0.92;
}

.stat-card strong span {
  color: inherit;
  font-size: inherit;
  letter-spacing: 0;
}

.stat-card p {
  margin: 0;
  color: var(--muted);
}

.plan-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 470px;
  padding: 26px;
}

.plan-card.featured {
  border-color: rgba(245, 210, 138, 0.58);
  background:
    linear-gradient(180deg, rgba(216, 168, 79, 0.14), rgba(255, 255, 255, 0.07)),
    var(--bg-panel);
  box-shadow: 0 24px 72px rgba(216, 168, 79, 0.14);
}

.popular-badge {
  position: absolute;
  right: 18px;
  top: 18px;
  border: 1px solid rgba(245, 210, 138, 0.5);
  border-radius: var(--pill);
  background: rgba(216, 168, 79, 0.16);
  color: var(--gold-light);
  padding: 6px 10px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.plan-top {
  display: grid;
  gap: 18px;
  margin-bottom: 18px;
}

.plan-name {
  color: var(--gold-light);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plan-top strong {
  color: #fff;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  line-height: 1;
}

.plan-term,
.plan-target {
  margin: 0 0 8px;
  color: var(--muted);
}

.plan-target {
  color: var(--emerald);
  font-weight: 800;
}

.plan-card ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 28px;
  padding: 0;
  list-style: none;
}

.plan-card li {
  position: relative;
  color: rgba(247, 240, 223, 0.8);
  padding-left: 24px;
}

.plan-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold-light);
  font-weight: 900;
}

.about {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(216, 168, 79, 0.05)),
    #060606;
}

.about-grid,
.contact-grid,
.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  gap: 42px;
  align-items: start;
}

.about-copy p {
  max-width: 650px;
}

.value-grid {
  grid-template-columns: 1fr;
}

.value-card {
  padding: 26px;
}

.why-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.why-card {
  padding: 26px;
}

.why-card span {
  display: inline-block;
  margin-bottom: 32px;
  color: rgba(245, 210, 138, 0.5);
  font-size: 0.84rem;
  font-weight: 900;
}

.process {
  background:
    linear-gradient(180deg, rgba(138, 216, 176, 0.04), transparent),
    #070707;
}

.process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  counter-reset: process;
}

.process-step {
  position: relative;
  min-height: 245px;
  padding: 28px;
}

.process-step::after {
  content: "";
  position: absolute;
  top: 52px;
  right: -19px;
  width: 20px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.process-step:last-child::after {
  display: none;
}

.process-step span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 28px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--gold-light), var(--gold-dark));
  color: #080808;
  font-weight: 900;
}

.accordion {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(16px);
}

.faq-item button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--text);
  padding: 20px 22px;
  text-align: left;
  font-weight: 800;
}

.faq-item button span {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  border-radius: 50%;
  background: rgba(216, 168, 79, 0.13);
  color: var(--gold-light);
  transition: transform 0.25s ease;
}

.faq-item.is-open button span {
  transform: rotate(45deg);
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease);
}

.faq-panel p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

.contact {
  background:
    linear-gradient(180deg, rgba(216, 168, 79, 0.04), rgba(255, 255, 255, 0.012)),
    #050505;
}

.contact-list {
  display: grid;
  gap: 18px;
  margin-top: 32px;
}

.contact-list p {
  margin: 0;
  border-left: 2px solid rgba(216, 168, 79, 0.58);
  padding-left: 16px;
}

.contact-list span {
  display: block;
  color: var(--gold-light);
  font-weight: 900;
}

.map-frame {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 440px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
}

.map-frame iframe {
  width: 100%;
  height: 440px;
  border: 0;
  filter: grayscale(1) invert(0.92) contrast(0.9) brightness(0.84);
}

.footer {
  border-top: 1px solid var(--line-soft);
  background: #030303;
  padding: 54px 24px 22px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.8fr 1fr 0.7fr;
  gap: 34px;
}

.footer h2 {
  margin: 0 0 16px;
  color: var(--gold-light);
  font-size: 0.86rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer p,
.footer a {
  color: var(--muted);
}

.footer-note {
  max-width: 390px;
}

.footer-grid > div:nth-child(2) {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
  color: var(--gold-light);
  outline: none;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold-light);
  font-weight: 900;
}

.copyright {
  width: min(100%, var(--max-width));
  margin: 38px auto 0;
  border-top: 1px solid var(--line-soft);
  padding-top: 20px;
  color: rgba(247, 240, 223, 0.54);
  font-size: 0.9rem;
}

.copyright p {
  margin: 0;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 20px;
}

.modal[hidden] {
  display: none;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  opacity: 0;
  backdrop-filter: blur(7px);
  transition: opacity 0.25s ease;
}

.modal-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 1040px);
  max-height: min(92vh, 920px);
  overflow: auto;
  border: 1px solid rgba(245, 210, 138, 0.25);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.055)),
    rgba(7, 7, 7, 0.92);
  box-shadow: 0 32px 120px rgba(0, 0, 0, 0.68);
  opacity: 0;
  transform: translateY(22px) scale(0.98);
  transition: opacity 0.28s var(--ease), transform 0.28s var(--ease);
  backdrop-filter: blur(22px);
}

.modal.is-open .modal-backdrop {
  opacity: 1;
}

.modal.is-open .modal-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  right: 16px;
  top: 16px;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line-soft);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
  font-size: 1.5rem;
  line-height: 1;
}

.modal-close:hover,
.modal-close:focus-visible {
  border-color: var(--line);
  color: var(--gold-light);
  outline: none;
}

.modal-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1fr);
  gap: 28px;
  padding: 34px;
}

.modal-copy {
  display: grid;
  align-content: start;
  gap: 18px;
  padding-right: 12px;
}

.modal-copy h2,
.success-state h2 {
  margin: 0;
  color: #fff7df;
  font-size: clamp(1.65rem, 3vw, 2.5rem);
  line-height: 1.05;
}

.modal-copy p {
  margin: 0;
  color: var(--muted);
}

.payment-box {
  display: grid;
  justify-items: center;
  gap: 10px;
  border: 1px solid rgba(245, 210, 138, 0.18);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.26);
  padding: 18px;
}

.payment-title,
.upi-label {
  color: var(--gold-light);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
}

.payment-box img {
  width: min(100%, 230px);
  border-radius: var(--radius-sm);
  background: #f7f1e2;
}

.payment-box strong {
  color: #fff;
  font-size: 1.2rem;
}

.application-form {
  display: grid;
  gap: 18px;
}

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

.application-form label {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.application-form label span:first-child,
.terms-field span {
  color: rgba(247, 240, 223, 0.78);
  font-size: 0.88rem;
  font-weight: 750;
}

.application-form input,
.application-form select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-sm);
  background: rgba(0, 0, 0, 0.25);
  color: var(--text);
  padding: 12px 13px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.application-form select option {
  background: #111;
  color: var(--text);
}

.application-form input:focus,
.application-form select:focus {
  border-color: rgba(245, 210, 138, 0.64);
  background: rgba(0, 0, 0, 0.42);
  box-shadow: 0 0 0 4px rgba(216, 168, 79, 0.12);
}

.file-field {
  grid-column: 1 / -1;
}

.file-field input {
  padding-top: 10px;
}

.file-name {
  color: rgba(247, 240, 223, 0.56);
  font-size: 0.82rem;
}

.terms-field {
  display: flex;
  align-items: center;
  gap: 10px;
}

.terms-field input {
  width: 18px;
  height: 18px;
  min-height: 18px;
  accent-color: var(--gold);
}

.form-alert {
  min-height: 22px;
  color: var(--muted);
  font-size: 0.92rem;
}

.form-alert.is-error {
  color: var(--danger);
}

.form-alert.is-success {
  color: var(--emerald);
}

.submit-btn {
  width: 100%;
}

.submit-btn .spinner {
  display: none;
  width: 18px;
  height: 18px;
  margin-left: 10px;
  border: 2px solid rgba(0, 0, 0, 0.22);
  border-top-color: #090909;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.submit-btn.is-loading .spinner {
  display: inline-block;
}

.submit-btn:disabled {
  cursor: wait;
  opacity: 0.78;
  transform: none;
}

.success-state {
  grid-column: 1 / -1;
  display: grid;
  justify-items: center;
  gap: 10px;
  min-height: 430px;
  padding: 56px 24px;
  text-align: center;
}

.success-state[hidden] {
  display: none;
}

.success-state p {
  margin: 0;
  color: var(--muted);
  font-size: 1.1rem;
}

.success-icon {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: rgba(138, 216, 176, 0.14);
  color: var(--emerald);
  font-size: 2.2rem;
  font-weight: 900;
  box-shadow: 0 0 54px rgba(138, 216, 176, 0.16);
}

.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1300;
  max-width: min(380px, calc(100vw - 48px));
  border: 1px solid rgba(245, 210, 138, 0.3);
  border-radius: var(--radius);
  background: rgba(10, 10, 10, 0.9);
  color: var(--text);
  padding: 14px 16px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

@keyframes ripple {
  to {
    opacity: 0;
    transform: translate(-50%, -50%) scale(18);
  }
}

@keyframes floatGraph {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  50% {
    transform: translate3d(-12px, -16px, 0) rotate(6deg);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1080px) {
  .nav-menu {
    gap: 2px;
  }

  .nav-menu a,
  .nav-login {
    padding-inline: 9px;
    font-size: 0.84rem;
  }

  .hero-grid,
  .about-grid,
  .contact-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 440px;
  }

  .hero-visual img {
    min-height: 440px;
  }

  .feature-grid,
  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stats-grid,
  .plan-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-step::after {
    display: none;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 74px;
  }

  .section {
    padding: 86px 18px;
  }

  .navbar {
    padding: 0 18px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 18px;
    right: 18px;
    display: grid;
    gap: 4px;
    border: 1px solid var(--line-soft);
    border-radius: var(--radius);
    background: rgba(8, 8, 8, 0.94);
    padding: 12px;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.22s ease, transform 0.22s ease;
    backdrop-filter: blur(22px);
  }

  .site-header.menu-open .nav-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-menu a,
  .nav-login {
    justify-content: flex-start;
    width: 100%;
    border-radius: var(--radius-sm);
    padding: 13px 14px;
    text-align: left;
  }

  .nav-login {
    margin-left: 0;
  }

  .hero {
    min-height: auto;
    padding-top: 116px;
  }

  .hero-grid {
    gap: 34px;
  }

  .hero-visual {
    min-height: 390px;
  }

  .hero-visual img {
    min-height: 390px;
  }

  .chart-orbit {
    width: 210px;
    right: -76px;
  }

  .feature-grid,
  .why-grid,
  .stats-grid,
  .plan-grid,
  .process-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .modal {
    padding: 12px;
  }

  .modal-grid {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .modal-close {
    right: 10px;
    top: 10px;
  }
}

@media (max-width: 560px) {
  .brand-text {
    font-size: 0.98rem;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 11.2vw, 3.35rem);
    line-height: 0.98;
  }

  .hero h1 span {
    display: block;
  }

  .hero-actions,
  .hero-trust {
    display: grid;
    width: 100%;
  }

  .btn {
    width: 100%;
  }

  .hero-visual {
    min-height: 320px;
  }

  .hero-visual img {
    min-height: 320px;
  }

  .hero-metric {
    min-width: 124px;
    padding: 12px;
  }

  .metric-one {
    left: 12px;
    bottom: 12px;
  }

  .metric-two {
    right: 12px;
    top: 12px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 340px;
    height: 340px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
