/* ============================================================
   GALDR.EU — Landing Page Styles
   Green / white — clean, minimal, trustworthy
   ============================================================ */

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

:root {
  /* Brand greens — pulled directly from galdr-logo.svg */
  --green:        #16a34a;   /* button fill, icon stroke              */
  --green-dark:   #15803d;   /* hover state                           */
  --green-light:  #f0fdf4;   /* tinted backgrounds                    */
  --green-bright: #4ade80;   /* accents on dark backgrounds           */
  --ink:          #0f2b1a;   /* logo hex bg — footer & dark cards     */

  /* Neutrals */
  --text:         #111827;
  --muted:        #6b7280;
  --border:       #e5e7eb;
  --surface:      #f9fafb;
  --white:        #ffffff;

  /* Radii / shadows / transition */
  --radius:       12px;
  --radius-lg:    20px;
  --shadow-sm:    0 1px 4px rgba(0,0,0,.06);
  --shadow-md:    0 4px 20px rgba(0,0,0,.08);
  --shadow-lg:    0 12px 40px rgba(0,0,0,.11);
  --transition:   .2s cubic-bezier(.4,0,.2,1);
}

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

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section   { padding: 96px 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 600;
  font-size: .925rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), box-shadow var(--transition),
              transform var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn:focus-visible { outline: 3px solid var(--green); outline-offset: 2px; }
.btn:active { transform: scale(.97); }

.btn-primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  box-shadow: 0 4px 16px rgba(22,163,74,.3);
}

.btn-ghost { color: var(--text); }
.btn-ghost:hover { background: var(--surface); }

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

.btn-outline-white {
  background: transparent;
  border-color: rgba(255,255,255,.4);
  color: var(--white);
}
.btn-outline-white:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.1);
}

.btn-white {
  background: var(--white);
  color: var(--green);
  border-color: var(--white);
}
.btn-white:hover { box-shadow: 0 4px 16px rgba(0,0,0,.15); }

.btn-lg    { padding: 14px 30px; font-size: 1rem; border-radius: 10px; }
.btn-block { display: flex; justify-content: center; width: 100%; }

/* ---------- Section Headers ---------- */
.section-header { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.section-tag {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-light);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.section-header h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--text);
}
.section-header p { color: var(--muted); font-size: 1.075rem; }

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,.97);
  transition: box-shadow var(--transition);
}
.navbar.scrolled {
  box-shadow: 0 1px 0 var(--border);
  backdrop-filter: blur(12px);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 68px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 1.25rem;
}
.logo img    { border-radius: 8px; display: block; }
.logo-text   { color: var(--text); }
.logo-tld    { color: var(--green); }

.nav-links { display: flex; gap: 28px; margin-left: 12px; }
.nav-links a {
  font-size: .925rem;
  font-weight: 500;
  color: var(--muted);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--text); }

.nav-actions { display: flex; align-items: center; gap: 10px; margin-left: auto; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--white);
  color: var(--text);
  padding: 152px 0 80px;
  border-bottom: 1px solid var(--border);
}

/* Grid removed — replaced by clean white */
.hero-bg-grid { display: none; }

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green-light);
  border: 1px solid #bbf7d0;
  border-radius: 40px;
  padding: 6px 18px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 28px;
  letter-spacing: .02em;
}
.eu-stars       { color: var(--green); font-size: .7rem; letter-spacing: 2px; }
.eu-stars.small { font-size: .5rem; }

.hero-headline {
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 24px;
  max-width: 800px;
  color: var(--text);
}
.headline-accent { color: var(--green); }

.hero-sub {
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 600px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-cta  { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-bottom: 14px; }
.hero-fine { font-size: .8rem; color: var(--muted); margin-bottom: 20px; }

/* Hero trust bar */
.hero-trust-bar {
  display: flex; align-items: center; gap: 0; flex-wrap: wrap; justify-content: center;
  background: rgba(22,163,74,.07); border: 1px solid rgba(22,163,74,.2);
  border-radius: 999px; padding: 9px 22px; margin-bottom: 56px; gap: 6px;
}
.htb-item { display: flex; align-items: center; gap: 6px; font-size: .78rem; font-weight: 500; color: #166534; white-space: nowrap; }
.htb-sep  { width: 1px; height: 14px; background: rgba(22,163,74,.3); margin: 0 10px; }

/* ---------- Mock App (video-call style with photos) ---------- */
.hero-visual { position: relative; width: 100%; max-width: 860px; }

.mock-app {
  background: #1a1a2e;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.mock-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #111120;
  padding: 12px 16px;
}
.mock-dot        { width: 12px; height: 12px; border-radius: 50%; }
.mock-dot.red    { background: #ff5f57; }
.mock-dot.yellow { background: #febc2e; }
.mock-dot.green  { background: #28c840; }
.mock-title      { margin-left: 12px; font-size: .8rem; color: rgba(255,255,255,.4); flex: 1; }
.mock-timer      { font-size: .75rem; color: rgba(255,255,255,.55); font-variant-numeric: tabular-nums; }

.mock-body { padding: 12px; background: #1a1a2e; }

.mock-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 6px;
  margin-bottom: 10px;
  aspect-ratio: 16/7;
}

.mock-tile {
  background: #2a2a3e;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}
.mock-tile.tile-main {
  grid-row: 1 / 3;
  outline: 2px solid var(--green);
  outline-offset: -2px;
}

/* Real photo fills the tile */
.mock-photo {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/* Name overlay at the bottom of each tile */
.mock-tile-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 8px 7px;
  background: linear-gradient(to top, rgba(0,0,0,.7) 0%, transparent 100%);
  display: flex;
  align-items: center;
  gap: 6px;
}
.mock-name     { font-size: .7rem; color: rgba(255,255,255,.9); font-weight: 500; }
.mock-speaking {
  font-size: .6rem;
  color: var(--green-bright);
  background: rgba(74,222,128,.2);
  padding: 1px 6px;
  border-radius: 10px;
}

.mock-toolbar {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 6px 0 4px;
}

.mock-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.8);
  transition: background var(--transition);
}
.mock-btn:hover  { background: rgba(255,255,255,.2); }
.mock-btn.active { background: var(--green); color: var(--white); }
.mock-btn.end    { background: #e11d48; color: var(--white); }

/* Floating badges */
.trust-badge-float,
.location-badge-float {
  position: absolute;
  display: flex; align-items: center; gap: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 40px;
  padding: 8px 16px;
  font-size: .8rem; font-weight: 600;
  color: var(--text);
  box-shadow: var(--shadow-md);
}
.trust-badge-float   { bottom: 80px; left: -24px; }
.location-badge-float { top: 60px; right: -16px; }

/* ---------- Features ---------- */
.features { background: var(--white); }

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

.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.feature-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

/* Wide card: ink (dark green matching logo) with bright-green accents */
.feature-card.card-wide {
  grid-column: span 1;
  background: var(--ink);
  color: var(--white);
  border-color: transparent;
}
.feature-card.card-wide p  { color: rgba(255,255,255,.6); }
.feature-card.card-wide h3 { color: var(--white); }
.feature-card.card-wide .feature-icon {
  background: rgba(255,255,255,.1) !important;
  color: var(--green-bright) !important;
}

.feature-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}

.feature-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.feature-card p  { font-size: .925rem; color: var(--muted); line-height: 1.65; }

.feature-list { margin-top: 16px; display: flex; flex-direction: column; gap: 6px; }
.feature-list li {
  font-size: .875rem;
  color: rgba(255,255,255,.65);
  display: flex; align-items: center; gap: 8px;
}
.feature-list li::before { content: "✓"; color: var(--green-bright); font-weight: 700; }

/* ---------- Security ---------- */
.security { background: var(--surface); }

.security-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.security-content .section-tag { display: inline-block; }
.security-content h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin: 12px 0 18px;
  color: var(--text);
}
.security-content > p { color: var(--muted); font-size: 1.05rem; line-height: 1.7; margin-bottom: 32px; }

.security-points { display: flex; flex-direction: column; gap: 24px; }
.security-point  { display: flex; gap: 16px; align-items: flex-start; }
.security-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  background: var(--green-light);
  border: 1px solid #bbf7d0;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--green);
}
.security-point strong { display: block; font-size: .975rem; color: var(--text); margin-bottom: 4px; }
.security-point p      { font-size: .875rem; color: var(--muted); }

/* EU Map Card */
.eu-map-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

/* Datacenter rows */
.dc-label {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.dc-row {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .75rem;
  border-radius: 10px;
  margin-bottom: .75rem;
  background: var(--green-light);
  border: 1px solid #bbf7d0;
}
.dc-row:last-of-type { margin-bottom: 1.5rem; }
.dc-row-flag { font-size: 1.4rem; line-height: 1; }
.dc-row-name { font-size: .85rem; font-weight: 600; color: var(--text); }
.dc-row-sub  { font-size: .72rem; color: var(--muted); }
.dc-status {
  margin-left: auto;
  font-size: .65rem; font-weight: 600;
  padding: 2px 8px; border-radius: 99px;
}
.dc-status-active  { background: #dcfce7; color: #15803d; }
.dc-status-standby { background: var(--surface); color: var(--muted); border: 1px solid var(--border); }

.cert-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.cert-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--green-light);
  border: 1px solid #bbf7d0;
  border-radius: 6px;
  padding: 6px 12px;
  font-size: .8rem; font-weight: 600;
  color: var(--green-dark);
}

/* ---------- EU Stripe ---------- */
.eu-stripe { background: var(--green); color: var(--white); padding: 40px 0; }
.eu-stripe-inner {
  display: flex; align-items: center;
  justify-content: center; gap: 0; flex-wrap: wrap;
}
.eu-stripe-item {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 48px; text-align: left;
}
.eu-stripe-item .eu-flag { font-size: 1.75rem; }
.eu-stripe-item strong   { display: block; font-size: 1rem; margin-bottom: 2px; }
.eu-stripe-item span:last-child { font-size: .85rem; opacity: .75; }
.eu-stripe-divider { width: 1px; height: 48px; background: rgba(255,255,255,.3); }

/* ---------- Sovereignty section ---------- */
.sovereignty { background: #f0fdf4; border-top: 1px solid #dcfce7; border-bottom: 1px solid #dcfce7; }
.sov-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.sov-left h2 { margin-bottom: 16px; }
.sov-left p  { color: var(--muted); line-height: 1.7; margin-bottom: 16px; }
.sov-left p strong { color: var(--text); }
.sov-left .btn { margin-top: 8px; }

.sov-compare { background: var(--white); border-radius: 16px; border: 1px solid #e2e8f0; overflow: hidden; box-shadow: 0 4px 24px rgba(0,0,0,.06); }
.sov-row { display: grid; grid-template-columns: 1fr 80px 110px; align-items: center; padding: 11px 20px; font-size: .87rem; border-bottom: 1px solid #f1f5f9; }
.sov-row:last-child { border-bottom: none; }
.sov-row-head { background: #f8fafc; font-weight: 600; font-size: .8rem; color: var(--muted); padding: 10px 20px; }
.sov-col-label { text-align: center; }
.sov-other { color: var(--muted); }
.sov-yes  { text-align: center; color: #16a34a; font-weight: 700; font-size: 1rem; }
.sov-no   { text-align: center; color: #ef4444; font-weight: 700; font-size: 1rem; }
.sov-maybe { text-align: center; color: #f59e0b; font-size: .78rem; font-weight: 500; }

/* ---------- Plans ---------- */
.plans { background: var(--white); }

.plans-toggle {
  display: flex; gap: 4px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px; padding: 4px;
  width: fit-content; margin: 0 auto 48px;
}
.toggle-btn {
  padding: 8px 20px; border-radius: 8px;
  font-size: .9rem; font-weight: 600;
  cursor: pointer; border: none; background: none;
  color: var(--muted);
  display: flex; align-items: center; gap: 8px;
  transition: background var(--transition), color var(--transition);
}
.toggle-btn.active { background: var(--white); color: var(--text); box-shadow: var(--shadow-sm); }
.save-badge {
  font-size: .7rem;
  background: #dcfce7; color: var(--green);
  padding: 2px 8px; border-radius: 20px; font-weight: 700;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px; align-items: start;
  max-width: 780px; margin: 0 auto;
}

.plan-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px; position: relative;
}
.plan-card.plan-featured {
  background: var(--ink);
  border-color: var(--green);
  box-shadow: 0 0 0 2px var(--green), var(--shadow-lg);
  color: var(--white);
  transform: scale(1.03);
}
.plan-featured .plan-header h3 { color: var(--white); }
.plan-featured .plan-header p  { color: rgba(255,255,255,.6); }
.plan-featured .plan-price     { color: var(--white); }
.plan-featured .plan-features li { color: rgba(255,255,255,.75); }

.plan-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--green); color: var(--white);
  font-size: .75rem; font-weight: 700; padding: 4px 16px;
  border-radius: 20px; white-space: nowrap;
}

.plan-header    { margin-bottom: 20px; }
.plan-header h3 { font-size: 1.2rem; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.plan-header p  { font-size: .875rem; color: var(--muted); }

.plan-price   { margin-bottom: 24px; display: flex; align-items: baseline; gap: 4px; }
.price-amount { font-size: 2.5rem; font-weight: 800; color: var(--text); }
.price-period { font-size: .875rem; color: var(--muted); }
.plan-featured .price-amount { color: var(--white); }
.plan-featured .price-period { color: rgba(255,255,255,.5); }

.plan-features { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.plan-features li {
  display: flex; align-items: center; gap: 10px;
  font-size: .875rem; color: var(--muted);
}
.plan-featured .plan-features li svg { stroke: var(--green-bright); }

/* ---------- About ---------- */
.about { background: var(--white); }
.about-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.about-content .section-tag { display: inline-block; }
.about-content h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800; margin: 12px 0 20px; color: var(--text);
}
.about-content p { color: var(--muted); line-height: 1.7; margin-bottom: 14px; font-size: 1rem; }

.flag-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px; text-align: center; font-size: 2.5rem; margin-bottom: 16px;
}
.flags-caption { font-size: .85rem; color: var(--muted); text-align: center; }

/* ---------- CTA Section ---------- */
.cta-section {
  background: linear-gradient(135deg, var(--ink) 0%, #1b4d2e 100%);
  color: var(--white);
  padding: 80px 0;
}
.cta-inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 40px; flex-wrap: wrap;
}
.cta-inner h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800; margin-bottom: 8px;
}
.cta-inner p  { color: rgba(255,255,255,.65); font-size: 1rem; }
.cta-actions  { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,.55);
  padding: 64px 0 0;
}
.footer-inner {
  display: grid; grid-template-columns: 240px 1fr;
  gap: 64px; padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand .logo       { margin-bottom: 12px; }
.footer-brand .logo-text  { color: var(--white); }
.footer-brand .logo-tld   { color: var(--green-bright); }
.footer-brand > p         { font-size: .875rem; line-height: 1.6; margin-bottom: 16px; }

.footer-cert-row { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-cert {
  font-size: .75rem; font-weight: 600;
  background: rgba(255,255,255,.08);
  padding: 4px 10px; border-radius: 6px;
  color: rgba(255,255,255,.65);
}

.footer-links { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.footer-col   { display: flex; flex-direction: column; gap: 10px; }
.footer-col h4 {
  font-size: .8rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: rgba(255,255,255,.9); margin-bottom: 4px;
}
.footer-col a {
  font-size: .875rem; color: rgba(255,255,255,.45);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--white); }

.footer-bottom { padding: 20px 0; }
.footer-bottom-inner {
  display: flex; justify-content: space-between;
  font-size: .8rem; color: rgba(255,255,255,.3);
  flex-wrap: wrap; gap: 8px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .features-grid { grid-template-columns: 1fr 1fr; }
  .feature-card.card-wide { grid-column: span 2; }
  .security-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-inner    { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }

  /* Nav */
  .nav-links, .nav-actions { display: none; }
  .nav-hamburger { display: flex; }
  .navbar.menu-open .nav-links {
    display: flex; flex-direction: column;
    position: fixed; top: 68px; left: 0; right: 0;
    background: var(--white); padding: 24px; gap: 16px;
    box-shadow: var(--shadow-lg); border-top: 1px solid var(--border);
  }
  .navbar.menu-open .nav-actions {
    display: flex;
    position: fixed; top: 68px; left: 0; right: 0;
    background: var(--white); padding: 0 24px 24px; gap: 10px;
    box-shadow: var(--shadow-lg);
    margin-top: calc(3 * 16px + 3 * 24px + 24px);
  }

  /* Hero */
  .hero { padding: 120px 0 64px; }
  .hero-cta { flex-direction: column; align-items: center; }
  .trust-badge-float    { display: none; }
  .location-badge-float { display: none; }
  .mock-grid { grid-template-columns: 1fr 1fr; aspect-ratio: auto; }
  .mock-tile.tile-main  { grid-column: span 2; }

  /* Features */
  .features-grid { grid-template-columns: 1fr; }
  .feature-card.card-wide { grid-column: span 1; }

  /* Plans */
  .plans-grid { grid-template-columns: 1fr; }
  .plan-card.plan-featured { transform: none; }

  /* EU Stripe */
  .eu-stripe-inner { flex-direction: column; gap: 24px; }
  .eu-stripe-divider { display: none; }
  .eu-stripe-item    { padding: 8px 24px; }
  .sov-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-trust-bar { border-radius: 16px; padding: 12px 16px; }
  .htb-sep { display: none; }
  .htb-item { font-size: .75rem; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }

  /* CTA */
  .cta-inner   { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
}

@media (max-width: 480px) {
  .plans-toggle { flex-direction: column; }
  .footer-links { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */

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

.hero-badge    { animation: fadeInUp .6s ease both; animation-delay: .00s; }
.hero-headline { animation: fadeInUp .6s ease both; animation-delay: .08s; }
.hero-sub      { animation: fadeInUp .6s ease both; animation-delay: .16s; }
.hero-cta      { animation: fadeInUp .6s ease both; animation-delay: .24s; }
.hero-fine     { animation: fadeInUp .6s ease both; animation-delay: .32s; }
.hero-visual   { animation: fadeInUp .7s ease both; animation-delay: .40s; }

/* ============================================================
   INNER PAGES (legal, contact, etc.)
   ============================================================ */

.inner-hero {
  position: relative;
  background: var(--ink);
  padding: 128px 0 72px;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}
.inner-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.inner-hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 80px;
  background: linear-gradient(to bottom, transparent, var(--ink));
  pointer-events: none;
}
.inner-hero .container { position: relative; z-index: 1; }
.inner-hero .section-tag {
  display: inline-block;
  font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em;
  color: var(--green-bright); background: rgba(74,222,128,.12);
  border: 1px solid rgba(74,222,128,.25);
  border-radius: 20px; padding: 5px 14px; margin-bottom: 20px;
}
.inner-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 800; margin-bottom: 14px; letter-spacing: -.02em;
}
.inner-hero p { color: rgba(255,255,255,.55); font-size: .95rem; }

.legal-wrap {
  display: grid; grid-template-columns: 240px 1fr;
  gap: 56px; max-width: 1040px; margin: 72px auto 100px; padding: 0 24px;
  align-items: start;
}
@media (max-width: 820px) {
  .legal-wrap { grid-template-columns: 1fr; gap: 0; }
  .legal-toc  { display: none; }
}

.legal-toc {
  position: sticky; top: 96px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px 20px; box-shadow: var(--shadow-sm);
}
.legal-toc h4 {
  font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em;
  color: var(--muted); margin-bottom: 14px; padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.legal-toc a {
  display: flex; align-items: center; gap: 8px; font-size: .825rem; color: var(--muted);
  padding: 7px 10px; margin: 0 -10px; border-radius: 8px; line-height: 1.4;
  transition: background var(--transition), color var(--transition);
}
.legal-toc a::before {
  content: ''; display: block; width: 5px; height: 5px;
  border-radius: 50%; background: var(--border); flex-shrink: 0;
  transition: background var(--transition);
}
.legal-toc a:hover { color: var(--green); background: var(--green-light); }
.legal-toc a:hover::before { background: var(--green); }

.legal-body { min-width: 0; }
.legal-body h2 {
  font-size: 1.25rem; font-weight: 700; margin: 48px 0 14px; color: var(--text);
  scroll-margin-top: 100px; display: flex; align-items: center; gap: 12px;
}
.legal-body h2::before {
  content: ''; display: block; width: 4px; height: 22px;
  background: var(--green); border-radius: 4px; flex-shrink: 0;
}
.legal-body h2:first-child { margin-top: 0; }
.legal-body h3 { font-size: 1rem; font-weight: 600; margin: 28px 0 8px; color: var(--text); }
.legal-body p  { color: var(--muted); line-height: 1.8; margin-bottom: 16px; font-size: .95rem; }
.legal-body ul { margin: 0 0 20px 0; list-style: none; display: flex; flex-direction: column; gap: 8px; }
.legal-body ul li {
  color: var(--muted); line-height: 1.7; font-size: .95rem;
  padding-left: 20px; position: relative;
}
.legal-body ul li::before { content: '›'; position: absolute; left: 4px; color: var(--green); font-weight: 700; }
.legal-body a  { color: var(--green); text-decoration: underline; text-underline-offset: 2px; }
.legal-body strong { color: var(--text); font-weight: 600; }
.legal-divider { border: none; border-top: 1px solid var(--border); margin: 40px 0; }

.contact-wrap  { max-width: 860px; margin: 72px auto 100px; padding: 0 24px; }
.contact-grid  { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 8px; }
@media (max-width: 640px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px 28px;
  transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
}
.contact-card:hover { box-shadow: var(--shadow-md); border-color: rgba(22,163,74,.2); transform: translateY(-2px); }
.contact-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.contact-card p  { color: var(--muted); font-size: .875rem; line-height: 1.65; margin-bottom: 20px; }
.contact-card a.btn { display: inline-flex; font-size: .875rem; }

.inner-placeholder { max-width: 560px; margin: 96px auto 120px; padding: 0 24px; text-align: center; }
.inner-placeholder .placeholder-icon { font-size: 3.5rem; margin-bottom: 28px; }
.inner-placeholder h2 { font-size: 1.6rem; font-weight: 800; margin-bottom: 14px; color: var(--text); }
.inner-placeholder p  { color: var(--muted); margin-bottom: 32px; font-size: 1rem; line-height: 1.7; }
