:root {
  --navy: #050816;
  --navy2: #0A0F28;
  --brand: #2C10D6;
  --brand2: #4F2FFF;
  --brand-soft: #7B61FF;
  --brand-glow: rgba(44,16,214,.35);
  --white: #FFFFFF;
  --light: #F2F3FA;
  --light2: #ECE8FF;
  --text: #1E2433;
  --muted: #6B7288;
  --border: #E4E7F0;
  --ok: #22C55E;
  --radius: 14px;
  --font: "Manrope", sans-serif;
  --display: "Outfit", sans-serif;
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
  font-family:var(--font);
  color:var(--text);
  background:#fff;
  line-height:1.6;
  min-height:100vh;
}
img { max-width:100%; display:block; }
a { color:inherit; }
.container { width:min(1140px, 90%); margin:0 auto; }

/* NAV */
.site-nav {
  background:rgba(5,8,22,.94);
  backdrop-filter:blur(14px);
  padding:0 5%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  height:74px;
  position:sticky; top:0; z-index:200;
  border-bottom:1px solid rgba(44,16,214,.28);
  box-shadow:0 2px 24px rgba(0,0,0,.35);
}
.logo {
  display:flex; align-items:center; gap:12px;
  color:#fff; font-family:var(--display); font-size:1.35rem; font-weight:800;
  text-decoration:none; letter-spacing:.02em;
}
.logo-img {
  height:40px; width:auto; object-fit:contain;
  filter:drop-shadow(0 0 10px var(--brand-glow));
}
.nav-links { list-style:none; display:flex; align-items:center; gap:8px; }
.nav-links a {
  color:rgba(255,255,255,.78); text-decoration:none;
  font-size:.86rem; font-weight:600; padding:8px 12px; border-radius:8px;
  transition:.2s; white-space:nowrap;
}
.nav-links a:hover { color:#fff; background:rgba(123,97,255,.12); }
.nav-links a.active {
  color:#fff; background:rgba(44,16,214,.35);
  box-shadow:inset 0 0 0 1px rgba(123,97,255,.35);
}
.nav-actions { display:flex; align-items:center; gap:14px; }
.nav-lang {
  color:rgba(255,255,255,.7); font-size:.85rem;
  display:flex; align-items:center; gap:6px; cursor:pointer;
}
.btn {
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  font-family:var(--font); font-weight:700; border:none; border-radius:10px;
  cursor:pointer; text-decoration:none; transition:.2s;
}
.btn-primary {
  background:linear-gradient(135deg, var(--brand), var(--brand2));
  color:#fff; padding:10px 20px; font-size:.88rem;
  box-shadow:0 6px 18px rgba(44,16,214,.35);
}
.btn-primary:hover { filter:brightness(1.08); transform:translateY(-1px); }
.btn-lg {
  background:linear-gradient(135deg, var(--brand2), #7B61FF);
  color:#fff; padding:14px 28px; font-size:1rem;
  box-shadow:0 10px 28px rgba(44,16,214,.4);
}
.btn-lg:hover { filter:brightness(1.08); }
.btn-outline {
  background:transparent; border:2px solid rgba(123,97,255,.55);
  color:#fff; padding:12px 26px; font-size:.95rem; font-weight:600;
}
.btn-outline:hover { border-color:#fff; background:rgba(255,255,255,.06); }
.btn-outline-dark {
  background:transparent; border:2px solid rgba(44,16,214,.25);
  color:var(--brand); padding:12px 26px; font-size:.95rem; font-weight:600;
}
.btn-outline-dark:hover { border-color:var(--brand); background:rgba(44,16,214,.05); }
.nav-toggle {
  display:none; background:none; border:none; color:#fff;
  font-size:1.6rem; cursor:pointer; line-height:1;
}

/* PAGE HERO (inner pages) */
.page-hero {
  background:linear-gradient(145deg, #050816 0%, #0B0F2E 42%, #1A0B5C 78%, #2C10D6 140%);
  padding:88px 5% 72px;
  position:relative; overflow:hidden; color:#fff;
}
.page-hero::before {
  content:""; position:absolute; inset:auto -10% -40% 40%;
  width:560px; height:560px; border-radius:50%;
  background:radial-gradient(circle, rgba(79,47,255,.4) 0%, transparent 68%);
}
.page-hero-inner { position:relative; z-index:1; max-width:720px; }
.eyebrow {
  display:inline-flex; align-items:center; gap:8px;
  background:rgba(44,16,214,.22); border:1px solid rgba(123,97,255,.45);
  color:var(--brand-soft); padding:6px 14px; border-radius:999px;
  font-size:.8rem; font-weight:700; letter-spacing:.04em; text-transform:uppercase;
  margin-bottom:18px;
}
.page-hero h1 {
  font-family:var(--display); font-size:clamp(2.1rem, 4vw, 3.2rem);
  font-weight:800; line-height:1.12; margin-bottom:16px;
}
.page-hero h1 span {
  background:linear-gradient(90deg, var(--brand-soft), #A78BFF);
  -webkit-background-clip:text; background-clip:text; color:transparent;
}
.page-hero p {
  color:rgba(255,255,255,.74); font-size:1.05rem; max-width:560px; line-height:1.7;
}

/* HOME HERO */
.hero {
  background:linear-gradient(145deg, #050816 0%, #0B0F2E 40%, #1A0B5C 78%, #2C10D6 140%);
  min-height:calc(100vh - 74px);
  display:flex; align-items:center;
  padding:64px 5%; gap:56px;
  position:relative; overflow:hidden;
}
.hero::before {
  content:""; position:absolute; top:-120px; right:-80px;
  width:520px; height:520px; border-radius:50%;
  background:radial-gradient(circle, rgba(79,47,255,.45) 0%, rgba(44,16,214,.12) 45%, transparent 70%);
}
.hero::after {
  content:""; position:absolute; bottom:-80px; left:10%;
  width:280px; height:280px; border-radius:50%;
  background:radial-gradient(circle, rgba(123,97,255,.18), transparent 70%);
}
.hero-left { flex:1; color:#fff; position:relative; z-index:1; }
.hero-left h1 {
  font-family:var(--display); font-size:clamp(2.3rem, 4.5vw, 3.4rem);
  font-weight:800; line-height:1.12; margin-bottom:18px;
}
.hero-left h1 span {
  background:linear-gradient(90deg, var(--brand-soft), #A78BFF);
  -webkit-background-clip:text; background-clip:text; color:transparent;
}
.hero-left > p {
  color:rgba(255,255,255,.75); font-size:1.05rem; line-height:1.7;
  max-width:480px; margin-bottom:28px;
}
.hero-checks { display:flex; flex-wrap:wrap; gap:14px; margin-bottom:32px; }
.hero-check { display:flex; align-items:center; gap:7px; color:rgba(255,255,255,.85); font-size:.88rem; }
.check-icon {
  width:18px; height:18px;
  background:linear-gradient(135deg, var(--brand), var(--brand2));
  border-radius:50%; display:flex; align-items:center; justify-content:center;
  color:#fff; font-size:.65rem; flex-shrink:0;
}
.trustpilot { display:flex; align-items:center; gap:10px; color:rgba(255,255,255,.7); font-size:.85rem; }
.stars { color:var(--brand-soft); font-size:1rem; }

.calc-card {
  background:#fff; border-radius:18px; padding:32px; width:390px; flex-shrink:0;
  position:relative; z-index:1;
  border:1px solid rgba(123,97,255,.18);
  box-shadow:0 24px 60px rgba(44,16,214,.28), 0 8px 24px rgba(0,0,0,.2);
  animation:rise .7s ease both;
}
@keyframes rise {
  from { opacity:0; transform:translateY(18px); }
  to { opacity:1; transform:none; }
}
.calc-card h3 {
  font-family:var(--display); font-size:1.25rem; font-weight:700;
  color:var(--navy); margin-bottom:4px;
}
.calc-card > p { color:var(--muted); font-size:.83rem; margin-bottom:22px; }
.form-group { margin-bottom:16px; }
.form-group label {
  display:block; font-size:.82rem; font-weight:700; color:var(--text); margin-bottom:6px;
}
.form-group select,
.form-group input,
.form-group textarea {
  width:100%; padding:11px 14px; border:1.5px solid var(--border);
  border-radius:10px; font-size:.9rem; font-family:inherit; color:var(--text);
  appearance:none; background:#F8F7FF; transition:.2s;
}
.form-group textarea { min-height:120px; resize:vertical; }
.form-group select:focus,
.form-group input:focus,
.form-group textarea:focus {
  outline:none; border-color:var(--brand2);
  box-shadow:0 0 0 3px rgba(44,16,214,.12); background:#fff;
}
.fee-row {
  display:flex; justify-content:space-between; align-items:center;
  padding:10px 0; border-bottom:1px solid var(--border); font-size:.87rem;
}
.fee-row .label { color:var(--muted); }
.fee-row .val { font-weight:700; color:var(--text); }
.fee-total {
  display:flex; justify-content:space-between; align-items:center;
  padding:14px 0 18px;
}
.fee-total .label { font-weight:700; font-size:1rem; color:var(--navy); }
.fee-total .val {
  font-family:var(--display); font-weight:800; font-size:1.55rem; color:var(--brand);
}
.btn-calc {
  width:100%;
  background:linear-gradient(135deg, var(--brand), var(--brand2));
  color:#fff; font-weight:700; font-size:1rem; padding:14px; border:none;
  border-radius:10px; cursor:pointer; transition:.2s;
  box-shadow:0 10px 24px rgba(44,16,214,.3); font-family:var(--font);
}
.btn-calc:hover { filter:brightness(1.08); }
.secure-note { text-align:center; color:var(--muted); font-size:.78rem; margin-top:10px; }

/* SECTIONS */
.section { padding:88px 5%; }
.section-label {
  color:var(--brand); font-size:.78rem; font-weight:800;
  letter-spacing:.12em; text-transform:uppercase; margin-bottom:10px;
}
.section-title {
  font-family:var(--display); font-size:clamp(1.7rem, 3vw, 2.25rem);
  font-weight:800; color:var(--navy); margin-bottom:14px; line-height:1.2;
}
.section-sub { color:var(--muted); font-size:1.02rem; line-height:1.7; max-width:580px; }
.center { text-align:center; }
.center .section-sub { margin:0 auto; }
.section-head { margin-bottom:48px; }
.tint { background:linear-gradient(180deg, #F2F3FA 0%, #ECE8FF 100%); }
.dark-section {
  background:linear-gradient(160deg, #050816 0%, #120B3A 55%, #1A0B5C 100%);
  color:#fff;
}
.dark-section .section-title { color:#fff; }
.dark-section .section-sub { color:rgba(255,255,255,.65); }
.dark-section .section-label { color:var(--brand-soft); }

/* PREVIEW STRIPS (home) */
.preview-grid {
  display:grid; grid-template-columns:repeat(3,1fr); gap:22px; margin-top:8px;
}
.preview-card {
  background:#fff; border:1px solid var(--border); border-radius:16px;
  padding:28px; text-decoration:none; transition:.25s; display:block;
}
.preview-card:hover {
  border-color:var(--brand2); transform:translateY(-4px);
  box-shadow:0 14px 36px rgba(44,16,214,.12);
}
.preview-card .num {
  font-family:var(--display); font-size:.85rem; font-weight:800;
  color:var(--brand); margin-bottom:12px;
}
.preview-card h3 {
  font-family:var(--display); font-size:1.15rem; color:var(--navy);
  margin-bottom:8px; font-weight:700;
}
.preview-card p { color:var(--muted); font-size:.9rem; line-height:1.6; margin-bottom:16px; }
.preview-card .link {
  color:var(--brand); font-weight:700; font-size:.88rem;
}

/* STEPS */
.steps { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.step {
  background:#fff; border:1px solid rgba(44,16,214,.08); border-radius:16px;
  padding:28px 22px; text-align:center; transition:.25s;
}
.step:hover { transform:translateY(-3px); box-shadow:0 12px 30px rgba(44,16,214,.1); }
.step-num {
  width:52px; height:52px; margin:0 auto 16px;
  background:linear-gradient(135deg, var(--brand), var(--brand2));
  color:#fff; font-family:var(--display); font-size:1.2rem; font-weight:800;
  border-radius:50%; display:flex; align-items:center; justify-content:center;
  box-shadow:0 8px 20px rgba(44,16,214,.3);
}
.step h4 {
  font-family:var(--display); font-size:1.05rem; font-weight:700;
  color:var(--navy); margin-bottom:8px;
}
.step p { color:var(--muted); font-size:.88rem; line-height:1.6; }

.timeline {
  max-width:760px; margin:0 auto; display:flex; flex-direction:column; gap:0;
}
.timeline-item {
  display:grid; grid-template-columns:64px 1fr; gap:20px;
  position:relative; padding-bottom:36px;
}
.timeline-item:not(:last-child)::before {
  content:""; position:absolute; left:25px; top:52px; bottom:0;
  width:2px; background:linear-gradient(180deg, var(--brand2), rgba(44,16,214,.15));
}
.timeline-dot {
  width:52px; height:52px; border-radius:50%;
  background:linear-gradient(135deg, var(--brand), var(--brand2));
  color:#fff; font-family:var(--display); font-weight:800;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 8px 20px rgba(44,16,214,.28);
}
.timeline-body {
  background:#fff; border:1px solid var(--border); border-radius:14px; padding:22px 24px;
}
.timeline-body h3 {
  font-family:var(--display); font-size:1.15rem; color:var(--navy); margin-bottom:6px;
}
.timeline-body p { color:var(--muted); font-size:.92rem; }

/* FEATURES */
.features-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.feature-card {
  background:#fff; border:1.5px solid var(--border); border-radius:16px;
  padding:28px; transition:.3s;
}
.feature-card:hover {
  border-color:var(--brand2); box-shadow:0 10px 32px rgba(44,16,214,.12);
  transform:translateY(-3px);
}
.feat-icon {
  width:52px; height:52px; background:rgba(44,16,214,.1); border-radius:14px;
  display:flex; align-items:center; justify-content:center; font-size:1.35rem;
  margin-bottom:16px; color:var(--brand);
}
.feature-card h4 {
  font-family:var(--display); font-size:1.05rem; font-weight:700;
  color:var(--navy); margin-bottom:8px;
}
.feature-card p { color:var(--muted); font-size:.9rem; line-height:1.65; }

/* SERVICES */
.services-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:22px; }
.service-card {
  display:grid; grid-template-columns:72px 1fr; gap:20px; align-items:start;
  background:#fff; border:1px solid var(--border); border-radius:18px;
  padding:28px; transition:.25s;
}
.service-card:hover {
  border-color:var(--brand2); box-shadow:0 14px 36px rgba(44,16,214,.12);
}
.service-icon {
  width:64px; height:64px; border-radius:16px;
  background:linear-gradient(135deg, rgba(44,16,214,.12), rgba(79,47,255,.18));
  display:flex; align-items:center; justify-content:center; font-size:1.6rem;
}
.service-card h3 {
  font-family:var(--display); font-size:1.2rem; color:var(--navy); margin-bottom:8px;
}
.service-card p { color:var(--muted); font-size:.92rem; margin-bottom:12px; }
.service-card ul { list-style:none; }
.service-card li {
  font-size:.88rem; color:var(--text); padding:4px 0;
  display:flex; gap:8px; align-items:flex-start;
}
.service-card li::before {
  content:"?"; color:var(--brand); font-weight:800; flex-shrink:0;
}

/* PRICING */
.pricing-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.price-card {
  background:rgba(255,255,255,.06); border:1px solid rgba(123,97,255,.22);
  border-radius:18px; padding:32px; color:#fff; transition:.3s;
}
.price-card.light {
  background:#fff; color:var(--text); border:1px solid var(--border);
}
.price-card.light h3,
.price-card.light .price-amount { color:var(--navy); }
.price-card.light .price-period { color:var(--muted); }
.price-card.light .price-features li {
  border-bottom:1px solid var(--border); color:var(--text);
}
.price-card.popular {
  background:linear-gradient(160deg, var(--brand) 0%, var(--brand2) 100%);
  border-color:transparent; box-shadow:0 18px 44px rgba(44,16,214,.42);
  transform:scale(1.03);
}
.price-badge {
  background:#fff; color:var(--brand); font-size:.72rem; font-weight:800;
  padding:4px 10px; border-radius:999px; display:inline-block; margin-bottom:14px;
  letter-spacing:.04em;
}
.price-card h3 { font-family:var(--display); font-size:1.15rem; font-weight:700; margin-bottom:4px; }
.price-amount {
  font-family:var(--display); font-size:2.6rem; font-weight:800; margin:14px 0 4px;
}
.price-period { font-size:.85rem; opacity:.75; margin-bottom:20px; }
.price-features { list-style:none; margin-bottom:26px; }
.price-features li {
  padding:8px 0; font-size:.9rem; border-bottom:1px solid rgba(255,255,255,.1);
  display:flex; align-items:center; gap:8px;
}
.price-card.popular .price-features li { border-color:rgba(255,255,255,.18); }
.pf-check { color:var(--brand-soft); font-weight:800; }
.price-card.popular .pf-check,
.price-card.light .pf-check { color:var(--brand); }
.price-card.popular .pf-check { color:#fff; }
.btn-price {
  width:100%; padding:12px; border-radius:10px; font-weight:700;
  cursor:pointer; font-size:.9rem; border:none; transition:.2s; font-family:var(--font);
  text-decoration:none; display:inline-flex; justify-content:center;
}
.btn-price-light { background:linear-gradient(135deg, var(--brand), var(--brand2)); color:#fff; }
.btn-price-dark { background:#fff; color:var(--brand); }

/* TESTIMONIALS */
.testimonials-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.testi-card {
  background:#fff; border:1.5px solid var(--border); border-radius:16px; padding:26px;
}
.testi-stars { color:var(--brand2); margin-bottom:12px; font-size:.95rem; }
.testi-text {
  color:var(--text); font-size:.92rem; line-height:1.7; margin-bottom:18px; font-style:italic;
}
.testi-author { display:flex; align-items:center; gap:12px; }
.testi-avatar {
  width:42px; height:42px; border-radius:50%;
  background:linear-gradient(135deg, var(--brand), var(--brand2));
  color:#fff; display:flex; align-items:center; justify-content:center;
  font-weight:800; font-size:.9rem;
}
.testi-name { font-weight:800; font-size:.9rem; color:var(--navy); }
.testi-origin { font-size:.78rem; color:var(--muted); }

/* FAQ */
.faq-list { max-width:760px; margin:0 auto; }
.faq-item {
  background:#fff; border-radius:12px; margin-bottom:12px; overflow:hidden;
  border:1px solid rgba(44,16,214,.08);
}
.faq-q {
  width:100%; background:none; border:none; padding:18px 22px; text-align:left;
  font-family:inherit; font-size:.96rem; font-weight:700; color:var(--navy);
  cursor:pointer; display:flex; justify-content:space-between; align-items:center; gap:16px;
}
.faq-a {
  padding:0 22px 18px; font-size:.9rem; color:var(--muted); line-height:1.7; display:none;
}
.faq-item.open .faq-a { display:block; }
.faq-icon { font-size:1.25rem; font-weight:300; color:var(--brand); flex-shrink:0; }

/* CONTACT */
.contact-grid {
  display:grid; grid-template-columns:1.1fr .9fr; gap:28px; align-items:start;
}
.contact-form,
.contact-aside {
  background:#fff; border:1px solid var(--border); border-radius:18px; padding:32px;
}
.contact-aside {
  background:linear-gradient(160deg, #0B0F2E, #1A0B5C);
  color:#fff; border:none;
}
.contact-aside h3 {
  font-family:var(--display); font-size:1.3rem; margin-bottom:12px;
}
.contact-aside p { color:rgba(255,255,255,.7); margin-bottom:24px; font-size:.92rem; }
.contact-line {
  display:flex; gap:12px; align-items:flex-start; margin-bottom:16px;
  font-size:.92rem;
}
.contact-line strong { display:block; color:#fff; margin-bottom:2px; }
.contact-line span { color:rgba(255,255,255,.7); }
.contact-chip {
  display:inline-flex; padding:6px 12px; border-radius:999px; margin:4px 4px 0 0;
  background:rgba(255,255,255,.08); border:1px solid rgba(123,97,255,.35);
  font-size:.78rem; color:var(--brand-soft);
}

/* CTA */
.cta {
  background:linear-gradient(135deg, #050816 0%, #1A0B5C 55%, #2C10D6 120%);
  text-align:center; padding:88px 5%;
}
.cta h2 {
  font-family:var(--display); color:#fff; font-size:clamp(1.8rem, 3vw, 2.4rem);
  font-weight:800; margin-bottom:14px;
}
.cta p { color:rgba(255,255,255,.72); margin-bottom:28px; font-size:1rem; }
.cta-btns { display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }

/* FOOTER */
footer {
  background:var(--navy2); color:rgba(255,255,255,.6);
  padding:60px 5% 30px; border-top:1px solid rgba(44,16,214,.2);
}
.footer-grid {
  display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:40px; margin-bottom:40px;
}
.footer-brand .logo-img {
  height:48px; margin-bottom:14px;
  filter:drop-shadow(0 0 12px var(--brand-glow));
}
.footer-brand p { font-size:.86rem; line-height:1.7; max-width:280px; }
footer h5 {
  color:#fff; font-family:var(--display); font-size:.92rem;
  font-weight:700; margin-bottom:14px;
}
footer ul { list-style:none; }
footer ul li { margin-bottom:8px; }
footer ul a {
  color:rgba(255,255,255,.55); font-size:.86rem; text-decoration:none; transition:.2s;
}
footer ul a:hover { color:var(--brand-soft); }
.footer-bottom {
  border-top:1px solid rgba(255,255,255,.08); padding-top:24px;
  display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:10px;
}
.footer-bottom p { font-size:.8rem; }
.footer-flags { display:flex; gap:8px; font-size:1.1rem; }
.gdpr-row { display:flex; flex-wrap:wrap; gap:8px; margin-top:16px; }
.gdpr-badge {
  display:flex; align-items:center; gap:6px;
  background:rgba(44,16,214,.18); border:1px solid rgba(123,97,255,.25);
  padding:6px 12px; border-radius:6px; font-size:.78rem;
}

/* MOTION */
.fade-up { animation:rise .65s ease both; }
.delay-1 { animation-delay:.08s; }
.delay-2 { animation-delay:.16s; }
.delay-3 { animation-delay:.24s; }

@media (max-width:1050px) {
  .nav-links { gap:2px; }
  .nav-links a { padding:8px 8px; font-size:.8rem; }
}
@media (max-width:900px) {
  .nav-toggle { display:block; }
  .nav-links {
    display:none; position:absolute; top:74px; left:0; right:0;
    background:#0A0F28; flex-direction:column; padding:16px; gap:4px;
    border-bottom:1px solid rgba(44,16,214,.3);
  }
  .nav-links.open { display:flex; }
  .nav-links a { width:100%; padding:12px 14px; }
  .hero { flex-direction:column; min-height:auto; padding:48px 5%; }
  .calc-card { width:100%; }
  .preview-grid,
  .steps,
  .features-grid,
  .pricing-grid,
  .testimonials-grid,
  .services-grid,
  .contact-grid,
  .footer-grid { grid-template-columns:1fr 1fr; }
  .price-card.popular { transform:none; }
}
@media (max-width:600px) {
  .preview-grid,
  .steps,
  .features-grid,
  .pricing-grid,
  .testimonials-grid,
  .services-grid,
  .contact-grid,
  .footer-grid { grid-template-columns:1fr; }
  .nav-actions .nav-lang { display:none; }
}
