:root {
  --primary: #0b0551;
  --primary-2: #151064;
  --accent: #c8c7ff;
  --gold: #d8c690;
  --text: #1d2433;
  --muted: #647084;
  --light: #f7f8fc;
  --white: #ffffff;
  --border: #e5e8f0;
  --shadow: 0 20px 55px rgba(11, 5, 81, 0.10);
  --radius: 24px;
  --max: 1180px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
}

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

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

.container {
  width: min(92%, var(--max));
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 700;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
  font-size: 0.96rem;
}

.btn-primary {
  background: var(--white);
  color: var(--primary);
  box-shadow: 0 12px 30px rgba(0,0,0,0.16);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(0,0,0,0.22);
}

.btn-dark {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow);
}

.btn-dark:hover {
  background: var(--primary-2);
  transform: translateY(-2px);
}

.btn-outline {
  border: 1px solid rgba(255,255,255,0.32);
  color: var(--white);
  background: transparent;
}

.btn-outline:hover { background: rgba(255,255,255,0.10); }

.btn-light-outline {
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--primary);
}

.btn-light-outline:hover { background: var(--light); }

header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(11, 5, 81, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 12px;
  background: var(--primary);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text strong {
  color: var(--primary);
  letter-spacing: 0.12em;
  font-size: 1rem;
}

.brand-text span {
  color: var(--muted);
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  margin-top: 5px;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 22px;
  align-items: center;
}

nav a {
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 700;
}

nav a:hover { color: var(--primary); }

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 15%, rgba(200,199,255,0.18), transparent 32%),
    linear-gradient(135deg, #090344 0%, #120a63 55%, #050228 100%);
  color: var(--white);
  padding: 95px 0 80px;
}

.hero::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -220px;
  bottom: -220px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.14fr 0.86fr;
  gap: 42px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.16);
  color: rgba(255,255,255,0.90);
  margin-bottom: 22px;
  font-size: 0.9rem;
  font-weight: 700;
}

.hero h1 {
  font-size: clamp(2.35rem, 5vw, 4.8rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
  margin-bottom: 20px;
}

.hero p {
  color: rgba(255,255,255,0.84);
  max-width: 720px;
  font-size: 1.08rem;
  margin-bottom: 30px;
}

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

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 760px;
}

.trust-item {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.13);
}

.trust-item strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.trust-item span {
  color: rgba(255,255,255,0.72);
  font-size: 0.9rem;
}

.hero-card {
  border-radius: 30px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  padding: 30px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.26);
}

.logo-panel {
  background: #0b0551;
  border-radius: 24px;
  padding: 46px 28px;
  margin-bottom: 24px;
  border: 1px solid rgba(255,255,255,0.12);
}

.logo-panel img {
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  border-radius: 12px;
}

.hero-card h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
}

.hero-card p {
  margin: 0 0 18px;
  font-size: 0.98rem;
}

.mini-list {
  display: grid;
  gap: 10px;
  list-style: none;
}

.mini-list li {
  color: rgba(255,255,255,0.86);
  font-size: 0.95rem;
  display: flex;
  gap: 10px;
}

.mini-list li::before {
  content: "✓";
  color: var(--gold);
  font-weight: bold;
}

section { padding: 86px 0; }

.section-head {
  text-align: center;
  margin-bottom: 42px;
}

.section-head span {
  display: inline-block;
  color: var(--primary);
  font-weight: 800;
  font-size: 0.88rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-head h2 {
  color: var(--primary);
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}

.section-head p {
  color: var(--muted);
  max-width: 780px;
  margin: 0 auto;
  font-size: 1rem;
}

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

.service-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: 0.25s ease;
}

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

.icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  margin-bottom: 20px;
}

.service-card h3 {
  color: var(--primary);
  margin-bottom: 12px;
  font-size: 1.22rem;
}

.service-card p {
  color: var(--muted);
  font-size: 0.98rem;
}

.feature-section { background: var(--light); }

.feature-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 30px;
  align-items: stretch;
}

.feature-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 36px;
  box-shadow: var(--shadow);
}

.feature-box.dark {
  background: linear-gradient(135deg, var(--primary), #151064);
  color: var(--white);
}

.feature-box h3 {
  font-size: 1.65rem;
  line-height: 1.18;
  margin-bottom: 14px;
  color: var(--primary);
}

.feature-box.dark h3 { color: var(--white); }

.feature-box p {
  color: var(--muted);
  margin-bottom: 20px;
}

.feature-box.dark p { color: rgba(255,255,255,0.80); }

.check-list {
  list-style: none;
  display: grid;
  gap: 14px;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--text);
}

.feature-box.dark .check-list li { color: rgba(255,255,255,0.88); }

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
  font-weight: 900;
}

.feature-box.dark .check-list li::before { color: var(--gold); }

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.process-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  margin-bottom: 18px;
}

.process-card h3 {
  color: var(--primary);
  font-size: 1.08rem;
  margin-bottom: 10px;
}

.process-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.cta-band {
  padding: 72px 0;
  background:
    radial-gradient(circle at 15% 15%, rgba(216,198,144,0.18), transparent 28%),
    linear-gradient(135deg, #090344 0%, #151064 100%);
  color: var(--white);
}

.cta-content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 26px;
  align-items: center;
}

.cta-content h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.12;
  margin-bottom: 12px;
}

.cta-content p {
  color: rgba(255,255,255,0.80);
  max-width: 760px;
}

.cta-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.faq-section { background: var(--white); }

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 26px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.faq-item h3 {
  color: var(--primary);
  font-size: 1.08rem;
  margin-bottom: 8px;
}

.faq-item p {
  color: var(--muted);
  font-size: 0.96rem;
}

.contact-section { background: var(--light); }

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
}

.contact-card,
.form-card,
.legal-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 34px;
  box-shadow: var(--shadow);
}

.contact-card h3,
.form-card h3,
.legal-card h2,
.legal-card h3 {
  color: var(--primary);
  margin-bottom: 18px;
}

.contact-card h3,
.form-card h3 { font-size: 1.45rem; }

.contact-item {
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}

.contact-item:last-of-type { border-bottom: none; }

.contact-item strong {
  display: block;
  color: var(--text);
  margin-bottom: 5px;
}

.contact-item a,
.contact-item span,
.legal-card p,
.legal-card li {
  color: var(--muted);
}

.contact-item a:hover { color: var(--primary); }

form {
  display: grid;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 15px 16px;
  font-size: 0.98rem;
  font-family: inherit;
  outline: none;
  background: var(--white);
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(11, 5, 81, 0.08);
}

textarea {
  min-height: 145px;
  resize: vertical;
}

.privacy-note {
  font-size: 0.84rem;
  color: var(--muted);
}

footer {
  background: #070614;
  color: rgba(255,255,255,0.78);
  padding: 34px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand img {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  object-fit: cover;
}

.footer-brand strong {
  color: var(--white);
  letter-spacing: 0.1em;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-links a:hover { color: var(--white); }

.page-hero {
  background: linear-gradient(135deg, #090344 0%, #151064 100%);
  color: var(--white);
  padding: 76px 0;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.1;
  margin-bottom: 12px;
}

.page-hero p {
  color: rgba(255,255,255,0.82);
  max-width: 760px;
}

.legal-content {
  background: var(--light);
}

.legal-card {
  max-width: 920px;
  margin: 0 auto;
}

.legal-card h2 {
  font-size: 1.65rem;
  margin-top: 20px;
}

.legal-card h2:first-child { margin-top: 0; }

.legal-card h3 { margin-top: 18px; }

.legal-card ul {
  padding-left: 20px;
  margin-bottom: 16px;
}

.legal-warning {
  background: #fff9e8;
  border: 1px solid #f1df9d;
  color: #6a5702;
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 24px;
}

.status-box {
  max-width: 720px;
  margin: 80px auto;
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
  text-align: center;
}

.status-box h1 { color: var(--primary); margin-bottom: 10px; }
.status-box p { color: var(--muted); margin-bottom: 22px; }

@media (max-width: 1020px) {
  nav ul {
    gap: 14px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .hero-grid,
  .feature-grid,
  .contact-grid,
  .cta-content {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .process-grid,
  .faq-grid,
  .trust-row {
    grid-template-columns: 1fr;
  }

  .cta-buttons { justify-content: flex-start; }
}

@media (max-width: 760px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  nav ul { justify-content: flex-start; }

  .hero { padding: 70px 0 60px; }

  section { padding: 66px 0; }

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

  .hero-actions,
  .cta-buttons {
    flex-direction: column;
  }

  .btn { width: 100%; }

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

  .footer-links { justify-content: flex-start; }
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}
