/* =============================================================
   Landing — Relocation to Romania
   Same visual language as the deck (dark purple + polygons +
   white cards). Designed at 1440px content width.
   ============================================================= */

@font-face {
  font-family: "Montserrat";
  src: url("./fonts/Montserrat-VariableFont_wght.ttf") format("truetype-variations");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Caveat";
  src: url("./fonts/Caveat-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {
  --purple:        #6B5BFF;
  --purple-deep:   #4F3FE0;
  --purple-soft:   #8B7CFF;
  --purple-bright: #B89BFF;
  --ink:           #14122E;
  --ink-2:         #2A2748;
  --ink-3:         #5A5878;
  --ink-4:         #9A98B5;
  --white:         #FFFFFF;
  --bg-soft:       #F5F3FF;
  --line:          #ECEAFE;

  --dark-1:        #0E0524;
  --dark-2:        #1A0D34;
  --dark-3:        #281551;

  --r-sm:  10px;
  --r-md:  20px;
  --r-lg:  28px;
  --r-xl:  36px;
  --r-pill: 999px;

  --shadow-card: 0 18px 44px rgba(10, 5, 28, 0.40);
  --shadow-soft: 0 8px 22px rgba(10, 5, 28, 0.18);
  --shadow-cta:  0 16px 38px rgba(123, 90, 255, 0.55);

  --content-w: 1320px;
  --gutter:    24px;

  --font-sans:    "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-script:  "Caveat", cursive;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--dark-1);
  color: var(--white);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
}
body {
  background:
    radial-gradient(1200px 800px at 80% -10%, rgba(140, 95, 255, 0.22), transparent 60%),
    radial-gradient(900px 700px at -10% 20%, rgba(60, 28, 110, 0.55), transparent 65%),
    radial-gradient(800px 600px at 50% 60%, rgba(89, 71, 178, 0.10), transparent 70%),
    linear-gradient(180deg, #100628 0%, #0E0524 40%, #0A041C 100%);
  background-attachment: fixed;
}

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }

/* =================== Background system =================== */

.page {
  position: relative;
  isolation: isolate;
}
.page.bg-solid {
  background: var(--dark-1);
}
/* Stronger top gradient over polygons in hero */
.page::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1200px;
  background:
    radial-gradient(900px 600px at 75% 10%, rgba(120, 80, 255, 0.35), transparent 70%),
    radial-gradient(700px 500px at 10% 30%, rgba(40, 21, 81, 0.6), transparent 70%);
  z-index: -1;
  pointer-events: none;
}

.section {
  position: relative;
  padding: 120px 0;
}
.section--tight { padding: 80px 0; }
.section--white {
  background: var(--white);
  color: var(--ink);
}
.section--soft {
  background: var(--bg-soft);
  color: var(--ink);
}

.container {
  width: 100%;
  max-width: var(--content-w);
  padding: 0 var(--gutter);
  margin: 0 auto;
}

/* =================== Type =================== */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--purple-bright);
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 1.5px;
  background: var(--purple-bright);
}
.section--white .eyebrow,
.section--soft  .eyebrow { color: var(--purple); }
.section--white .eyebrow::before,
.section--soft  .eyebrow::before { background: var(--purple); }

.h1 {
  font-family: var(--font-sans);
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  font-size: clamp(48px, 6.6vw, 96px);
  line-height: 0.92;
  letter-spacing: -0.01em;
  margin: 0;
}
.h2 {
  font-family: var(--font-sans);
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  font-size: clamp(40px, 4.4vw, 72px);
  line-height: 0.96;
  letter-spacing: -0.005em;
  margin: 0;
}
.h3 {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 28px;
  line-height: 1.2;
  margin: 0;
  color: inherit;
}
.lead {
  font-weight: 500;
  font-size: 22px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
  max-width: 640px;
}
.section--white .lead,
.section--soft  .lead { color: var(--ink-2); }

.body {
  font-weight: 500;
  font-size: 17px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
}
.section--white .body,
.section--soft  .body { color: var(--ink-3); }

.script {
  font-family: var(--font-script);
  font-weight: 500;
  font-size: 38px;
  color: var(--purple-bright);
  transform: rotate(-3deg);
  display: inline-block;
}
.mark {
  display: inline-block;
  background: #FFE25C;
  color: var(--ink);
  padding: 0 0.18em;
  border-radius: 8px;
  transform: rotate(-1.5deg);
}

/* =================== Buttons =================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 28px;
  border-radius: var(--r-pill);
  font-family: var(--font-sans);
  font-weight: 800;
  font-style: italic;
  font-size: 18px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: transform .15s ease, box-shadow .15s ease, background .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--white);
  color: var(--purple-deep);
  box-shadow: var(--shadow-card);
}
.btn--primary .arrow {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--purple);
  color: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 16px; font-style: normal;
}
.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}
.btn--ghost:hover { background: rgba(255, 255, 255, 0.08); border-color: rgba(255,255,255,0.5); }
.section--white .btn--ghost,
.section--soft  .btn--ghost { color: var(--ink); border-color: rgba(20, 18, 46, 0.2); }
.section--white .btn--ghost:hover,
.section--soft  .btn--ghost:hover { background: rgba(20,18,46,0.05); }

.btn--accent {
  background: var(--purple);
  color: var(--white);
  box-shadow: var(--shadow-cta);
}
.btn--accent .arrow {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--white);
  color: var(--purple);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 16px; font-style: normal;
}

/* =================== Pills / chips =================== */

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  backdrop-filter: blur(8px);
}
.pill .dot-i { width: 8px; height: 8px; border-radius: 50%; background: var(--purple-bright); }
.section--white .pill,
.section--soft  .pill {
  background: var(--bg-soft);
  border-color: var(--line);
  color: var(--ink-2);
}
.section--white .pill .dot-i,
.section--soft  .pill .dot-i { background: var(--purple); }

/* =================== Cards =================== */

.card {
  background: var(--white);
  color: var(--ink);
  border-radius: var(--r-lg);
  padding: 36px 36px 32px;
  box-shadow: var(--shadow-card);
}
.card--glass {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  color: var(--white);
  box-shadow: none;
  backdrop-filter: blur(10px);
}
.card--ink   { background: var(--ink); color: var(--white); }
.card--purple { background: var(--purple); color: var(--white); box-shadow: var(--shadow-cta); }

/* =================== Top nav =================== */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 16px 0;
  background: linear-gradient(180deg, rgba(14,5,36,0.85), rgba(14,5,36,0.6));
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav .row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  font-weight: 800; font-size: 18px; letter-spacing: 0.04em;
  text-transform: uppercase;
}
.brand-mark {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--purple);
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-style: italic;
  color: var(--white);
  font-size: 16px;
  letter-spacing: -0.02em;
}
.brand-logo {
  height: 38px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}
.brand-logo--footer {
  height: 30px;
  margin-bottom: 16px;
}
.nav-cta .tel {
  font-weight: 700; font-size: 16px;
  color: var(--white);
  text-decoration: none;
}
.nav-cta .tel:hover { color: var(--purple-bright); }
.nav-links { display: flex; gap: 36px; }
.nav-links a {
  font-weight: 600; font-size: 15px;
  color: rgba(255,255,255,0.78);
  transition: color .15s ease;
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  display: flex; align-items: center; gap: 16px;
}
@media (max-width: 960px) {
  .nav-links { display: none; }
}

/* =================== Hero =================== */

.hero {
  padding: 80px 0 120px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow-row {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero h1 {
  font-size: clamp(52px, 6.4vw, 104px);
  line-height: 0.92;
}
.hero h1 .accent {
  color: var(--purple-bright);
}
.hero-sub {
  margin-top: 28px;
  max-width: 560px;
  font-size: 19px;
  line-height: 1.6;
  color: rgba(255,255,255,0.78);
}
.hero-tagline {
  margin-top: 18px;
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
  max-width: 560px;
}
.hero-tagline .script {
  font-size: 28px;
  margin-right: 6px;
  display: inline-block;
}
.hero-ctas {
  display: flex; gap: 16px; align-items: center; flex-wrap: wrap;
  margin-top: 40px;
}
.hero-meta {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 36px;
  max-width: 600px;
}
.hero-meta .item .n {
  font-family: var(--font-sans);
  font-weight: 900; font-style: italic;
  font-size: 44px; line-height: 1;
  color: var(--purple-bright);
}
.hero-meta .item .l {
  margin-top: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.35;
}

/* Hero visual — collage of glassy cards */
.hero-visual {
  position: relative;
  height: 620px;
}
.hv-card {
  position: absolute;
  border-radius: 24px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(14px);
  padding: 24px;
  box-shadow: 0 28px 60px rgba(10,5,28,0.45);
}
.hv-passport {
  top: 0; right: 30px;
  width: 320px; height: 420px;
  background: linear-gradient(160deg, #2d1758, #4F3FE0);
  border: 1px solid rgba(255,255,255,0.18);
  transform: rotate(4deg);
  padding: 36px 28px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.hv-passport .pp-top {
  font-family: var(--font-sans);
  font-weight: 800; font-size: 22px;
  letter-spacing: 0.02em;
  display: flex; align-items: center; justify-content: space-between;
}
.hv-passport .pp-top .seal {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
}
.hv-passport .pp-stamp {
  align-self: flex-start;
  margin-top: 36px;
  padding: 8px 16px;
  border: 2px solid var(--purple-bright);
  color: var(--purple-bright);
  border-radius: 6px;
  font-weight: 800; font-style: italic;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 14px;
  transform: rotate(-6deg);
}
.hv-passport .pp-name { font-weight: 800; font-size: 24px; margin-top: auto; }
.hv-passport .pp-meta { font-size: 13px; opacity: 0.7; margin-top: 6px; line-height: 1.5; }

.hv-stats {
  top: 80px; left: 0;
  width: 260px;
  background: var(--white);
  color: var(--ink);
  transform: rotate(-3deg);
}
.hv-stats .row {
  display: flex; align-items: baseline; justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 600; font-size: 15px;
  color: var(--ink-2);
}
.hv-stats .row:last-child { border-bottom: none; }
.hv-stats .row b { font-weight: 900; font-style: italic; font-size: 20px; color: var(--purple); }
.hv-stats .ttl {
  font-weight: 800; font-size: 14px; text-transform: uppercase;
  color: var(--purple); letter-spacing: 0.1em; margin-bottom: 14px;
}

.hv-flag {
  bottom: 30px; left: 60px;
  width: 220px; height: 140px;
  display: flex; flex-direction: row;
  padding: 0;
  overflow: hidden;
  transform: rotate(4deg);
  background: var(--white);
}
.hv-flag .stripe {
  flex: 1;
}
.hv-flag .blue   { background: #002B7F; }
.hv-flag .yellow { background: #FCD116; }
.hv-flag .red    { background: #CE1126; }

.hv-rocket {
  bottom: 80px; right: 0;
  width: 130px; height: 130px;
  border-radius: 50%;
  background: var(--purple);
  display: flex; align-items: center; justify-content: center;
  font-size: 64px;
  border: 6px solid rgba(255,255,255,0.1);
  box-shadow: var(--shadow-cta);
  padding: 0;
  transform: rotate(8deg);
}

/* =================== Logo strip =================== */

.logo-strip {
  padding: 56px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  align-items: center;
}
.trust-item {
  display: flex; flex-direction: column; gap: 6px;
  padding: 0 8px;
}
.trust-item + .trust-item {
  border-left: 1px solid rgba(255,255,255,0.10);
  padding-left: 28px;
}
.trust-n {
  font-family: var(--font-sans);
  font-weight: 900; font-style: italic;
  font-size: 44px;
  line-height: 1;
  color: var(--white);
  letter-spacing: -0.01em;
}
.trust-n span {
  font-size: 22px;
  color: var(--purple-bright);
  font-weight: 800;
}
.trust-l {
  font-size: 13px;
  line-height: 1.45;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}
@media (max-width: 900px) {
  .trust-row { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .trust-item + .trust-item { border-left: none; padding-left: 8px; }
  .trust-item:nth-child(odd) { border-left: none; }
}

/* =================== Stats =================== */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 64px;
}
.stat-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--r-lg);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
}
.stat-card .big {
  font-family: var(--font-sans);
  font-weight: 900; font-style: italic;
  font-size: 80px; line-height: 0.9;
  color: var(--white);
  letter-spacing: -0.02em;
}
.stat-card .big .unit { font-size: 32px; color: var(--purple-bright); }
.stat-card .ttl {
  margin-top: 16px;
  font-weight: 800; font-size: 18px;
  color: var(--white);
}
.stat-card .desc {
  margin-top: 8px;
  font-size: 14px; line-height: 1.5;
  color: rgba(255,255,255,0.65);
}
@media (max-width: 960px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }

/* =================== Section header =================== */

.sec-head {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 64px;
}
.sec-head .right { padding-bottom: 12px; }
@media (max-width: 900px) { .sec-head { grid-template-columns: 1fr; } }

/* =================== Problems =================== */

.problems-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.problem-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
  padding: 32px 28px;
}
.problem-card .icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(232, 103, 125, 0.15);
  color: #FF8FA3;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 900;
  margin-bottom: 20px;
}
.problem-card .ttl {
  font-weight: 800; font-size: 19px;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.25;
}
.problem-card .body {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
}
@media (max-width: 960px) { .problems-grid { grid-template-columns: repeat(2, 1fr); } }

/* =================== Features =================== */

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 36px 32px 32px;
  display: flex; flex-direction: column; gap: 16px;
  min-height: 280px;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}
.feature .icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--bg-soft);
  color: var(--purple);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
}
.feature h3 {
  font-weight: 800; font-size: 22px;
  color: var(--ink); line-height: 1.2;
  margin: 0;
}
.feature p {
  font-size: 15px; line-height: 1.55;
  color: var(--ink-3);
  margin: 0;
  margin-top: auto;
}
.feature--accent {
  background: var(--purple);
  color: var(--white);
}
.feature--accent .icon { background: rgba(255,255,255,0.15); color: var(--white); }
.feature--accent h3 { color: var(--white); }
.feature--accent p { color: rgba(255,255,255,0.85); }
@media (max-width: 960px) { .features-grid { grid-template-columns: 1fr; } }

/* =================== Process =================== */

.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 5%;
  right: 5%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent, rgba(184, 155, 255, 0.5) 20%,
    rgba(184, 155, 255, 0.5) 80%, transparent);
}
.step {
  position: relative;
  padding: 0 20px;
}
.step .num {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--dark-2);
  border: 1.5px solid var(--purple-bright);
  color: var(--purple-bright);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-sans);
  font-weight: 900; font-style: italic;
  font-size: 28px;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
}
.step .ttl {
  text-align: center;
  font-weight: 800; font-size: 20px;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.25;
}
.step .body {
  text-align: center;
  font-size: 14px; line-height: 1.55;
  color: rgba(255,255,255,0.65);
}
@media (max-width: 960px) {
  .process { grid-template-columns: 1fr 1fr; gap: 32px 0; }
  .process::before { display: none; }
}

/* =================== Testimonials =================== */

.cases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 1100px) { .cases { grid-template-columns: 1fr 1fr; } }
.case {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 36px 32px;
  box-shadow: var(--shadow-card);
  display: flex; flex-direction: column; gap: 20px;
  color: var(--ink);
  position: relative;
}
.case .badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px;
  border-radius: var(--r-pill);
  background: var(--purple);
  color: var(--white);
  font-weight: 700; font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  align-self: flex-start;
}
.case h3 {
  font-family: var(--font-sans);
  font-weight: 800; font-size: 26px;
  line-height: 1.15;
  color: var(--ink);
  margin: 0;
}
.case .quote {
  font-size: 17px; line-height: 1.6;
  color: var(--ink-2);
  font-weight: 500;
}
.case-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.case-stats .item .n {
  font-family: var(--font-sans);
  font-weight: 900; font-style: italic;
  font-size: 32px;
  color: var(--purple);
  line-height: 1;
}
.case-stats .item .l {
  margin-top: 6px;
  font-size: 13px;
  color: var(--ink-3);
  line-height: 1.4;
}
@media (max-width: 900px) { .cases { grid-template-columns: 1fr; } }

/* =================== About expert =================== */

.about {
  display: grid;
  grid-template-columns: 460px 1fr;
  gap: 64px;
  align-items: center;
}
.expert-card {
  border-radius: var(--r-xl);
  background: linear-gradient(180deg, #2d1758, #4F3FE0);
  height: 560px;
  position: relative;
  overflow: hidden;
  padding: 36px;
  display: flex; flex-direction: column; justify-content: flex-end;
  box-shadow: var(--shadow-card);
}
.expert-card .silhouette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 32%, rgba(255,255,255,0.18) 0 22%, transparent 23%),
    linear-gradient(180deg, transparent 0%, rgba(255,255,255,0.06) 60%, rgba(0,0,0,0.4) 100%);
}
.expert-card--photo {
  padding: 0;
  background: linear-gradient(180deg, #2d1758, #4F3FE0);
}
.expert-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.expert-card-overlay {
  position: relative;
  z-index: 2;
  padding: 36px;
  background: linear-gradient(180deg, transparent 0%, rgba(14,5,36,0.05) 30%, rgba(14,5,36,0.85) 75%, rgba(14,5,36,0.95) 100%);
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin-top: auto;
}
.expert-card--photo .name {
  position: relative;
  z-index: 2;
}
.expert-card--photo .role {
  position: relative;
  z-index: 2;
}
.expert-card .name {
  position: relative;
  font-family: var(--font-sans);
  font-weight: 900; font-style: italic;
  font-size: 44px;
  line-height: 1;
  color: var(--white);
  text-transform: uppercase;
}
.expert-card .role {
  position: relative;
  margin-top: 12px;
  font-weight: 500; font-size: 16px;
  color: rgba(255,255,255,0.78);
  line-height: 1.5;
}
.about-list {
  display: flex; flex-direction: column;
  gap: 18px;
  margin-top: 36px;
}
.about-list .item {
  display: flex; gap: 18px; align-items: flex-start;
}
.about-list .item .dot {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--purple);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 900;
  margin-top: 2px;
}
.about-list .item .txt {
  font-size: 18px; line-height: 1.5;
  color: rgba(255,255,255,0.82);
  font-weight: 500;
}
.about-list .item .txt b {
  font-weight: 800;
  color: var(--white);
}
@media (max-width: 960px) { .about { grid-template-columns: 1fr; } .expert-card { height: 420px; } }

/* =================== Pricing =================== */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.tier {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 40px 36px;
  display: flex; flex-direction: column; gap: 24px;
  color: var(--ink);
  box-shadow: var(--shadow-card);
  position: relative;
}
.tier .tier-name {
  font-weight: 800; font-size: 14px;
  color: var(--purple);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.tier .tier-price {
  font-family: var(--font-sans);
  font-weight: 900; font-style: italic;
  font-size: 60px;
  line-height: 1;
  color: var(--ink);
}
.tier .tier-price .from {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 6px;
}
.tier .tier-price .unit {
  font-size: 24px;
  color: var(--ink-3);
  font-weight: 700;
}
.tier .tier-desc {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-3);
}
.tier ul {
  list-style: none;
  margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.tier ul li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 15px; line-height: 1.45;
  color: var(--ink-2);
  font-weight: 500;
}
.tier ul li::before {
  content: "✓";
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--bg-soft);
  color: var(--purple);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 900;
  margin-top: 1px;
}
.tier .tier-cta { margin-top: auto; }
.tier .tier-cta .btn { width: 100%; justify-content: center; }

.tier--accent {
  background: var(--purple);
  color: var(--white);
  box-shadow: var(--shadow-cta);
}
.tier--accent .tier-name { color: rgba(255,255,255,0.8); }
.tier--accent .tier-price,
.tier--accent ul li { color: var(--white); }
.tier--accent .tier-price .from,
.tier--accent .tier-price .unit,
.tier--accent .tier-desc { color: rgba(255,255,255,0.75); }
.tier--accent ul { border-top-color: rgba(255,255,255,0.18); }
.tier--accent ul li::before { background: rgba(255,255,255,0.18); color: var(--white); }
.tier--accent .badge-tier {
  position: absolute;
  top: -14px; right: 32px;
  padding: 8px 20px;
  background: #FFE25C;
  color: var(--ink);
  border-radius: var(--r-pill);
  font-weight: 800; font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
@media (max-width: 960px) { .pricing-grid { grid-template-columns: 1fr; } }

/* =================== FAQ =================== */

.faq {
  max-width: 920px;
  margin: 0 auto;
}
.faq-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: background .2s ease;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 28px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  font-weight: 700; font-size: 18px;
  color: var(--white);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--purple);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 400;
  transition: transform .2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item[open] { background: rgba(255,255,255,0.06); }
.faq-item .answer {
  padding: 0 28px 24px;
  font-size: 16px; line-height: 1.6;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
}

/* =================== Final CTA =================== */

.final-cta {
  position: relative;
  border-radius: var(--r-xl);
  background:
    radial-gradient(800px 500px at 100% 0%, rgba(184, 155, 255, 0.3), transparent 60%),
    radial-gradient(700px 500px at 0% 100%, rgba(123, 90, 255, 0.25), transparent 60%),
    var(--purple);
  padding: 80px 80px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
  overflow: hidden;
  box-shadow: var(--shadow-cta);
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/polygon-bg.svg") right center/cover no-repeat;
  opacity: 0.18;
  pointer-events: none;
}
.final-cta > * { position: relative; z-index: 1; }
.final-cta h2 { font-size: clamp(40px, 4.6vw, 72px); color: var(--white); }
.final-cta .lead { color: rgba(255,255,255,0.88); margin-top: 24px; max-width: 580px; }
.final-cta .ctas {
  display: flex; flex-direction: column; gap: 14px; align-items: stretch;
}
.final-cta .ctas .btn { justify-content: center; }
.final-cta .ctas .hint {
  text-align: center;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
}

/* CTA eyebrow */
.final-cta .cta-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
}
.final-cta .cta-eyebrow .dot-i {
  width: 8px; height: 8px; border-radius: 50%;
  background: #FFE25C;
  box-shadow: 0 0 12px rgba(255,226,92,0.7);
}
.script-large {
  font-family: var(--font-script);
  font-weight: 500;
  font-size: 0.65em;
  color: #FFE25C;
  text-transform: none;
  font-style: normal;
  letter-spacing: 0;
  display: inline-block;
  transform: rotate(-2deg);
}

/* CTA list */
.cta-list {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.cta-list li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255,255,255,0.92);
  font-weight: 500;
}
.cta-li-i {
  flex-shrink: 0;
  color: #FFE25C;
  font-weight: 900;
}

/* CTA form */
.cta-form {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--r-lg);
  padding: 28px 28px 24px;
  backdrop-filter: blur(12px);
  display: flex; flex-direction: column; gap: 12px;
  max-width: 440px;
  width: 100%;
  align-self: center;
}
.cta-form-ttl {
  font-family: var(--font-sans);
  font-weight: 800; font-style: italic;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.9);
  margin-bottom: 6px;
}
.cta-inp {
  width: 100%;
  padding: 15px 18px;
  background: rgba(255,255,255,0.95);
  border: 2px solid transparent;
  border-radius: 12px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  transition: border-color .2s ease;
}
.cta-inp:focus {
  outline: none;
  border-color: #FFE25C;
}
.cta-inp::placeholder { color: var(--ink-4); font-weight: 500; }
.cta-sel { appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2314122E' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>"); background-repeat: no-repeat; background-position: right 18px center; padding-right: 44px; }
.cta-submit {
  width: 100%;
  justify-content: center;
  background: #FFE25C;
  color: var(--ink);
  margin-top: 4px;
  box-shadow: 0 12px 32px rgba(255,226,92,0.35);
}
.cta-submit:hover { background: #FFD93D; }
.cta-submit .arrow { background: var(--ink); color: #FFE25C; }
.cta-priv {
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  margin-top: 2px;
  line-height: 1.5;
}
.cta-msg-status {
  margin-top: 4px;
  padding: 0 10px;
  font-size: 13px;
  text-align: center;
  color: #FFE25C;
  min-height: 0;
  transition: min-height .2s;
}
.cta-msg-status--err {
  color: #FFB4B4;
  padding: 10px;
  background: rgba(255,80,80,0.12);
  border: 1px solid rgba(255,80,80,0.3);
  border-radius: 10px;
}
.cta-submit.busy { opacity: 0.7; cursor: wait; }

/* Success state */
.cta-form--ok { text-align: center; padding: 36px 28px; }
.cta-ok-i {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: #FFE25C;
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-size: 36px; font-weight: 900;
  margin: 0 auto 18px;
  box-shadow: 0 8px 24px rgba(255,226,92,0.4);
}
.cta-ok-t {
  font-family: var(--font-sans);
  font-weight: 900; font-style: italic;
  text-transform: uppercase;
  font-size: 22px;
  color: var(--white);
  margin-bottom: 8px;
}
.cta-ok-s {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255,255,255,0.85);
}

.cta-or {
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  margin-top: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
}
.cta-msgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 4px;
}
.cta-msg {
  display: flex; align-items: center; justify-content: center;
  padding: 12px 10px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: transform .15s ease, opacity .15s;
}
.cta-msg:hover { transform: translateY(-1px); opacity: 0.92; }
.cta-msg-wa { background: #25D366; color: var(--white); }
.cta-msg-tg { background: #29A8E0; color: var(--white); }
.cta-msg-tel { grid-column: 1 / -1; background: rgba(255,255,255,0.12); color: var(--white); border: 1px solid rgba(255,255,255,0.22); }

@media (max-width: 960px) {
  .final-cta { grid-template-columns: 1fr; padding: 56px 32px; }
  .cta-form { max-width: 100%; }
}

/* =================== Mobile adaptations =================== */

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding: 40px 0 64px; }
  .hero-visual { height: 480px; }
  .section { padding: 80px 0; }
  .section--tight { padding: 56px 0; }
}

@media (max-width: 760px) {
  .hero-visual { display: none; }
  .hero h1 { font-size: clamp(40px, 11vw, 64px); }
  .hero-meta { grid-template-columns: 1fr 1fr; gap: 24px; }
  .hero-meta .item .n { font-size: 36px; }
  .nav .row { gap: 12px; }
  .nav-cta .tel { display: none; }
  .nav-cta .btn { padding: 12px 18px !important; font-size: 14px !important; }
  .brand-logo { height: 30px; }
  .hero-eyebrow-row { gap: 10px; }
  .hero-eyebrow-row .pill { font-size: 12px; padding: 8px 14px; }
  .h2 { font-size: clamp(32px, 8vw, 48px); }
  .sec-head { margin-bottom: 40px; gap: 20px; }
  .lead { font-size: 18px; }
  .container { padding: 0 18px; }

  .trust-row { grid-template-columns: 1fr 1fr; gap: 20px; }
  .trust-n { font-size: 34px; }
  .trust-l { font-size: 12px; }

  .stat-card { padding: 28px 22px; }
  .stat-card .big { font-size: 56px; }

  .industry { padding: 24px 22px; }
  .industry .ttl { font-size: 18px; }
  .industry .icon { width: 44px; height: 44px; font-size: 20px; }

  .features-grid { gap: 14px; }
  .feature { padding: 28px 24px; min-height: auto; }

  .problems-grid { grid-template-columns: 1fr; }
  .problem-card { padding: 24px 22px; }

  .case { padding: 28px 24px; }
  .case h3 { font-size: 22px; }
  .case-stats { gap: 10px; }
  .case-stats .item .n { font-size: 24px; }

  .about { gap: 32px; }
  .expert-card { height: 360px; }
  .expert-card-overlay { padding: 24px; min-height: 180px; }
  .expert-card--photo .name { font-size: 32px; }
  .expert-card--photo .role { font-size: 14px; }

  .service { padding: 30px 24px; }
  .service .nm { font-size: 22px; }
  .services-foot { padding: 28px 22px; margin-top: 32px; }
  .services-foot .ttl { font-size: 22px; }

  .faq-item summary { padding: 18px 20px; font-size: 16px; gap: 12px; }
  .faq-item summary::after { width: 30px; height: 30px; font-size: 20px; }
  .faq-item .answer { padding: 0 20px 20px; font-size: 14px; }

  .final-cta { padding: 40px 22px; gap: 28px; }
  .final-cta h2 { font-size: clamp(32px, 8vw, 44px); }
  .script-large { font-size: 0.7em; }
  .cta-form { padding: 22px 20px; }
  .cta-list li { font-size: 14px; }
  .cta-msgs { grid-template-columns: 1fr; }
  .cta-msg-tel { grid-column: auto; }

  .footer { padding: 48px 0 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer .bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer .bottom > div:last-child { flex-direction: column; gap: 8px; align-items: flex-start; }
  .footer .disclaimer { font-size: 11px; margin-top: 24px; }
}

@media (max-width: 480px) {
  .hero-eyebrow-row { flex-direction: column; align-items: flex-start; gap: 8px; }
  .hero-meta { grid-template-columns: 1fr; gap: 18px; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .compare-row { grid-template-columns: 1fr; }
  .compare-row .cell { padding: 18px 20px; }
}

/* =================== Footer =================== */

.footer {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 64px 0 32px;
  font-size: 14px;
  color: rgba(255,255,255,0.55);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 40px;
}
.footer h4 {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.85);
  margin: 0 0 18px;
}
.footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer ul a { transition: color .15s ease; }
.footer ul a:hover { color: var(--white); }
.footer .desc { max-width: 320px; line-height: 1.55; margin-top: 16px; }
.footer .disclaimer {
  margin-top: 40px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255,255,255,0.4);
  max-width: 900px;
}
.footer .bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
}
@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* =================== Misc =================== */

.section-title-mark {
  position: relative;
  display: inline-block;
}
.section-title-mark .scribble {
  position: absolute;
  bottom: -12px; left: 0; right: 0;
  height: 12px;
  pointer-events: none;
}

/* =================== Industries grid =================== */

.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.industry {
  position: relative;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
  padding: 32px;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
  cursor: default;
}
.industry:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(184,155,255,0.30);
  transform: translateY(-2px);
}
.industry .head {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 20px;
}
.industry .icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(123, 90, 255, 0.18);
  color: var(--purple-bright);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}
.industry .ttl {
  font-weight: 800; font-size: 22px;
  color: var(--white);
  line-height: 1.15;
}
.industry .desc {
  font-size: 15px; line-height: 1.6;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
}
.industry .tags {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 20px;
}
.industry .tag {
  padding: 6px 12px;
  border-radius: var(--r-pill);
  background: rgba(184,155,255,0.10);
  color: var(--purple-bright);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
@media (max-width: 960px) { .industries-grid { grid-template-columns: 1fr; } }

/* =================== Country comparison =================== */

.compare-table {
  background: var(--white);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.compare-row {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1.4fr;
  align-items: stretch;
  border-bottom: 1px solid var(--line);
}
.compare-row:last-child { border-bottom: none; }
.compare-row .cell {
  padding: 24px 28px;
  display: flex;
  align-items: center;
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-2);
  font-weight: 500;
  border-right: 1px solid var(--line);
}
.compare-row .cell:last-child { border-right: none; }
.compare-row .country {
  font-weight: 800; font-size: 17px;
  color: var(--ink);
  gap: 14px;
}
.compare-row .country .flag {
  width: 36px; height: 24px;
  border-radius: 4px;
  flex-shrink: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}
.compare-row .country .flag span { flex: 1; }
.compare-row .vs-them {
  color: #B5384F;
  font-weight: 600;
  background: #FEF3F4;
}
.compare-row .vs-us {
  color: var(--purple-deep);
  font-weight: 700;
  background: linear-gradient(180deg, #F5F3FF, #ECEAFE);
}

/* Header row */
.compare-row--head {
  background: var(--ink);
}
.compare-row--head .cell {
  color: var(--white);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 13px;
  border-right-color: rgba(255,255,255,0.1);
  padding: 20px 28px;
}
.compare-row--head .vs-us {
  background: var(--purple);
  color: var(--white);
}
.compare-row--head .vs-them {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
}

@media (max-width: 800px) {
  .compare-row { grid-template-columns: 1fr; }
  .compare-row .cell { border-right: none; border-bottom: 1px solid var(--line); }
}

/* =================== Service cards (no prices) =================== */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.service {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 40px 36px 36px;
  display: flex; flex-direction: column; gap: 20px;
  color: var(--ink);
  box-shadow: var(--shadow-card);
  position: relative;
}
.service .ic {
  width: 64px; height: 64px;
  border-radius: 18px;
  background: var(--bg-soft);
  color: var(--purple);
  display: flex; align-items: center; justify-content: center;
  font-size: 30px;
}
.service .nm {
  font-family: var(--font-sans);
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  font-size: 28px;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.005em;
}
.service .dsc {
  font-size: 16px; line-height: 1.55;
  color: var(--ink-3);
}
.service .lst {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 10px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  margin-top: auto;
}
.service .lst li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 15px; line-height: 1.4;
  color: var(--ink-2);
  font-weight: 500;
}
.service .lst li::before {
  content: "→";
  flex-shrink: 0;
  color: var(--purple);
  font-weight: 900;
  font-size: 16px;
}
.service--accent {
  background: linear-gradient(180deg, #281551, #4F3FE0);
  color: var(--white);
}
.service--accent .ic { background: rgba(255,255,255,0.12); color: var(--white); }
.service--accent .nm { color: var(--white); }
.service--accent .dsc { color: rgba(255,255,255,0.78); }
.service--accent .lst { border-top-color: rgba(255,255,255,0.18); }
.service--accent .lst li { color: rgba(255,255,255,0.92); }
.service--accent .lst li::before { color: var(--purple-bright); }

.services-foot {
  margin-top: 48px;
  text-align: center;
  background: var(--bg-soft);
  border-radius: var(--r-lg);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.services-foot .ttl {
  font-family: var(--font-sans);
  font-weight: 900; font-style: italic;
  text-transform: uppercase;
  font-size: 32px;
  line-height: 1.05;
  color: var(--ink);
}
.services-foot p {
  font-size: 17px; line-height: 1.5;
  color: var(--ink-3);
  max-width: 600px;
  margin: 0;
}
@media (max-width: 960px) { .services-grid { grid-template-columns: 1fr; } }

/* =================== Company types (SRL/SA/Holding/Micro) =================== */

.ctypes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.ctype {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  display: flex; flex-direction: column; gap: 14px;
  transition: border-color .2s, background .2s, transform .2s;
}
.ctype:hover { background: rgba(255,255,255,0.07); border-color: rgba(184,155,255,0.30); transform: translateY(-2px); }
.ctype--accent {
  background: linear-gradient(180deg, #281551, #4F3FE0);
  border-color: rgba(184,155,255,0.40);
}
.ctype-badge {
  align-self: flex-start;
  padding: 4px 10px;
  font-size: 11px; font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(184,155,255,0.20);
  color: var(--purple-bright);
  border-radius: var(--r-pill);
}
.ctype--accent .ctype-badge { background: rgba(255,255,255,0.20); color: var(--white); }
.ctype-name {
  font-family: var(--font-sans);
  font-weight: 900; font-style: italic;
  font-size: 32px;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1;
}
.ctype-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.4;
  font-weight: 500;
}
.ctype-list {
  list-style: none;
  margin: 0; padding: 12px 0 0;
  border-top: 1px solid rgba(255,255,255,0.10);
  display: flex; flex-direction: column; gap: 7px;
}
.ctype-list li {
  font-size: 13px;
  color: rgba(255,255,255,0.80);
  line-height: 1.4;
  padding-left: 16px;
  position: relative;
  font-weight: 500;
}
.ctype-list li::before {
  content: "·";
  position: absolute;
  left: 4px; top: -2px;
  color: var(--purple-bright);
  font-weight: 900;
  font-size: 18px;
}
@media (max-width: 960px) { .ctypes-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .ctypes-grid { grid-template-columns: 1fr; } }

/* =================== Banks grid =================== */

.banks-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.bank {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
  color: var(--ink);
  display: flex; flex-direction: column; gap: 12px;
}
.bank-logo {
  font-family: var(--font-sans);
  font-weight: 900; font-style: italic;
  font-size: 28px;
  color: var(--purple-deep);
  letter-spacing: -0.02em;
}
.bank-desc {
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-3);
  margin-top: auto;
}
.bank-tag {
  align-self: flex-start;
  padding: 4px 10px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--bg-soft);
  color: var(--purple);
  border-radius: var(--r-pill);
}
@media (max-width: 960px) { .banks-grid { grid-template-columns: repeat(2, 1fr); } }

/* =================== Accounting big block =================== */

.acc-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}
.acc-left {
  background: linear-gradient(180deg, #281551, #4F3FE0);
  border-radius: var(--r-xl);
  padding: 40px 36px;
  display: flex; flex-direction: column; gap: 24px;
  box-shadow: var(--shadow-cta);
}
.acc-left .acc-ttl {
  font-family: var(--font-sans);
  font-weight: 900; font-style: italic;
  font-size: 32px;
  line-height: 1.05;
  color: var(--white);
  text-transform: uppercase;
}
.acc-list {
  list-style: none;
  margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 14px;
}
.acc-list li {
  display: flex; gap: 14px; align-items: flex-start;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255,255,255,0.92);
  font-weight: 500;
}
.acc-list .acc-i {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 8px;
  background: rgba(255,255,255,0.15);
  color: #FFE25C;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 900;
  margin-top: 1px;
}
.acc-list b { color: var(--white); font-weight: 800; }

.acc-right {
  display: flex; flex-direction: column; gap: 18px;
}
.acc-fact {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 24px 28px;
  color: var(--ink);
  box-shadow: var(--shadow-card);
}
.acc-fact-h {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 8px;
}
.acc-fact-t {
  font-family: var(--font-sans);
  font-weight: 900; font-style: italic;
  font-size: 28px;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 8px;
}
.acc-fact-d {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-3);
  font-weight: 500;
}

.acc-dates {
  background: var(--ink);
  color: var(--white);
  border-radius: var(--r-lg);
  padding: 24px 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.acc-dates .item {
  padding: 0 8px;
}
.acc-dates .item + .item { border-left: 1px solid rgba(255,255,255,0.15); }
.acc-dates .item .d {
  font-family: var(--font-sans);
  font-weight: 900; font-style: italic;
  font-size: 22px;
  color: var(--purple-bright);
  line-height: 1;
}
.acc-dates .item .l {
  font-size: 12px;
  color: rgba(255,255,255,0.75);
  margin-top: 6px;
  line-height: 1.4;
}

@media (max-width: 960px) { .acc-block { grid-template-columns: 1fr; gap: 20px; } }

/* =================== ВНЖ-bonus banner =================== */

.vnzh-banner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 36px;
  align-items: center;
  background: linear-gradient(135deg, #2A0F5E 0%, #4F3FE0 100%);
  border-radius: var(--r-xl);
  padding: 48px 56px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-cta);
}
.vnzh-banner::before {
  content: "ВНЖ";
  position: absolute;
  right: -40px; bottom: -80px;
  font-family: var(--font-sans);
  font-weight: 900; font-style: italic;
  font-size: 360px;
  color: rgba(255,255,255,0.05);
  line-height: 1;
  pointer-events: none;
}
.vnzh-banner > * { position: relative; z-index: 1; }
.vnzh-bonus-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  background: #FFE25C;
  color: var(--ink);
  border-radius: var(--r-pill);
  font-size: 13px; font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}
.vnzh-title {
  font-family: var(--font-sans);
  font-weight: 900; font-style: italic;
  font-size: clamp(32px, 3.4vw, 48px);
  line-height: 1;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}
.vnzh-sub {
  font-size: 17px;
  line-height: 1.55;
  color: rgba(255,255,255,0.85);
}
.vnzh-list {
  list-style: none;
  margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 14px;
}
.vnzh-list li {
  display: flex; gap: 14px; align-items: flex-start;
  font-size: 16px;
  line-height: 1.5;
  color: var(--white);
  font-weight: 500;
}
.vnzh-list li b { color: #FFE25C; font-weight: 800; }
.vnzh-list .v-i {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  color: #FFE25C;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 14px;
}
@media (max-width: 960px) {
  .vnzh-banner { grid-template-columns: 1fr; padding: 32px 24px; }
  .vnzh-banner::before { font-size: 220px; right: -20px; bottom: -50px; }
}

/* =================== Hero alt collage (SRL act + tax + flag) =================== */

.hv-act {
  top: 20px; right: 20px;
  width: 320px; height: 400px;
  background: var(--white);
  color: var(--ink);
  transform: rotate(3deg);
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 18px;
}
.hv-act .act-h {
  font-family: var(--font-sans);
  font-weight: 800; font-style: italic;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple);
}
.hv-act .act-name {
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: 30px;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.hv-act .act-row {
  display: flex; align-items: baseline; justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  color: var(--ink-3);
  font-weight: 500;
}
.hv-act .act-row b { color: var(--ink); font-weight: 700; }
.hv-act .act-stamp {
  margin-top: auto;
  align-self: flex-start;
  padding: 6px 14px;
  border: 2px solid var(--purple);
  color: var(--purple);
  border-radius: 4px;
  font-weight: 900; font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 12px;
  transform: rotate(-5deg);
}

/* =================== Video block =================== */

.video-block {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
}
.video-block--rev {
  grid-template-columns: 1.2fr 1fr;
}
.video-left .lead { max-width: 480px; }
.video-pts {
  margin-top: 28px;
  display: flex; flex-direction: column; gap: 10px;
}
.vp {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}
.vp-i {
  flex-shrink: 0;
  color: var(--purple-bright);
  font-weight: 900;
  font-size: 18px;
  line-height: 1.4;
}
.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--dark-3);
  box-shadow: 0 32px 80px rgba(10, 5, 28, 0.55), 0 0 0 1px rgba(184,155,255,0.12);
}
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
@media (max-width: 960px) {
  .video-block { grid-template-columns: 1fr; gap: 32px; }
}

/* =================== Mobile fix — headings overflow =================== */

.h1, .h2, .hero h1, .vnzh-title, .services-foot .ttl, .acc-left .acc-ttl, .ctype-name, .bank-logo, .final-cta h2 {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: manual;
  -webkit-hyphens: manual;
}
@media (max-width: 760px) {
  .h1 { font-size: 32px; }
  .h2 { font-size: 26px; line-height: 1.08; }
  .hero h1 { font-size: 38px; }
  .final-cta h2 { font-size: 26px; }
  .vnzh-title { font-size: 26px; }
  .services-foot .ttl { font-size: 22px; }
  .acc-left .acc-ttl { font-size: 22px; }
  .ctype-name { font-size: 24px; }
  .bank-logo { font-size: 22px; }
}
@media (max-width: 420px) {
  .h1 { font-size: 28px; }
  .h2 { font-size: 22px; }
  .hero h1 { font-size: 32px; }
  .final-cta h2 { font-size: 22px; }
  .vnzh-title { font-size: 22px; }
  .acc-left .acc-ttl { font-size: 20px; }
}
