/* ===== TOKENS ===== */
:root {
  --purple: #9B27AF;
  --orange: #FF8C00;
  --pink:   #E91E8C;
  --dark:   #1A1A2E;
  --gray:   #F5F5F7;
  --text:   #1A1A2E;
  --muted:  #6B7280;
  --white:  #FFFFFF;
  --grad: linear-gradient(135deg, var(--purple) 0%, var(--orange) 100%);
  --radius: 16px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(155,39,175,0.10);
  --shadow-hover: 0 8px 40px rgba(255,140,0,0.18);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== HEADER ===== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(155,39,175,0.08);
}
.header-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  height: 68px; display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
}
.logo img { height: 44px; width: auto; }
.nav { display: flex; align-items: center; gap: 4px; }
.nav > a, .nav .dropdown > a {
  font-size: 0.875rem; font-weight: 500; color: var(--muted);
  padding: 8px 12px; border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s; white-space: nowrap;
}
.nav > a:hover, .nav .dropdown > a:hover { color: var(--purple); background: rgba(155,39,175,0.06); }

/* Dropdown */
.dropdown { position: relative; }
.dropdown-menu {
  display: none;
  position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--white); border-radius: var(--radius);
  box-shadow: 0 12px 48px rgba(0,0,0,0.14);
  border: 1px solid rgba(155,39,175,0.08);
  width: 560px;
  padding: 12px;
  z-index: 200;
  columns: 2;
  column-gap: 8px;
}
.dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block;
  padding: 9px 12px;
  font-size: 0.82rem;
  color: var(--text);
  border-radius: var(--radius-sm);
  transition: background 0.15s, color 0.15s;
  break-inside: avoid;
  white-space: nowrap;
}
.dropdown-menu a:hover { background: rgba(155,39,175,0.06); color: var(--purple); }
.dropdown-menu .price-hint {
  font-size: 0.72rem; color: var(--muted); margin-left: 6px;
}

.header-cta {
  display: inline-block; padding: 10px 20px;
  background: var(--grad); color: var(--white) !important;
  border-radius: 50px; font-weight: 700; font-size: 0.85rem;
  transition: opacity 0.2s, transform 0.2s; white-space: nowrap;
  margin-left: 8px;
}
.header-cta:hover { opacity: 0.9; transform: translateY(-1px); }

.lang-switch {
  display: flex; gap: 4px; align-items: center; margin-left: 8px;
}
.lang-switch a {
  font-size: 0.8rem; font-weight: 600; padding: 4px 10px;
  border-radius: 50px; color: var(--muted); transition: all 0.2s;
  border: 1.5px solid transparent;
}
.lang-switch a.active, .lang-switch a:hover {
  color: var(--purple); border-color: var(--purple);
}

.burger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.burger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; }

/* Mobile nav */
.mobile-nav {
  display: none; position: fixed; inset: 0;
  background: rgba(255,255,255,0.98); z-index: 99;
  flex-direction: column; align-items: center;
  justify-content: flex-start; padding-top: 96px;
  gap: 0; overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav-close {
  position: absolute; top: 20px; right: 24px;
  background: none; border: none; font-size: 1.8rem; cursor: pointer;
}
.mobile-nav a {
  width: 100%; text-align: center; padding: 16px 24px;
  font-size: 1.1rem; font-weight: 600; color: var(--text);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.mobile-nav .mobile-section {
  width: 100%; padding: 12px 24px 4px;
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--muted); text-align: left;
}
.mobile-nav .btn-primary { margin: 20px 24px; width: calc(100% - 48px); text-align: center; }

/* ===== BREADCRUMB ===== */
.breadcrumb {
  background: var(--gray); padding: 12px 0; font-size: 0.8rem; color: var(--muted);
}
.breadcrumb-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; gap: 8px; align-items: center; flex-wrap: wrap;
}
.breadcrumb a { color: var(--muted); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--purple); }
.breadcrumb .sep { color: rgba(0,0,0,0.25); }
.breadcrumb .current { color: var(--text); font-weight: 500; }

/* ===== UTILS ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-label {
  display: inline-block; font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em; color: var(--purple); margin-bottom: 10px;
}
.section-title {
  font-size: clamp(1.7rem, 3.5vw, 2.6rem); font-weight: 800;
  line-height: 1.15; color: var(--text); margin-bottom: 14px;
}
.section-sub { font-size: 1rem; color: var(--muted); max-width: 600px; line-height: 1.7; }
.grad-text {
  background: var(--grad); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}
.btn-primary {
  display: inline-block; padding: 13px 30px;
  background: var(--grad); color: var(--white); border-radius: 50px;
  font-weight: 700; font-size: 0.95rem;
  transition: transform 0.2s, box-shadow 0.2s; cursor: pointer; border: none;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-hover); }
.btn-outline {
  display: inline-block; padding: 13px 30px;
  border: 2px solid var(--purple); color: var(--purple); border-radius: 50px;
  font-weight: 700; font-size: 0.95rem; transition: all 0.2s;
}
.btn-outline:hover { background: var(--purple); color: var(--white); }
.btn-white {
  display: inline-block; padding: 13px 30px;
  background: var(--white); color: var(--purple); border-radius: 50px;
  font-weight: 800; font-size: 0.95rem; transition: transform 0.2s, box-shadow 0.2s;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,0.15); }

/* ===== SERVICE HERO ===== */
.service-hero {
  background: var(--dark); color: var(--white);
  padding: 72px 0 64px; position: relative; overflow: hidden;
}
.service-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(155,39,175,0.3) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(255,140,0,0.2) 0%, transparent 50%);
}
.service-hero-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center;
}
.service-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.8);
  padding: 5px 14px; border-radius: 50px; font-size: 0.78rem; font-weight: 600;
  margin-bottom: 20px; border: 1px solid rgba(255,255,255,0.15);
}
.service-hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 900;
  line-height: 1.1; margin-bottom: 16px; letter-spacing: -0.02em;
}
.service-hero p {
  font-size: 1.05rem; color: rgba(255,255,255,0.72); line-height: 1.7;
  max-width: 560px; margin-bottom: 32px;
}
.service-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.service-price-box {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius); padding: 28px 32px; text-align: center;
  backdrop-filter: blur(10px); min-width: 200px;
}
.service-price-box .from { font-size: 0.75rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.1em; }
.service-price-box .price { font-size: 1.8rem; font-weight: 900; color: var(--white); line-height: 1.1; margin: 6px 0; }
.service-price-box .currency { font-size: 0.85rem; color: rgba(255,255,255,0.6); }
.service-price-box .days {
  margin-top: 12px; padding-top: 12px; border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.8rem; color: rgba(255,255,255,0.6);
}
.service-price-box .days strong { color: var(--orange); }

/* ===== WHAT INCLUDED ===== */
.included { background: var(--white); }
.included-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px; margin-top: 40px;
}
.included-card {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--gray); border-radius: var(--radius-sm); padding: 20px;
  transition: box-shadow 0.2s;
}
.included-card:hover { box-shadow: var(--shadow); }
.included-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--grad); display: flex; align-items: center;
  justify-content: center; font-size: 1.1rem; flex-shrink: 0;
}
.included-card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; }
.included-card p { font-size: 0.82rem; color: var(--muted); line-height: 1.5; }

/* ===== SEO TEXT ===== */
.seo-text { background: var(--gray); }
.seo-text-inner { max-width: 860px; }
.seo-text h2 { font-size: 1.6rem; font-weight: 800; margin-bottom: 16px; }
.seo-text h3 { font-size: 1.15rem; font-weight: 700; margin: 28px 0 10px; color: var(--purple); }
.seo-text p { font-size: 0.95rem; color: #374151; line-height: 1.8; margin-bottom: 12px; }
.seo-text ul { padding-left: 0; margin-bottom: 12px; }
.seo-text ul li {
  font-size: 0.95rem; color: #374151; line-height: 1.7;
  padding: 4px 0 4px 20px; position: relative;
}
.seo-text ul li::before {
  content: '→'; position: absolute; left: 0; color: var(--purple); font-weight: 700;
}

/* ===== PROCESS ===== */
.process { background: var(--white); }
.process-steps { display: flex; flex-direction: column; gap: 0; margin-top: 40px; max-width: 720px; }
.process-step {
  display: flex; gap: 24px; align-items: flex-start;
  padding: 24px 0; border-bottom: 1px solid rgba(0,0,0,0.06);
}
.process-step:last-child { border-bottom: none; }
.step-num {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--grad); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 0.9rem; flex-shrink: 0;
}
.step-content h3 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.step-content p { font-size: 0.875rem; color: var(--muted); line-height: 1.6; }

/* ===== REGIONS LINKS ===== */
.regions-section { background: var(--gray); }
.regions-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 10px; margin-top: 32px;
}
.region-link {
  display: block; padding: 14px 18px;
  background: var(--white); border-radius: var(--radius-sm);
  font-size: 0.875rem; font-weight: 600; color: var(--text);
  border: 1.5px solid rgba(155,39,175,0.08);
  transition: all 0.2s; text-align: center;
}
.region-link:hover {
  border-color: var(--purple); color: var(--purple);
  transform: translateY(-2px); box-shadow: var(--shadow);
}
.region-link.active {
  background: var(--grad); color: var(--white); border-color: transparent;
}

/* ===== SERVICES LINKS ===== */
.services-links { background: var(--white); }
.services-links-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 10px; margin-top: 32px;
}
.service-link-card {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 18px; background: var(--gray); border-radius: var(--radius-sm);
  font-size: 0.875rem; font-weight: 600; color: var(--text);
  border: 1.5px solid transparent; transition: all 0.2s;
}
.service-link-card:hover { border-color: var(--purple); color: var(--purple); background: var(--white); }
.service-link-card .svc-icon { font-size: 1.1rem; }
.service-link-card .svc-price { font-size: 0.75rem; color: var(--muted); margin-left: auto; }

/* ===== FAQ ===== */
.faq-section { background: var(--gray); }
.faq-list { max-width: 760px; display: flex; flex-direction: column; gap: 10px; margin-top: 40px; }
.faq-item {
  background: var(--white); border-radius: var(--radius-sm);
  border: 1px solid rgba(155,39,175,0.08); overflow: hidden;
}
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px; font-weight: 600; font-size: 0.92rem;
  cursor: pointer; background: none; border: none; text-align: left; color: var(--text); gap: 16px;
}
.faq-q .arrow {
  flex-shrink: 0; width: 26px; height: 26px; background: rgba(155,39,175,0.08);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; color: var(--purple); transition: transform 0.3s, background 0.2s;
}
.faq-item.open .faq-q .arrow { transform: rotate(180deg); background: var(--grad); color: var(--white); }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s;
  font-size: 0.9rem; color: var(--muted); line-height: 1.7; padding: 0 22px;
}
.faq-item.open .faq-a { max-height: 300px; padding: 0 22px 18px; }

/* ===== CTA BANNER ===== */
.cta-banner { background: var(--grad); padding: 72px 24px; text-align: center; color: var(--white); }
.cta-banner h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 900; margin-bottom: 10px; }
.cta-banner p { font-size: 1rem; opacity: 0.85; margin-bottom: 28px; max-width: 500px; margin-left: auto; margin-right: auto; }

/* ===== FOOTER ===== */
.site-footer { background: var(--dark); color: rgba(255,255,255,0.65); padding: 64px 24px 28px; }
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px;
}
.footer-brand .logo img { height: auto; width: 160px; max-width: 100%; }
.footer-brand p { margin-top: 14px; font-size: 0.85rem; line-height: 1.7; max-width: 240px; }
.footer-col h4 {
  color: var(--white); font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 14px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul a { font-size: 0.85rem; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-col ul a:hover { color: var(--orange); }
.footer-contacts a {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.85rem; color: rgba(255,255,255,0.55); transition: color 0.2s; margin-bottom: 10px;
}
.footer-contacts a:hover { color: var(--orange); }
.footer-bottom {
  max-width: 1200px; margin: 40px auto 0; padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 10px; font-size: 0.78rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .nav { display: none; }
  .burger { display: flex; }
  .service-hero-inner { grid-template-columns: 1fr; }
  .service-price-box { min-width: auto; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .section { padding: 56px 0; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .service-hero { padding: 48px 0 40px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
