/* ============================================================
   EURHOSTING — Main Stylesheet
   Colors from brand identity:
   --green: #7AB930  (colibri / hosting)
   --blue:  #00AEEF  (cloud / eur)
   --dark:  #0D1B2A  (headings)
   ============================================================ */

/* ── Reset & base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:       #7AB930;
  --green-dark:  #5E9A1F;
  --blue:        #00AEEF;
  --blue-dark:   #0090C8;
  --dark:        #0D1B2A;
  --dark-2:      #1C2F44;
  --mid:         #4A6177;
  --muted:       #8A9BB0;
  --bg:          #F4F8FC;
  --bg-card:     #FFFFFF;
  --border:      #DDE6F0;
  --gold:        #C9A84C;

  --font-display: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
  --font-body:    'Inter', 'Segoe UI', sans-serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  --shadow-sm: 0 1px 3px rgba(13,27,42,.06), 0 1px 2px rgba(13,27,42,.04);
  --shadow-md: 0 4px 16px rgba(13,27,42,.08), 0 2px 4px rgba(13,27,42,.05);
  --shadow-lg: 0 12px 40px rgba(13,27,42,.12), 0 4px 8px rgba(13,27,42,.06);
  --shadow-blue: 0 8px 32px rgba(0,174,239,.20);
  --shadow-green: 0 8px 32px rgba(122,185,48,.25);

  --max-w: 1200px;
  --nav-h: 68px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--dark);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); font-weight: 600; }

.eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: .75rem;
}

/* ── Layout helpers ──────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

section { padding: 5rem 0; }

.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}
.section-head p {
  margin-top: .85rem;
  color: var(--mid);
  font-size: 1.05rem;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .7rem 1.5rem;
  border-radius: var(--radius-md);
  font-size: .92rem;
  font-weight: 600;
  border: 2px solid transparent;
  transition: background .18s, color .18s, border-color .18s, transform .15s, box-shadow .18s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--green);
  color: #fff;
  box-shadow: var(--shadow-green);
}
.btn-primary:hover { background: var(--green-dark); box-shadow: 0 10px 36px rgba(122,185,48,.35); }

.btn-outline {
  background: transparent;
  color: var(--dark);
  border-color: var(--border);
}
.btn-outline:hover { border-color: var(--blue); color: var(--blue); }

.btn-blue {
  background: var(--blue);
  color: #fff;
  box-shadow: var(--shadow-blue);
}
.btn-blue:hover { background: var(--blue-dark); }

.btn-lg { padding: .9rem 2rem; font-size: 1rem; border-radius: var(--radius-lg); }
.btn-sm { padding: .5rem 1rem; font-size: .82rem; }

/* ── Navigation ──────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(244,248,252,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, box-shadow .2s;
}
#navbar.scrolled {
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  margin-left: auto;
}
.nav-links a {
  font-size: .88rem;
  font-weight: 500;
  color: var(--mid);
  transition: color .15s;
}
.nav-links a:hover { color: var(--dark); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-left: 1.5rem;
}

/* Language selector */
.lang-selector {
  position: relative;
}
.lang-btn {
  display: flex;
  align-items: center;
  gap: .35rem;
  padding: .4rem .75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  font-size: .82rem;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  transition: border-color .15s;
}
.lang-btn:hover { border-color: var(--blue); }
.lang-btn svg { width: 14px; height: 14px; color: var(--muted); }

.lang-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + .5rem);
  right: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 200px;
  overflow: hidden;
  z-index: 200;
}
.lang-dropdown.open { display: block; }
.lang-option {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .65rem 1rem;
  font-size: .86rem;
  font-weight: 500;
  color: var(--dark);
  cursor: pointer;
  transition: background .12s;
}
.lang-option:hover { background: var(--bg); }
.lang-option.active { color: var(--blue); font-weight: 700; }
.lang-flag { font-size: 1.1rem; }

/* Mobile hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: .4rem;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform .2s, opacity .2s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile nav drawer ───────────────────────────────────── */
#mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  z-index: 999;
  padding: 1.2rem 1.5rem 1.5rem;
}
#mobile-nav.open { display: block; }
#mobile-nav a {
  display: block;
  padding: .7rem 0;
  font-size: .95rem;
  font-weight: 500;
  color: var(--dark);
  border-bottom: 1px solid var(--border);
}
#mobile-nav a:last-child { border-bottom: none; }
#mobile-nav .mobile-actions {
  display: flex;
  gap: .75rem;
  margin-top: 1rem;
}

/* ── Hero ────────────────────────────────────────────────── */
#hero {
  padding-top: calc(var(--nav-h) + 4.5rem);
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #EBF5FF 0%, #F4F8FC 50%, #EDF7E5 100%);
  z-index: 0;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .35;
}
.hero-blob-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--blue) 0%, transparent 70%);
  top: -200px; right: -100px;
}
.hero-blob-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--green) 0%, transparent 70%);
  bottom: -100px; left: -100px;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.hero-content { max-width: 580px; }

.hero-headline {
  font-size: clamp(2.8rem, 6vw, 4.2rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 1.2rem;
}
.hero-headline .hl-blue { color: var(--blue); }
.hero-headline .hl-green { color: var(--green); }

.hero-sub {
  font-size: 1.12rem;
  color: var(--mid);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-bottom: 2.5rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .35rem .85rem;
  background: rgba(255,255,255,.8);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--dark-2);
  backdrop-filter: blur(8px);
}
.hero-badge .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
}
.hero-badge .dot-green { background: var(--green); }
.hero-badge .dot-blue  { background: var(--blue); }
.hero-badge .dot-gold  { background: var(--gold); }

/* Hero visual – EU map + server rack illustration (CSS-drawn) */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-card-stack {
  position: relative;
  width: 320px;
  height: 340px;
}
.hero-card {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 1.2rem 1.4rem;
}
.hero-card-main {
  width: 280px;
  top: 30px; left: 20px;
  z-index: 3;
}
.hero-card-back {
  width: 260px;
  top: 10px; left: 30px;
  z-index: 2;
  opacity: .7;
  transform: rotate(-3deg);
}
.hero-card-back2 {
  width: 250px;
  top: 0px; left: 40px;
  z-index: 1;
  opacity: .4;
  transform: rotate(-6deg);
}
.hc-header {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: .9rem;
  padding-bottom: .7rem;
  border-bottom: 1px solid var(--border);
}
.hc-icon {
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.hc-icon-green { background: rgba(122,185,48,.12); }
.hc-icon-blue  { background: rgba(0,174,239,.12); }
.hc-title { font-size: .82rem; font-weight: 700; }
.hc-sub   { font-size: .72rem; color: var(--muted); }
.hc-stat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .3rem 0;
  font-size: .78rem;
}
.hc-stat-label { color: var(--muted); }
.hc-stat-val   { font-weight: 700; }
.hc-stat-val.green { color: var(--green); }
.hc-stat-val.blue  { color: var(--blue); }
.hc-bar {
  height: 5px;
  background: var(--border);
  border-radius: 3px;
  margin-top: .4rem;
  overflow: hidden;
}
.hc-bar-fill {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--blue), var(--green));
}

/* ── Trust strip ─────────────────────────────────────────── */
#trust {
  background: var(--bg-card);
  padding: 4rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.trust-item {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.trust-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}
.trust-icon-shield { background: rgba(122,185,48,.12); color: var(--green); }
.trust-icon-lock   { background: rgba(0,174,239,.12);  color: var(--blue); }
.trust-icon-cloud  { background: rgba(122,185,48,.12); color: var(--green); }
.trust-icon-globe  { background: rgba(0,174,239,.12);  color: var(--blue); }
.trust-item h3 { font-size: .95rem; }
.trust-item p  { font-size: .85rem; color: var(--mid); line-height: 1.55; }

/* ── Pricing cards (shared & VPS) ────────────────────────── */
.pricing-grid {
  display: grid;
  gap: 1.5rem;
}
.pricing-grid-3 { grid-template-columns: repeat(3, 1fr); }
.pricing-grid-4 { grid-template-columns: repeat(4, 1fr); }

.plan-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  transition: box-shadow .2s, border-color .2s, transform .2s;
  position: relative;
}
.plan-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.plan-card.highlight {
  border-color: var(--blue);
  box-shadow: var(--shadow-blue);
}
.plan-card.highlight:hover {
  box-shadow: 0 16px 48px rgba(0,174,239,.28);
  transform: translateY(-4px);
}

.plan-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .28rem .9rem;
  border-radius: 100px;
  white-space: nowrap;
}

.plan-name {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}
.plan-price {
  display: flex;
  align-items: baseline;
  gap: .2rem;
}
.plan-price-amount {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
}
.plan-price-currency {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  align-self: flex-start;
  padding-top: .3rem;
}
.plan-price-period {
  font-size: .82rem;
  color: var(--muted);
}
.plan-desc {
  font-size: .85rem;
  color: var(--mid);
  line-height: 1.5;
  margin-top: -.5rem;
}

/* VPS specs */
.vps-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem;
}
.vps-spec {
  background: var(--bg);
  border-radius: var(--radius-sm);
  padding: .5rem .7rem;
  font-size: .78rem;
}
.vps-spec-label { color: var(--muted); font-size: .7rem; margin-bottom: .1rem; }
.vps-spec-val   { font-weight: 700; color: var(--dark-2); }

.plan-features {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  flex: 1;
}
.plan-feature {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-size: .84rem;
  color: var(--dark-2);
}
.plan-feature svg {
  width: 16px; height: 16px;
  color: var(--green);
  flex-shrink: 0;
}

.plan-cta { width: 100%; justify-content: center; }

.vat-note {
  text-align: center;
  font-size: .78rem;
  color: var(--muted);
  margin-top: 1.5rem;
}

/* ── Domains section ─────────────────────────────────────── */
#domains { background: var(--dark); color: #fff; }
#domains .eyebrow { color: var(--blue); }
#domains .section-head h2 { color: #fff; }
#domains .section-head p  { color: rgba(255,255,255,.6); }

.domain-search-box {
  max-width: 600px;
  margin: 0 auto 2.5rem;
  display: flex;
  gap: 0;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-lg);
  overflow: hidden;
  backdrop-filter: blur(8px);
}
.domain-search-box input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: .9rem 1.2rem;
  font-size: .95rem;
  color: #fff;
  font-family: var(--font-body);
}
.domain-search-box input::placeholder { color: rgba(255,255,255,.4); }
.domain-search-box .btn { border-radius: 0 var(--radius-lg) var(--radius-lg) 0; }

.domain-tlds {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  justify-content: center;
  margin-bottom: 1rem;
}
.domain-tld {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-sm);
  padding: .4rem .9rem;
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255,255,255,.8);
}
.domain-tld span {
  color: var(--green);
  font-size: .72rem;
  margin-left: .3rem;
}
.domain-popular-label {
  text-align: center;
  font-size: .78rem;
  color: rgba(255,255,255,.4);
  margin-bottom: .7rem;
}

/* ── SSL ─────────────────────────────────────────────────── */
#ssl { background: var(--bg); }
.ssl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.ssl-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.6rem;
  position: relative;
  transition: box-shadow .2s, transform .2s;
}
.ssl-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.ssl-free-badge {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  background: rgba(122,185,48,.1);
  color: var(--green-dark);
  border: 1px solid rgba(122,185,48,.25);
  border-radius: 100px;
  font-size: .72rem;
  font-weight: 700;
  padding: .25rem .7rem;
  margin-bottom: 1rem;
}
.ssl-name  { font-size: 1rem; font-weight: 700; margin-bottom: .3rem; }
.ssl-price { font-size: 1.4rem; font-weight: 800; color: var(--blue); margin-bottom: .6rem; }
.ssl-desc  { font-size: .84rem; color: var(--mid); line-height: 1.55; }

/* ── GDPR section ────────────────────────────────────────── */
#gdpr {
  background: linear-gradient(135deg, #0D1B2A 0%, #1C3354 100%);
  color: #fff;
}
#gdpr .eyebrow { color: var(--blue); }
#gdpr h2 { color: #fff; }

.gdpr-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.gdpr-text p {
  color: rgba(255,255,255,.7);
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.gdpr-list {
  display: flex;
  flex-direction: column;
  gap: .65rem;
  margin-bottom: 2rem;
}
.gdpr-list li {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-size: .88rem;
  color: rgba(255,255,255,.85);
}
.gdpr-list li::before {
  content: '';
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(122,185,48,.2);
  border: 1.5px solid var(--green);
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%237AB930'%3E%3Cpath d='M13.5 3.5L6 11 2.5 7.5' stroke='%237AB930' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-size: 11px;
  background-repeat: no-repeat;
  background-position: center;
}

.gdpr-visual {
  display: flex;
  justify-content: center;
}
.gdpr-shield-wrap {
  position: relative;
  width: 280px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gdpr-shield-bg {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(0,174,239,.08);
  border: 1px solid rgba(0,174,239,.15);
}
.gdpr-shield-bg-2 {
  position: absolute;
  inset: 24px;
  border-radius: 50%;
  background: rgba(0,174,239,.05);
  border: 1px solid rgba(0,174,239,.1);
}
.gdpr-shield-icon {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  box-shadow: var(--shadow-blue);
  position: relative;
  z-index: 2;
}
.gdpr-floating-tag {
  position: absolute;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: .5rem .9rem;
  font-size: .75rem;
  font-weight: 700;
  color: var(--dark);
  box-shadow: var(--shadow-md);
  white-space: nowrap;
}
.gdpr-floating-tag.t1 { top: 20px; right: 0; }
.gdpr-floating-tag.t2 { bottom: 20px; left: 0; }
.gdpr-floating-tag .tag-dot {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  margin-right: .4rem;
}

/* ── About / Stats ───────────────────────────────────────── */
#about { background: var(--bg-card); }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-text p {
  color: var(--mid);
  font-size: 1rem;
  line-height: 1.75;
  margin: 1rem 0 1.5rem;
}
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.stat-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.2rem;
  text-align: center;
}
.stat-value {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--blue), var(--green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: .3rem;
}
.stat-label { font-size: .8rem; color: var(--muted); font-weight: 500; }

/* ── FAQ ─────────────────────────────────────────────────── */
#faq { background: var(--bg); }
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.1rem 1.4rem;
  font-size: .95rem;
  font-weight: 600;
  color: var(--dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  transition: background .12s;
}
.faq-q:hover { background: var(--bg); }
.faq-q svg {
  width: 18px; height: 18px;
  color: var(--muted);
  transition: transform .25s;
  flex-shrink: 0;
}
.faq-item.open .faq-q svg { transform: rotate(180deg); color: var(--blue); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s;
  padding: 0 1.4rem;
  font-size: .88rem;
  color: var(--mid);
  line-height: 1.65;
}
.faq-item.open .faq-a {
  max-height: 300px;
  padding: 0 1.4rem 1.1rem;
}

/* ── CTA Banner ──────────────────────────────────────────── */
#cta-banner {
  background: linear-gradient(135deg, var(--green) 0%, #5E9A1F 50%, var(--blue-dark) 100%);
  padding: 4.5rem 0;
  text-align: center;
  color: #fff;
}
#cta-banner h2 { color: #fff; margin-bottom: .85rem; }
#cta-banner p  { color: rgba(255,255,255,.85); font-size: 1.05rem; margin-bottom: 2rem; }
#cta-banner .btn-white {
  background: #fff;
  color: var(--dark);
  border-color: transparent;
}
#cta-banner .btn-white:hover { background: rgba(255,255,255,.9); }

/* ── Footer ──────────────────────────────────────────────── */
#footer {
  background: var(--dark);
  color: rgba(255,255,255,.65);
  padding: 4rem 0 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand img { height: 32px; margin-bottom: 1rem; filter: brightness(0) invert(1); opacity: .9; }
.footer-tagline { font-size: .85rem; line-height: 1.6; max-width: 240px; }
.footer-col h4 {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.9);
  margin-bottom: 1rem;
}
.footer-col a {
  display: block;
  font-size: .85rem;
  color: rgba(255,255,255,.55);
  padding: .3rem 0;
  transition: color .15s;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  font-size: .8rem;
}
.footer-bottom a { color: rgba(255,255,255,.55); transition: color .15s; }
.footer-bottom a:hover { color: #fff; }

/* ── Shared section bg alternation ──────────────────────── */
#shared { background: var(--bg); }
#vps    { background: var(--bg-card); }

/* ── Loading overlay (for locale fetch) ─────────────────── */
#page-loader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity .3s;
}
#page-loader.hidden { opacity: 0; pointer-events: none; }
.loader-logo { height: 48px; animation: pulse 1.2s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.4} }

/* ── Scroll animations ───────────────────────────────────── */
[data-anim] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .5s ease, transform .5s ease;
}
[data-anim].visible {
  opacity: 1;
  transform: translateY(0);
}
[data-anim-delay="1"] { transition-delay: .08s; }
[data-anim-delay="2"] { transition-delay: .16s; }
[data-anim-delay="3"] { transition-delay: .24s; }
[data-anim-delay="4"] { transition-delay: .32s; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .pricing-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .trust-grid     { grid-template-columns: repeat(2, 1fr); }
  .footer-top     { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  section { padding: 3.5rem 0; }
  .nav-links, .nav-actions { display: none; }
  .nav-hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-visual { display: none; }
  .hero-content { max-width: 100%; }
  .pricing-grid-3,
  .pricing-grid-4 { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .ssl-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .gdpr-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .gdpr-visual { display: none; }
  .about-inner { grid-template-columns: 1fr; gap: 2rem; }
  .trust-grid  { grid-template-columns: 1fr; }
  .footer-top  { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: .5rem; text-align: center; }
  h1 { font-size: 2.4rem; }
  h2 { font-size: 1.8rem; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .domain-search-box { flex-direction: column; border-radius: var(--radius-md); }
  .domain-search-box .btn { border-radius: var(--radius-md); }
}

/* ── Print ───────────────────────────────────────────────── */
@media print {
  #navbar, #mobile-nav, #cta-banner, #footer { display: none; }
  body { background: #fff; }
}
