@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Syne:wght@700;800&display=swap");

:root {
  --bg: #0a0806;
  --bg-alt: #120f0b;
  --surface: #17140f;
  --surface-hover: #1f1b14;
  --border: rgba(184, 149, 74, 0.38);
  --border-hover: rgba(214, 178, 96, 0.7);
  --text: #f7f3ea;
  --text-secondary: #e6dcc8;
  --text-muted: #c9b894;
  --gold: #c4a35a;
  --gold-bright: #e2c57a;
  --gold-deep: #9a7a32;
  --gold-soft: rgba(196, 163, 90, 0.14);
  --white: #f7f3ea;
  --paper: #120f0b;
  --ink: #f7f3ea;
  --ink-soft: #e6dcc8;
  --radius: 16px;
  --radius-sm: 12px;
  --radius-xs: 8px;
  --font: "Inter", system-ui, -apple-system, sans-serif;
  --display: "Syne", "Inter", sans-serif;
  --shadow-card:
    0 0 0 1px var(--border),
    0 4px 24px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  --shadow-card-hover:
    0 0 0 1px var(--border-hover),
    0 14px 40px rgba(0, 0, 0, 0.5),
    0 0 28px rgba(201, 162, 39, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  --max: 1100px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text-secondary);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

body.menu-open,
body.modal-open { overflow: hidden; }

a { color: var(--text); }

.container {
  width: min(var(--max), 92vw);
  margin: 0 auto;
}

.page-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.page-bg__base {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 110% 70% at 50% -18%, #1a140c 0%, transparent 52%),
    linear-gradient(180deg, #0c0a07 0%, #0a0806 45%, #080705 100%);
}

.page-bg__mesh {
  position: absolute;
  inset: -50%;
  background:
    radial-gradient(circle at 30% 18%, rgba(154, 122, 50, 0.1) 0%, transparent 42%),
    radial-gradient(circle at 80% 70%, rgba(120, 92, 32, 0.08) 0%, transparent 40%);
  animation: mesh-drift 22s ease-in-out infinite alternate;
}

@keyframes mesh-drift {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(2%, 3%) scale(1.04); }
}

.page-bg__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.22;
}

.page-bg__glow--1 {
  width: 520px;
  height: 520px;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(154, 122, 50, 0.16);
}

.page-bg__glow--2 {
  width: 380px;
  height: 380px;
  top: 38%;
  right: -90px;
  background: rgba(120, 92, 32, 0.1);
}

.page-bg__glow--3 {
  width: 340px;
  height: 340px;
  bottom: 8%;
  left: -80px;
  background: rgba(154, 122, 26, 0.16);
}

.page-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, black 15%, transparent 75%);
}

.page-noise {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  mix-blend-mode: overlay;
}

.site-header,
.hero,
.section,
.cta-band,
.site-footer,
.legal,
.light-strip {
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 8, 6, 0.96);
  backdrop-filter: blur(20px) saturate(1.3);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
  gap: 1rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-shrink: 0;
}

.lang-switch {
  display: inline-flex;
  padding: 3px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}

.lang-btn {
  border: 0;
  background: transparent;
  color: #f0e6c8;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 0.38rem 0.65rem;
  border-radius: 999px;
  cursor: pointer;
}

.lang-btn.is-active {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #111;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.12em;
}

.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  box-shadow: 0 0 0 1px rgba(201, 162, 39, 0.35);
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.2rem 0.95rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav a {
  color: #f4eedd;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  transition: color 0.15s;
  white-space: nowrap;
}

.nav a:hover,
.nav a.is-active { color: var(--text); }

.nav-cta {
  background: linear-gradient(180deg, #d4b66a 0%, #b8913f 100%) !important;
  color: #0a0806 !important;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 0 22px rgba(201, 162, 39, 0.28);
}

.nav-cta:hover { opacity: 0.94; color: #111 !important; }

.menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  padding: 10px 11px;
  cursor: pointer;
}

.menu-btn span {
  display: block;
  height: 2px;
  background: var(--gold-bright);
  margin: 5px 0;
}

.hero {
  padding: 5.2rem 0 4.2rem;
  text-align: center;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(700px, 90vw);
  height: 320px;
  background: radial-gradient(ellipse, rgba(201, 162, 39, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 760px;
  position: relative;
  z-index: 1;
}

.hero-logo {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.35rem;
  display: block;
  box-shadow: 0 0 0 1px rgba(201, 162, 39, 0.4), 0 12px 40px rgba(0, 0, 0, 0.45);
}

.hero-badge {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-bright);
  border: 1px solid rgba(201, 162, 39, 0.4);
  background: var(--gold-soft);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1.6rem;
  box-shadow: 0 0 20px rgba(201, 162, 39, 0.12);
}

.hero h1,
.page-hero h1,
.section h2,
.cta-band h2,
.legal h1 {
  font-family: var(--display);
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  line-height: 1.04;
  margin: 0 0 1.2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text);
}

.hero-gold {
  color: var(--gold-bright);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.65);
}

.hero-lead {
  font-size: 1.08rem;
  color: var(--text-secondary);
  max-width: 52ch;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 580px;
  margin: 0 auto;
}

.stat-card {
  background: var(--surface);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1rem;
  text-align: center;
  box-shadow: var(--shadow-card);
}

.stat-card strong {
  display: block;
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
  margin-bottom: 0.2rem;
}

.stat-card span {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.78rem 1.5rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.15s, background 0.15s, border-color 0.15s, transform 0.15s;
  font-family: inherit;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: linear-gradient(180deg, #d4b66a 0%, #b8913f 100%);
  color: #0a0806;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(184, 149, 74, 0.35);
}

.btn-primary:hover {
  opacity: 0.95;
  box-shadow: 0 6px 32px rgba(201, 162, 39, 0.42);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-hover);
}

.btn-secondary:hover {
  background: var(--surface);
  border-color: var(--gold);
}

.btn-dark {
  background: var(--ink);
  color: var(--white);
}

.light-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: #120f0b;
}

.strip-inner {
  min-height: 68px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  text-align: center;
}

.strip-inner span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-bright);
  border-right: 1px solid rgba(184, 149, 74, 0.28);
}

.strip-inner span:last-child { border: 0; }

.section { padding: 5rem 0; }

.section--alt {
  background: var(--bg-alt);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section--light {
  background: #110e0a;
  color: var(--text-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section--light .section-label { color: var(--gold-bright); }
.section--light h2,
.section--light h3 { color: var(--text); }
.section--light .section-intro,
.section--light p { color: var(--text-secondary); }

.section-head { margin-bottom: 2.5rem; }

.section-head--center { text-align: center; }

.section-head--center .section-intro {
  margin-left: auto;
  margin-right: auto;
}

.section-label {
  display: block;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin: 0 0 0.75rem;
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1.12;
  font-weight: 800;
}

.section-intro {
  color: var(--text-secondary);
  max-width: 48ch;
  margin: 0;
  font-size: 1.05rem;
}

.home-preview-grid,
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.home-preview-card,
.feature-card,
.solution-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--surface);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.home-preview-card:hover,
.feature-card:hover,
.solution-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-card-hover);
}

.home-preview-card h3,
.feature-card h3,
.solution-card h3 {
  margin: 0 0 0.5rem;
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 700;
}

.home-preview-card p,
.feature-card p,
.solution-card p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.92rem;
}

.section--light .solution-card,
.section--light .feature-card {
  background: var(--surface);
  border-color: var(--border);
  box-shadow: var(--shadow-card);
}

.section--light .solution-card:hover,
.section--light .feature-card:hover {
  border-color: var(--border-hover);
}

.section--light .solution-card h3,
.section--light .feature-card h3 { color: var(--text); }
.section--light .solution-card p,
.section--light .feature-card p { color: var(--text-secondary); }

.feature-num,
.card-index {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}

.card-tag {
  display: inline-block;
  margin-top: 1.1rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

.steps-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.notice-card {
  margin-top: 1.5rem;
  padding: 1.25rem 1.4rem;
  background: var(--gold-soft);
  border: 1px solid rgba(201, 162, 39, 0.28);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--gold);
}

.notice-card strong {
  display: block;
  color: var(--text);
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
}

.notice-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.cta-band { padding: 4rem 0; }

.cta-inner {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
  padding: 2.5rem 2rem;
  background: var(--surface);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  box-shadow: var(--shadow-card);
}

.cta-band h2 {
  color: var(--text);
  margin: 0 0 0.65rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
}

.cta-band p {
  color: var(--text-secondary);
  margin: 0 0 1.5rem;
}

.page-hero {
  padding: 3.6rem 0 1rem;
  text-align: left;
}

.page-hero h1 {
  font-size: clamp(2.1rem, 5vw, 3.2rem);
  color: var(--text);
  margin: 0 0 0.8rem;
  letter-spacing: -0.035em;
}

.page-hero p {
  max-width: 54ch;
  margin: 0;
  color: var(--text-secondary);
}

.form-card {
  background: var(--surface);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.form-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.form-grid {
  display: grid;
  gap: 1.1rem;
  width: 100%;
}

@media (min-width: 600px) {
  .form-grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  min-width: 0;
}

.form-group.full { grid-column: 1 / -1; }

label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}

.required::after { content: " *"; color: #e08b8b; }

input, select, textarea {
  font-family: inherit;
  font-size: 0.95rem;
  padding: 0.72rem 0.9rem;
  border: 1px solid rgba(232, 197, 71, 0.38);
  border-radius: var(--radius-xs);
  background: #100e0a;
  color: var(--text);
  width: 100%;
}

input::placeholder,
textarea::placeholder { color: #b7a888; }

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: rgba(201, 162, 39, 0.55);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.12);
}

select option { background: #111; }

textarea { resize: vertical; min-height: 96px; }

.checkbox-group {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.checkbox-group input {
  width: 1rem;
  height: 1rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
  accent-color: var(--gold);
}

.checkbox-group label {
  font-weight: 400;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

.form-submit {
  width: 100%;
  margin-top: 0.4rem;
  padding: 0.9rem;
}

.form-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.form-error {
  color: #e08b8b;
  font-size: 0.78rem;
  display: none;
}

.form-group.invalid .form-error { display: block; }

.form-group.invalid input,
.form-group.invalid select,
.form-group.invalid textarea {
  border-color: rgba(224, 139, 139, 0.7);
}

.form-wrapper.hidden { display: none; }

.form-success {
  display: none;
  text-align: center;
  padding: 2rem 1rem 1rem;
}

.form-success.visible { display: block; }

.form-success-icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #111;
  font-size: 1.4rem;
  font-weight: 800;
}

.form-success h3 {
  margin: 0 0 0.5rem;
  color: var(--text);
  font-size: 1.3rem;
}

.form-success p {
  color: var(--text-secondary);
  margin: 0 auto;
  max-width: 38ch;
}

.form-error-block {
  text-align: center;
  padding: 1.5rem 1rem;
  margin-top: 1rem;
  background: rgba(224, 139, 139, 0.08);
  border: 1px solid rgba(224, 139, 139, 0.35);
  border-radius: var(--radius-sm);
}

.form-error-block[hidden] { display: none; }

.contact-page-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.5rem;
  align-items: start;
}

.contact-card,
.map-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 1.5rem;
  backdrop-filter: blur(16px);
}

.contact-card h2,
.map-card h2 {
  margin: 0 0 0.85rem;
  color: var(--text);
  font-size: 1.2rem;
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.contact-list li {
  padding: 0.9rem 1rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
}

.contact-list strong {
  display: block;
  color: var(--gold);
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.contact-list span,
.contact-list a {
  color: var(--text-secondary);
  text-decoration: none;
}

.contact-list a:hover { color: var(--gold-bright); }

.map-card iframe {
  width: 100%;
  min-height: 320px;
  border: 0;
  border-radius: 12px;
  filter: grayscale(0.35) contrast(1.05);
}

.legal {
  padding: 3.5rem 0 4.5rem;
}

.legal-inner { max-width: 780px; margin: 0 auto; }

.legal-back {
  display: inline-flex;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.85rem;
  margin-bottom: 1.6rem;
}

.legal-back:hover { color: var(--gold-bright); }

.legal h1 {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--text);
  margin: 0 0 0.5rem;
}

.legal-updated {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin: 0 0 2rem;
}

.legal h2 {
  font-size: 1.15rem;
  color: var(--gold-bright);
  margin: 2rem 0 0.7rem;
}

.legal p,
.legal li {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.legal a { color: var(--gold-bright); }
.legal strong { color: var(--text); }

.site-footer {
  padding: 2.6rem 0;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 0.85rem;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  color: var(--text);
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: 0.12em;
  margin: 0 0 0.35rem;
  text-decoration: none;
}

.footer-brand img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
}

.site-footer p {
  margin: 0.2rem 0;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
  margin-top: 1.1rem;
}

.footer-link {
  display: inline-flex;
  padding: 0.6rem 1.15rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
}

.footer-link:hover {
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(201, 162, 39, 0.12);
}

@media (max-width: 860px) {
  .home-preview-grid,
  .solutions-grid { grid-template-columns: 1fr 1fr; }
  .contact-page-grid { grid-template-columns: 1fr; }
  .strip-inner { grid-template-columns: 1fr 1fr; }
  .strip-inner span {
    padding: 0.9rem 0.4rem;
    border-bottom: 1px solid #e6e1d6;
  }
}

@media (max-width: 760px) {
  .menu-btn { display: block; }
  .nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.6rem 4vw 1rem;
    background: rgba(8, 8, 8, 0.96);
    border-bottom: 1px solid var(--border);
  }
  .nav.open { display: flex; }
  .nav a {
    padding: 0.75rem 0.2rem;
    border-bottom: 1px solid var(--border);
  }
  .nav-cta {
    margin-top: 0.6rem;
    text-align: center;
    border: 0 !important;
  }
  .hero { padding: 3.4rem 0 3rem; }
  .section { padding: 3.5rem 0; }
  .hero-stats { grid-template-columns: 1fr; max-width: 240px; }
  .home-preview-grid,
  .solutions-grid { grid-template-columns: 1fr; }
  .form-card { padding: 1.35rem; }
  .countries-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-tg { flex-direction: column; }
}

.countries-grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
}

.region-group {
  grid-column: 1 / -1;
  margin: 1.4rem 0 0.15rem;
  font-family: var(--display);
  font-size: 1.05rem;
  color: var(--gold-bright);
  letter-spacing: -0.02em;
}

.region-group:first-child { margin-top: 0; }

.country-card {
  background: var(--surface);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1rem;
  text-align: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  font-family: inherit;
  width: 100%;
  color: inherit;
  box-shadow: var(--shadow-card);
}

.country-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-card-hover);
}

.country-flag {
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 0.55rem;
}

.country-name {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 0.3rem;
}

.country-banks {
  font-size: 0.74rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin: 0;
}

.country-hint {
  display: inline-block;
  margin-top: 0.7rem;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
}

.modal-overlay.visible {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: rgba(14, 14, 14, 0.96);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  width: min(500px, 100%);
  max-height: min(88vh, 680px);
  overflow: auto;
  box-shadow: var(--shadow-card-hover);
}

.modal-header {
  padding: 1.5rem 1.5rem 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.modal-flag {
  font-size: 2.25rem;
  display: block;
  margin-bottom: 0.35rem;
}

.modal-title {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text);
}

.modal-banks {
  margin: 0.25rem 0 0;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.modal-close {
  background: var(--bg);
  border: 1px solid var(--border);
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--text-secondary);
  flex-shrink: 0;
}

.modal-body { padding: 1.25rem 1.5rem 1.5rem; }

.modal-info {
  background: var(--gold-soft);
  border: 1px solid rgba(201, 162, 39, 0.28);
  border-radius: var(--radius-sm);
  padding: 1rem 1.1rem;
  margin-bottom: 1.15rem;
}

.modal-info-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 0.35rem;
}

.modal-info-value {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}

.modal-reqs {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  display: grid;
  gap: 0.5rem;
}

.modal-reqs li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.88rem;
  color: var(--text-secondary);
  padding: 0.65rem 0.8rem;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border);
  border-radius: var(--radius-xs);
}

.modal-reqs li::before {
  content: "✓";
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}

.modal-cta { width: 100%; }

.footer-tg,
.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin: 1.1rem 0 0.2rem;
}

.contact-cta {
  max-width: 680px;
  margin: 1.6rem auto 0;
  text-align: center;
}

.contact-cta-text {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0 0 0.9rem;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.65rem 1.2rem 0.65rem 0.65rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
}

.contact-btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.05rem;
  height: 2.05rem;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #2aabee, #229ed9);
  flex-shrink: 0;
}

.contact-btn-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}

.contact-btn-copy small {
  font-size: 0.68rem;
  color: var(--gold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-btn:hover {
  border-color: rgba(42, 171, 238, 0.5);
  box-shadow: 0 8px 22px rgba(34, 158, 217, 0.18);
}

.site-header { position: sticky; }

@media (max-width: 1100px) {
  .nav { display: none; }
  .menu-btn { display: block; }
  .nav.open {
    display: flex;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.6rem 4vw 1rem;
    background: rgba(8, 8, 8, 0.96);
    border-bottom: 1px solid var(--border);
  }
}
