:root {
  --bg: #eff4ff;
  --surface: rgba(255, 255, 255, 0.88);
  --surface-strong: #ffffff;
  --line: rgba(210, 223, 250, 0.95);
  --text: #17233f;
  --heading: #111a31;
  --muted: #61708c;
  --primary: #2e65f3;
  --primary-dark: #1d4fd6;
  --accent: #eef4ff;
  --shadow: 0 24px 60px rgba(28, 59, 126, 0.09);
  --radius-xl: 0px;
  --radius-lg: 16px;
  --radius-md: 12px;
  --container: 1580px;
  --font-sans: "Avenir Next", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-heading: "Avenir Next", "Helvetica Neue", "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background:
    radial-gradient(circle at top left, rgba(63, 120, 255, 0.2), transparent 24%),
    linear-gradient(180deg, #edf3ff 0%, #f8fbff 100%);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.site-bg {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 80% 10%, rgba(48, 101, 243, 0.14), transparent 20%),
    radial-gradient(circle at 12% 60%, rgba(48, 101, 243, 0.1), transparent 18%);
  pointer-events: none;
}

.page-shell {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(248, 251, 255, 0.98));
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}

.site-header {
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(222, 230, 246, 0.92);
  box-shadow: 0 12px 30px rgba(28, 59, 126, 0.05);
  margin-bottom: 24px;
}

main, .site-header-main {
  width: min(var(--container), calc(100% - 40px));
  margin-left: auto;
  margin-right: auto;
}

main, .site-header-main {
  width: min(var(--container), calc(100% - 40px));
  margin-left: auto;
  margin-right: auto;
}


.site-topbar {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 48px;
  background: #f8f9fc;
  border-bottom: 1px solid rgba(226, 232, 244, 0.9);
  font-size: 0.82rem;
  color: #6c7893;
  padding: 0 calc((100% - var(--container)) / 2 + 20px);
}

.topbar-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.topbar-link,
.topbar-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 16px;
  border-right: 1px solid rgba(226, 232, 244, 0.92);
  font-weight: 500;
  letter-spacing: 0.012em;
}

.topbar-group > :first-child {
  padding-left: 0;
}

.topbar-group > :last-child {
  padding-right: 0;
  border-right: 0;
}

.topbar-link:hover {
  color: var(--primary);
}

.topbar-icon {
  color: #7b87a2;
  font-size: 1rem;
}

.site-header-main {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 22px;
  align-items: center;
  min-height: 88px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
}

.brand-mark {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.05vw, 2.05rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
}

.brand-mark .brand-dark {
  color: #16181f;
}

.brand-mark .brand-accent {
  color: var(--primary);
}

.brand-mark .brand-cloud {
  position: relative;
  display: inline-block;
  margin-left: 4px;
  color: var(--primary);
  font-size: 1.05rem;
  transform: translateY(-9px);
}

.brand-copy {
  display: none;
}

.site-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 26px;
  font-size: 0.85rem;
  color: #33405a;
}

.site-nav > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 64px;
  font-weight: 500;
  letter-spacing: 0;
}

.site-nav > a:hover,
.nav-drop-toggle:hover {
  color: var(--primary);
}

.nav-dropdown {
  position: relative;
}

.nav-drop-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 64px;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0;
  cursor: pointer;
}

.nav-drop-toggle::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 0.2s ease;
}

.nav-drop-toggle.active {
  color: var(--primary);
}

.nav-drop-menu {
  position: absolute;
  top: calc(100% - 8px);
  left: 50%;
  z-index: 30;
  min-width: 240px;
  display: grid;
  gap: 8px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 22px 45px rgba(28, 59, 126, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.nav-drop-menu a {
  padding: 10px 12px;
  border-radius: 12px;
  color: #41506d;
  transition: background 0.18s ease, color 0.18s ease;
}

.nav-drop-menu a:hover {
  color: var(--primary);
  background: rgba(46, 101, 243, 0.08);
}

.nav-dropdown:hover .nav-drop-menu,
.nav-dropdown.open .nav-drop-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown.open .nav-drop-toggle::after {
  transform: rotate(225deg) translateY(-1px);
}

.site-nav > a.active {
  color: var(--primary);
}

.site-nav > a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  border-radius: 999px;
  background: var(--primary);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: var(--text);
  border-radius: 999px;
}

.header-icon-btn,
.panel-btn,
.primary-btn,
.secondary-btn,
.outline-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 14px;
  font-weight: 700;
  letter-spacing: 0;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.panel-btn,
.primary-btn {
  color: #fff;
  background: linear-gradient(180deg, #417bff 0%, #2d62f1 100%);
  box-shadow: 0 16px 32px rgba(46, 101, 243, 0.22);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-icon-btn {
  width: 64px;
  min-width: 64px;
  padding: 0;
  color: var(--primary);
  background: #f5f8ff;
  border: 1px solid #d7e4ff;
  box-shadow: none;
}

.header-icon-btn svg {
  width: 22px;
  height: 22px;
}

.panel-btn {
  min-width: 146px;
  font-weight: 600;
  background: linear-gradient(180deg, #3d75ff 0%, #255de8 100%);
  box-shadow: 0 16px 32px rgba(46, 101, 243, 0.22);
}

.secondary-btn,
.outline-btn {
  color: var(--primary);
  background: #fff;
  border: 1px solid #d2e0ff;
}

.panel-btn:hover,
.primary-btn:hover,
.secondary-btn:hover,
.outline-btn:hover {
  transform: translateY(-1px);
}

.full {
  width: 100%;
}

.section,
.hero {
  margin-bottom: 26px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(430px, 0.98fr);
  gap: 28px;
  align-items: center;
  min-height: 620px;
  padding: 22px 0 14px;
}

.hero-copy {
  padding: 16px 0;
}



.eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(46, 101, 243, 0.06);
  color: var(--primary);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
  font-family: var(--font-heading);
  margin: 0;
  font-size: clamp(1.85rem, 2.8vw, 2.65rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.hero h1 span,
.page-hero h1 span {
  color: var(--primary);
}

.hero-copy p,
.copy-block p,
.section-heading p,
.page-hero p,
.contact-panel p,
.info-card p,
.faq-item p,
.table-note,
.site-footer p {
  color: var(--muted);
  line-height: 1.75;
}

.hero-copy p {
  max-width: 630px;
  margin: 18px 0 0;
  font-size: 1.04rem;
  line-height: 1.85;
}

.hero-points,
.check-list,
.detail-list,
.pricing-card ul {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.hero-points li::before,
.check-list li::before,
.detail-list li::before,
.pricing-card li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-radius: 999px;
  background: var(--primary);
  box-shadow: 0 0 0 5px rgba(46, 101, 243, 0.1);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 30px;
}

.hero-stats article,
.mini-stat,
.info-card,
.faq-item,
.table-wrap,
.map-card,
.contact-panel,
.timeline-card,
.comparison-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 26px rgba(27, 52, 102, 0.05);
  backdrop-filter: blur(14px);
}

.hero-stats article {
  padding: 18px;
}

.hero-stats strong,
.mini-stat strong {
  display: block;
  font-size: 1.6rem;
  color: var(--primary);
}

.hero-stats span,
.mini-stat span {
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-media,
.image-card,
.page-hero-media {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(222, 230, 249, 0.95);
  box-shadow: 0 26px 54px rgba(28, 59, 126, 0.1);
}

.hero-media {
  min-height: 580px;
}

.hero-media img,
.image-card img,
.page-hero-media img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-badge {
  position: absolute;
  top: 26px;
  left: 26px;
  display: grid;
  gap: 6px;
  max-width: 270px;
  padding: 18px 20px;
  background: rgba(17, 37, 82, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  backdrop-filter: blur(14px);
  color: #fff;
  box-shadow: 0 18px 30px rgba(16, 34, 74, 0.24);
}

.floating-badge span {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

.floating-badge strong {
  font-size: 1.55rem;
  line-height: 1.15;
}

.feature-strip,
.stats-grid,
.detail-grid,
.contact-grid,
.faq-grid,
.comparison-grid {
  display: grid;
  gap: 18px;
}

.feature-strip {
  grid-template-columns: repeat(4, 1fr);
}

.feature-card,
.stat-card,
.detail-card,
.comparison-card,
.faq-item,
.timeline-card {
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.feature-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  min-height: 172px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(240, 246, 255, 0.92)),
    #fff;
  box-shadow: 0 16px 34px rgba(28, 59, 126, 0.07);
}

.feature-icon {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(46, 101, 243, 0.1);
  color: var(--primary);
  font-weight: 800;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.feature-kicker {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feature-card h3,
.pricing-card h3,
.section-heading h2,
.copy-block h2,
.page-hero h1,
.faq-item h3,
.contact-panel h2,
.timeline-card h3,
.comparison-card h3,
.info-card h3 {
  font-family: var(--font-heading);
  margin: 0 0 10px;
  letter-spacing: -0.025em;
}

.feature-card p,
.stat-card p,
.detail-card p,
.comparison-card p,
.timeline-card p,
.info-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.78;
}

.section {
  padding: 18px 0;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 22px;
  text-align: center;
}

.section-heading h2,
.copy-block h2,
.contact-panel h2 {
  font-size: clamp(1.45rem, 2vw, 1.85rem);
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.pricing-grid.three-up {
  grid-template-columns: repeat(3, 1fr);
}

.pricing-card {
  position: relative;
  padding: 28px 22px 22px;
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 14px 28px rgba(28, 59, 126, 0.06);
}

.pricing-card.featured {
  border: 2px solid var(--primary);
  transform: translateY(-6px);
}

.card-label {
  position: absolute;
  top: -14px;
  left: 22px;
  padding: 8px 12px;
  border-radius: 999px;
  background: linear-gradient(180deg, #417bff 0%, #2d62f1 100%);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
}

.subtitle {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.65;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 18px;
}

.price strong {
  font-size: 3rem;
  line-height: 1;
  color: var(--primary);
}

.price span {
  color: var(--muted);
}

.media-section,
.contact-highlight,
.page-hero,
.two-column {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: center;
}

.copy-block,
.contact-panel,
.info-card,
.map-card {
  padding: 28px;
}

.image-card {
  min-height: 420px;
  background: #eef4ff;
}

.image-card::after,
.page-hero-media::after,
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 28, 62, 0.02) 0%, rgba(13, 28, 62, 0.18) 100%);
  pointer-events: none;
}

.image-caption {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 1;
  display: grid;
  gap: 6px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(210, 223, 248, 0.92);
  border-radius: 18px;
  box-shadow: 0 18px 32px rgba(28, 59, 126, 0.12);
  backdrop-filter: blur(10px);
}

.image-caption strong {
  font-family: var(--font-heading);
  font-size: 1.02rem;
  letter-spacing: -0.02em;
  color: var(--heading);
}

.image-caption span {
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.65;
}

.soft-card {
  background: linear-gradient(180deg, #f8fbff 0%, #edf3ff 100%);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.testimonial {
  position: relative;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 247, 255, 0.92)),
    var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 34px rgba(28, 59, 126, 0.06);
}

.testimonial p {
  position: relative;
  z-index: 1;
  margin: 0 0 24px;
  line-height: 1.92;
  color: var(--muted);
}

.quote-mark {
  position: absolute;
  top: 12px;
  right: 18px;
  color: rgba(46, 101, 243, 0.12);
  font-size: 5rem;
  line-height: 1;
  font-weight: 800;
}

.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.avatar-badge {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(180deg, #417bff 0%, #2d62f1 100%);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 800;
  box-shadow: 0 14px 24px rgba(46, 101, 243, 0.18);
}

.testimonial-meta strong {
  display: block;
  margin-bottom: 4px;
}

.testimonial-meta span {
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer {
  width: 100%;
  margin: 42px 0 0;
  padding: 46px 0 24px;
  color: #e7eeff;
  background:
    linear-gradient(180deg, #f5f8ff 0 168px, transparent 168px),
    linear-gradient(135deg, #111827 0%, #172541 48%, #0f172a 100%);
}

.partner-strip, 
.footer-newsletter, 
.footer-main, 
.footer-bottom {
  width: min(var(--container), calc(100% - 40px));
  margin-left: auto !important;
  margin-right: auto !important;
}

.partner-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  align-items: center;
  margin-bottom: 32px;
  color: #7d89a4;
  font-weight: 800;
  letter-spacing: 0;
  text-align: center;
}

.partner-strip span {
  filter: grayscale(1);
  opacity: 0.8;
}

.footer-newsletter {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(360px, 1.2fr);
  gap: 28px;
  align-items: center;
  margin-bottom: 58px;
  padding: 28px 34px;
  border: 1px solid rgba(198, 216, 255, 0.5);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(46, 101, 243, 0.98), rgba(34, 82, 196, 0.94)),
    #2e65f3;
  box-shadow: 0 28px 70px rgba(20, 43, 96, 0.24);
}

.footer-kicker {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-newsletter h2 {
  margin: 0;
  max-width: 560px;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.65rem;
  line-height: 1.18;
  letter-spacing: 0;
}

.newsletter-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.12);
}

.newsletter-form input {
  min-height: 52px;
  border: 0;
  background: transparent;
  color: #fff;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.72);
}

.newsletter-form button {
  min-height: 52px;
  padding: 0 24px;
  border: 0;
  border-radius: 12px;
  color: var(--primary);
  background: #fff;
  font-weight: 900;
  cursor: pointer;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.65fr);
  gap: 46px;
}

.footer-contact-card {
  display: grid;
  gap: 18px;
  align-content: start;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.footer-logo span {
  color: #fff;
}

.footer-logo strong {
  color: #8fb0ff;
}

.footer-contact-card p {
  margin: 0;
  color: rgba(231, 238, 255, 0.76);
}

.footer-contact-list {
  display: grid;
  gap: 12px;
  padding-top: 8px;
}

.footer-contact-list a {
  color: #fff;
  font-weight: 800;
}

.footer-nav-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px 46px;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-links h4 {
  position: relative;
  font-family: var(--font-heading);
  margin: 0 0 10px;
  color: #8fb0ff;
  letter-spacing: 0;
  text-transform: uppercase;
}

.footer-links h4::after {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  margin-top: 10px;
  border-radius: 999px;
  background: #6c97ff;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 42px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(231, 238, 255, 0.66);
  font-size: 0.9rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page-hero {
  min-height: 440px;
  padding: 10px 0 6px;
}

.page-hero-copy p {
  max-width: 620px;
  margin: 0;
  font-size: 1.03rem;
}

.page-hero-media {
  min-height: 420px;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(222, 230, 249, 0.95);
  box-shadow: 0 26px 54px rgba(28, 59, 126, 0.1);
}

.stats-grid {
  grid-template-columns: repeat(4, 1fr);
}

.stat-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 2rem;
  color: var(--primary);
}

.detail-grid {
  grid-template-columns: repeat(3, 1fr);
}

.comparison-grid {
  grid-template-columns: repeat(2, 1fr);
}

.region-switch {
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
}

.region-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #f4f7fd;
  color: var(--heading);
  font-weight: 800;
}

.region-pill.active {
  background: linear-gradient(180deg, #3e78ff 0%, #255de8 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 14px 28px rgba(46, 101, 243, 0.22);
}

.region-flag {
  font-size: 1.35rem;
  line-height: 1;
}

.vps-section {
  display: grid;
  gap: 18px;
}

.vps-hero {
  position: relative;
  min-height: 520px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 36px;
  align-items: center;
  padding: 34px 0 28px;
}

.vps-hero .page-hero-copy {
  position: relative;
  z-index: 2;
}

.vps-hero h1 {
  max-width: 760px;
}

.vps-hero .region-switch {
  margin-top: 26px;
}

.vps-hero-media {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(197, 213, 248, 0.95);
  background: #eef5ff;
  box-shadow: 0 28px 70px rgba(28, 59, 126, 0.15);
}

.vps-hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vps-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 31, 70, 0.18), rgba(15, 31, 70, 0.02)),
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(13, 35, 85, 0.18));
  pointer-events: none;
}

.vps-hero-badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 2;
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(210, 223, 250, 0.92);
  box-shadow: 0 18px 34px rgba(28, 59, 126, 0.14);
  backdrop-filter: blur(12px);
}

.vps-hero-badge strong {
  color: var(--primary);
  font-size: 1.45rem;
}

.vps-hero-badge span {
  color: var(--muted);
  font-size: 0.9rem;
}

.vps-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 22px;
}

.vps-trust-card {
  padding: 18px;
  border: 1px solid rgba(210, 223, 250, 0.95);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 32px rgba(28, 59, 126, 0.06);
}

.vps-trust-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--heading);
  font-family: var(--font-heading);
}

.vps-trust-card span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.vps-list {
  display: grid;
  gap: 18px;
}

.vps-row {
  display: grid;
  grid-template-columns: minmax(180px, 1.05fr) repeat(6, minmax(120px, 0.72fr)) minmax(180px, 0.9fr) 76px;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 255, 0.94));
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 18px 34px rgba(28, 59, 126, 0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.vps-row:hover {
  transform: translateY(-2px);
  border-color: rgba(46, 101, 243, 0.38);
  box-shadow: 0 24px 46px rgba(28, 59, 126, 0.1);
}

.vps-main,
.vps-spec,
.vps-price,
.vps-action {
  min-height: 132px;
  padding: 22px 18px;
}

.vps-main,
.vps-spec,
.vps-price {
  border-right: 1px solid rgba(219, 229, 248, 0.88);
}

.vps-main {
  display: flex;
  align-items: center;
  gap: 16px;
}

.vps-icon {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  flex: 0 0 68px;
  border-radius: 14px;
  background: linear-gradient(180deg, #f4f7fd 0%, #e9effa 100%);
  color: var(--primary);
}

.vps-icon svg {
  width: 32px;
  height: 32px;
}

.vps-main strong,
.vps-spec strong,
.vps-price strong {
  display: block;
  color: var(--heading);
  letter-spacing: -0.02em;
}

.vps-main strong,
.vps-price strong {
  font-family: var(--font-heading);
  font-size: 1.1rem;
}

.vps-main span,
.vps-spec span,
.vps-price span {
  display: block;
  margin-top: 6px;
  color: #7583a3;
  font-size: 0.92rem;
  line-height: 1.45;
}

.vps-main .accent {
  color: var(--primary);
  font-weight: 800;
}

.vps-spec strong {
  font-size: 0.98rem;
}

.vps-price {
  text-align: right;
}

.vps-price .old-price {
  margin-top: 0;
  font-size: 0.9rem;
  text-decoration: line-through;
  color: #92a0bd;
}

.vps-price .current-price {
  margin-top: 4px;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  line-height: 1;
  color: #1f2430;
}

.vps-price .current-price small {
  font-size: 0.92rem;
  color: #5e6b88;
}

.vps-action {
  display: grid;
  place-items: center;
}

.vps-action .icon-btn {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  border: 1px solid #d7e4ff;
  background: #f5f8ff;
  color: var(--primary);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.vps-action .icon-btn svg {
  width: 24px;
  height: 24px;
}

.detail-card,
.stat-card,
.comparison-card {
  min-height: 100%;
}

.timeline {
  display: grid;
  gap: 18px;
}

.timeline-card span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.table-wrap {
  overflow-x: auto;
  padding: 18px;
}

table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

th,
td {
  padding: 16px 14px;
  border-bottom: 1px solid #e1ebff;
  text-align: left;
}

th {
  color: var(--primary);
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.table-note {
  margin-top: 12px;
}

.faq-grid {
  grid-template-columns: repeat(2, 1fr);
}

.faq-item h3 {
  font-size: 1.12rem;
}

.faq-item p {
  margin: 0;
}

.contact-grid {
  grid-template-columns: 1.15fr 0.85fr;
}

.contact-form {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

input,
textarea {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid #d6e3ff;
  border-radius: 14px;
  background: #fbfdff;
  color: var(--text);
}

textarea {
  resize: vertical;
  min-height: 140px;
}

.stack {
  display: grid;
  gap: 18px;
}

.map-card iframe {
  width: 100%;
  height: 290px;
  border: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, #edf3ff, #dce8ff);
}

.info-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.2rem;
}

@media (max-width: 1180px) {
  .site-header {
    margin-left: -28px;
    margin-right: -28px;
  }

  .site-topbar {
    display: none;
  }

  .site-header-main {
    grid-template-columns: auto auto;
    grid-template-areas:
      "brand toggle"
      "nav nav"
      "actions actions";
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .brand {
    grid-area: brand;
  }

  .menu-toggle {
    grid-area: toggle;
    display: inline-block;
    justify-self: end;
  }

  .site-nav {
    grid-area: nav;
    display: none;
    flex-direction: column;
    justify-content: flex-start;
    padding: 14px 18px;
    background: rgba(247, 250, 255, 0.96);
    border: 1px solid var(--line);
    border-radius: 18px;
  }

  .site-nav.open {
    display: flex;
  }

  .header-actions {
    grid-area: actions;
    justify-content: flex-start;
  }

  .panel-btn {
    min-width: 146px;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-drop-toggle {
    width: 100%;
    justify-content: space-between;
  }

  .nav-drop-menu {
    position: static;
    min-width: 100%;
    margin-top: 12px;
    padding: 12px;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    box-shadow: none;
    background: #fff;
  }

  .nav-dropdown:hover .nav-drop-menu {
    transform: none;
  }

  .nav-dropdown.open .nav-drop-menu {
    display: grid;
  }

  .hero,
  .page-hero,
  .vps-hero,
  .media-section,
  .contact-highlight,
  .two-column,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .feature-strip,
  .pricing-grid,
  .stats-grid,
  .detail-grid,
  .testimonial-grid,
  .faq-grid,
  .comparison-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .vps-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vps-trust-grid,
  .partner-strip,
  .footer-nav-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-newsletter,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .vps-hero {
    min-height: auto;
  }

  .vps-main,
  .vps-spec,
  .vps-price,
  .vps-action {
    min-height: auto;
  }

  .hero {
    min-height: auto;
  }

  .hero-media,
  .page-hero-media,
  .vps-hero-media {
    min-height: 420px;
  }

  .site-footer {
    margin-left: -28px;
    margin-right: -28px;
  }
}

@media (max-width: 760px) {
  .page-shell {
    width: 100%;
    margin: 0;
    padding: 0 0 18px;
    border-radius: 0;
  }

  .site-header {
    margin-left: 0;
    margin-right: 0;
  }

  main, .site-header-main {
    width: calc(100% - 32px);
  }

  .site-header-main {
    gap: 12px;
    min-height: auto;
    padding-left: 16px;
    padding-right: 16px;
  }

  .brand-mark {
    font-size: 1.4rem;
  }

  .header-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 8px;
  }

  .header-icon-btn,
  .panel-btn {
    width: 100%;
    min-width: 0;
    min-height: 42px;
    font-size: 0.85rem;
    border-radius: 10px;
  }

  .header-icon-btn {
    width: 52px;
    min-width: 52px;
  }

  .hero,
  .section,
  .page-hero,
  .vps-hero {
    margin-bottom: 14px;
  }

  .hero-actions,
  .form-row {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 1.6rem;
  }

  .hero-copy p {
    font-size: 0.92rem;
  }

  .hero-stats,
  .feature-strip,
  .pricing-grid,
  .pricing-grid.three-up,
  .stats-grid,
  .detail-grid,
  .testimonial-grid,
  .faq-grid,
  .comparison-grid,
  .vps-trust-grid,
  .partner-strip,
  .footer-nav-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .pricing-card {
    padding: 22px 18px;
  }

  .pricing-card.featured {
    transform: none;
  }

  .price strong {
    font-size: 2.2rem;
  }

  .footer-newsletter {
    padding: 22px 16px;
  }

  .newsletter-form {
    grid-template-columns: 1fr;
  }

  .footer-main {
    grid-template-columns: 1fr;
    padding: 24px 16px;
  }

  .footer-bottom {
    flex-direction: column;
    padding: 14px 16px;
    text-align: center;
    gap: 6px;
  }

  .vps-row {
    grid-template-columns: 1fr;
  }

  .copy-block,
  .contact-panel,
  .info-card,
  .map-card,
  .feature-card,
  .stat-card,
  .detail-card,
  .comparison-card,
  .faq-item,
  .timeline-card,
  .testimonial {
    padding: 18px;
  }

  .vps-main,
  .vps-spec,
  .vps-price,
  .vps-action {
    padding: 16px;
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(219, 229, 248, 0.88);
  }

  .vps-action {
    border-bottom: 0;
  }

  .vps-price {
    text-align: left;
  }

  .hero-media,
  .page-hero-media,
  .vps-hero-media,
  .image-card {
    min-height: 240px;
    border-radius: 16px;
  }

  .floating-badge {
    left: 12px;
    right: 12px;
    bottom: 12px;
    top: auto;
    padding: 14px;
  }

  .floating-badge strong {
    font-size: 1.2rem;
  }

  .site-nav {
    gap: 12px;
    flex-direction: column;
    padding: 12px;
  }

  .site-nav a,
  .nav-drop-toggle {
    min-height: 42px;
    font-size: 0.9rem;
  }

  .feature-card {
    min-height: auto;
    flex-direction: column;
    gap: 10px;
  }

  .quote-mark {
    top: 8px;
    right: 12px;
    font-size: 3.8rem;
  }

  .site-footer {
    margin: 0;
    border-radius: 0;
  }

  /* Order page mobile fixes */
  section[style*="grid-template-columns: 1.4fr"] {
    display: block !important;
  }

  section[style*="grid-template-columns: 1.2fr"] {
    display: block !important;
  }
}

/* ───────── Contact Page ───────── */
.contact-highlight {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 28px;
  align-items: start;
}
.contact-panel {
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.info-card {
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.info-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.detail-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.detail-list li {
  padding: 8px 0;
  border-bottom: 1px solid #f1f5f9;
  font-size: 0.9rem;
  color: var(--text);
}
.detail-list li:last-child { border-bottom: none; }
.detail-list li a { text-decoration: none; }

/* ───────── FAQ ───────── */
.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  transition: box-shadow 0.2s;
}
.faq-item:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.faq-item h3 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
  color: var(--heading);
}
.faq-item p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ───────── Pricing grid 3-up ───────── */
.pricing-grid.three-up {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 768px) {
  .contact-highlight { grid-template-columns: 1fr; }
  .pricing-grid.three-up { grid-template-columns: 1fr; }
}
