/* MegaPVA 2026 — complete visual system */
:root {
  --ink: #0b1020;
  --ink-soft: #46506a;
  --paper: #f5f7ff;
  --surface: #ffffff;
  --line: #dde3f2;
  --violet: #6d4aff;
  --violet-dark: #5131e8;
  --cyan: #20d6e8;
  --lime: #b9f643;
  --navy: #10172f;
  --emerald-depth: #6d4aff;
  --soft-ivory: #f5f7ff;
  --slate-green: #46506a;
  --white: #ffffff;
  --fine-divider: #dde3f2;
  --muted-stone: #9aa6c5;
  --deep-forest: #10172f;
  --champagne-gold: #6d4aff;
  --shadow-sm: 0 10px 30px rgba(30, 38, 78, .08);
  --shadow-lg: 0 28px 80px rgba(18, 25, 62, .18);
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 32px;
  --container: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open, body.modal-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }

h1, h2, h3, h4, .logo {
  margin-top: 0;
  color: var(--ink);
  font-family: "Space Grotesk", "DM Sans", sans-serif;
  letter-spacing: -.035em;
  line-height: 1.08;
}
p { margin-top: 0; }

.top-strip {
  color: #dfe6ff;
  background: #090e20;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.top-strip-content {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.top-strip-item { display: flex; align-items: center; gap: 8px; }
.top-strip-item svg { width: 14px; height: 14px; color: var(--cyan); }

.navbar {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(255,255,255,.88);
  border-bottom: 1px solid rgba(221,227,242,.8);
  backdrop-filter: blur(18px);
  transition: box-shadow .25s ease, background .25s ease;
}
.navbar.scrolled { box-shadow: 0 14px 34px rgba(22, 28, 62, .09); background: rgba(255,255,255,.96); }
.navbar-content { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.logo { display: inline-flex; align-items: center; gap: 11px; font-size: 23px; font-weight: 800; }
.logo-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: white;
  background: linear-gradient(145deg, var(--violet), #9279ff 58%, var(--cyan));
  border-radius: 13px;
  box-shadow: 0 8px 22px rgba(109,74,255,.28);
  transform: rotate(-4deg);
}
.logo-icon svg { display: none; }
.logo-icon::after { content: "M"; font-family: "Space Grotesk", sans-serif; font-size: 20px; font-weight: 800; transform: rotate(4deg); }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link, .dropdown-toggle {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 0 11px;
  color: #333d59;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  transition: color .2s ease, background .2s ease;
}
.nav-link:hover, .nav-link.active { color: var(--violet); background: #f0edff; }
.dropdown-toggle svg { width: 14px; }
.dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  width: min(960px, calc(100vw - 48px));
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 12px);
  color: var(--ink);
  background: rgba(255,255,255,.98);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow-lg);
  transition: .2s ease;
}
.dropdown:hover .dropdown-menu, .dropdown:focus-within .dropdown-menu { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.catalog-searchbar { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 16px; padding: 0 0 16px; margin-bottom: 16px; border-bottom: 1px solid var(--line); }
.catalog-searchbar label span { display: block; margin-bottom: 6px; font-size: 12px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.catalog-searchbar input { width: 100%; min-height: 44px; padding: 0 14px; color: var(--ink); background: var(--paper); border: 1px solid var(--line); border-radius: 11px; outline: none; }
.catalog-searchbar input:focus { border-color: var(--violet); box-shadow: 0 0 0 3px rgba(109,74,255,.12); }
.catalog-searchbar p { margin: 0; color: var(--ink-soft); font-size: 13px; }
.dropdown-grid-services { max-height: min(62vh, 540px); overflow: auto; display: grid; grid-template-columns: repeat(5, 1fr); gap: 22px; padding-right: 5px; }
.dropdown-section-title { margin-bottom: 9px; color: var(--violet); font-size: 12px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.dropdown-section-links { display: grid; gap: 2px; }
.dropdown-item { padding: 5px 7px; color: #47506a; border-radius: 7px; font-size: 13px; font-weight: 600; }
.dropdown-item:hover { color: var(--violet); background: #f0edff; }
.dropdown-view-all { display: block; margin-top: 16px; padding: 11px; color: white; background: var(--navy); border-radius: 10px; text-align: center; font-size: 13px; font-weight: 800; }
.mobile-menu-btn { display: none; width: 44px; height: 44px; padding: 11px; background: transparent; border: 0; border-radius: 10px; }
.mobile-menu-btn span { display: block; height: 2px; margin: 5px 0; background: var(--ink); border-radius: 9px; transition: .2s ease; }

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 800;
  line-height: 1;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: white; background: linear-gradient(135deg, var(--violet), var(--violet-dark)); box-shadow: 0 10px 24px rgba(109,74,255,.22); }
.btn-primary:hover { box-shadow: 0 14px 30px rgba(109,74,255,.34); }
.btn-secondary { color: var(--ink); background: white; border-color: var(--line); }

.pv-hero {
  position: relative;
  overflow: hidden;
  padding: 78px 0 34px;
  color: white;
  background:
    radial-gradient(circle at 88% 12%, rgba(32,214,232,.28), transparent 24%),
    radial-gradient(circle at 22% 0%, rgba(143,109,255,.4), transparent 30%),
    linear-gradient(145deg, #0a0e1f 0%, #131b3a 57%, #192858 100%);
}
.pv-hero::after { content: ""; position: absolute; inset: auto -8% -190px; height: 340px; background: repeating-linear-gradient(95deg, transparent 0 54px, rgba(255,255,255,.035) 55px 56px); transform: rotate(-5deg); }
.pv-hero-shell { position: relative; z-index: 2; }
.pv-hero-layout { display: grid; grid-template-columns: 1.02fr .98fr; gap: 64px; align-items: center; }
.pv-hero-kicker, .section-label { display: inline-flex; align-items: center; gap: 9px; color: var(--cyan); font-size: 12px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.pv-hero-kicker span { width: 26px; height: 2px; background: var(--cyan); }
.pv-hero-title { max-width: 690px; margin: 18px 0 22px; color: white; font-size: clamp(48px, 6vw, 78px); }
.pv-hero-title em { color: var(--lime); font-style: normal; }
.pv-hero-lead { max-width: 650px; color: #cbd4ef; font-size: 18px; }
.pv-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.pv-hero-primary { color: #101526; background: var(--lime); }
.pv-hero-secondary { color: white; background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.2); }
.pv-hero-proof { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 42px; }
.pv-hero-proof div { padding-left: 14px; border-left: 2px solid rgba(32,214,232,.48); }
.pv-hero-proof strong, .pv-hero-proof span { display: block; }
.pv-hero-proof strong { color: white; font-size: 16px; }
.pv-hero-proof span { color: #9ba8cc; font-size: 12px; }
.pv-console-window { overflow: hidden; background: rgba(255,255,255,.96); border: 1px solid rgba(255,255,255,.3); border-radius: 24px; box-shadow: 0 34px 100px rgba(0,0,0,.34); transform: rotate(1.5deg); }
.pv-console-top, .pv-console-footer { min-height: 46px; display: flex; align-items: center; justify-content: space-between; padding: 0 20px; color: #68728c; background: #f4f6fb; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
.pv-console-dots { display: flex; gap: 5px; }
.pv-console-dots i { width: 8px; height: 8px; background: #ccd3e4; border-radius: 50%; }
.pv-console-dots i:first-child { background: #ff6b7d; }
.pv-console-dots i:nth-child(2) { background: #ffc74d; }
.pv-console-dots i:last-child, .pv-console-status i { background: #36d58a; }
.pv-console-status { display: flex; align-items: center; gap: 7px; }
.pv-console-status i { width: 7px; height: 7px; border-radius: 50%; }
.pv-console-body { padding: 24px; color: var(--ink); }
.pv-console-label { margin-bottom: 12px; color: #8a93a9; font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.pv-console-list { display: grid; gap: 8px; }
.pv-console-row { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 12px; padding: 13px; background: var(--paper); border: 1px solid var(--line); border-radius: 13px; transition: border .2s ease, transform .2s ease; }
.pv-console-row:hover { transform: translateX(4px); border-color: #af9fff; }
.pv-console-code { width: 39px; height: 39px; display: grid; place-items: center; color: white; background: linear-gradient(145deg, var(--violet), #8e74ff); border-radius: 10px; font-size: 11px; font-weight: 900; }
.pv-console-row strong, .pv-console-row small { display: block; }
.pv-console-row strong { font-size: 14px; }
.pv-console-row small { color: #78829b; font-size: 11px; }
.pv-console-row b { color: var(--violet); font-size: 11px; }
.pv-console-order { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 14px; padding: 16px; color: white; background: var(--navy); border-radius: 14px; }
.pv-console-order span, .pv-console-order strong { display: block; }
.pv-console-order span { color: #9ca8ca; font-size: 11px; }
.pv-console-order button { color: var(--lime); background: none; border: 0; cursor: pointer; font-size: 12px; font-weight: 800; }
.pv-console-footer span { color: #64708a; }
.pv-hero-service-rail { display: flex; gap: 8px; overflow: auto; margin-top: 46px; padding: 18px 0 0; border-top: 1px solid rgba(255,255,255,.12); scrollbar-width: none; }
.pv-hero-service-rail a { flex: 0 0 auto; padding: 8px 13px; color: #d9e0f6; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.11); border-radius: 999px; font-size: 12px; font-weight: 700; }

.home-section, .section-padding, .pricing-section, .service-overview-section { padding: 88px 0; }
.home-section:nth-of-type(even), .pricing-section, .service-overview-section { background: #fff; }
.home-heading, .section-intro { max-width: 760px; margin: 0 auto 42px; text-align: center; }
.split-home-heading, .wide-heading { max-width: none; display: grid; grid-template-columns: 1fr .75fr; gap: 50px; align-items: end; text-align: left; }
.section-label { color: var(--violet); }
.section-title { margin: 10px 0 0; font-size: clamp(34px, 4vw, 52px); }
.section-description { margin: 0; color: var(--ink-soft); }

.starter-pricing-grid, .home-service-grid, .home-category-grid, .usecase-grid, .why-grid, .snapshot-grid, .related-grid, .packages-grid, .pricing-card-grid, .monthly-grid, .premium-access-grid, .contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.starter-pricing-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.starter-price-card, .home-service-card, .home-category-card, .usecase-card, .why-card, .snapshot-item, .related-card, .package-card, .monthly-card, .contact-card, .service-overview-card {
  position: relative;
  overflow: hidden;
  padding: 25px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.starter-price-card:hover, .home-service-card:hover, .home-category-card:hover, .usecase-card:hover, .related-card:hover, .package-card:hover, .monthly-card:hover, .contact-card:hover { transform: translateY(-5px); border-color: #b6a8ff; box-shadow: 0 22px 48px rgba(30,38,78,.12); }
.starter-price-card.featured, .package-card.featured { border: 2px solid var(--violet); }
.starter-price-card.featured::before, .package-card.featured::before { content: "Popular"; position: absolute; top: 15px; right: -31px; width: 112px; padding: 5px 0; color: white; background: var(--violet); transform: rotate(40deg); text-align: center; font-size: 9px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.starter-price-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.starter-badge, .home-card-kicker, .monthly-duration { padding: 6px 9px; color: var(--violet); background: #f0edff; border-radius: 999px; font-size: 10px; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; }
.service-brand-icon, .platform-service-logo, .page-icon, .contact-icon, .related-icon, .blog-empty-icon { width: 50px; height: 50px; display: grid; place-items: center; color: white; background: linear-gradient(145deg, var(--violet), var(--cyan)); border-radius: 14px; }
.page-icon { margin: 0 auto 18px; }
.service-brand-icon::after { content: "M"; font-weight: 900; }
.starter-price-card h3, .package-name, .monthly-card h3, .contact-name { margin: 22px 0 12px; font-size: 20px; }
.starter-price, .package-price { display: flex; align-items: baseline; gap: 7px; margin: 14px 0 18px; }
.starter-price strong, .package-price-value { font-family: "Space Grotesk", sans-serif; font-size: 38px; font-weight: 800; letter-spacing: -.05em; }
.starter-price span, .package-price-unit { color: var(--ink-soft); font-size: 12px; }
.starter-details { margin: 0 0 20px; }
.starter-details div { display: flex; justify-content: space-between; gap: 10px; padding: 9px 0; border-bottom: 1px solid var(--line); font-size: 12px; }
.starter-details dt { color: var(--ink-soft); }
.starter-details dd { margin: 0; text-align: right; font-weight: 700; }
.starter-actions, .platform-card-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.starter-view-btn, .starter-order-btn, .platform-action-btn { min-height: 42px; padding-inline: 10px; font-size: 12px; }
.package-desc, .contact-detail { color: var(--ink-soft); }
.package-features, .service-overview-list, .why-list { display: grid; gap: 10px; margin: 20px 0 24px; padding: 0; list-style: none; }
.package-feature, .service-overview-item { display: flex; align-items: flex-start; gap: 9px; color: #4a546c; font-size: 13px; }
.package-feature svg, .service-overview-item svg { flex: 0 0 17px; width: 17px; margin-top: 3px; color: var(--violet); }
.package-btn { width: 100%; }
.pricing-tabs { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 28px; }
.pricing-tab { min-height: 42px; padding: 0 16px; color: var(--ink-soft); background: white; border: 1px solid var(--line); border-radius: 999px; cursor: pointer; font-weight: 800; }
.pricing-tab.active { color: white; background: var(--ink); border-color: var(--ink); }
.pricing-panel { display: none; }
.pricing-panel.active { display: block; animation: reveal .3s ease; }
.pricing-panel-intro { margin-bottom: 26px; text-align: center; }
.pricing-panel-title { margin-bottom: 7px; font-size: 28px; }
.pricing-panel-description { color: var(--ink-soft); }
.pricing-grid-single { grid-template-columns: minmax(0, 440px); justify-content: center; }
.pricing-grid-pair { grid-template-columns: repeat(2, minmax(0, 420px)); justify-content: center; }
.pricing-grid-triple { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.starter-pricing-note { margin: 24px 0 0; color: var(--ink-soft); text-align: center; font-size: 13px; }
.ip-country-table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.ip-country-table { width: 100%; min-width: 790px; border-collapse: collapse; background: white; }
.ip-country-table th { padding: 14px 18px; color: #cbd5ef; background: var(--ink); text-align: left; font-size: 11px; font-weight: 900; letter-spacing: .07em; text-transform: uppercase; }
.ip-country-table td { padding: 17px 18px; border-bottom: 1px solid var(--line); color: var(--ink-soft); font-size: 14px; vertical-align: middle; }
.ip-country-table tbody tr:last-child td { border-bottom: 0; }
.ip-country-table tbody tr:hover { background: #f8f9ff; }
.ip-country-table td:first-child { display: flex; align-items: center; gap: 11px; color: var(--ink); }
.ip-country-table td:nth-child(2) { color: var(--ink); font-weight: 700; }
.ip-country-table td:nth-child(4) strong { display: block; color: var(--ink); font: 800 24px/1.15 "Space Grotesk", sans-serif; }
.ip-country-table td:nth-child(4) span { display: block; margin-top: 3px; font-size: 11px; }
.ip-country-code { width: 34px; height: 34px; display: grid; flex: 0 0 34px; place-items: center; color: white; background: linear-gradient(145deg, var(--violet), var(--cyan)); border-radius: 10px; font-size: 10px; font-weight: 900; letter-spacing: .06em; }
.ip-country-order { min-width: 108px; padding-inline: 14px; }

.page-header {
  position: relative;
  overflow: hidden;
  padding: 82px 0 74px;
  color: white;
  background: radial-gradient(circle at 82% 20%, rgba(32,214,232,.25), transparent 26%), linear-gradient(135deg, #0b1020, #1b2857);
  text-align: center;
}
.page-header::before { content: "MP"; position: absolute; right: 5%; top: -45px; color: rgba(255,255,255,.035); font: 800 220px/1 "Space Grotesk", sans-serif; }
.page-title { position: relative; max-width: 880px; margin: 0 auto 17px; color: white; font-size: clamp(40px, 5vw, 66px); }
.page-subtitle { position: relative; max-width: 730px; margin: auto; color: #c9d3ef; font-size: 17px; }
.value-strip { color: #d8e1fa; background: #111936; border-bottom: 1px solid rgba(255,255,255,.08); }
.value-strip-content { min-height: 84px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; align-items: center; }
.value-strip-item { display: flex; align-items: center; gap: 11px; padding: 11px; }
.value-strip-item svg { width: 19px; color: var(--cyan); }
.value-strip-item strong, .value-strip-item span { display: block; }
.value-strip-item strong { color: white; font-size: 13px; }
.value-strip-item span { color: #9eaacd; font-size: 11px; }

.service-overview-grid, .quality-layout { display: grid; grid-template-columns: 1.05fr .95fr; gap: 30px; align-items: stretch; }
.service-overview-title, .quality-copy h2 { font-size: clamp(30px, 4vw, 44px); }
.service-overview-text, .quality-copy p { color: var(--ink-soft); }
.quality-grid, .process-timeline { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.why-number { width: 34px; height: 34px; display: grid; place-items: center; color: white; background: var(--violet); border-radius: 10px; font-weight: 900; }

.home-final-cta, .shore-final-cta, .orbit-final-cta, .final-cta {
  position: relative;
  overflow: hidden;
  padding: 78px 0;
  color: white;
  background: linear-gradient(135deg, var(--violet-dark), #263274 65%, #146b86);
  text-align: center;
}
.home-final-cta h2, .shore-final-cta h2, .orbit-final-cta h2, .final-cta h2 { color: white; font-size: clamp(34px, 4vw, 52px); }
.home-final-cta p, .shore-final-cta p, .orbit-final-cta p, .final-cta p { max-width: 670px; margin-inline: auto; color: #d8e0fa; }
.final-cta-buttons { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.cta-btn { min-height: 48px; display: inline-flex; align-items: center; padding: 0 18px; color: var(--ink); background: white; border-radius: 12px; font-weight: 800; }

.faq-list { max-width: 850px; margin: auto; display: grid; gap: 10px; }
.faq-item { overflow: hidden; background: white; border: 1px solid var(--line); border-radius: 15px; }
.faq-question { width: 100%; min-height: 62px; display: flex; align-items: center; justify-content: space-between; gap: 15px; padding: 15px 20px; color: var(--ink); background: transparent; border: 0; cursor: pointer; text-align: left; font-weight: 800; }
.faq-question svg { width: 18px; transition: transform .2s ease; }
.faq-answer { max-height: 0; overflow: hidden; color: var(--ink-soft); transition: max-height .28s ease; }
.faq-answer p { padding: 0 20px 19px; margin: 0; }
.faq-item.active .faq-answer { max-height: 400px; }
.faq-item.active .faq-question svg { transform: rotate(180deg); }

.contact-card { text-align: center; }
.contact-card .contact-icon { margin: 0 auto; }
.contact-btn { width: 100%; margin-top: 10px; }
.privacy-content { max-width: 900px; margin: auto; }
.privacy-section { padding: 28px; margin-bottom: 16px; background: white; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.blog-empty-state { max-width: 680px; margin: auto; padding: 50px; background: white; border: 1px solid var(--line); border-radius: var(--radius-lg); text-align: center; box-shadow: var(--shadow-sm); }
.blog-empty-icon { margin: 0 auto 20px; }
.blog-empty-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.payment-result-page { min-height: 100vh; display: grid; place-items: center; padding: 30px; background: linear-gradient(145deg, #0a0e1f, #1c2a59); }
.payment-result-card { max-width: 620px; padding: 46px; background: white; border-radius: 28px; text-align: center; box-shadow: var(--shadow-lg); }
.payment-result-icon { width: 64px; height: 64px; display: grid; place-items: center; margin: 0 auto 18px; color: white; background: var(--violet); border-radius: 18px; }
.payment-result-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-top: 24px; }

.footer { padding: 64px 0 22px; color: #aab6d5; background: #090e20; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 48px; }
.footer-brand { min-width: min(100%, 270px); }
.footer .logo { color: white; }
.footer-brand p { max-width: 430px; margin: 18px 0 0; color: #8e9abc; }
.footer-title { margin-bottom: 17px; color: white; font-size: 14px; letter-spacing: .04em; }
.footer-links { display: grid; gap: 8px; }
.footer-link { color: #9ca8c8; font-size: 14px; transition: color .2s ease; }
.footer-link:hover { color: var(--cyan); }
.footer-bottom { margin-top: 48px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.09); }
.footer-copyright { margin: 0; color: #76819f; font-size: 12px; }

.floating-contacts { position: fixed; left: 18px; right: auto; bottom: 18px; z-index: 850; display: grid; gap: 9px; }
.floating-btn { width: 46px; height: 46px; display: grid; place-items: center; color: white; border: 2px solid white; border-radius: 14px; box-shadow: 0 10px 25px rgba(11,16,32,.2); transition: transform .2s ease; }
.floating-btn:hover { transform: translateY(-3px) scale(1.04); }
.floating-btn svg { width: 21px; height: 21px; }
.floating-whatsapp { background: #24c767; }
.floating-telegram { background: #229ed9; }
.floating-email { background: var(--violet); }

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  background: rgba(6,10,24,.72);
  backdrop-filter: blur(12px);
  transition: opacity .2s ease, visibility .2s ease;
}
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal-content {
  position: relative;
  width: min(100%, 500px);
  max-height: calc(100vh - 40px);
  overflow: auto;
  padding: 32px;
  background: white;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 26px;
  box-shadow: 0 34px 100px rgba(0,0,0,.36);
  transform: translateY(18px) scale(.98);
  transition: transform .22s ease;
}
.modal-overlay.active .modal-content { transform: translateY(0) scale(1); }
.modal-close { position: absolute; top: 17px; right: 17px; width: 38px; height: 38px; display: grid; place-items: center; color: var(--ink); background: var(--paper); border: 1px solid var(--line); border-radius: 11px; cursor: pointer; }
.modal-close svg { width: 17px; }
.modal-title { margin: 0 48px 7px 0; font-size: 30px; }
.modal-subtitle { color: var(--ink-soft); }
.modal-options { display: grid; gap: 10px; margin-top: 22px; }
.modal-option { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 13px; padding: 13px; background: var(--paper); border: 1px solid var(--line); border-radius: 14px; transition: transform .18s ease, border .18s ease, background .18s ease; }
.modal-option:hover { transform: translateX(4px); border-color: #aa99ff; background: #f0edff; }
.modal-option-icon { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 12px; }
.modal-option-icon svg { width: 22px; }
.modal-option-label, .modal-option-value { display: block; }
.modal-option-label { font-weight: 900; }
.modal-option-value { color: var(--ink-soft); font-size: 12px; }
.modal-option-arrow svg { width: 17px; color: var(--violet); }
.modal-option-checkout { order: -1; color: white; background: var(--navy); border-color: var(--navy); }
.modal-option-checkout:hover { background: #192348; }
.modal-option-checkout .modal-option-value { color: #b8c3e4; }
.modal-option-icon-checkout { color: var(--ink); background: var(--lime); }
.modal-note { margin: 18px 0 0; color: #7a849c; text-align: center; font-size: 11px; font-weight: 700; }

.platform-pricing-section { background: #fff; }
.platform-pricing-header { margin-bottom: 34px; }
.platform-pricing-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.platform-service-card { padding: 21px; background: var(--paper); border: 1px solid var(--line); border-radius: 17px; }
.platform-service-logo { margin-bottom: 16px; background: linear-gradient(145deg, var(--logo-start), var(--logo-end)); }
.platform-service-name { margin-bottom: 8px; font-size: 17px; }
.platform-price .package-price-value { font-size: 28px; }
.home-snapshot { padding: 26px 0; color: white; background: var(--violet); }
.home-snapshot .snapshot-item { box-shadow: none; background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.18); }
.snapshot-item strong, .snapshot-item span { display: block; }
.snapshot-item strong { color: white; font: 800 30px/1 "Space Grotesk", sans-serif; }
.snapshot-item span { margin-top: 7px; color: #e6e1ff; font-size: 12px; }
.quality-grid article, .process-timeline article { padding: 23px; background: white; border: 1px solid var(--line); border-radius: 17px; box-shadow: var(--shadow-sm); }
.quality-grid article h3, .process-timeline article h3 { margin: 12px 0 7px; font-size: 18px; }
.quality-grid article p, .process-timeline article p, .home-category-card p, .home-service-card p, .usecase-card p, .why-card p { margin-bottom: 0; color: var(--ink-soft); font-size: 14px; }
.process-timeline article > span, .usecase-card > div { width: 38px; height: 38px; display: grid; place-items: center; color: white; background: var(--violet); border-radius: 11px; font-size: 11px; font-weight: 900; }
.why-panel { display: grid; grid-template-columns: .85fr 1.15fr; gap: 48px; padding: 46px; color: #dbe3fb; background: var(--navy); border-radius: var(--radius-lg); }
.why-panel h2 { color: white; }
.why-panel p { color: #aeb9d7; }
.why-panel .why-list { margin: 0; }
.why-panel .why-list div { padding: 16px 18px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 14px; }
.why-panel .why-list strong, .why-panel .why-list span { display: block; }
.why-panel .why-list strong { color: white; }
.why-panel .why-list span { color: #aeb9d7; font-size: 13px; }
.home-category-card strong { display: inline-block; margin-top: 18px; color: var(--violet); font-size: 13px; }
.home-service-card h3, .home-category-card h3, .usecase-card h3 { margin: 18px 0 9px; font-size: 20px; }
.seo-buying-guide { background: linear-gradient(180deg, #f5f7ff 0%, #eef2ff 100%); }
.seo-buying-guide .service-overview-card { box-shadow: 0 18px 46px rgba(30,38,78,.09); }
.seo-buying-guide .service-overview-item::before { content: ""; flex: 0 0 8px; width: 8px; height: 8px; margin-top: 8px; background: var(--violet); border-radius: 50%; }
.why-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.related-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.footer-social { display: flex; gap: 9px; }
.footer-social a { width: 36px; height: 36px; display: grid; place-items: center; color: #aeb9d7; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 10px; }
.footer-social svg { width: 17px; }
.modal-option-icon-whatsapp { background: #25d366; }
.modal-option-icon-telegram { background: #229ed9; }
.modal-option-icon-email { background: var(--violet); }

@keyframes reveal { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; } }

@media (max-width: 1050px) {
  .nav-link { padding-inline: 7px; font-size: 13px; }
  .dropdown-grid-services { grid-template-columns: repeat(4, 1fr); }
  .starter-pricing-grid, .platform-pricing-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .top-strip-item:nth-child(n+3) { display: none; }
  .top-strip-content { justify-content: center; }
  .mobile-menu-btn { display: block; }
  .mobile-menu-btn.active span:first-child { transform: translateY(7px) rotate(45deg); }
  .mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
  .mobile-menu-btn.active span:last-child { transform: translateY(-7px) rotate(-45deg); }
  .nav-links { position: fixed; inset: 78px 0 auto; max-height: calc(100vh - 78px); overflow: auto; display: none; padding: 16px 20px 28px; background: white; border-top: 1px solid var(--line); box-shadow: var(--shadow-lg); }
  .nav-links.active { display: block; }
  .nav-links > .nav-link, .dropdown-toggle, .nav-links > .btn { width: 100%; justify-content: space-between; margin-bottom: 5px; }
  .dropdown { position: static; }
  .dropdown-menu { position: static; width: 100%; max-height: 0; overflow: hidden; display: none; padding: 0; opacity: 1; visibility: visible; transform: none; border: 0; border-radius: 0; box-shadow: none; transition: max-height .28s ease; }
  .dropdown.active .dropdown-menu { display: block; padding: 14px 0; }
  .dropdown:hover .dropdown-menu { transform: none; }
  .catalog-searchbar { grid-template-columns: 1fr; }
  .dropdown-grid-services { max-height: none; grid-template-columns: repeat(2, 1fr); }
  .pv-hero { padding-top: 58px; }
  .pv-hero-layout { grid-template-columns: 1fr; gap: 42px; }
  .pv-console-window { max-width: 650px; transform: none; }
  .split-home-heading, .wide-heading, .service-overview-grid, .quality-layout { grid-template-columns: 1fr; gap: 20px; }
  .why-panel { grid-template-columns: 1fr; }
  .starter-pricing-grid, .platform-pricing-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .packages-grid, .pricing-card-grid, .monthly-grid, .premium-access-grid, .home-service-grid, .home-category-grid, .usecase-grid, .why-grid, .snapshot-grid, .related-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .value-strip-content { grid-template-columns: repeat(2, 1fr); padding-block: 10px; }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .top-strip-item:nth-child(n+2) { display: none; }
  .navbar-content { min-height: 70px; }
  .nav-links { top: 70px; }
  .logo { font-size: 20px; }
  .logo-icon { width: 36px; height: 36px; }
  .pv-hero { padding: 46px 0 24px; }
  .pv-hero-title { font-size: clamp(41px, 13vw, 56px); }
  .pv-hero-lead, .page-subtitle { font-size: 15px; }
  .pv-hero-actions .btn { width: 100%; }
  .pv-hero-proof { grid-template-columns: 1fr; }
  .pv-console-body { padding: 15px; }
  .pv-console-row { grid-template-columns: auto 1fr; }
  .pv-console-row b { display: none; }
  .pv-console-order { align-items: flex-start; flex-direction: column; }
  .home-section, .section-padding, .pricing-section, .service-overview-section { padding: 62px 0; }
  .page-header { padding: 60px 0 54px; }
  .page-title { font-size: 39px; }
  .section-title { font-size: 35px; }
  .starter-pricing-grid, .platform-pricing-grid, .packages-grid, .pricing-card-grid, .monthly-grid, .premium-access-grid, .home-service-grid, .home-category-grid, .usecase-grid, .why-grid, .snapshot-grid, .related-grid, .contact-grid, .quality-grid, .process-timeline { grid-template-columns: 1fr; }
  .pricing-grid-pair, .pricing-grid-triple { grid-template-columns: 1fr; }
  .value-strip-content { grid-template-columns: 1fr; }
  .value-strip-item { border-bottom: 1px solid rgba(255,255,255,.08); }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .floating-contacts { left: 11px; right: auto; bottom: 11px; }
  .floating-btn { width: 43px; height: 43px; }
  .modal-content { padding: 26px 18px 20px; border-radius: 20px; }
  .modal-title { font-size: 26px; }
  .modal-option { padding: 10px; }
  .modal-option-value { overflow-wrap: anywhere; }
  .privacy-section, .blog-empty-state, .payment-result-card { padding: 25px 20px; }
  .why-panel { padding: 28px 20px; }
}
