:root {
  --bg: #100b0f;
  --ink: #21161a;
  --muted: #71636a;
  --surface: #fbf7f2;
  --surface-strong: #ffffff;
  --line: #eaded7;
  --accent: #aa1744;
  --accent-dark: #7d102f;
  --gold: #c9a568;
  --plum: #23131b;
  --rose-soft: #f7e8e7;
  --shadow: 0 24px 70px rgba(28, 17, 22, 0.16);
  --radius: 10px;
  --display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --text: Manrope, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color-scheme: light;
  font-family: var(--text);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--text);
  font-size: 16px;
  line-height: 1.62;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.hp {
  display: none !important;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 74px;
  padding: 12px max(18px, calc((100vw - 1160px) / 2));
  border-bottom: 1px solid rgba(234, 222, 215, 0.72);
  background: rgba(251, 247, 242, 0.92);
  box-shadow: 0 14px 36px rgba(22, 12, 16, 0.06);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 170px;
  font-weight: 850;
}

.brand-mark {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 9px;
  border: 1px solid rgba(201, 165, 104, 0.5);
  background: var(--plum);
  color: #fff;
  font-size: 13px;
}

.brand span:last-child {
  font-family: var(--display);
  font-size: 20px;
  line-height: 1;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  color: #4b4044;
  font-size: 13px;
  font-weight: 760;
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--accent);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-cta,
.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: var(--radius);
  padding: 12px 20px;
  font-weight: 850;
  line-height: 1.2;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.header-cta,
.button-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 16px 36px rgba(170, 23, 68, 0.28);
}

.button-light {
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.button-outline {
  border: 1px solid rgba(170, 23, 68, 0.24);
  background: rgba(255, 255, 255, 0.72);
  color: var(--accent-dark);
}

.button:hover,
.header-cta:hover,
.button:focus-visible,
.header-cta:focus-visible {
  transform: translateY(-1px);
}

.nav-toggle {
  position: fixed;
  z-index: 50;
  top: 15px;
  right: 16px;
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(33, 18, 24, 0.18);
  border-radius: var(--radius);
  background: var(--plum);
}

.nav-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 3px auto;
  border-radius: 2px;
  background: #fff;
  transition: transform 180ms ease, opacity 180ms ease;
}

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

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

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

.hero {
  position: relative;
  overflow: hidden;
  min-height: min(790px, calc(100svh - 10px));
  background:
    radial-gradient(720px 360px at 82% 18%, rgba(201, 165, 104, 0.18), transparent 62%),
    radial-gradient(560px 320px at 18% 70%, rgba(170, 23, 68, 0.24), transparent 68%),
    linear-gradient(135deg, #160b12 0%, #23121b 52%, #0c1111 100%);
  color: #fff;
}

.hero::before,
.hero::after {
  position: absolute;
  inset: auto;
  border-radius: 999px;
  pointer-events: none;
  content: "";
}

.hero::before {
  top: 110px;
  right: -80px;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(201, 165, 104, 0.18);
  animation: floatRing 12s ease-in-out infinite;
}

.hero::after {
  bottom: 80px;
  left: 8%;
  width: 7px;
  height: 7px;
  background: var(--gold);
  box-shadow:
    120px -180px 0 rgba(255, 255, 255, 0.22),
    360px -80px 0 rgba(201, 165, 104, 0.42),
    620px -240px 0 rgba(255, 255, 255, 0.16),
    820px -120px 0 rgba(201, 165, 104, 0.22),
    1000px -280px 0 rgba(255, 255, 255, 0.12);
  animation: floatSpark 9s ease-in-out infinite;
}

@keyframes floatRing {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  50% {
    transform: translate3d(-18px, 18px, 0) rotate(14deg);
  }
}

@keyframes floatSpark {
  0%,
  100% {
    opacity: 0.7;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(-18px);
  }
}

@keyframes starDrift {
  0% {
    background-position: 0 0, 34px 42px;
  }
  100% {
    background-position: 112px 112px, 190px 198px;
  }
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: inherit;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.68fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  padding: 76px 0 60px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.05;
}

h1 {
  max-width: 860px;
  color: #fff;
  font-size: clamp(44px, 6.2vw, 78px);
  overflow-wrap: normal;
  word-break: normal;
}

h2 {
  color: var(--plum);
  font-size: clamp(34px, 5vw, 58px);
}

h3 {
  color: var(--plum);
  font-size: 28px;
}

.hero-lead {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 2.1vw, 22px);
  overflow-wrap: break-word;
}

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

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.hero-points span {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  padding: 9px 13px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 760;
}

.hero-visual {
  position: relative;
  display: grid;
  min-height: 520px;
  align-content: end;
}

.visual-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.05)),
    rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(16px);
}

.visual-card::before {
  position: absolute;
  top: -90px;
  right: -80px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: rgba(201, 165, 104, 0.18);
  content: "";
}

.visual-card strong {
  display: block;
  color: #fff;
  font-family: var(--display);
  font-size: 36px;
  line-height: 1.05;
}

.visual-card p {
  max-width: 360px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.75);
}

.visual-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.visual-list span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 12px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 760;
}

.visual-list i {
  width: 9px;
  height: 9px;
  flex: 0 0 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(201, 165, 104, 0.12);
}

.section {
  padding: clamp(64px, 8vw, 106px) 0;
  background: var(--surface);
}

.section-soft {
  background:
    radial-gradient(620px 280px at 85% 0%, rgba(170, 23, 68, 0.08), transparent 68%),
    var(--surface);
}

.section-dark {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(620px 320px at 18% 12%, rgba(170, 23, 68, 0.22), transparent 70%),
    radial-gradient(580px 340px at 88% 82%, rgba(201, 165, 104, 0.16), transparent 68%),
    linear-gradient(135deg, #120a0f 0%, #24131c 62%, #0d1111 100%);
  color: #fff;
}

.application-flow::before,
.application-flow::after {
  position: absolute;
  pointer-events: none;
  content: "";
}

.application-flow::before {
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(201, 165, 104, 0.58) 0 2px, transparent 2px),
    radial-gradient(circle, rgba(255, 255, 255, 0.24) 0 1px, transparent 1px);
  background-position: 0 0, 34px 42px;
  background-size: 112px 112px, 156px 156px;
  opacity: 0.16;
  animation: starDrift 18s linear infinite;
}

.application-flow::after {
  right: -110px;
  bottom: -160px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(201, 165, 104, 0.18);
  border-radius: 50%;
  box-shadow: inset 0 0 70px rgba(201, 165, 104, 0.08);
  animation: floatRing 14s ease-in-out infinite;
}

.application-flow__grid {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(310px, 0.82fr) minmax(420px, 1fr);
  gap: clamp(20px, 4vw, 42px);
  align-items: stretch;
}

.section-dark h2,
.section-dark h3 {
  color: #fff;
}

.section-dark .section-lead,
.section-dark p {
  color: rgba(255, 255, 255, 0.78);
}

.section-heading {
  display: grid;
  gap: 14px;
  max-width: 820px;
  margin-bottom: 34px;
}

.section-lead {
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 20px);
}

.card-grid,
.country-grid,
.split-grid {
  display: grid;
  gap: 16px;
}

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

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

.split-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  align-items: start;
}

.info-card,
.country-chip,
.contact-panel,
.form-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

.info-card {
  min-height: 246px;
  padding: 26px;
}

.info-card .num {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--rose-soft);
  color: var(--accent);
  font-weight: 900;
}

.info-card h3 {
  margin-top: 24px;
}

.info-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.country-chip {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px;
  font-weight: 860;
}

.country-chip::after {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.quote-panel {
  position: relative;
  display: grid;
  gap: 16px;
  align-content: start;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  padding: clamp(26px, 4vw, 42px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.045)),
    rgba(255, 255, 255, 0.05);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  overflow: hidden;
}

.quote-panel::after {
  position: absolute;
  right: -50px;
  bottom: -70px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 165, 104, 0.24), transparent 68%);
  content: "";
}

.quote-panel strong {
  position: relative;
  z-index: 1;
  color: #fff;
  font-family: var(--display);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
}

.application-flow__steps {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  padding: clamp(26px, 4vw, 42px);
  background:
    radial-gradient(480px 240px at 96% 0%, rgba(201, 165, 104, 0.16), transparent 68%),
    rgba(255, 255, 255, 0.075);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.24);
}

.application-flow__steps h2 {
  margin-bottom: 24px;
}

.soft-list {
  counter-reset: flow-step;
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.soft-list li {
  position: relative;
  min-height: 76px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius);
  padding: 18px 20px 18px 76px;
  background: rgba(255, 255, 255, 0.075);
  color: rgba(255, 255, 255, 0.86);
  font-size: 16px;
  font-weight: 720;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.soft-list li::before {
  position: absolute;
  top: 50%;
  left: 20px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(201, 165, 104, 0.38);
  border-radius: 50%;
  background: rgba(201, 165, 104, 0.14);
  color: #f2d39b;
  content: counter(flow-step, decimal-leading-zero);
  counter-increment: flow-step;
  font-size: 12px;
  font-weight: 900;
  transform: translateY(-50%);
}

.soft-list li::after {
  position: absolute;
  top: -15px;
  bottom: calc(50% + 19px);
  left: 39px;
  width: 1px;
  background: linear-gradient(rgba(201, 165, 104, 0), rgba(201, 165, 104, 0.35));
  content: "";
}

.soft-list li:first-child::after {
  display: none;
}

.contact-panel {
  padding: clamp(28px, 4vw, 42px);
  background:
    radial-gradient(420px 220px at 100% 0%, rgba(201, 165, 104, 0.12), transparent 72%),
    rgba(255, 255, 255, 0.86);
}

.contact-panel p {
  margin: 18px 0 0;
  color: var(--muted);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.form-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: clamp(18px, 3vw, 26px);
}

.form-card label {
  display: grid;
  gap: 8px;
  color: #4a3d43;
  font-size: 13px;
  font-weight: 860;
}

.form-card .full {
  grid-column: 1 / -1;
}

.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  border: 1px solid #ded0c8;
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  outline: 0;
  padding: 13px 14px;
}

.form-card input:focus,
.form-card select:focus,
.form-card textarea:focus {
  border-color: rgba(170, 23, 68, 0.48);
  box-shadow: 0 0 0 4px rgba(170, 23, 68, 0.09);
}

.checkbox {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: flex-start;
  gap: 10px !important;
  color: var(--muted) !important;
  font-size: 13px !important;
  line-height: 1.45;
}

.checkbox input {
  width: auto;
  margin-top: 3px;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 780;
}

.form-status.is-error {
  color: #8f1234;
}

.site-footer {
  padding: 28px 0;
  background: #0c080b;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.footer-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-layout p {
  margin: 0;
}

.footer-layout a {
  color: #fff;
  font-weight: 820;
}

@media (max-width: 1020px) {
  .site-header {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 10px 16px;
  }

  .nav-toggle {
    position: static;
    display: inline-grid;
    flex: 0 0 44px;
  }

  .site-nav {
    position: fixed;
    top: 74px;
    right: 0;
    left: 0;
    display: grid;
    justify-content: stretch;
    gap: 0;
    border-bottom: 1px solid var(--line);
    background: var(--surface);
    padding: 14px 20px 20px;
    box-shadow: var(--shadow);
    transform: translateY(-140%);
    transition: transform 220ms ease;
  }

  .nav-open .site-nav {
    transform: translateY(0);
  }

  .site-nav a {
    border-bottom: 1px solid rgba(222, 214, 200, 0.72);
    padding: 13px 0;
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .header-cta {
    display: none;
  }

  .hero-inner,
  .split-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 0;
  }

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

  .application-flow__grid {
    gap: 18px;
  }
}

@media (max-width: 720px) {
  .container {
    width: calc(100% - 28px);
  }

  .site-header {
    min-height: 66px;
    padding: 10px 14px;
  }

  .brand {
    min-width: 0;
  }

  .brand span:last-child {
    font-size: 18px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .nav-toggle {
    top: auto;
    right: auto;
  }

  .site-nav {
    top: 66px;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    padding: 52px 0 48px;
  }

  h1 {
    max-width: 360px;
    font-size: clamp(30px, 8vw, 34px);
    line-height: 1.08;
    overflow-wrap: break-word;
  }

  h2 {
    font-size: clamp(32px, 9vw, 42px);
  }

  .hero-lead {
    max-width: 330px;
    font-size: 16px;
  }

  .hero-actions,
  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-points,
  .card-grid,
  .country-grid,
  .form-card {
    grid-template-columns: 1fr;
  }

  .hero-points {
    display: grid;
  }

  .section {
    padding: 58px 0;
  }

  .application-flow__steps,
  .quote-panel {
    padding: 22px;
  }

  .application-flow__steps h2 {
    margin-bottom: 18px;
  }

  .soft-list {
    gap: 10px;
  }

  .soft-list li {
    min-height: 68px;
    padding: 15px 16px 15px 62px;
    font-size: 14px;
  }

  .soft-list li::before {
    left: 16px;
    width: 32px;
    height: 32px;
    font-size: 11px;
  }

  .soft-list li::after {
    left: 32px;
    bottom: calc(50% + 16px);
  }

  .info-card {
    min-height: 0;
    padding: 22px;
  }

  .form-card .full {
    grid-column: auto;
  }

  .footer-layout {
    align-items: flex-start;
    flex-direction: column;
  }
}

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