/* ============================================================
   512 HOSTING — MODERN TECH REDESIGN
   Palette: deep navy + electric blue + white
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=JetBrains+Mono:wght@500;700&display=swap');

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Brand */
  --navy: #011379;
  --navy-deep: #000a47;
  --navy-2: #0a1f8f;
  --electric: #4f6bff;
  --electric-bright: #6b86ff;
  --electric-soft: #eef1ff;

  /* Aliases kept for legacy classes */
  --primary: var(--navy);
  --primary-dark: var(--navy-deep);
  --primary-light: var(--electric);
  --blue: var(--navy);
  --blue-dark: var(--navy-deep);
  --blue-light: var(--electric-soft);
  --royal: var(--navy);
  --royal-bright: var(--electric);
  --accent: var(--electric);
  --accent-dark: var(--navy);
  --accent-light: var(--electric-soft);
  --orange: var(--navy);
  --orange-dark: var(--navy-deep);
  --orange-light: var(--electric-soft);

  --green: #10b981;
  --white: #ffffff;
  --ink: #0b1020;

  --gray-50: #f7f8fb;
  --gray-100: #eef0f6;
  --gray-200: #e3e7f0;
  --gray-300: #c8cee0;
  --gray-400: #8a93ad;
  --gray-500: #5f6982;
  --gray-600: #3f4866;
  --gray-700: #2a3250;
  --gray-800: #161c34;
  --gray-900: #0b1020;

  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius: 14px;
  --radius-lg: 20px;

  --shadow-xs: 0 1px 2px rgba(11, 16, 32, 0.06);
  --shadow: 0 8px 24px rgba(11, 16, 32, 0.06);
  --shadow-lg: 0 24px 60px rgba(11, 16, 32, 0.10);
  --shadow-glow: 0 0 0 1px rgba(79, 107, 255, 0.18), 0 20px 60px rgba(79, 107, 255, 0.18);

  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

  /* Reusable backgrounds */
  --grid-light: radial-gradient(circle at 1px 1px, rgba(11,16,32,0.07) 1px, transparent 0);
  --grid-dark: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.08) 1px, transparent 0);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--gray-600);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  font-feature-settings: 'cv11', 'ss01', 'ss03';
}

a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul, ol { list-style: none; }
img { max-width: 100%; display: block; }

h1, h2, h3, h4, h5, h6 {
  line-height: 1.1;
  font-weight: 700;
  color: var(--gray-900);
  letter-spacing: -0.02em;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-orange,
.text-blue { color: var(--electric); }
.text-white { color: var(--white); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes meshShift {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(-30px, 20px, 0) scale(1.05); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 0.9; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes gridPan {
  0% { background-position: 0 0; }
  100% { background-position: 40px 40px; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  position: relative;
  letter-spacing: -0.01em;
}

.btn-orange,
.btn-blue {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 1px 0 rgba(255,255,255,0.15) inset, 0 8px 24px rgba(1,19,121,0.25);
}

.btn-orange:hover,
.btn-blue:hover {
  background: var(--navy-2);
  transform: translateY(-2px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.15) inset, 0 14px 32px rgba(79,107,255,0.35);
}

.btn-glow {
  box-shadow: 0 1px 0 rgba(255,255,255,0.15) inset,
              0 8px 24px rgba(1,19,121,0.3),
              0 0 0 4px rgba(79,107,255,0.10);
}
.btn-glow:hover {
  box-shadow: 0 1px 0 rgba(255,255,255,0.15) inset,
              0 14px 32px rgba(79,107,255,0.4),
              0 0 0 6px rgba(79,107,255,0.15);
}

.btn-outline {
  background: rgba(255,255,255,0.04);
  color: var(--white);
  border-color: rgba(255,255,255,0.20);
  backdrop-filter: blur(10px);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-2px);
}

.btn-outline-blue {
  background: var(--white);
  color: var(--navy);
  border-color: var(--gray-200);
}
.btn-outline-blue:hover {
  border-color: var(--navy);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(1,19,121,0.10);
}

.btn-white {
  background: var(--white);
  color: var(--navy);
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.22);
}

.btn-sm { padding: 9px 18px; font-size: 0.85rem; }
.btn-lg { padding: 16px 36px; font-size: 1rem; border-radius: var(--radius); }
.btn-full { width: 100%; }

.btn-arrow { transition: transform var(--transition); display: inline-block; }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* ============================================================
   PROMO BAR
   ============================================================ */
.promo-bar {
  background: var(--ink);
  padding: 9px 0;
  text-align: center;
  position: relative;
  z-index: 1001;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.promo-bar::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(79,107,255,0.18), transparent);
  background-size: 200% 100%;
  animation: shimmer 6s linear infinite;
}

.promo-text {
  position: relative;
  color: rgba(255,255,255,0.85);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.promo-text strong { color: var(--white); font-weight: 700; }
.promo-bolt { margin-right: 6px; color: var(--electric-bright); }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: relative;
  z-index: 1000;
  background: transparent;
  margin-bottom: -80px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
}

.nav-logo-img { height: 34px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  background: transparent;
  border: none;
  padding: 0;
}

.nav-links a {
  color: rgba(255,255,255,0.75);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 6px 2px;
  border-radius: 0;
  transition: color var(--transition);
  position: relative;
}

.nav-links a:hover { color: var(--white); background: transparent; }

.nav-links a.active {
  color: var(--white);
  background: transparent;
  box-shadow: none;
}

.nav-cta {
  margin-left: 12px;
  background: transparent !important;
  color: var(--white) !important;
  font-weight: 600 !important;
  border: 1.5px solid rgba(255,255,255,0.55) !important;
  padding: 8px 20px !important;
  border-radius: var(--radius-sm) !important;
  box-shadow: none !important;
}
.nav-cta:hover {
  background: var(--white) !important;
  color: var(--navy) !important;
  border-color: var(--white) !important;
  transform: translateY(-1px);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
}

.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================================
   HERO — dark navy w/ animated mesh + dot grid
   ============================================================ */
.hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--ink);
  overflow: hidden;
  padding: 180px 0 140px;
  isolation: isolate;
}

.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: var(--grid-dark);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 30%, transparent 80%);
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 20% 30%, rgba(79,107,255,0.35), transparent 60%),
    radial-gradient(ellipse 50% 50% at 80% 20%, rgba(1,19,121,0.55), transparent 60%),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(79,107,255,0.25), transparent 60%);
  filter: blur(20px);
  z-index: 0;
  animation: meshShift 14s ease-in-out infinite;
}

.hero-stripes,
.hero-particles { display: none; }

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 1;
}
.hero-glow-1 {
  width: 520px; height: 520px;
  background: rgba(79,107,255,0.25);
  top: -160px; right: -120px;
  animation: pulseGlow 7s ease-in-out infinite;
}
.hero-glow-2 {
  width: 460px; height: 460px;
  background: rgba(1,19,121,0.45);
  bottom: -160px; left: -120px;
  animation: pulseGlow 9s ease-in-out infinite reverse;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 820px;
  margin: 0 auto;
}

.hero-anim {
  opacity: 0;
  animation: fadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: calc(var(--anim-order) * 0.12s);
}

.hero-title {
  font-size: clamp(2.6rem, 6vw, 5rem);
  color: var(--white);
  margin-bottom: 28px;
  letter-spacing: -0.04em;
  line-height: 1.02;
  font-weight: 800;
}

.hero-title-line { display: block; }

.hero-title-line.accent {
  background: linear-gradient(135deg, #ffffff 0%, #b4c4ff 50%, #6b86ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  opacity: 1;
}

.hero-desc {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.65);
  margin: 0 auto 32px;
  line-height: 1.7;
  max-width: 600px;
  font-weight: 400;
}

.hero-badge-row { margin-bottom: 36px; }

.hero-savings {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px 8px 12px;
  background: rgba(79,107,255,0.12);
  border: 1px solid rgba(79,107,255,0.30);
  border-radius: 999px;
  color: #c5d0ff;
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.01em;
  font-family: var(--mono);
  backdrop-filter: blur(10px);
}

.hero-savings::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--electric-bright);
  box-shadow: 0 0 10px var(--electric-bright);
  animation: pulseGlow 2s ease-in-out infinite;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-accent-line {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  z-index: 2;
}

/* ============================================================
   TRUST SECTION — clean monochrome marquee
   ============================================================ */
/* ============================================================
   PRICING DISCLAIMER
   ============================================================ */
.pricing-disclaimer {
  text-align: center;
  font-size: 0.78rem;
  color: var(--gray-400);
  margin-top: 28px;
  font-style: italic;
  letter-spacing: 0.01em;
}

/* ============================================================
   POWERED-BY LOGO STRIP (under pricing)
   ============================================================ */
.powered-strip {
  text-align: center;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--gray-200);
}

.powered-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gray-400);
  font-weight: 600;
  margin-bottom: 24px;
}

.powered-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.powered-logo {
  height: 28px;
  width: auto;
  filter: grayscale(1) brightness(0.8);
  opacity: 0.5;
  transition: all 0.35s var(--transition);
}

.powered-logo:hover {
  filter: grayscale(0) brightness(1);
  opacity: 1;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .powered-strip { margin-top: 40px; padding-top: 32px; }
  .powered-logos { gap: 24px; }
  .powered-logo { height: 22px; }
}

@media (max-width: 480px) {
  .powered-logos { gap: 20px; }
  .powered-logo { height: 18px; }
}

.trust-section {
  background: var(--white);
  padding: 56px 0 64px;
  border-bottom: 1px solid var(--gray-100);
  overflow: hidden;
}

.trust-content { text-align: center; }

.trust-heading {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gray-400);
  font-weight: 600;
  margin-bottom: 28px;
}

.trust-heading strong { color: var(--gray-700); font-weight: 700; }

.trust-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.trust-logo-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gray-400);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: all var(--transition);
  filter: grayscale(1);
  opacity: 0.7;
}

.trust-logo-item:hover {
  color: var(--navy);
  filter: grayscale(0);
  opacity: 1;
  transform: translateY(-2px);
}

.trust-icon {
  font-size: 1rem;
  color: var(--electric);
}

.trust-subtext {
  font-size: 0.85rem;
  color: var(--gray-400);
  font-weight: 500;
}
.trust-subtext strong {
  color: var(--gray-800);
  font-family: var(--mono);
  font-weight: 700;
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 110px 0; position: relative; }

.section-light {
  background: var(--gray-50);
  position: relative;
}

.section-light::before {
  content: '';
  position: absolute; inset: 0;
  background-image: var(--grid-light);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, transparent, #000 20%, #000 80%, transparent);
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 20%, #000 80%, transparent);
  pointer-events: none;
  opacity: 0.7;
}

.section-light > .container { position: relative; z-index: 1; }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}

.section-header h2 {
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  margin-bottom: 16px;
  letter-spacing: -0.03em;
  font-weight: 800;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--gray-500);
  line-height: 1.7;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--electric);
  margin-bottom: 16px;
  padding: 6px 14px;
  background: var(--electric-soft);
  border: 1px solid rgba(79,107,255,0.2);
  border-radius: 999px;
  font-family: var(--mono);
}

/* ============================================================
   HOSTING TABS
   ============================================================ */
.hosting-tabs {
  display: inline-flex;
  justify-content: center;
  gap: 4px;
  margin: 0 auto 56px;
  padding: 6px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  flex-wrap: wrap;
  box-shadow: var(--shadow-xs);
}

.tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: transparent;
  border: none;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: inherit;
  color: var(--gray-500);
  cursor: pointer;
  transition: all var(--transition);
}

.tab-btn:hover { color: var(--navy); }

.tab-btn.active {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(1,19,121,0.25);
}

.tab-btn.active svg { stroke: var(--white); }

.tab-content { display: none; animation: fadeUp 0.5s ease; }
.tab-content.active { display: block; }

/* ============================================================
   PRICING CARDS
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: stretch;
}

.pricing-grid:has(> :nth-child(4)):not(:has(> :nth-child(5))) { grid-template-columns: repeat(4, 1fr); }
.pricing-grid:has(> :nth-child(3)):not(:has(> :nth-child(4))) { grid-template-columns: repeat(3, 1fr); max-width: 980px; margin: 0 auto; }
.pricing-grid:has(> :nth-child(2)):not(:has(> :nth-child(3))) { grid-template-columns: repeat(2, 1fr); max-width: 680px; margin: 0 auto; }

.pricing-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 26px 28px;
  border: 1px solid var(--gray-200);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-4px);
  border-color: rgba(79,107,255,0.3);
  box-shadow: var(--shadow-glow);
}

.pricing-card.featured {
  background: var(--ink);
  border-color: transparent;
  color: rgba(255,255,255,0.7);
  box-shadow: 0 30px 60px -20px rgba(1,19,121,0.5),
              inset 0 0 0 1px rgba(79,107,255,0.4);
}

.pricing-card.featured::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: var(--radius);
  background-image: var(--grid-dark);
  background-size: 22px 22px;
  mask-image: radial-gradient(ellipse at top, #000 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at top, #000 20%, transparent 70%);
  opacity: 0.6;
  pointer-events: none;
}

.pricing-card.featured > * { position: relative; }

.pricing-card.featured .plan-name,
.pricing-card.featured .plan-price .amount { color: var(--white); }
.pricing-card.featured .plan-features li { color: rgba(255,255,255,0.75); }
.pricing-card.featured .plan-features li .check { color: var(--electric-bright); }
.pricing-card.featured .plan-price { border-bottom-color: rgba(255,255,255,0.1); }
.pricing-card.featured .plan-price .currency,
.pricing-card.featured .plan-price .period { color: rgba(255,255,255,0.5); }

.pricing-card.featured .btn-orange {
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.pricing-card.featured .btn-orange:hover {
  background: var(--electric-soft);
  transform: translateY(-2px);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 14px;
  background: var(--electric);
  border-radius: 999px;
  color: white;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  box-shadow: 0 8px 20px rgba(79,107,255,0.4);
  font-family: var(--mono);
  white-space: nowrap;
  z-index: 2;
}

.card-header {
  text-align: left;
  margin-bottom: 18px;
}

.plan-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 14px;
  background: var(--electric-soft);
  border-radius: var(--radius-sm);
  color: var(--navy);
}

.plan-icon img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.pricing-card.featured .plan-icon {
  background: rgba(79,107,255,0.15);
  box-shadow: inset 0 0 0 1px rgba(79,107,255,0.3);
}

.pricing-card .plan-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gray-900);
  letter-spacing: -0.01em;
}

.pricing-card .plan-price {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  gap: 2px;
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--gray-200);
  font-family: var(--mono);
}

.pricing-card .plan-price .currency {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gray-400);
  align-self: flex-start;
  margin-top: 10px;
}

.pricing-card .plan-price .amount {
  font-size: 3rem;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1;
  letter-spacing: -0.04em;
}

.pricing-card .plan-price .period {
  font-size: 0.9rem;
  color: var(--gray-400);
  font-weight: 500;
}

.pricing-card .plan-price .period small { font-size: 0.75rem; }

.pricing-card .plan-features {
  margin-bottom: 24px;
  flex: 1;
}

.pricing-card .plan-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 7px 0;
  font-size: 0.88rem;
  color: var(--gray-600);
}

.pricing-card .plan-features li .check {
  color: var(--electric);
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--electric-soft);
  border-radius: 50%;
}

.pricing-card .plan-features li svg,
.guarantee-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--electric);
}

.plan-desc {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-bottom: 18px;
}

/* ============================================================
   MIGRATE / DARK BANNER SECTION
   ============================================================ */
.migrate-section {
  position: relative;
  background: var(--ink);
  padding: 110px 0;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}

.migrate-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: var(--grid-dark);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000, transparent 80%);
}

.migrate-section::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 50%, rgba(79,107,255,0.25), transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(1,19,121,0.5), transparent 60%);
  filter: blur(20px);
  z-index: -1;
}

.migrate-stripes { display: none; }

.migrate-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
}

.migrate-content h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--white);
  margin-bottom: 18px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.migrate-content h2 .text-white {
  background: linear-gradient(135deg, #6b86ff, #b4c4ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.migrate-content p {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.65);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

/* ============================================================
   FEATURE ICON ROW
   ============================================================ */
.features-icon-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feature-icon-card {
  text-align: left;
  padding: 32px 28px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.feature-icon-card:hover {
  transform: translateY(-4px);
  border-color: rgba(79,107,255,0.3);
  box-shadow: var(--shadow-glow);
}

.fi-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 18px;
  background: var(--electric-soft);
  border: 1px solid rgba(79,107,255,0.2);
  border-radius: var(--radius-sm);
  color: var(--navy);
  transition: all var(--transition);
}

.feature-icon-card:hover .fi-icon {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  transform: scale(1.05);
}

.feature-icon-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--gray-900);
  letter-spacing: -0.01em;
}

.feature-icon-card p {
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.65;
}

/* ============================================================
   FEATURE DETAILS (alternating)
   ============================================================ */
.feature-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 60px 0;
}

.feature-detail.reverse { direction: rtl; }
.feature-detail.reverse > * { direction: ltr; }

.fd-text h2 {
  font-size: clamp(1.7rem, 2.6vw, 2.2rem);
  margin-bottom: 18px;
  letter-spacing: -0.03em;
  font-weight: 800;
}

.fd-text p {
  color: var(--gray-500);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 20px;
}

.learn-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 10px 18px;
  background: var(--electric-soft);
  border: 1px solid rgba(79,107,255,0.2);
  border-radius: 999px;
  transition: all var(--transition);
}

.learn-link:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  transform: translateY(-2px);
}

.fd-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.fd-img {
  width: 100%;
  max-width: 420px;
  height: auto;
  border-radius: var(--radius);
  display: block;
  margin: 0 auto;
}

.fd-graphic {
  width: 100%;
  max-width: 420px;
  padding: 36px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow);
}

.setup-graphic { display: flex; flex-direction: column; gap: 14px; }

.setup-step {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--gray-50);
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-200);
  font-weight: 600;
  color: var(--gray-700);
  transition: all var(--transition);
  font-size: 0.92rem;
}

.setup-step:hover {
  border-color: var(--electric);
  background: var(--white);
  transform: translateX(4px);
}

.step-num {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: var(--white);
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
  font-family: var(--mono);
}

.speed-graphic { display: flex; flex-direction: column; gap: 18px; }
.speed-bar { position: relative; }

.speed-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 8px;
  font-family: var(--mono);
}

.speed-fill {
  height: 14px;
  border-radius: 7px;
  width: 0;
  transition: width 1.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.speed-fill.fast {
  background: linear-gradient(90deg, var(--navy), var(--electric));
  box-shadow: 0 0 20px rgba(79,107,255,0.4);
}

.speed-fill.slow { background: var(--gray-200); }
.speed-fill.animated { width: var(--w); }

.uptime-graphic { display: flex; align-items: center; justify-content: center; }
.uptime-circle { position: relative; width: 180px; height: 180px; }
.uptime-circle svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.uptime-ring { transition: stroke-dashoffset 2s cubic-bezier(0.22, 1, 0.36, 1); }

.uptime-text {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--navy);
  font-family: var(--mono);
  letter-spacing: -0.03em;
}

.security-graphic { text-align: center; }
.shield-icon { margin-bottom: 22px; animation: float 3s ease-in-out infinite; }

.security-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.security-tags span {
  padding: 8px 16px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--gray-600);
  font-family: var(--mono);
  transition: all var(--transition);
}

.security-tags span:hover {
  border-color: var(--electric);
  color: var(--navy);
  background: var(--electric-soft);
}

.support-graphic { text-align: center; }

.support-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-200);
  margin-bottom: 16px;
  box-shadow: var(--shadow-xs);
}

.support-avatar {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--electric-soft);
  border-radius: 50%;
  flex-shrink: 0;
}

.support-badge strong {
  display: block;
  font-size: 1.25rem;
  color: var(--navy);
  font-family: var(--mono);
}
.support-badge span { font-size: 0.85rem; color: var(--gray-500); }

.support-channels {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}

.support-channels span {
  padding: 8px 16px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: all var(--transition);
}

.support-channels span:hover {
  border-color: var(--electric);
  color: var(--navy);
}

/* ============================================================
   LOCATIONS SECTION
   ============================================================ */
.locations-section {
  position: relative;
  background: var(--white);
  padding: 110px 0;
  text-align: center;
  overflow: hidden;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}

.locations-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: var(--grid-light);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 60% 80% at 50% 50%, #000, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 60% 80% at 50% 50%, #000, transparent 80%);
}

.locations-stripes { display: none; }

.locations-section .container {
  position: relative;
  z-index: 2;
}

.locations-section h2 {
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  color: var(--gray-900);
  margin-bottom: 44px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.locations-map {
  max-width: 800px;
  margin: 0 auto 40px;
}

.map-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
}

.map-wrapper img,
.locations-map img {
  width: 100%;
  height: auto;
  display: block;
}

.map-pulse {
  position: absolute;
  width: 12px;
  height: 12px;
  transform: translate(-50%, -50%);
}

.map-pulse::before,
.map-pulse::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

.map-pulse::before {
  width: 8px; height: 8px;
  background: var(--electric);
  box-shadow: 0 0 8px var(--electric);
  z-index: 2;
}

.map-pulse::after {
  width: 24px; height: 24px;
  border: 2px solid var(--electric);
  animation: mapPing 2s ease-out infinite;
}

@keyframes mapPing {
  0% { transform: translate(-50%, -50%) scale(0.5); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(2); opacity: 0; }
}

.location-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.loc-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  color: var(--gray-600);
  font-size: 0.85rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all var(--transition);
}

.loc-btn:hover {
  border-color: var(--electric);
  color: var(--navy);
  transform: translateY(-2px);
}

.loc-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(1,19,121,0.25);
}

.loc-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--electric);
  box-shadow: 0 0 8px var(--electric);
}

.loc-btn.active .loc-dot { background: var(--white); box-shadow: 0 0 8px var(--white); }

/* ============================================================
   DOMAIN SEARCH
   ============================================================ */
.domain-search-box {
  max-width: 720px;
  margin: 0 auto 56px;
  display: flex;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: all var(--transition);
  padding: 6px;
  box-shadow: var(--shadow);
}

.domain-search-box:focus-within {
  border-color: var(--electric);
  box-shadow: 0 0 0 4px rgba(79,107,255,0.12), 0 12px 32px rgba(79,107,255,0.10);
}

.domain-search-box input {
  flex: 1;
  padding: 16px 20px;
  border: none;
  font-size: 1rem;
  outline: none;
  font-family: inherit;
  color: var(--gray-800);
  background: transparent;
}

.domain-search-box input::placeholder { color: var(--gray-400); }

.domain-search-box .btn {
  border-radius: var(--radius-sm);
  padding: 14px 32px;
}

.domain-tlds {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.domain-tld {
  text-align: center;
  padding: 22px 28px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 116px;
  cursor: pointer;
}

.domain-tld:hover {
  transform: translateY(-4px);
  border-color: rgba(79,107,255,0.3);
  box-shadow: var(--shadow-glow);
}

.domain-tld .tld {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 6px;
  font-family: var(--mono);
  letter-spacing: -0.02em;
}

.domain-tld .tld-price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--electric);
  font-family: var(--mono);
}

.domain-tld .tld-period {
  font-size: 0.72rem;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 2px;
}

/* ============================================================
   DOMAIN AVAILABILITY RESULTS
   ============================================================ */
.domain-results {
  max-width: 720px;
  margin: 0 auto 40px;
}

.domain-results-loading {
  text-align: center;
  padding: 48px 20px;
}

.domain-results-loading p {
  font-size: 0.92rem;
  color: var(--gray-500);
  margin-top: 16px;
  font-weight: 500;
}

.domain-spinner {
  width: 36px;
  height: 36px;
  border: 3px solid var(--gray-200);
  border-top-color: var(--electric);
  border-radius: 50%;
  margin: 0 auto;
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.domain-results-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.domain-result-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 22px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition);
}

.domain-result-row.domain-available {
  border-color: rgba(16,185,129,0.35);
}

.domain-result-row.domain-available:hover {
  border-color: var(--green);
  box-shadow: 0 8px 24px rgba(16,185,129,0.12);
}

.domain-result-row.domain-taken {
  opacity: 0.6;
}

.domain-result-name {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
}

.domain-result-name strong {
  color: var(--gray-900);
  font-family: var(--mono);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.domain-result-status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.domain-available .domain-result-status-dot {
  background: var(--green);
  box-shadow: 0 0 8px rgba(16,185,129,0.5);
}

.domain-taken .domain-result-status-dot {
  background: var(--gray-300);
}

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

.domain-result-price {
  font-family: var(--mono);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.domain-result-price small {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gray-400);
}

.domain-result-taken-text {
  font-size: 0.85rem;
  color: var(--gray-400);
  font-weight: 500;
  font-family: var(--mono);
}

.domain-error {
  justify-content: center;
  color: var(--gray-500);
  font-size: 0.92rem;
}

@media (max-width: 640px) {
  .domain-result-row { flex-direction: column; gap: 12px; align-items: flex-start; }
  .domain-result-meta { width: 100%; justify-content: space-between; }
}

/* ============================================================
   CLOUD SECTION (dark)
   ============================================================ */
.cloud-section {
  position: relative;
  background: var(--ink);
  padding: 110px 0;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}

.cloud-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: var(--grid-dark);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000, transparent 80%);
}

.cloud-section::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 30% 50%, rgba(79,107,255,0.3), transparent 60%),
    radial-gradient(ellipse 50% 60% at 70% 50%, rgba(1,19,121,0.4), transparent 60%);
  filter: blur(20px);
  z-index: -1;
}

.cloud-stripes { display: none; }

.cloud-section .container { position: relative; z-index: 2; }
.cloud-section .section-header { margin-bottom: 40px; }
.cloud-section .section-header h2 {
  color: var(--white);
  font-size: clamp(2rem, 3.4vw, 2.8rem);
}
.cloud-section .section-header p { color: rgba(255,255,255,0.65); }

/* ============================================================
   REVIEWS
   ============================================================ */
.review-stars-big {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 12px;
}

.stars-display { display: flex; gap: 3px; }

.star-filled {
  color: #fbbf24;
  font-size: 1.4rem;
}

.review-score {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gray-900);
  font-family: var(--mono);
  letter-spacing: -0.02em;
}

.reviews-track-wrapper { overflow: hidden; margin: 0 -12px; }

.reviews-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  padding: 8px 12px;
}

.review-card {
  flex: 0 0 calc(33.333% - 14px);
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--gray-200);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-card:hover {
  transform: translateY(-4px);
  border-color: rgba(79,107,255,0.3);
  box-shadow: var(--shadow-glow);
}

.review-stars {
  color: #fbbf24;
  font-size: 0.95rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.review-card p {
  font-size: 0.95rem;
  color: var(--gray-700);
  line-height: 1.65;
  margin-bottom: 22px;
  font-style: normal;
  font-weight: 500;
}

.reviewer { display: flex; align-items: center; gap: 8px; }
.reviewer strong { color: var(--gray-900); font-size: 0.9rem; font-weight: 700; }
.reviewer span { color: var(--gray-400); font-size: 0.8rem; }

.review-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 36px;
}

.review-nav-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gray-200);
  border-radius: 50%;
  background: var(--white);
  color: var(--gray-600);
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition);
  font-family: inherit;
}

.review-nav-btn:hover {
  border-color: var(--navy);
  color: var(--white);
  background: var(--navy);
  transform: translateY(-2px);
}

/* ============================================================
   MISSION SECTION
   ============================================================ */
.mission-section {
  padding: 110px 0;
  text-align: center;
  background: var(--white);
}

.mission-content { max-width: 680px; margin: 0 auto; }

.mission-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}

.mission-logo-img {
  height: 56px;
  width: auto;
}

.mission-content h2 {
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  margin-bottom: 18px;
  letter-spacing: -0.03em;
  font-weight: 800;
}

.mission-content p {
  color: var(--gray-500);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 36px;
}

/* ============================================================
   SUPPORT SECTION
   ============================================================ */
.support-section-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: center;
}

.support-info h2 {
  font-size: clamp(1.7rem, 2.6vw, 2.2rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.support-info h2 .text-orange {
  color: var(--electric);
}

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

.support-method {
  padding: 26px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.support-method:hover {
  transform: translateY(-4px);
  border-color: rgba(79,107,255,0.3);
  box-shadow: var(--shadow-glow);
}

.sm-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--electric-soft);
  border: 1px solid rgba(79,107,255,0.2);
  border-radius: var(--radius-sm);
  color: var(--navy);
  margin-bottom: 16px;
  transition: all var(--transition);
}

.support-method:hover .sm-icon {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.support-method h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
  color: var(--gray-900);
}

.support-method p {
  font-size: 0.85rem;
  color: var(--gray-500);
  font-family: var(--mono);
}

.support-method-link {
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  position: relative;
  background: var(--ink);
  color: rgba(255,255,255,0.6);
  padding: 90px 0 32px;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer::before {
  content: '';
  position: absolute; inset: 0;
  background-image: var(--grid-dark);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000, transparent 70%);
}

.footer-stripes { display: none; }
.footer .container { position: relative; z-index: 2; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 64px;
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 18px;
}

.footer-logo-img { height: 32px; width: auto; }

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 22px;
  max-width: 320px;
}

.footer-social { display: flex; gap: 8px; }

.footer-social a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.55);
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--electric);
  border-color: var(--electric);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(79,107,255,0.4);
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.72rem;
  margin-bottom: 22px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
  font-family: var(--mono);
}

.footer-col a {
  display: block;
  padding: 7px 0;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  transition: all var(--transition);
}

.footer-col a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  font-family: var(--mono);
}

.footer-bottom-links { display: flex; gap: 22px; }
.footer-bottom-links a { color: rgba(255,255,255,0.4); }
.footer-bottom-links a:hover { color: var(--white); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-item.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Image reveal — cinematic "assemble" effect */
.img-reveal {
  opacity: 0;
  transform: translateY(32px) scale(0.92) perspective(900px) rotateX(8deg);
  transform-origin: center center;
  filter: blur(10px) saturate(0.6);
  clip-path: inset(18% 30% 18% 30% round 10px);
  -webkit-clip-path: inset(18% 30% 18% 30% round 10px);
  transition:
    opacity 1.0s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1.15s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.2s,
    clip-path 1.25s cubic-bezier(0.22, 1, 0.36, 1),
    -webkit-clip-path 1.25s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform, filter, clip-path;
}

.img-reveal.revealed {
  opacity: 1;
  transform: translateY(0) scale(1) perspective(900px) rotateX(0deg);
  filter: blur(0) saturate(1);
  clip-path: inset(0 0 0 0 round 14px);
  -webkit-clip-path: inset(0 0 0 0 round 14px);
}

@media (prefers-reduced-motion: reduce) {
  .img-reveal,
  .reveal-item {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
}

/* ============================================================
   PAGE BANNER (interior pages)
   ============================================================ */
.page-banner {
  background: var(--ink);
  padding: 180px 0 90px;
  text-align: center;
  margin-top: -80px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.page-banner::before {
  content: '';
  position: absolute; inset: 0;
  background-image: var(--grid-dark);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 30%, transparent 80%);
}

.page-banner::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 50% at 30% 30%, rgba(79,107,255,0.3), transparent 60%),
    radial-gradient(ellipse 50% 50% at 70% 70%, rgba(1,19,121,0.5), transparent 60%);
  filter: blur(20px);
  z-index: -1;
}

.page-banner-accent {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
}

.page-banner .container { position: relative; z-index: 2; }

.page-banner h1 {
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  color: var(--white);
  margin-bottom: 18px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.page-banner h1 .text-blue {
  background: linear-gradient(135deg, #6b86ff, #b4c4ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.page-banner p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.breadcrumb {
  display: inline-flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 22px;
  font-size: 0.78rem;
  padding: 6px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  font-family: var(--mono);
}

.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,0.35); }

/* ============================================================
   SHARED PAGE STYLES
   ============================================================ */
.guarantee-bar {
  display: flex;
  justify-content: center;
  gap: 36px;
  padding: 36px 0;
  flex-wrap: wrap;
}

.guarantee-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gray-600);
}

.guarantee-item svg {
  width: 18px;
  height: 18px;
  color: var(--electric);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-text h2 {
  font-size: clamp(1.9rem, 3vw, 2.4rem);
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

.about-text p {
  color: var(--gray-500);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 16px;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.value-card {
  padding: 26px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}

.value-card:hover {
  border-color: rgba(79,107,255,0.3);
  box-shadow: var(--shadow-glow);
  transform: translateY(-3px);
}

.value-card h4 { margin-bottom: 6px; font-size: 1rem; }
.value-card p { color: var(--gray-500); font-size: 0.9rem; line-height: 1.65; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
}

.contact-info-card {
  display: flex;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--gray-200);
}

.contact-info-card:last-child { border-bottom: none; }

.contact-info-card .info-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--electric-soft);
  border: 1px solid rgba(79,107,255,0.2);
  color: var(--navy);
}

.contact-info-card h4 { font-size: 0.95rem; margin-bottom: 4px; color: var(--gray-900); }
.contact-info-card p { color: var(--gray-500); font-size: 0.92rem; }
.contact-info-card a { color: var(--electric); font-weight: 600; font-family: var(--mono); }
.contact-info-card a:hover { color: var(--navy); }

.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow);
}

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--gray-700);
  letter-spacing: -0.01em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: inherit;
  transition: all var(--transition);
  outline: none;
  color: var(--gray-900);
  background: var(--white);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-400); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--electric);
  box-shadow: 0 0 0 4px rgba(79,107,255,0.12);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='%234f6bff' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* ============================================================
   GENERIC FEATURE / SERVICE / TECH GRIDS
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  padding: 32px 28px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(79,107,255,0.3);
  box-shadow: var(--shadow-glow);
}

.feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  margin-bottom: 18px;
  border: 1px solid rgba(79,107,255,0.2);
}

.feature-icon.blue,
.feature-icon.texas { background: var(--electric-soft); color: var(--navy); }
.feature-icon.green { background: rgba(16,185,129,0.08); color: var(--green); border-color: rgba(16,185,129,0.2); }

.feature-card h3 { font-size: 1.05rem; margin-bottom: 10px; color: var(--gray-900); }
.feature-card p { color: var(--gray-500); font-size: 0.92rem; line-height: 1.65; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.service-card {
  display: flex;
  gap: 22px;
  padding: 32px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(79,107,255,0.3);
  box-shadow: var(--shadow-glow);
}

.service-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(1,19,121,0.25);
}

.service-card h3 { font-size: 1.1rem; margin-bottom: 8px; color: var(--gray-900); }
.service-card p { color: var(--gray-500); font-size: 0.92rem; line-height: 1.65; }

.service-card .learn-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  color: var(--electric);
  font-weight: 600;
  font-size: 0.88rem;
  transition: gap var(--transition);
}

.service-card .learn-more:hover { gap: 10px; color: var(--navy); }

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

.tech-card {
  text-align: left;
  padding: 32px 26px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  transition: all var(--transition);
  backdrop-filter: blur(10px);
}

.tech-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.06);
  border-color: rgba(79,107,255,0.4);
}

.tech-card .tech-value {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  font-family: var(--mono);
  letter-spacing: -0.04em;
}

.tech-card .tech-value .num-blue {
  background: linear-gradient(135deg, #6b86ff, #b4c4ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tech-card h4 { font-size: 0.95rem; margin-bottom: 8px; color: var(--white); }
.tech-card p { font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.6; }

/* ============================================================
   CTA
   ============================================================ */
.cta {
  padding: 110px 0;
  text-align: center;
  background: var(--ink);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.cta::before {
  content: '';
  position: absolute; inset: 0;
  background-image: var(--grid-dark);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000, transparent 80%);
}

.cta::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 30% 50%, rgba(79,107,255,0.3), transparent 60%),
    radial-gradient(ellipse 50% 60% at 70% 50%, rgba(1,19,121,0.5), transparent 60%);
  filter: blur(20px);
  z-index: -1;
}

.cta .container { position: relative; z-index: 2; }

.cta h2 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 18px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.cta p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  margin: 0 auto 36px;
  max-width: 580px;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ============================================================
   SECTION VARIANTS
   ============================================================ */
.section-gray { background: var(--gray-50); }

.section-dark,
.section-blue {
  background: var(--ink);
  color: var(--white);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.section-dark::before,
.section-blue::before {
  content: '';
  position: absolute; inset: 0;
  background-image: var(--grid-dark);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000, transparent 80%);
}

.section-dark::after,
.section-blue::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 30% 50%, rgba(79,107,255,0.25), transparent 60%),
    radial-gradient(ellipse 50% 60% at 70% 50%, rgba(1,19,121,0.4), transparent 60%);
  filter: blur(20px);
  z-index: -1;
}

.section-dark > .container,
.section-blue > .container {
  position: relative;
  z-index: 2;
}

.section-dark .section-header p,
.section-blue .section-header p { color: rgba(255,255,255,0.65); }

.section-dark .section-header h2,
.section-blue .section-header h2 { color: var(--white); }

.section-dark .section-label,
.section-blue .section-label {
  background: rgba(79,107,255,0.12);
  border-color: rgba(79,107,255,0.3);
  color: var(--electric-bright);
}

/* Star icon */
.star-icon {
  display: inline-block;
  width: 18px;
  height: 18px;
  background: var(--electric);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.star-icon.sm { width: 14px; height: 14px; }
.star-icon.blue { background: var(--electric); }

/* ============================================================
   MODAL
   ============================================================ */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(11,16,32,0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal-overlay.active { display: flex; }

.modal {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  width: 100%;
  max-width: 620px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 32px 80px rgba(0,0,0,0.3);
  animation: fadeUp 0.3s ease;
  border: 1px solid var(--gray-200);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gray-200);
  background: var(--white);
  border-radius: 50%;
  font-size: 1.2rem;
  color: var(--gray-500);
  cursor: pointer;
  transition: all var(--transition);
  font-family: inherit;
}

.modal-close:hover {
  background: var(--gray-100);
  color: var(--gray-900);
}

.modal h2 {
  font-size: 1.5rem;
  margin-bottom: 8px;
  padding-right: 40px;
  letter-spacing: -0.02em;
}

.modal > p {
  font-size: 0.92rem;
  color: var(--gray-500);
  margin-bottom: 28px;
  line-height: 1.65;
}

@media (max-width: 640px) {
  .modal { padding: 28px 20px; }
  .modal .form-row { grid-template-columns: 1fr; }
  .modal-actions { flex-direction: column-reverse; align-items: stretch; }
  .modal-actions .btn { width: 100%; }
}

/* ============================================================
   "SEE MORE FEATURES" LINK + COMPARISON TABLE
   ============================================================ */
.see-more-link {
  display: block;
  width: 100%;
  margin-top: 12px;
  padding: 8px 0 0;
  background: none;
  border: none;
  color: var(--gray-500);
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: color var(--transition);
  letter-spacing: -0.01em;
}

.see-more-link span {
  display: inline-block;
  margin-left: 2px;
  transition: transform var(--transition);
}

.see-more-link:hover {
  color: var(--electric);
}

.see-more-link:hover span {
  transform: translateX(3px);
}

.pricing-card.featured .see-more-link {
  color: rgba(255,255,255,0.55);
}

.pricing-card.featured .see-more-link:hover {
  color: var(--electric-bright);
}

.compare-section {
  padding: 110px 0;
  background: var(--gray-50);
  position: relative;
  overflow: hidden;
}

.compare-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: var(--grid-light);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, transparent, #000 20%, #000 80%, transparent);
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 20%, #000 80%, transparent);
  pointer-events: none;
  opacity: 0.7;
}

.compare-section > .container {
  position: relative;
  z-index: 1;
}

.compare-section.is-open {
  animation: fadeUp 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.compare-table-wrap {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow-x: auto;
  box-shadow: var(--shadow);
}

.compare-table {
  width: 100%;
  min-width: 880px;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.compare-table th,
.compare-table td {
  padding: 16px 22px;
  text-align: center;
  border-bottom: 1px solid var(--gray-100);
  color: var(--gray-700);
}

.compare-table thead th {
  padding: 24px 22px;
  background: var(--white);
  color: var(--gray-900);
  font-size: 0.95rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: -0.01em;
  border-bottom: 1px solid var(--gray-200);
}

.compare-table tbody tr:hover {
  background: var(--gray-50);
}

.compare-table tbody tr:hover .ct-featured {
  background: rgba(79,107,255,0.10);
}

.compare-table .ct-feature {
  text-align: left;
  font-weight: 600;
  color: var(--gray-900);
  background: var(--gray-50);
  border-right: 1px solid var(--gray-200);
  white-space: nowrap;
}

.compare-table .ct-featured {
  background: var(--electric-soft);
  color: var(--navy);
  font-weight: 600;
  border-left: 1px solid rgba(79,107,255,0.2);
  border-right: 1px solid rgba(79,107,255,0.2);
}

.compare-table thead th.ct-featured {
  background: var(--navy);
  color: var(--white);
  position: relative;
}

.compare-table thead th.ct-featured::before {
  content: 'POPULAR';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.6rem;
  font-family: var(--mono);
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--electric-bright);
}

.ct-yes {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: var(--electric-soft);
  color: var(--electric);
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.78rem;
}

.ct-x {
  color: var(--gray-300);
  font-size: 1.1rem;
  font-weight: 400;
}

.compare-table .ct-featured .ct-yes {
  background: var(--electric);
  color: var(--white);
}

.compare-table tfoot td {
  padding: 28px 22px 32px;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  border-bottom: none;
  vertical-align: middle;
}

.compare-table tfoot .ct-featured {
  background: var(--electric-soft);
}

.ct-price {
  font-family: var(--mono);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 14px;
  letter-spacing: -0.04em;
  line-height: 1;
}

.ct-price .ct-currency {
  font-size: 1.1rem;
  vertical-align: top;
  margin-right: 1px;
  color: var(--gray-400);
}

.ct-price .ct-cents {
  font-size: 1.1rem;
  color: var(--gray-500);
}

.ct-price .ct-period {
  font-size: 0.78rem;
  color: var(--gray-400);
  margin-left: 4px;
  font-weight: 500;
}

.compare-table tfoot .ct-featured .ct-price {
  color: var(--navy);
}

.compare-table tfoot .btn {
  padding: 11px 18px;
  font-size: 0.85rem;
}

@media (max-width: 768px) {
  .compare-section { padding: 70px 0; }
  .compare-table th,
  .compare-table td { padding: 12px 14px; font-size: 0.82rem; }
  .compare-table .ct-feature { font-size: 0.78rem; }
}

/* ============================================================
   LAGOM-STYLE FORM SECTIONS (modal forms)
   ============================================================ */
.modal.modal-lagom {
  max-width: 720px;
  padding: 36px 36px 32px;
}

.form-section-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gray-900);
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}

.form-section-title:not(:first-of-type) { margin-top: 24px; }

.form-section {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 22px 22px 6px;
  margin-bottom: 8px;
}

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

.form-section .form-row.cols-3 {
  grid-template-columns: 1fr 1fr 1fr;
}

.form-section .form-group {
  margin-bottom: 18px;
}

.form-section .form-group label {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--gray-500);
  margin-bottom: 6px;
}

.form-section .form-group input,
.form-section .form-group select,
.form-section .form-group textarea {
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: 11px 14px;
  font-size: 0.92rem;
  border-radius: var(--radius-xs);
}

.form-section .form-group input:focus,
.form-section .form-group select:focus,
.form-section .form-group textarea:focus {
  border-color: var(--electric);
  box-shadow: 0 0 0 3px rgba(79,107,255,0.12);
}

.modal-actions {
  display: flex;
  gap: 10px;
  margin-top: 24px;
  align-items: center;
}

.modal-actions .btn {
  padding: 11px 26px;
  font-size: 0.9rem;
}

@media (max-width: 640px) {
  .form-section .form-row,
  .form-section .form-row.cols-3 { grid-template-columns: 1fr; }
  .modal.modal-lagom { padding: 28px 22px; }
}

/* ============================================================
   SUBMIT TICKET PAGE
   ============================================================ */
.ticket-form-wrap {
  max-width: 860px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 44px 44px 36px;
  box-shadow: var(--shadow);
  position: relative;
}

.editor-toolbar {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 8px 10px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-bottom: none;
  border-radius: var(--radius-xs) var(--radius-xs) 0 0;
}

.editor-toolbar button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 30px;
  background: transparent;
  border: none;
  border-radius: var(--radius-xs);
  color: var(--gray-500);
  font-family: inherit;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all var(--transition);
}

.editor-toolbar button:hover {
  background: var(--gray-100);
  color: var(--navy);
}

.form-section .form-group .editor-toolbar + textarea {
  border-radius: 0 0 var(--radius-xs) var(--radius-xs);
  border-top: none;
  min-height: 200px;
  font-family: inherit;
}

.editor-meta {
  margin-top: 8px;
  font-size: 0.78rem;
  color: var(--gray-400);
  font-family: var(--mono);
}

.editor-meta strong {
  color: var(--electric);
  font-weight: 700;
}

.meta-saved {
  color: var(--green);
  font-weight: 500;
}

.file-upload-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.file-upload {
  flex: 1;
  display: flex;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xs);
  overflow: hidden;
  cursor: pointer;
  transition: border-color var(--transition);
}

.file-upload:hover {
  border-color: var(--electric);
}

.file-upload-btn {
  display: inline-flex;
  align-items: center;
  padding: 11px 18px;
  background: var(--gray-50);
  border-right: 1px solid var(--gray-200);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-700);
  white-space: nowrap;
}

.file-upload-name {
  flex: 1;
  padding: 11px 16px;
  font-size: 0.88rem;
  color: var(--gray-500);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.add-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 11px 22px;
  background: var(--electric-soft);
  border: 1px solid rgba(79,107,255,0.25);
  border-radius: var(--radius-xs);
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.add-more-btn:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.add-more-btn span {
  font-size: 1.1rem;
  line-height: 1;
  font-weight: 700;
}

.file-hint {
  margin-top: 10px;
  font-size: 0.78rem;
  color: var(--gray-400);
}

/* Center the actions on the ticket page */
.ticket-form .modal-actions {
  justify-content: center;
  margin-top: 32px;
}

.ticket-form .modal-actions .btn {
  padding: 13px 36px;
  font-size: 0.95rem;
}

/* Support cards row beneath the form */
.ticket-support-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 56px;
  align-items: center;
}

.ticket-support-info h2 {
  font-size: clamp(1.6rem, 2.4vw, 2rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}

.ticket-support-info p {
  color: var(--gray-500);
  font-size: 0.95rem;
  line-height: 1.7;
}

.ticket-support-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.ticket-support-card {
  text-align: center;
  padding: 32px 22px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ticket-support-card:hover {
  transform: translateY(-4px);
  border-color: rgba(79,107,255,0.3);
  box-shadow: var(--shadow-glow);
}

.tsc-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  background: var(--electric-soft);
  border: 1px solid rgba(79,107,255,0.2);
  border-radius: var(--radius-sm);
  color: var(--navy);
  transition: all var(--transition);
}

.ticket-support-card:hover .tsc-icon {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.ticket-support-card h3 {
  font-size: 1rem;
  margin-bottom: 6px;
  color: var(--gray-900);
}

.ticket-support-card p {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 18px;
  flex: 1;
}

.ticket-support-card .btn {
  width: 100%;
  font-family: var(--mono);
}

@media (max-width: 1024px) {
  .ticket-form-wrap { padding: 36px 32px 28px; }
  .ticket-support-grid { grid-template-columns: 1fr; gap: 36px; text-align: center; }
}

/* ============================================================
   GLOBAL DATA CENTERS (about page)
   ============================================================ */
.dc-block {
  margin-bottom: 48px;
}

.dc-block:last-child { margin-bottom: 0; }

.dc-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--gray-200);
}

.dc-flag {
  font-size: 1.8rem;
  line-height: 1;
  filter: drop-shadow(0 4px 10px rgba(11,16,32,0.15));
}

.dc-header h3 {
  font-size: 1.5rem;
  margin: 0;
  letter-spacing: -0.02em;
  color: var(--gray-900);
  font-weight: 800;
}

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

.dc-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 22px 22px 24px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.dc-card:hover {
  transform: translateY(-3px);
  border-color: rgba(79,107,255,0.3);
  box-shadow: var(--shadow-glow);
}

.dc-cat {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 5px 10px;
  border-radius: 999px;
  margin: 0 0 14px;
  font-family: var(--mono);
  border: 1px solid transparent;
}

.dc-cat-network {
  background: var(--electric-soft);
  color: var(--navy);
  border-color: rgba(79,107,255,0.25);
}

.dc-cat-power {
  background: rgba(251,191,36,0.12);
  color: #b37d04;
  border-color: rgba(251,191,36,0.35);
}

.dc-cat-security {
  background: rgba(16,185,129,0.1);
  color: #0a7a56;
  border-color: rgba(16,185,129,0.3);
}

.dc-cat-cert {
  background: rgba(148,163,184,0.15);
  color: var(--gray-700);
  border-color: rgba(148,163,184,0.35);
}

.dc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dc-list li {
  position: relative;
  padding-left: 16px;
  font-size: 0.83rem;
  color: var(--gray-600);
  line-height: 1.55;
}

.dc-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--electric);
  opacity: 0.6;
}

.dc-link {
  color: var(--electric);
  font-weight: 600;
  font-size: 0.85rem;
  transition: color var(--transition);
}

.dc-link:hover { color: var(--navy); }

.dc-certs {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.dc-certs li {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 5px 10px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  color: var(--gray-700);
  letter-spacing: -0.01em;
}

@media (max-width: 1024px) {
  .dc-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .dc-grid { grid-template-columns: 1fr; gap: 12px; }
  .dc-header h3 { font-size: 1.25rem; }
  .dc-flag { font-size: 1.5rem; }
  .dc-block { margin-bottom: 36px; }
}

/* ============================================================
   AFFILIATE PROGRAM PAGE
   ============================================================ */
.banner-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 30px;
  flex-wrap: wrap;
}

/* Highlight cards */
.aff-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.aff-highlight-card {
  text-align: center;
  padding: 40px 30px 32px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.aff-highlight-card:hover {
  transform: translateY(-4px);
  border-color: rgba(79,107,255,0.3);
  box-shadow: var(--shadow-glow);
}

.aff-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  background: var(--electric-soft);
  border: 1px solid rgba(79,107,255,0.2);
  border-radius: var(--radius);
  color: var(--navy);
  transition: all var(--transition);
}

.aff-highlight-card:hover .aff-icon {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  transform: scale(1.05);
}

.aff-highlight-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--gray-900);
  letter-spacing: -0.02em;
}

.aff-highlight-card p {
  font-size: 0.92rem;
  color: var(--gray-500);
  line-height: 1.65;
  margin-bottom: 22px;
  flex: 1;
}

.aff-highlight-card .btn { font-family: var(--mono); }

/* Big highlighted price in headline */
.aff-bigprice {
  display: inline-block;
  padding: 4px 16px;
  background: var(--electric);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-family: var(--mono);
  letter-spacing: -0.03em;
  box-shadow: 0 8px 24px rgba(79,107,255,0.35);
}

/* Commission table */
.aff-table-wrap {
  max-width: 720px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.aff-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.98rem;
}

.aff-table thead th {
  padding: 22px 32px;
  background: var(--white);
  color: var(--gray-500);
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  border-bottom: 1px solid var(--gray-200);
  text-align: left;
}

.aff-table thead th:last-child { text-align: right; }

.aff-table tbody td {
  padding: 22px 32px;
  border-bottom: 1px solid var(--gray-100);
  color: var(--gray-700);
  font-weight: 600;
  font-family: var(--mono);
}

.aff-table tbody td:last-child { text-align: right; }

.aff-table tbody tr:last-child td { border-bottom: none; }
.aff-table tbody tr:hover { background: var(--gray-50); }
.aff-table tbody tr:hover td:first-child { color: var(--navy); }

.aff-amount {
  color: var(--electric);
  font-size: 1.3rem;
  font-weight: 700;
  font-family: var(--mono);
}

.aff-per {
  color: var(--gray-400);
  font-size: 0.85rem;
  font-weight: 500;
}

/* Dark feature row */
.aff-features-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 16px;
}

.aff-feature {
  text-align: left;
}

.aff-feature-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  background: rgba(79,107,255,0.12);
  border: 1px solid rgba(79,107,255,0.25);
  border-radius: var(--radius-sm);
  color: var(--electric-bright);
}

.aff-feature h3 {
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.aff-feature p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
}

/* Influencer block */
.aff-influencer {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  padding: 56px 40px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.aff-influencer .section-label { margin-bottom: 14px; }

.aff-influencer h2 {
  font-size: clamp(1.7rem, 2.6vw, 2.1rem);
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}

.aff-influencer p {
  color: var(--gray-500);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 28px;
}

@media (max-width: 1024px) {
  .aff-highlights { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .aff-features-row { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  .aff-table thead th,
  .aff-table tbody td { padding: 18px 22px; }
  .aff-influencer { padding: 40px 24px; }
  .banner-buttons .btn { width: 100%; }
}

@media (max-width: 768px) {
  .ticket-form-wrap { padding: 28px 22px 22px; }
  .ticket-support-cards { grid-template-columns: 1fr; }
  .editor-toolbar { flex-wrap: wrap; }
  .file-upload-row { flex-direction: column; align-items: stretch; }
  .add-more-btn { justify-content: center; }
}

/* ============================================================
   HOSTING FEATURES SECTION
   ============================================================ */
.hosting-features-section { padding: 110px 0; }

.hosting-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.hf-card {
  display: flex;
  gap: 22px;
  padding: 32px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.hf-card:hover {
  transform: translateY(-4px);
  border-color: rgba(79,107,255,0.3);
  box-shadow: var(--shadow-glow);
}

.hf-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--electric-soft);
  border: 1px solid rgba(79,107,255,0.2);
  color: var(--navy);
  transition: all var(--transition);
}

.hf-card:hover .hf-icon {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.hf-card h3 { font-size: 1.05rem; margin-bottom: 8px; color: var(--gray-900); }
.hf-card p { font-size: 0.9rem; color: var(--gray-500); line-height: 1.65; }

.steps-card {
  padding: 36px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  grid-column: 1 / -1;
  max-width: 620px;
  margin: 0 auto;
  width: 100%;
  box-shadow: var(--shadow);
}

.steps-card h3 {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 4px;
}

.steps-card .steps-subtitle {
  font-size: 0.88rem;
  color: var(--gray-500);
  margin-bottom: 18px;
}

.steps-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.steps-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--gray-700);
  font-weight: 500;
}

.steps-list li svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--electric);
}

/* ============================================================
   LEGAL / TERMS PAGE
   ============================================================ */
.legal-content {
  max-width: 820px;
  margin: 0 auto;
}

.legal-intro p {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 20px;
}

.legal-notice {
  padding: 22px 26px;
  background: var(--electric-soft);
  border: 1px solid rgba(79,107,255,0.25);
  border-left: 3px solid var(--electric);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 28px;
  line-height: 1.65;
}

.legal-links-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--gray-200);
}

.legal-link-btn {
  padding: 10px 22px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  transition: all var(--transition);
}

.legal-link-btn:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  transform: translateY(-2px);
}

.legal-section {
  margin-bottom: 44px;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--gray-200);
}

.legal-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.legal-section h2 {
  font-size: 1.4rem;
  color: var(--gray-900);
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}

.legal-section p {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 14px;
}

.legal-section p:last-child { margin-bottom: 0; }
.legal-section strong { color: var(--gray-900); }

.legal-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 14px;
}

.legal-list li {
  position: relative;
  padding-left: 22px;
  font-size: 0.92rem;
  color: var(--gray-600);
  line-height: 1.7;
}

.legal-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--electric);
  box-shadow: 0 0 8px rgba(79,107,255,0.5);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr) !important; max-width: 100% !important; }
  .features-icon-row { grid-template-columns: repeat(2, 1fr); }
  .feature-detail { grid-template-columns: 1fr; gap: 40px; }
  .feature-detail.reverse { direction: ltr; }
  .support-section-grid { grid-template-columns: 1fr; gap: 36px; text-align: center; }
  .support-info h2 br { display: none; }
  .footer-grid { grid-template-columns: repeat(3, 1fr); gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .tech-grid { grid-template-columns: repeat(2, 1fr); }
  .review-card { flex: 0 0 calc(50% - 10px); }
  .about-content,
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero { min-height: 620px; padding: 150px 0 110px; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 80px;
    left: 16px;
    right: 16px;
    flex-direction: column;
    background: rgba(11,16,32,0.96);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 24px;
    gap: 6px;
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.1);
    z-index: 999;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
  }

  .nav-links.active { display: flex; }
  .nav-links a { width: 100%; text-align: center; padding: 14px 16px; }
  .mobile-toggle { display: flex; }

  .hosting-tabs { gap: 4px; padding: 5px; }
  .tab-btn { padding: 8px 14px; font-size: 0.78rem; }

  .pricing-grid { grid-template-columns: 1fr !important; gap: 16px; }
  .features-icon-row { grid-template-columns: 1fr; }
  .features-grid,
  .services-grid { grid-template-columns: 1fr; }
  .tech-grid { grid-template-columns: repeat(2, 1fr); }
  .hosting-features-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

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

  .domain-search-box { flex-direction: column; gap: 6px; }
  .domain-search-box .btn { width: 100%; }
  .domain-tlds { gap: 10px; }
  .domain-tld { min-width: 96px; padding: 18px 22px; }

  .form-row { grid-template-columns: 1fr; }
  .section { padding: 70px 0; }
  .hero { min-height: 560px; padding: 140px 0 90px; }
  .hero-title { font-size: 2.3rem !important; }
  .hero-desc { font-size: 1rem; }

  .review-card { flex: 0 0 calc(100% - 24px); }
  .support-methods { grid-template-columns: 1fr; }
  .location-buttons { flex-direction: column; align-items: center; }

  .page-banner { padding: 140px 0 70px; }
  .trust-logos { gap: 32px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2rem !important; }
  .tech-grid { grid-template-columns: 1fr; }
  .promo-text { font-size: 0.72rem; }
  .container { padding: 0 18px; }
  .contact-form { padding: 28px 22px; }
  .ticket-form-wrap { padding: 24px 18px; }
  .breadcrumb { font-size: 0.7rem; }
  .page-banner h1 { font-size: 2rem; }
  .aff-bigprice { padding: 2px 12px; }
}

/* ============================================================
   FINAL MOBILE POLISH — applied to all interior pages
   ============================================================ */
html, body { max-width: 100%; }

/* Prevent any long words / URLs from blowing out the page */
.legal-section p,
.legal-section li,
.legal-intro p,
.contact-info-card p { overflow-wrap: break-word; word-wrap: break-word; }

@media (max-width: 768px) {
  /* Affiliate page */
  .aff-highlights { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .aff-features-row { grid-template-columns: 1fr; gap: 32px; }
  .aff-influencer { padding: 36px 22px; }
  .banner-buttons { flex-direction: column; align-items: stretch; max-width: 280px; margin: 28px auto 0; }
  .banner-buttons .btn { width: 100%; }
  .aff-table thead th,
  .aff-table tbody td { padding: 16px 18px; font-size: 0.88rem; }

  /* Submit-ticket form */
  .ticket-form-wrap { padding: 24px 20px; }
  .form-section { padding: 18px 18px 4px; }
  .form-section .form-row,
  .form-section .form-row.cols-3 { grid-template-columns: 1fr; }
  .ticket-form .modal-actions { flex-direction: column-reverse; align-items: stretch; gap: 8px; }
  .ticket-form .modal-actions .btn { width: 100%; }
  .ticket-support-grid { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .ticket-support-cards { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }

  /* Comparison table — kept scrollable but tighter */
  .compare-table-wrap { border-radius: var(--radius-sm); }

  /* Legal pages */
  .legal-content { font-size: 0.95rem; }
  .legal-links-bar { gap: 8px; }
  .legal-link-btn { padding: 8px 16px; font-size: 0.8rem; }
  .legal-section { margin-bottom: 32px; padding-bottom: 32px; }
  .legal-section h2 { font-size: 1.2rem; }

  /* Footer hygiene on small screens */
  .footer { padding: 70px 0 28px; }
  .footer-grid { gap: 28px; margin-bottom: 40px; }
  .footer-brand p { max-width: none; }
  .footer-bottom-links { flex-wrap: wrap; justify-content: center; gap: 14px; }

  /* Page-banner padding refinement */
  .page-banner { padding: 130px 0 60px; }
  .page-banner p { font-size: 1rem; }

  /* Section labels shouldn't wrap weirdly */
  .section-label { font-size: 0.68rem; padding: 5px 12px; }

  /* Generic table fallback for anything else */
  table { max-width: 100%; }
}

/* ============================================================
   BLOG — Index grid + single post
   ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 20px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  text-decoration: none;
  color: inherit;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(1,19,121,0.12);
  border-color: rgba(79,107,255,0.35);
}

.blog-card-image {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy), var(--electric));
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.blog-card:hover .blog-card-image img { transform: scale(1.05); }

.blog-card-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(1,19,121,0.92);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.blog-card-body {
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card-meta {
  font-size: 0.78rem;
  color: var(--gray-500);
  font-family: var(--mono);
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}

.blog-card-meta .dot { margin: 0 8px; color: var(--gray-300); }

.blog-card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.blog-card-excerpt {
  color: var(--gray-500);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 18px;
  flex: 1;
}

.blog-card-readmore {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.blog-card-readmore span { transition: transform .25s ease; }
.blog-card:hover .blog-card-readmore span { transform: translateX(4px); }

/* Single blog post */
.blog-post {
  padding: 70px 0 90px;
  background: var(--white);
}

.blog-post-wrap {
  max-width: 780px;
  margin: 0 auto;
}

.blog-post-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.82rem;
  color: var(--gray-500);
  font-family: var(--mono);
  margin-bottom: 18px;
  letter-spacing: 0.02em;
  flex-wrap: wrap;
}

.blog-post-meta .tag {
  background: var(--electric-soft);
  color: var(--navy);
  padding: 5px 12px;
  border-radius: 999px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
}

.blog-post h1 {
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  color: var(--gray-900);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}

.blog-post-hero {
  width: 100%;
  aspect-ratio: 16 / 8;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 40px;
  background: linear-gradient(135deg, var(--navy), var(--electric));
}

.blog-post-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-post-body {
  color: var(--gray-700);
  font-size: 1.05rem;
  line-height: 1.8;
}

.blog-post-body p { margin-bottom: 22px; }

.blog-post-body h2 {
  font-size: 1.55rem;
  color: var(--gray-900);
  margin: 40px 0 16px;
  letter-spacing: -0.015em;
}

.blog-post-body h3 {
  font-size: 1.2rem;
  color: var(--gray-900);
  margin: 28px 0 12px;
  letter-spacing: -0.01em;
}

.blog-post-body ul,
.blog-post-body ol {
  margin: 0 0 22px 22px;
}

.blog-post-body li {
  margin-bottom: 10px;
  line-height: 1.75;
}

.blog-post-body strong { color: var(--gray-900); }

.blog-post-body a {
  color: var(--navy);
  text-decoration: underline;
  text-decoration-color: rgba(1,19,121,0.35);
  text-underline-offset: 3px;
}

.blog-post-body a:hover { text-decoration-color: var(--navy); }

.blog-post-body code {
  background: var(--gray-100);
  padding: 2px 7px;
  border-radius: 6px;
  font-family: var(--mono);
  font-size: 0.88em;
  color: var(--navy-deep);
}

.blog-post-footer {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid var(--gray-200);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.blog-back-link {
  color: var(--navy);
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.blog-back-link:hover { color: var(--electric); }

@media (max-width: 900px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .blog-post { padding: 50px 0 70px; }
}

@media (max-width: 600px) {
  .blog-grid { grid-template-columns: 1fr; gap: 20px; }
  .blog-post-body { font-size: 1rem; }
  .blog-post-body h2 { font-size: 1.3rem; }
}
