/* =========================================================
   WebHostingEurope.com — Stylesheet
   Palette: EU Blue (#0A2F7A / #1B4FCC) + EU Gold (#FFCC00)
   ========================================================= */

:root {
  --eu-blue-deep: #071a3d;
  --eu-blue: #0a2f7a;
  --eu-blue-bright: #1b4fcc;
  --eu-blue-soft: #e8eefc;
  --eu-gold: #ffcc00;
  --eu-gold-deep: #e6b800;
  --white: #ffffff;
  --ink: #0f1830;
  --ink-muted: #55628a;
  --border: #e3e8f5;
  --bg-light: #f5f7fd;
  --green: #16a34a;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 8px rgba(10, 22, 60, 0.06);
  --shadow-md: 0 12px 32px rgba(10, 22, 60, 0.1);
  --shadow-lg: 0 24px 60px rgba(7, 26, 61, 0.18);
  --container: 1240px;
  --ff: "Plus Jakarta Sans", "Segoe UI", system-ui, -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul { list-style: none; }

button { font-family: inherit; cursor: pointer; border: none; background: none; }

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--eu-gold);
  color: var(--ink);
  padding: 10px 18px;
  border-radius: 0 0 8px 0;
  z-index: 9999;
  font-weight: 600;
}
.skip-link:focus { left: 0; }

h1, h2, h3, h4 { font-weight: 800; line-height: 1.15; letter-spacing: -0.01em; }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); }
h3 { font-size: 1.25rem; }
p { color: var(--ink-muted); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--eu-blue-bright);
  background: var(--eu-blue-soft);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--eu-gold);
}

.section-head {
  max-width: 680px;
  margin: 0 auto 48px;
  text-align: center;
}
.section-head p { margin-top: 14px; font-size: 1.05rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.96rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, #ffdd55, var(--eu-gold) 55%, var(--eu-gold-deep));
  color: var(--eu-blue-deep);
  box-shadow: 0 8px 20px rgba(255, 204, 0, 0.35);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(255, 204, 0, 0.45); }

.btn-outline {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}
.btn-outline:hover { background: rgba(255, 255, 255, 0.14); transform: translateY(-2px); }

.btn-primary {
  background: linear-gradient(135deg, var(--eu-blue-bright), var(--eu-blue));
  color: var(--white);
  box-shadow: 0 8px 20px rgba(27, 79, 204, 0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(27, 79, 204, 0.4); }

.btn-ghost {
  background: var(--white);
  color: var(--eu-blue);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover { border-color: var(--eu-blue-bright); color: var(--eu-blue-bright); }

.btn-block { width: 100%; justify-content: center; }
.btn svg { width: 18px; height: 18px; }

/* =========================================================
   TOP UTILITY BAR
   ========================================================= */
.topbar {
  background: var(--eu-blue-deep);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.82rem;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 38px;
}
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 20px; }
.topbar a { display: inline-flex; align-items: center; gap: 6px; transition: color 0.2s; }
.topbar a:hover { color: var(--eu-gold); }
.topbar svg { width: 14px; height: 14px; flex-shrink: 0; }
.topbar-stars { display: inline-flex; gap: 3px; }
.topbar-stars svg { width: 10px; height: 10px; fill: var(--eu-gold); }

/* =========================================================
   HEADER + MEGA MENU
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -0.01em;
  color: var(--eu-blue-deep);
  flex-shrink: 0;
}
.logo .logo-mark { width: 42px; height: 42px; filter: drop-shadow(0 3px 8px rgba(10, 47, 122, 0.28)); }
.logo span { color: var(--eu-blue-bright); }

@media (prefers-reduced-motion: no-preference) {
  .logo .logo-mark { animation: logoGlow 3.6s ease-in-out infinite; }
}
@keyframes logoGlow {
  0%, 100% { filter: drop-shadow(0 3px 8px rgba(10, 47, 122, 0.28)); }
  50% { filter: drop-shadow(0 4px 16px rgba(27, 79, 204, 0.55)); }
}

.main-nav { display: flex; height: 100%; }
.nav-list { display: flex; align-items: center; height: 100%; gap: 4px; }
.nav-list > li { height: 100%; display: flex; align-items: center; position: static; }

.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 100%;
  padding: 0 16px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  position: relative;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 16px; right: 16px; bottom: 0;
  height: 3px;
  background: var(--eu-gold);
  border-radius: 3px 3px 0 0;
  transform: scaleX(0);
  transition: transform 0.25s ease;
}
.nav-link:hover, .has-mega:focus-within .nav-link { color: var(--eu-blue-bright); }
.nav-link:hover::after, .has-mega:focus-within .nav-link::after { transform: scaleX(1); }
.nav-link .chev { width: 12px; height: 12px; transition: transform 0.25s ease; color: var(--ink-muted); }
.has-mega:hover .chev, .has-mega:focus-within .chev { transform: rotate(180deg); }

/* Mega panel */
.mega-panel {
  position: absolute;
  left: 0; right: 0;
  top: 100%;
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  z-index: 40;
}
.has-mega:hover .mega-panel,
.has-mega:focus-within .mega-panel {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.mega-panel-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 36px 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr) 260px;
  gap: 8px 28px;
}
.mega-col-title {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 14px;
}
.mega-link {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 8px;
  border-radius: var(--radius-sm);
  transition: background 0.18s ease;
}
.mega-link:hover { background: var(--bg-light); }
.mega-link .mega-ico {
  width: 34px; height: 34px; flex-shrink: 0;
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  background: var(--eu-blue-soft);
}
.mega-link .mega-ico svg { width: 18px; height: 18px; color: var(--eu-blue-bright); }
.mega-link strong { display: block; font-size: 0.9rem; color: var(--ink); }
.mega-link small { color: var(--ink-muted); font-size: 0.78rem; }

.mega-promo {
  background: linear-gradient(160deg, var(--eu-blue), var(--eu-blue-deep));
  border-radius: var(--radius-md);
  padding: 22px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.mega-promo::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 90% 10%, rgba(255,204,0,0.35), transparent 60%);
}
.mega-promo h4 { font-size: 1.05rem; margin-bottom: 8px; position: relative; }
.mega-promo p { color: rgba(255,255,255,0.8); font-size: 0.85rem; margin-bottom: 16px; position: relative; }
.mega-promo .btn { position: relative; padding: 10px 18px; font-size: 0.85rem; }

.header-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.header-actions .btn { padding: 11px 20px; font-size: 0.88rem; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 10px;
  align-items: center; justify-content: center;
  background: var(--bg-light);
}
.nav-toggle svg { width: 22px; height: 22px; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  background: linear-gradient(160deg, var(--eu-blue-deep) 0%, var(--eu-blue) 55%, #123a94 100%);
  overflow: hidden;
  padding: 90px 0 70px;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.09) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: 0.5;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}
.hero-copy .eyebrow {
  background: rgba(255, 255, 255, 0.1);
  color: var(--eu-gold);
}
.hero-copy .eyebrow .dot { background: var(--eu-gold); }
.hero h1 {
  color: var(--white);
  font-size: clamp(2.3rem, 4.6vw, 3.4rem);
  margin-bottom: 20px;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(90deg, var(--eu-gold), #fff2b8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
  max-width: 540px;
  margin-bottom: 30px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
.hero-trust li {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.78);
  font-size: 0.85rem; font-weight: 600;
}
.hero-trust svg { width: 18px; height: 18px; color: var(--eu-gold); flex-shrink: 0; }

/* Hero visual: animated EU data-network illustration */
.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; }
.hero-orb {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1 / 1;
}
.hero-orb svg { width: 100%; height: 100%; overflow: visible; }

.orbit-ring { animation: spin 40s linear infinite; transform-origin: center; }
.orbit-ring-rev { animation: spin-rev 55s linear infinite; transform-origin: center; }
@keyframes spin { from { transform: rotate(0); } to { transform: rotate(360deg); } }
@keyframes spin-rev { from { transform: rotate(360deg); } to { transform: rotate(0); } }

.node-pulse { animation: pulse 2.6s ease-in-out infinite; transform-origin: center; }
.node-pulse.d1 { animation-delay: 0.2s; }
.node-pulse.d2 { animation-delay: 0.8s; }
.node-pulse.d3 { animation-delay: 1.4s; }
.node-pulse.d4 { animation-delay: 2s; }
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.35); opacity: 0.65; }
}

.beam { stroke-dasharray: 6 10; animation: dash 3.4s linear infinite; }
@keyframes dash { to { stroke-dashoffset: -160; } }

.float-y { animation: floaty 5s ease-in-out infinite; }
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

.hero-wave {
  position: absolute; left: 0; right: 0; bottom: -2px;
  line-height: 0;
}

/* =========================================================
   LOGO STRIP
   ========================================================= */
.trust-strip {
  padding: 26px 0;
  border-bottom: 1px solid var(--border);
}
.trust-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.trust-strip-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-muted);
}
.trust-badges { display: flex; gap: 28px; flex-wrap: wrap; align-items: center; }
.trust-badges li { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; font-weight: 700; color: var(--ink); }
.trust-badges svg { width: 22px; height: 22px; color: var(--eu-blue-bright); }

/* =========================================================
   SECTION 1 — SOLUTIONS (Hosting plans grid)
   ========================================================= */
.solutions { padding: 96px 0; background: var(--bg-light); }
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.solution-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  border: 1px solid var(--border);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  position: relative;
  overflow: hidden;
}
.solution-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.solution-card .price-tag {
  position: absolute; top: 26px; right: 26px;
  font-size: 0.72rem; font-weight: 800;
  color: var(--eu-blue-bright);
  background: var(--eu-blue-soft);
  padding: 5px 10px;
  border-radius: 999px;
}
.ico-3d {
  width: 60px; height: 60px;
  margin-bottom: 20px;
  transition: transform 0.35s ease;
}
.solution-card:hover .ico-3d { transform: translateY(-4px) rotate(-4deg) scale(1.05); }
.solution-card h3 { margin-bottom: 10px; }
.solution-card > p { font-size: 0.92rem; margin-bottom: 16px; }
.solution-card .feat-list { margin-bottom: 20px; }
.solution-card .feat-list li {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 0.86rem; color: var(--ink);
  padding: 5px 0;
}
.solution-card .feat-list svg { width: 16px; height: 16px; color: var(--green); flex-shrink: 0; margin-top: 2px; }
.card-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 700; font-size: 0.88rem; color: var(--eu-blue-bright);
}
.card-link svg { width: 15px; height: 15px; transition: transform 0.2s; }
.solution-card:hover .card-link svg { transform: translateX(4px); }

/* =========================================================
   SECTION 2 — WHY EUROPE (stats + feature bullets)
   ========================================================= */
.why-europe { padding: 96px 0; }
.why-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: center;
}
.why-visual { position: relative; }
.why-visual svg { width: 100%; height: auto; }

.why-copy .feat-check {
  display: grid;
  gap: 16px;
  margin: 28px 0 32px;
}
.why-copy .feat-check li {
  display: flex; gap: 14px; align-items: flex-start;
}
.why-copy .feat-check .chk {
  width: 26px; height: 26px; border-radius: 50%;
  background: linear-gradient(135deg, var(--eu-blue-bright), var(--eu-blue));
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
  box-shadow: 0 4px 10px rgba(27,79,204,0.3);
}
.why-copy .feat-check svg { width: 14px; height: 14px; color: var(--white); }
.why-copy .feat-check strong { display: block; color: var(--ink); font-size: 0.98rem; }
.why-copy .feat-check span { color: var(--ink-muted); font-size: 0.88rem; }

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 10px;
}
.stat-box {
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  padding: 18px 14px;
  text-align: center;
}
.stat-box .num {
  font-size: 1.7rem; font-weight: 800; color: var(--eu-blue);
  display: block;
}
.stat-box .num .suffix { color: var(--eu-gold-deep); }
.stat-box .lbl { font-size: 0.76rem; color: var(--ink-muted); font-weight: 600; }

/* =========================================================
   SECTION 3 — PRICING
   ========================================================= */
.pricing { padding: 96px 0; background: var(--white); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.pricing-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.price-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.price-card.featured {
  background: linear-gradient(165deg, var(--eu-blue-deep), var(--eu-blue));
  border-color: transparent;
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
}
.price-card.featured:hover { transform: scale(1.03) translateY(-6px); }
.price-badge {
  align-self: flex-start;
  background: var(--eu-gold);
  color: var(--eu-blue-deep);
  font-size: 0.72rem; font-weight: 800;
  padding: 5px 12px; border-radius: 999px;
  margin-bottom: 16px;
}
.price-card h3 { font-size: 1.15rem; margin-bottom: 6px; }
.price-card.featured h3, .price-card.featured .price-desc { color: var(--white); }
.price-desc { font-size: 0.85rem; color: var(--ink-muted); margin-bottom: 22px; }
.price-amount { display: flex; align-items: baseline; gap: 6px; margin-bottom: 4px; }
.price-amount .cur { font-size: 1.3rem; font-weight: 800; color: var(--eu-blue); }
.price-amount .val { font-size: 2.6rem; font-weight: 800; color: var(--eu-blue); }
.price-card.featured .price-amount .cur,
.price-card.featured .price-amount .val { color: var(--white); }
.price-amount .per { font-size: 0.85rem; color: var(--ink-muted); }
.price-card.featured .price-amount .per { color: rgba(255,255,255,0.7); }
.price-note { font-size: 0.78rem; color: var(--ink-muted); margin-bottom: 24px; }
.price-card.featured .price-note { color: rgba(255,255,255,0.6); }

.price-feats { margin-bottom: 28px; flex-grow: 1; }
.price-feats li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.88rem; padding: 7px 0;
  color: var(--ink);
  border-top: 1px dashed var(--border);
}
.price-feats li:first-child { border-top: none; }
.price-card.featured .price-feats li { color: rgba(255,255,255,0.9); border-color: rgba(255,255,255,0.15); }
.price-feats svg { width: 16px; height: 16px; color: var(--green); flex-shrink: 0; margin-top: 2px; }
.price-card.featured .price-feats svg { color: var(--eu-gold); }

/* =========================================================
   SECTION 4 — TESTIMONIALS + CTA
   ========================================================= */
.testimonials { padding: 96px 0 40px; background: var(--bg-light); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 72px;
}
.testi-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.testi-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.testi-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.testi-stars svg { width: 16px; height: 16px; color: var(--eu-gold); }
.testi-card p.quote { color: var(--ink); font-size: 0.94rem; margin-bottom: 20px; }
.testi-person { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 800; font-size: 0.9rem;
  flex-shrink: 0;
}
.testi-person strong { display: block; font-size: 0.88rem; }
.testi-person span { font-size: 0.78rem; color: var(--ink-muted); }

.cta-banner {
  background: linear-gradient(120deg, var(--eu-blue-deep), var(--eu-blue) 60%, #123a94);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 22px 22px;
}
.cta-banner-text { position: relative; max-width: 560px; }
.cta-banner h2 { color: var(--white); margin-bottom: 10px; font-size: clamp(1.5rem, 2.6vw, 2rem); }
.cta-banner p { color: rgba(255,255,255,0.8); }
.cta-banner-actions { position: relative; display: flex; gap: 14px; flex-shrink: 0; flex-wrap: wrap; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--eu-blue-deep);
  color: rgba(255, 255, 255, 0.7);
  padding: 76px 0 0;
  margin-top: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 32px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-brand .logo { color: var(--white); margin-bottom: 16px; }
.footer-brand .logo span { color: var(--eu-gold); }
.footer-brand p { font-size: 0.88rem; max-width: 300px; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}
.footer-social a:hover { background: var(--eu-gold); transform: translateY(-3px); }
.footer-social svg { width: 16px; height: 16px; color: var(--white); }
.footer-social a:hover svg { color: var(--eu-blue-deep); }

.footer-col h4 {
  color: var(--white); font-size: 0.86rem; text-transform: uppercase;
  letter-spacing: 0.06em; margin-bottom: 20px;
}
.footer-col ul { display: grid; gap: 12px; }
.footer-col a { font-size: 0.88rem; transition: color 0.2s ease; }
.footer-col a:hover { color: var(--eu-gold); }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 26px 0; font-size: 0.8rem; flex-wrap: wrap; gap: 12px;
}
.footer-bottom .legal-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-bottom a:hover { color: var(--eu-gold); }
.footer-eu-note { display: flex; align-items: center; gap: 8px; }
.footer-eu-note svg { width: 16px; height: 16px; color: var(--eu-gold); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1100px) {
  .mega-panel-inner { grid-template-columns: repeat(2, 1fr); }
  .mega-promo { grid-column: span 2; }
  .solutions-grid, .pricing-grid, .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .why-visual { order: -1; max-width: 420px; margin: 0 auto; }
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 340px; margin: 0 auto; }
  .topbar-left .tb-hide, .topbar { display: none; }
}

@media (max-width: 860px) {
  .main-nav, .header-actions .btn-ghost, .header-actions .btn-primary { display: none; }
  .nav-toggle { display: flex; }
  .stat-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .solutions-grid, .pricing-grid, .testi-grid, .footer-grid { grid-template-columns: 1fr; }
  .pricing-grid.cols-4 { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .price-card.featured:hover { transform: translateY(-6px); }
  .cta-banner { flex-direction: column; text-align: center; padding: 40px 28px; }
  .cta-banner-actions { justify-content: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .trust-strip-inner { justify-content: center; text-align: center; }
}

/* ---------- Mobile drawer nav ---------- */
.mobile-drawer {
  position: fixed; inset: 0;
  background: rgba(7, 26, 61, 0.5);
  z-index: 900;
  opacity: 0; visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.mobile-drawer.open { opacity: 1; visibility: visible; }
.mobile-drawer-panel {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: min(88vw, 360px);
  background: var(--white);
  padding: 24px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.mobile-drawer.open .mobile-drawer-panel { transform: translateX(0); }
.mobile-drawer-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.mobile-drawer-close { width: 38px; height: 38px; border-radius: 10px; background: var(--bg-light); display: flex; align-items: center; justify-content: center; }
.mobile-drawer-close svg { width: 18px; height: 18px; }
.mobile-accordion { border-bottom: 1px solid var(--border); }
.mobile-accordion-btn {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 16px 4px; font-weight: 700; font-size: 0.98rem;
}
.mobile-accordion-btn svg { width: 16px; height: 16px; transition: transform 0.25s ease; }
.mobile-accordion.open .mobile-accordion-btn svg { transform: rotate(180deg); }
.mobile-accordion-panel { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.mobile-accordion.open .mobile-accordion-panel { max-height: 600px; }
.mobile-accordion-panel a { display: block; padding: 10px 4px; font-size: 0.9rem; color: var(--ink-muted); }
.mobile-pricing-link { display: block; padding: 16px 4px; font-weight: 700; font-size: 0.98rem; color: var(--ink); border-bottom: 1px solid var(--border); }
.mobile-drawer-actions { display: grid; gap: 10px; margin-top: 20px; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ---------- Counter helper ---------- */
[data-count] { display: inline-block; }

/* =========================================================
   INNER PAGE COMPONENTS
   ========================================================= */

/* Breadcrumb */
.breadcrumb-bar { background: var(--bg-light); padding: 16px 0; border-bottom: 1px solid var(--border); }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--ink-muted); flex-wrap: wrap; }
.breadcrumb a { font-weight: 600; transition: color 0.2s ease; }
.breadcrumb a:hover { color: var(--eu-blue-bright); }
.breadcrumb svg { width: 13px; height: 13px; color: #b7c0d8; flex-shrink: 0; }
.breadcrumb .current { color: var(--eu-blue); font-weight: 700; }

/* Inner-page hero (shorter than homepage hero) */
.hero-inner { padding: 56px 0 68px; }
.hero-inner .hero-copy p { max-width: 580px; }
.page-kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 700; color: rgba(255,255,255,0.75);
  margin-bottom: 14px; letter-spacing: 0.04em;
}
.page-kicker svg { width: 15px; height: 15px; color: var(--eu-gold); }

/* Spec dial gauges (VPS hero visual) */
.dial-ring-bg { fill: none; stroke: rgba(255,255,255,0.14); stroke-width: 10; }
.dial-ring-fg { fill: none; stroke-width: 10; stroke-dasharray: 440; stroke-linecap: round; transform-origin: center; transform: rotate(-90deg); animation: dialFill 1.8s cubic-bezier(.16,1,.3,1) forwards; }
@keyframes dialFill { from { stroke-dashoffset: 440; } }
.dial-label-num { font-size: 34px; font-weight: 800; fill: #fff; }
.dial-label-txt { font-size: 12px; fill: rgba(255,255,255,0.65); font-weight: 700; letter-spacing: 0.05em; }

.dial-panel { display: flex; flex-direction: column; gap: 22px; align-items: center; }
.dial-card { position: relative; width: 176px; height: 176px; }
.dial-card:nth-child(1) { animation: floaty 5s ease-in-out infinite; }
.dial-card:nth-child(2) { animation: floaty 5s ease-in-out infinite 0.6s; }
.dial-card:nth-child(3) { animation: floaty 5s ease-in-out infinite 1.2s; }
.dial-card svg { width: 100%; height: 100%; }
.dial-center { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.dial-center .dial-ico { width: 24px; height: 24px; color: var(--eu-gold); margin-bottom: 6px; }
.dial-center strong { font-size: 1.9rem; font-weight: 800; color: #fff; line-height: 1; }
.dial-center span { font-size: 0.72rem; font-weight: 700; color: rgba(255,255,255,0.65); text-transform: uppercase; letter-spacing: 0.05em; margin-top: 4px; }
@media (min-width: 640px) { .dial-panel { flex-direction: row; } }

/* Spec strip (reuses trust-strip pattern with icon+value pairs) */
.spec-strip { padding: 28px 0; border-bottom: 1px solid var(--border); }
.spec-strip-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.spec-pill { display: flex; align-items: center; gap: 14px; }
.spec-pill .ic { width: 44px; height: 44px; border-radius: 12px; background: var(--eu-blue-soft); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.spec-pill .ic svg { width: 22px; height: 22px; color: var(--eu-blue-bright); }
.spec-pill strong { display: block; font-size: 0.95rem; color: var(--ink); }
.spec-pill span { font-size: 0.78rem; color: var(--ink-muted); }

/* Plan tier tabs (VPS/pricing style pages) */
.plan-tabs { display: flex; justify-content: center; gap: 10px; margin-bottom: 40px; flex-wrap: wrap; }
.plan-tab { padding: 10px 22px; border-radius: 999px; font-weight: 700; font-size: 0.86rem; border: 1.5px solid var(--border); color: var(--ink-muted); transition: all 0.2s ease; }
.plan-tab.active, .plan-tab:hover { border-color: var(--eu-blue-bright); color: var(--eu-blue-bright); background: var(--eu-blue-soft); }

/* Comparison table */
.compare-wrap { overflow-x: auto; border-radius: var(--radius-md); border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.compare-table { width: 100%; border-collapse: collapse; min-width: 760px; background: var(--white); }
.compare-table th, .compare-table td { padding: 16px 20px; text-align: left; border-bottom: 1px solid var(--border); font-size: 0.88rem; white-space: nowrap; }
.compare-table thead th { background: var(--eu-blue-deep); color: #fff; font-weight: 800; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.04em; }
.compare-table thead th:first-child { border-top-left-radius: var(--radius-md); }
.compare-table thead th:last-child { border-top-right-radius: var(--radius-md); }
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table tbody tr:hover { background: var(--bg-light); }
.compare-table td:first-child, .compare-table th:first-child { position: sticky; left: 0; background: var(--white); font-weight: 700; color: var(--ink); z-index: 2; }
.compare-table thead th:first-child { background: var(--eu-blue-deep); }
.compare-table td.price-cell { font-weight: 800; color: var(--eu-blue); font-size: 0.95rem; }
.compare-table td.hl { background: var(--eu-blue-soft); }

/* FAQ accordion */
.faq-list { max-width: 840px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-sm); background: var(--white); overflow: hidden; transition: border-color 0.2s ease; }
.faq-item.open { border-color: var(--eu-blue-bright); }
.faq-q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 20px 24px; font-weight: 700; font-size: 0.98rem; text-align: left; color: var(--ink); }
.faq-q .icon { width: 30px; height: 30px; border-radius: 50%; background: var(--bg-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background 0.25s ease; }
.faq-q .icon svg { width: 14px; height: 14px; color: var(--eu-blue); transition: transform 0.3s ease; }
.faq-item.open .faq-q .icon { background: var(--eu-blue-bright); }
.faq-item.open .faq-q .icon svg { color: #fff; transform: rotate(135deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-a-inner { padding: 0 24px 22px; }
.faq-a-inner p { font-size: 0.9rem; }
.faq-item.open .faq-a { max-height: 400px; }

/* Timeline (About page) */
.timeline { position: relative; max-width: 880px; margin: 0 auto; padding-left: 4px; }
.timeline::before {
  content: ""; position: absolute; left: 23px; top: 6px; bottom: 6px; width: 2px;
  background: linear-gradient(var(--eu-blue-soft), var(--eu-blue-bright) 20%, var(--eu-blue-bright) 80%, var(--eu-blue-soft));
}
.timeline-item { position: relative; padding-left: 66px; margin-bottom: 40px; }
.timeline-item:last-child { margin-bottom: 0; }
.timeline-dot {
  position: absolute; left: 12px; top: 2px; width: 24px; height: 24px; border-radius: 50%;
  background: linear-gradient(135deg, var(--eu-gold), var(--eu-gold-deep));
  border: 4px solid var(--white); box-shadow: 0 0 0 2px var(--eu-blue-soft);
}
.timeline-year {
  display: inline-block; font-size: 0.76rem; font-weight: 800; color: var(--eu-blue-bright);
  text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 8px;
  background: var(--eu-blue-soft); padding: 3px 12px; border-radius: 999px;
}
.timeline-item h3 { margin-bottom: 8px; }
.timeline-item p { font-size: 0.92rem; max-width: 620px; }

/* Value / team cards (About page) */
.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.value-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 30px 24px; text-align: center; transition: transform 0.25s ease, box-shadow 0.25s ease; }
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.value-card .ico-3d { margin: 0 auto 18px; }
.value-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.value-card p { font-size: 0.86rem; }

.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.team-card { text-align: center; }
.team-avatar { width: 100%; aspect-ratio: 1; border-radius: var(--radius-md); margin-bottom: 16px; overflow: hidden; box-shadow: var(--shadow-sm); }
.team-avatar svg { width: 100%; height: 100%; display: block; }
.team-card h3 { font-size: 1rem; margin-bottom: 2px; }
.team-card span { font-size: 0.82rem; color: var(--ink-muted); }

/* Data-center cards */
.dc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.dc-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; transition: transform 0.25s ease, box-shadow 0.25s ease; }
.dc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.dc-card-top { background: linear-gradient(160deg, var(--eu-blue-deep), var(--eu-blue)); padding: 26px 24px; color: #fff; position: relative; overflow: hidden; }
.dc-card-top::after { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,0.09) 1px, transparent 1px); background-size: 16px 16px; }
.dc-flag { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.14); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; position: relative; }
.dc-flag svg { width: 20px; height: 20px; color: var(--eu-gold); }
.dc-card-top h3 { color: #fff; position: relative; margin-bottom: 3px; }
.dc-card-top span { color: rgba(255,255,255,0.7); font-size: 0.82rem; position: relative; }
.dc-status { position: absolute; top: 24px; right: 22px; display: flex; align-items: center; gap: 6px; font-size: 0.72rem; font-weight: 700; color: #b8f5c9; }
.dc-status .pip { width: 7px; height: 7px; border-radius: 50%; background: #38d871; box-shadow: 0 0 0 3px rgba(56,216,113,0.25); animation: pulse 2.2s ease-in-out infinite; }
.dc-card-body { padding: 22px 24px 24px; }
.dc-specs { display: grid; gap: 2px; margin-bottom: 18px; }
.dc-specs li { display: flex; justify-content: space-between; align-items: center; gap: 10px; font-size: 0.85rem; padding: 10px 0; border-bottom: 1px dashed var(--border); }
.dc-specs li:last-child { border-bottom: none; }
.dc-specs strong { color: var(--ink); font-weight: 700; }
.dc-specs span { color: var(--ink-muted); text-align: right; }

/* Big EU network map (Data Centers hero) */
.eu-map-big { position: relative; width: 100%; }
.eu-map-big svg { width: 100%; height: auto; overflow: visible; }
.map-hotspot text { font-size: 11px; font-weight: 700; fill: rgba(255,255,255,0.85); }

/* Generic content prose block (used on legal/simple pages) */
.prose-section { padding: 72px 0; }
.prose { max-width: 800px; margin: 0 auto; }
.prose h2 { margin: 40px 0 16px; }
.prose h2:first-child { margin-top: 0; }
.prose p { margin-bottom: 16px; font-size: 0.96rem; }
.prose ul { margin: 0 0 20px; display: grid; gap: 10px; }
.prose ul li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.92rem; color: var(--ink-muted); }
.prose ul li svg { width: 16px; height: 16px; color: var(--green); flex-shrink: 0; margin-top: 3px; }

@media (max-width: 1100px) {
  .value-grid, .team-grid { grid-template-columns: repeat(2, 1fr); }
  .dc-grid { grid-template-columns: repeat(2, 1fr); }
  .spec-strip-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .value-grid, .team-grid, .dc-grid, .spec-strip-grid { grid-template-columns: 1fr; }
  .compare-table { min-width: 620px; }
}

/* =========================================================
   FORMS
   ========================================================= */
.form-grid { display: grid; gap: 20px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: grid; gap: 8px; }
.form-group label { font-size: 0.86rem; font-weight: 700; color: var(--ink); }
.form-group .hint { font-size: 0.76rem; color: var(--ink-muted); font-weight: 400; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 13px 16px; border-radius: var(--radius-sm);
  border: 1.5px solid var(--border); font-family: inherit; font-size: 0.92rem;
  color: var(--ink); background: var(--white); transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none; border-color: var(--eu-blue-bright); box-shadow: 0 0 0 4px var(--eu-blue-soft);
}
.form-textarea { resize: vertical; min-height: 130px; }
.form-check { display: flex; align-items: flex-start; gap: 10px; font-size: 0.84rem; color: var(--ink-muted); }
.form-check input { margin-top: 3px; accent-color: var(--eu-blue-bright); }
.form-panel { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-sm); }
.form-note { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; color: var(--ink-muted); margin-top: 6px; }
.form-note svg { width: 15px; height: 15px; color: var(--green); flex-shrink: 0; }
.form-success {
  display: none; align-items: flex-start; gap: 14px; padding: 20px 22px;
  background: #f0fdf4; border: 1px solid #bbf7d0; border-radius: var(--radius-sm); margin-top: 20px;
}
.form-success .ic { width: 34px; height: 34px; border-radius: 50%; background: var(--green); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.form-success .ic svg { width: 18px; height: 18px; color: #fff; }
.form-success strong { display: block; color: #14532d; font-size: 0.94rem; margin-bottom: 3px; }
.form-success p { color: #166534; font-size: 0.86rem; margin: 0; }

/* Contact info cards */
.contact-info-grid { display: grid; gap: 16px; }
.contact-info-card {
  display: flex; gap: 16px; align-items: flex-start; padding: 22px;
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.contact-info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.contact-info-card .ic { width: 46px; height: 46px; border-radius: 12px; background: var(--eu-blue-soft); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info-card .ic svg { width: 22px; height: 22px; color: var(--eu-blue-bright); }
.contact-info-card h3 { font-size: 0.98rem; margin-bottom: 4px; }
.contact-info-card p { font-size: 0.86rem; margin: 0; }
.contact-info-card a.link { color: var(--eu-blue-bright); font-weight: 700; font-size: 0.86rem; }

/* Auth panel (login) */
.auth-wrap { display: flex; align-items: center; justify-content: center; padding: 72px 24px; min-height: 60vh; }
.auth-panel { width: 100%; max-width: 420px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 44px 38px; box-shadow: var(--shadow-md); }
.auth-panel .logo { justify-content: center; margin-bottom: 8px; }
.auth-panel h1 { font-size: 1.4rem; text-align: center; margin-bottom: 6px; }
.auth-panel > p.sub { text-align: center; font-size: 0.9rem; margin-bottom: 28px; }
.auth-divider { display: flex; align-items: center; gap: 12px; margin: 22px 0; color: var(--ink-muted); font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }
.auth-divider::before, .auth-divider::after { content: ""; flex: 1; height: 1px; background: var(--border); }
.auth-foot { text-align: center; font-size: 0.86rem; color: var(--ink-muted); margin-top: 20px; }
.auth-foot a { color: var(--eu-blue-bright); font-weight: 700; }
.auth-row { display: flex; justify-content: space-between; align-items: center; font-size: 0.84rem; }
.auth-row a { color: var(--eu-blue-bright); font-weight: 700; }

/* Status page */
.status-banner { display: flex; align-items: center; gap: 16px; padding: 22px 26px; border-radius: var(--radius-md); background: linear-gradient(135deg, #16a34a, #0f8a3d); color: #fff; margin-bottom: 40px; }
.status-banner .pip-lg { width: 14px; height: 14px; border-radius: 50%; background: #fff; box-shadow: 0 0 0 5px rgba(255,255,255,0.3); animation: pulse 2.2s ease-in-out infinite; flex-shrink: 0; }
.status-banner strong { display: block; font-size: 1.05rem; }
.status-banner span { font-size: 0.85rem; opacity: 0.9; }
.status-list { display: grid; gap: 12px; }
.status-row {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 22px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-sm);
}
.status-row-left { display: flex; align-items: center; gap: 14px; }
.status-row .dc-ic { width: 38px; height: 38px; border-radius: 10px; background: var(--eu-blue-soft); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.status-row .dc-ic svg { width: 18px; height: 18px; color: var(--eu-blue-bright); }
.status-row h4 { font-size: 0.94rem; margin-bottom: 2px; }
.status-row span.loc { font-size: 0.78rem; color: var(--ink-muted); }
.status-badge { display: flex; align-items: center; gap: 7px; font-size: 0.8rem; font-weight: 700; color: #16a34a; }
.status-badge .pip { width: 8px; height: 8px; border-radius: 50%; background: #16a34a; box-shadow: 0 0 0 3px rgba(22,163,74,0.18); }
.status-uptime { font-size: 0.78rem; color: var(--ink-muted); min-width: 90px; text-align: right; }

/* Careers */
.job-list { display: grid; gap: 14px; max-width: 860px; margin: 0 auto; }
.job-card {
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  padding: 22px 26px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.job-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.job-card h3 { font-size: 1rem; margin-bottom: 6px; }
.job-meta { display: flex; gap: 14px; flex-wrap: wrap; }
.job-meta span { display: flex; align-items: center; gap: 6px; font-size: 0.8rem; color: var(--ink-muted); font-weight: 600; }
.job-meta svg { width: 14px; height: 14px; color: var(--eu-blue-bright); }
.job-dept { font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; color: var(--eu-blue-bright); background: var(--eu-blue-soft); padding: 4px 10px; border-radius: 999px; display: inline-block; margin-bottom: 10px; }

/* Blog */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; transition: transform 0.25s ease, box-shadow 0.25s ease; }
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.blog-thumb { height: 160px; position: relative; overflow: hidden; }
.blog-thumb svg { width: 100%; height: 100%; }
.blog-card-body { padding: 22px 24px; }
.blog-tag { font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; color: var(--eu-blue-bright); margin-bottom: 10px; display: block; }
.blog-card-body h3 { font-size: 1.02rem; margin-bottom: 10px; line-height: 1.3; }
.blog-card-body p { font-size: 0.86rem; margin-bottom: 16px; }
.blog-meta { display: flex; align-items: center; gap: 10px; font-size: 0.78rem; color: var(--ink-muted); }
.blog-meta .dot-sep { width: 3px; height: 3px; border-radius: 50%; background: var(--ink-muted); }

/* Help center */
.help-search { max-width: 640px; margin: 0 auto 48px; position: relative; }
.help-search input {
  width: 100%; padding: 18px 22px 18px 52px; border-radius: 999px; border: 1.5px solid var(--border);
  font-family: inherit; font-size: 0.98rem; box-shadow: var(--shadow-sm);
}
.help-search input:focus { outline: none; border-color: var(--eu-blue-bright); box-shadow: 0 0 0 4px var(--eu-blue-soft); }
.help-search svg { position: absolute; left: 20px; top: 50%; transform: translateY(-50%); width: 20px; height: 20px; color: var(--ink-muted); }

/* Checkout */
.checkout-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 32px; align-items: start; }
.checkout-summary { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 30px; position: sticky; top: 100px; }
.checkout-summary h3 { font-size: 1.05rem; margin-bottom: 18px; }
.checkout-plan { display: flex; justify-content: space-between; align-items: center; padding-bottom: 18px; border-bottom: 1px solid var(--border); margin-bottom: 18px; }
.checkout-plan strong { display: block; font-size: 1rem; }
.checkout-plan span { font-size: 0.8rem; color: var(--ink-muted); }
.checkout-line { display: flex; justify-content: space-between; font-size: 0.88rem; padding: 8px 0; color: var(--ink-muted); }
.checkout-line strong { color: var(--ink); font-weight: 600; }
.checkout-total { display: flex; justify-content: space-between; align-items: baseline; padding-top: 14px; margin-top: 6px; border-top: 1px solid var(--border); }
.checkout-total .amt { font-size: 1.6rem; font-weight: 800; color: var(--eu-blue); }
.checkout-feats { margin-top: 22px; padding-top: 22px; border-top: 1px dashed var(--border); display: grid; gap: 10px; }
.checkout-feats li { display: flex; gap: 8px; align-items: flex-start; font-size: 0.82rem; color: var(--ink-muted); }
.checkout-feats svg { width: 15px; height: 15px; color: var(--green); flex-shrink: 0; margin-top: 2px; }
.step-pills { display: flex; align-items: center; gap: 10px; margin-bottom: 40px; flex-wrap: wrap; }
.step-pill { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; font-weight: 700; color: var(--ink-muted); }
.step-pill .n { width: 26px; height: 26px; border-radius: 50%; background: var(--bg-light); display: flex; align-items: center; justify-content: center; font-size: 0.78rem; }
.step-pill.active { color: var(--eu-blue); }
.step-pill.active .n { background: var(--eu-blue-bright); color: #fff; }
.step-pill .sep { width: 24px; height: 1px; background: var(--border); }

@media (max-width: 900px) {
  .form-row-2 { grid-template-columns: 1fr; }
  .checkout-grid { grid-template-columns: 1fr; }
  .checkout-summary { position: static; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .blog-grid { grid-template-columns: 1fr; }
  .status-row { flex-wrap: wrap; }
  .job-card { flex-direction: column; align-items: flex-start; }
}

/* =========================================================
   DOMAIN SEARCH
   ========================================================= */
.domain-search-panel {
  background: var(--white); border-radius: var(--radius-lg); padding: 10px;
  box-shadow: var(--shadow-lg); display: flex; gap: 10px; max-width: 640px;
}
.domain-search-panel input {
  flex: 1; border: none; padding: 16px 18px; font-family: inherit; font-size: 1rem; border-radius: var(--radius-sm);
}
.domain-search-panel input:focus { outline: none; background: var(--bg-light); }
.domain-tlds { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 18px; }
.domain-tld-pill { padding: 7px 16px; border-radius: 999px; background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.85); font-size: 0.82rem; font-weight: 700; border: 1px solid rgba(255,255,255,0.2); }
.domain-tld-pill strong { color: var(--eu-gold); }

.tld-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.tld-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 22px 16px; text-align: center; transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.tld-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: transparent; }
.tld-card .ext { font-size: 1.3rem; font-weight: 800; color: var(--eu-blue); margin-bottom: 6px; }
.tld-card .price { font-size: 0.86rem; color: var(--ink-muted); }
.tld-card .price strong { color: var(--ink); }

@media (max-width: 1100px) { .tld-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) {
  .tld-grid { grid-template-columns: repeat(2, 1fr); }
  .domain-search-panel { flex-direction: column; }
}

/* =========================================================
   FLOATING SIDE ACTIONS (WhatsApp / Call / Contact)
   ========================================================= */
.float-actions {
  position: fixed;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 600;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: opacity 0.25s ease;
}
.float-actions.fa-dim {
  opacity: 0;
  pointer-events: none;
}
.fa-btn {
  position: relative;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 8px 20px rgba(7, 26, 61, 0.22);
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease;
  opacity: 0;
  transform: translateX(-28px) scale(0.6);
  animation: faPop 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
.fa-btn:nth-child(1) { animation-delay: 0.15s; }
.fa-btn:nth-child(2) { animation-delay: 0.3s; }
.fa-btn:nth-child(3) { animation-delay: 0.45s; }
@keyframes faPop {
  0% { opacity: 0; transform: translateX(-28px) scale(0.6); }
  70% { opacity: 1; transform: translateX(3px) scale(1.06); }
  100% { opacity: 1; transform: translateX(0) scale(1); }
}
/* radar pulse ring, echoing outward behind each button */
.fa-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: inherit;
  z-index: -1;
}
/* rotating shine ring, revealed on hover */
.fa-btn::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent 0%, rgba(255, 255, 255, 0.85) 12%, transparent 24%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -2;
}
.fa-btn:hover {
  transform: scale(1.1) translateX(2px);
  box-shadow: 0 12px 28px rgba(7, 26, 61, 0.32);
}
.fa-btn:hover::after { opacity: 1; }
.fa-btn:active { transform: scale(0.92); }
.fa-btn:hover svg { animation: faIconWiggle 0.5s ease; }
@keyframes faIconWiggle {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-14deg); }
  50% { transform: rotate(10deg); }
  75% { transform: rotate(-6deg); }
}
.fa-btn svg { width: 24px; height: 24px; position: relative; }
.fa-btn.fa-whatsapp { background: linear-gradient(135deg, #32e177, #1da851); }
.fa-btn.fa-call { background: linear-gradient(135deg, var(--eu-blue-bright), var(--eu-blue)); }
.fa-btn.fa-contact { background: linear-gradient(135deg, var(--eu-gold), var(--eu-gold-deep)); color: var(--eu-blue-deep); }

.fa-online {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #38d871;
  border: 2px solid #fff;
  z-index: 2;
}
.fa-online::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #38d871;
  opacity: 0.6;
}

.fa-label {
  position: absolute;
  left: 64px;
  top: 50%;
  transform: translateY(-50%) translateX(-6px) scale(0.94);
  background: var(--eu-blue-deep);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 700;
  padding: 7px 13px;
  border-radius: 7px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 8px 18px rgba(7, 26, 61, 0.25);
  transition: opacity 0.22s ease, transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.fa-label::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 50%;
  transform: translateY(-50%);
  border-width: 5px 6px 5px 0;
  border-style: solid;
  border-color: transparent var(--eu-blue-deep) transparent transparent;
}
.fa-btn:hover .fa-label { opacity: 1; transform: translateY(-50%) translateX(0) scale(1); }

@media (prefers-reduced-motion: no-preference) {
  .fa-btn.fa-whatsapp::before,
  .fa-btn.fa-call::before {
    animation: faRadar 2.8s ease-out infinite;
  }
  .fa-btn.fa-call::before { animation-delay: 1.4s; }
  .fa-online::after { animation: faRadar 1.8s ease-out infinite; }
}
@keyframes faRadar {
  0% { opacity: 0.55; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.9); }
}

@media (max-width: 640px) {
  .float-actions { left: 10px; gap: 10px; }
  .fa-btn { width: 44px; height: 44px; }
  .fa-btn svg { width: 20px; height: 20px; }
  .fa-online { width: 11px; height: 11px; }
  .fa-label { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .fa-btn { animation: none; opacity: 1; transform: none; }
  .fa-btn.fa-whatsapp::before, .fa-btn.fa-call::before, .fa-online::after { animation: none; }
}

/* =========================================================
   MOBILE ORDER BAR (mobile only)
   ========================================================= */
.mobile-order-bar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 550;
  gap: 6px;
  padding: 10px 10px calc(10px + env(safe-area-inset-bottom, 0px));
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: 0 -6px 20px rgba(7, 26, 61, 0.1);
  overflow: hidden;
}
.mobile-order-bar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--eu-blue-bright), var(--eu-gold), var(--eu-blue-bright));
  background-size: 200% 100%;
}
.mobile-order-bar a {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  text-align: center;
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1.15;
  padding: 9px 4px;
  border-radius: 10px;
  background: var(--eu-blue-soft);
  color: var(--eu-blue);
  transition: transform 0.18s ease, background 0.18s ease;
  overflow: hidden;
}
.mobile-order-bar a svg { width: 17px; height: 17px; }
.mobile-order-bar a:active { transform: scale(0.93); }
.mobile-order-bar a.mob-accent {
  background: linear-gradient(135deg, var(--eu-blue-bright), var(--eu-blue));
  color: #fff;
}
.mobile-order-bar a.mob-accent::after {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 45%;
  height: 100%;
  background: linear-gradient(115deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: skewX(-15deg);
}

@media (prefers-reduced-motion: no-preference) {
  .mobile-order-bar::before { animation: mobGlowLine 4.5s linear infinite; }
  .mobile-order-bar a.mob-accent::after { animation: mobShimmer 3.6s ease-in-out infinite; }
  .mobile-order-bar { animation: mobBarUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both; }
}
@keyframes mobGlowLine { to { background-position: -200% 0; } }
@keyframes mobShimmer {
  0% { left: -60%; }
  35% { left: 130%; }
  100% { left: 130%; }
}
@keyframes mobBarUp {
  from { opacity: 0; transform: translateY(100%); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 640px) {
  .mobile-order-bar { display: flex; }
  body { padding-bottom: 68px; }
}
