/* ===== Reset & base ===== */
:root {
  --teal: #0d9488;
  --teal-light: #2dd4bf;
  --teal-dark: #0f766e;
  --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255,255,255,0.04);
  --shadow-card-hover: 0 24px 48px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(45, 212, 191, 0.15);
  --shadow-glow-teal: 0 0 20px rgba(13, 148, 136, 0.25);
  --shadow-btn: 0 4px 14px rgba(13, 148, 136, 0.35);
  --shadow-btn-hover: 0 8px 24px rgba(13, 148, 136, 0.45);
}
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #e2e8f0;
  background: linear-gradient(90deg, #052e32 0%, #020617 30%, #0c0a1d 65%, #1e1b4b 100%);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

/* ===== Fundal – gradient închis teal → indigo ===== */
.bg-animation {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}
.bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #052e32 0%, #020617 25%, #0c0a1d 55%, #1e1b4b 85%, #1a1642 100%);
  opacity: 1;
}
/* Textură discretă – linii diagonale fine */
.bg-texture {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 2px,
    rgba(255, 255, 255, 0.03) 2px,
    rgba(255, 255, 255, 0.03) 3px
  );
  background-size: 8px 8px;
}
/* Zgârietură / noise foarte discret – overlay uniform */
.bg-noise {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
}
.bg-esim-watermark {
  position: absolute;
  font-size: clamp(8rem, 25vw, 18rem);
  font-weight: 900;
  color: rgba(13, 148, 136, 0.04);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-12deg);
  white-space: nowrap;
  letter-spacing: -0.04em;
  user-select: none;
  animation: bg-float 20s ease-in-out infinite;
}
.bg-esim-watermark-2 {
  font-size: clamp(6rem, 18vw, 14rem);
  top: 55%;
  left: 48%;
  color: rgba(99, 102, 241, 0.03);
  transform: translate(-50%, -50%) rotate(8deg);
  animation: bg-float-2 18s ease-in-out infinite;
}
@keyframes bg-float {
  0%, 100% { transform: translate(-50%, -50%) rotate(-12deg) translateY(0); }
  50% { transform: translate(-50%, -50%) rotate(-12deg) translateY(-8px); }
}
@keyframes bg-float-2 {
  0%, 100% { transform: translate(-50%, -50%) rotate(8deg) translateY(0); }
  50% { transform: translate(-50%, -50%) rotate(8deg) translateY(6px); }
}
.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.5;
  animation: bg-grid-pulse 8s ease-in-out infinite;
}
@keyframes bg-grid-pulse {
  0%, 100% { opacity: 0.45; }
  50% { opacity: 0.55; }
}
.bg-circuit,
.bg-nodes,
.bg-nodes span,
.bg-lines,
.bg-lines span,
.bg-cards,
.bg-cards span,
.bg-chips,
.bg-chips span {
  opacity: 0;
  pointer-events: none;
}

img { max-width: 100%; height: auto; display: block; }
a { color: #0d9488; text-decoration: none; }
a:hover { text-decoration: underline; }
ul, ol { margin: 0 0 1rem; padding-left: 1.25rem; }
p { margin: 0 0 1rem; }

/* ===== Skip link ===== */
.skip-link {
  position: absolute;
  top: -3rem;
  left: 1rem;
  z-index: 100;
  padding: 0.5rem 1rem;
  background: #0f766e;
  color: #fff;
  border-radius: 0.25rem;
  transition: top 0.2s;
}
.skip-link:focus { top: 1rem; outline: 2px solid #0f766e; outline-offset: 2px; }

/* ===== Container ===== */
.container {
  width: 100%;
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media (max-width: 480px) {
  .container { padding: 0 1rem; }
}

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(71, 85, 105, 0.5);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  flex-wrap: wrap;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.15rem;
  color: #f1f5f9;
  text-decoration: none;
}
.logo:hover { text-decoration: none; color: #2dd4bf; }
.logo:hover .logo-svg { filter: brightness(1.08); }
.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 0;
  position: relative;
  width: 52px;
  height: 52px;
}
.logo-svg {
  display: block;
  border-radius: 10px;
  transition: filter 0.2s;
  position: relative;
  z-index: 1;
}
.logo-6g-orbit {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  animation: logo6g-orbit 6s linear infinite;
  pointer-events: none;
}
.logo-6g {
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #fff;
  background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
  padding: 0.2em 0.45em;
  border-radius: 5px;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.35), 0 2px 8px rgba(13, 148, 136, 0.45);
  white-space: nowrap;
  animation: logo-badge-pulse 4s ease-in-out infinite;
}
@keyframes logo-badge-pulse {
  0%, 100% { box-shadow: 0 0 0 1px rgba(255,255,255,0.35), 0 2px 8px rgba(13, 148, 136, 0.45); }
  50% { box-shadow: 0 0 0 1px rgba(255,255,255,0.4), 0 4px 16px rgba(13, 148, 136, 0.55); }
}
@keyframes logo6g-orbit {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.logo-text {
  font-weight: 700;
  letter-spacing: -0.02em;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  min-width: 44px;
  min-height: 44px;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 2px solid rgba(13, 148, 136, 0.7);
  border-radius: 10px;
  background: rgba(15, 23, 42, 0.95);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.08);
}
.menu-toggle span {
  display: block;
  width: 20px;
  height: 2.5px;
  background: #2dd4bf;
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
.menu-toggle:hover,
.menu-toggle:focus-visible {
  border-color: #0d9488;
  background: rgba(13, 148, 136, 0.15);
}
.menu-toggle:hover span,
.menu-toggle:focus-visible span {
  background: #5eead4;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.main-nav a {
  color: #b7c7dc;
  font-weight: 500;
  padding: 0.25rem 0;
  display: block;
  position: relative;
  transition: color 0.25s ease;
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--teal-light), var(--teal));
  border-radius: 1px;
  transition: width 0.3s ease;
}
.main-nav a:hover { color: #2dd4bf; }
.main-nav a:hover::after { width: 100%; }

.nav-cta { flex-shrink: 0; }

.lang-switch { display: flex; gap: 0.35rem; align-items: center; }
.lang-btn {
  padding: 0.25rem;
  border: 1px solid rgba(71, 85, 105, 0.8);
  border-radius: 6px;
  background: rgba(30, 41, 59, 0.8);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.lang-btn:hover, .lang-btn[aria-pressed="true"] { background: rgba(51, 65, 85, 0.9); border-color: #8ea3bb; }
.lang-btn[aria-pressed="true"] { box-shadow: 0 0 0 2px rgba(13, 148, 136, 0.4); }
.flag-icon { display: block; line-height: 0; }
.flag-icon svg { display: block; border-radius: 2px; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  min-height: 44px;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: background 0.25s ease, color 0.2s, transform 0.2s ease, box-shadow 0.25s ease;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}
.btn:focus-visible { outline: 2px solid #0f766e; outline-offset: 2px; }
.btn-primary {
  background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
  color: #fff;
  box-shadow: var(--shadow-btn);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #0f766e 0%, #115e59 100%);
  text-decoration: none;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-btn-hover);
}
.btn-ghost {
  background: rgba(13, 148, 136, 0.08);
  color: #0f766e;
  border: 2px solid #0d9488;
  box-shadow: 0 0 0 0 rgba(13, 148, 136, 0.2);
}
.btn-ghost:hover {
  background: rgba(13, 148, 136, 0.15);
  text-decoration: none;
  color: #0f766e;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(13, 148, 136, 0.2);
}
.btn-small { padding: 0.5rem 1rem; font-size: 0.9rem; min-height: 44px; }
.btn-social { gap: 0.5rem; }

.copy-btn { gap: 0.5rem; }

/* ===== Sections ===== */
.section {
  padding: 3rem 0;
  background: rgba(15, 23, 42, 0.85);
  position: relative;
  z-index: 0;
}
.section:nth-of-type(odd) { background: rgba(30, 41, 59, 0.9); }
.section-title {
  margin: 0 0 1.5rem;
  font-size: 1.75rem;
  font-weight: 800;
  text-align: center;
  color: #f1f5f9;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #cbd5e1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
  position: relative;
}
.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  margin: 0.75rem auto 0;
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
  border-radius: 2px;
  box-shadow: 0 0 12px rgba(13, 148, 136, 0.4);
  animation: title-line-shimmer 3s ease-in-out infinite;
}
@keyframes title-line-shimmer {
  0%, 100% { opacity: 0.95; transform: scaleX(1); }
  50% { opacity: 0.75; transform: scaleX(1.05); }
}

/* ===== Hero ===== */
.hero { padding-top: 2rem; padding-bottom: 3rem; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
.hero-signal-wrap { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.5rem; flex-wrap: wrap; }
.signal-bars {
  display: inline-flex;
  align-items: flex-end;
  gap: 3px;
  height: 14px;
}
.signal-bar {
  width: 4px;
  min-height: 4px;
  border-radius: 2px;
  background: #0d9488;
  animation: signalPulse 1.2s ease-in-out infinite;
}
.signal-bar:nth-child(1) { height: 6px;  animation-delay: 0s; }
.signal-bar:nth-child(2) { height: 9px;  animation-delay: 0.15s; }
.signal-bar:nth-child(3) { height: 12px; animation-delay: 0.3s; }
.signal-bar:nth-child(4) { height: 10px; animation-delay: 0.45s; }
.signal-bar:nth-child(5) { height: 14px; animation-delay: 0.6s; }
@keyframes signalPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.6); transform-origin: bottom; }
  50% { opacity: 1; transform: scaleY(1); transform-origin: bottom; }
}
.hero-copy .kicker {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--teal-light);
  text-shadow: 0 0 20px rgba(13, 148, 136, 0.35);
  animation: kicker-shine 3s ease-in-out infinite;
}
@keyframes kicker-shine {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.85; }
}
.hero-copy h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  line-height: 1.25;
  color: #f8fafc;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}
.hero-copy p { color: #b7c7dc; max-width: 42ch; }
.hero-badges-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin: 0 0 1rem;
  font-size: 0.85rem;
  color: #b7c7dc;
}
.hero-badge-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.hero-badges-row .hero-badge-item::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2dd4bf;
}
.hero-actions { display: flex; gap: 1rem; margin: 1.25rem 0; flex-wrap: wrap; }
.hero-badges {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-badges li {
  padding: 0.35rem 0.75rem;
  background: rgba(13, 148, 136, 0.25);
  border-radius: 9999px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #99f6e4;
  border: 1px solid rgba(45, 212, 191, 0.3);
  box-shadow: 0 2px 8px rgba(13, 148, 136, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.hero-badges li:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(13, 148, 136, 0.3);
}
.hero-media {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255,255,255,0.06);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.hero-media:hover {
  box-shadow: 0 28px 56px rgba(0, 0, 0, 0.35), var(--shadow-glow-teal);
  transform: scale(1.02);
}
.hero-media img { width: 100%; object-fit: cover; }

/* ===== Glass cards ===== */
.glass-card {
  background: rgba(30, 41, 59, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(71, 85, 105, 0.6);
  border-radius: 14px;
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}
.glass-card:hover {
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(45, 212, 191, 0.2);
}
.glass-card h3 { margin: 0 0 0.5rem; font-size: 1.1rem; color: #f1f5f9; }
.glass-card p { margin: 0 0 0.75rem; font-size: 0.95rem; color: #b7c7dc; }
.glass-card ul, .glass-card ol { margin: 0 0 0.75rem; color: #b7c7dc; }

/* ===== Benefits ===== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

/* ===== Despre noi ===== */
.about-section { background: rgba(30, 41, 59, 0.9); }
.about-content { max-width: 42rem; margin: 0 auto; }
.about-content p { margin: 0 0 0.75rem; }
.about-content p:last-child { margin-bottom: 0; }

/* ===== Rețele compatibile ===== */
.networks-section { background: rgba(15, 23, 42, 0.82); }
.networks-intro {
  text-align: center;
  color: #dbeafe;
  max-width: 920px;
  margin: 0 auto 1rem;
}
.networks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}
.network-card {
  border: 1px solid rgba(45, 212, 191, 0.2);
  background: linear-gradient(160deg, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.76));
}
.network-card h3 {
  margin: 0 0 0.5rem;
  color: #f8fafc;
}
.network-card p {
  margin: 0;
  color: #cbd5e1;
  font-size: 0.92rem;
  line-height: 1.55;
}
.networks-note {
  margin: 1rem auto 0;
  max-width: 980px;
  font-size: 0.8rem;
  color: #94a3b8;
  text-align: center;
}

/* ===== Țări acoperite (aliniat la glass-card / planuri) ===== */
.countries-section { background: rgba(15, 23, 42, 0.85); }
.countries-subtitle {
  text-align: center;
  margin: 0 auto 1.25rem;
  max-width: 42ch;
  color: #b7c7dc;
  font-size: 1.05rem;
  line-height: 1.45;
}
.countries-grid {
  margin: 0 auto;
  max-width: 56rem;
  padding: 1rem 1.1rem !important;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(104px, 1fr));
  gap: 0.45rem;
  list-style: none;
  font-size: 0.78rem;
  color: #e2e8f0;
  line-height: 1.25;
}
.country-card {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.3rem 0.45rem;
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(71, 85, 105, 0.65);
  border-radius: 8px;
  min-width: 0;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.country-card:hover {
  transform: translateY(-1px);
  background: rgba(30, 41, 59, 0.95);
  border-color: rgba(13, 148, 136, 0.45);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(45, 212, 191, 0.12);
}
.country-flag-img {
  width: 20px;
  height: 15px;
  object-fit: cover;
  border-radius: 2px;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.35);
}
.country-card-name {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 500;
  color: #f1f5f9;
}

/* ===== TV Alecs ===== */
.tvalecs-section { background: rgba(30, 41, 59, 0.9); }
.tvalecs-intro { text-align: center; margin: 0 auto 1.5rem; max-width: 36ch; font-size: 1.05rem; color: #b7c7dc; }
.tvalecs-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
  margin-bottom: 1.5rem;
}
.tvalecs-features { list-style: none; padding: 1.25rem 1.5rem; margin: 0; }
.tvalecs-features li { margin: 0 0 0.5rem; padding-left: 1.25rem; position: relative; }
.tvalecs-features li::before { content: ''; position: absolute; left: 0; top: 0.5em; width: 6px; height: 6px; border-radius: 50%; background: #0d9488; }
.tvalecs-features li:last-child { margin-bottom: 0; }
.tvalecs-screens {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.tvalecs-screens img {
  display: block;
  width: auto;
  max-width: 132px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  border: 1px solid rgba(0,0,0,0.06);
  flex: 0 0 auto;
  object-fit: contain;
}
.tvalecs-cta-text { text-align: center; margin: 0 0 1rem; font-weight: 500; color: #f1f5f9; }
.tvalecs-download { display: inline-flex; margin: 0 auto; }
.tvalecs-section .container { text-align: center; }

/* ===== App eSIM (Android) ===== */
.esimapp-section { background: rgba(17, 24, 39, 0.92); }
.esimapp-intro { text-align: center; margin: 0 auto 1.5rem; max-width: 42ch; font-size: 1.05rem; color: #b7c7dc; }
.esimapp-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
  margin-bottom: 1.5rem;
}
.esimapp-features { list-style: none; padding: 1.25rem 1.5rem; margin: 0; text-align: left; }
.esimapp-features li { margin: 0 0 0.5rem; padding-left: 1.25rem; position: relative; }
.esimapp-features li::before { content: ''; position: absolute; left: 0; top: 0.5em; width: 6px; height: 6px; border-radius: 50%; background: #6366f1; }
.esimapp-features li:last-child { margin-bottom: 0; }
.esimapp-screens {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.esimapp-screens img {
  display: block;
  width: auto;
  max-width: 132px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  border: 1px solid rgba(0,0,0,0.06);
  flex: 0 0 auto;
  object-fit: contain;
}
.esimapp-cta-text { text-align: center; margin: 0 0 1rem; font-weight: 500; color: #f1f5f9; }
.esimapp-download { display: inline-flex; margin: 0 auto; }
.esimapp-section .container { text-align: center; }

/* ===== Salt Bank ===== */
.saltbank-section { background: rgba(15, 23, 42, 0.9); }
.saltbank-intro { text-align: center; margin: 0 auto 1.25rem; max-width: 42ch; font-size: 1.05rem; color: #b7c7dc; }
.saltbank-download { display: inline-flex; margin: 0 auto 1rem; }
.saltbank-referral {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding: 1rem 1.25rem;
  background: rgba(13, 148, 136, 0.1);
  border-radius: 14px;
  border: 1px solid rgba(13, 148, 136, 0.3);
  box-shadow: 0 4px 20px rgba(13, 148, 136, 0.12);
  transition: box-shadow 0.3s ease;
}
.saltbank-referral:hover {
  box-shadow: 0 6px 28px rgba(13, 148, 136, 0.2);
}
.saltbank-referral-label { font-size: 0.9rem; font-weight: 600; color: #b7c7dc; }
.saltbank-referral-code {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: #0f766e;
  background: rgba(255, 255, 255, 0.12);
  padding: 0.35rem 0.75rem;
  border-radius: 8px;
  border: 2px solid #0d9488;
}
.saltbank-why { margin-bottom: 1rem; }
.saltbank-why ul { margin: 0; padding-left: 1.25rem; }
.saltbank-why li { margin: 0 0 0.35rem; }
.saltbank-note p { margin: 0; font-size: 0.95rem; color: #b7c7dc; }
.saltbank-why h3 { color: #f1f5f9; }
.saltbank-note h3 { color: #f1f5f9; }
.saltbank-section .container { text-align: center; }

/* ===== Plans ===== */
.plan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr));
  gap: 1.5rem;
  perspective: 600px;
}
.plan-card {
  background: rgba(30, 41, 59, 0.92);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(71, 85, 105, 0.6);
  box-shadow: var(--shadow-card), 0 0 0 1px rgba(255,255,255,0.03);
  transition: box-shadow 0.4s ease, transform 0.4s ease, border-color 0.3s ease;
  transform-style: preserve-3d;
  transform: perspective(600px) translateZ(0);
  will-change: transform;
}
@media (hover: hover) {
  .plan-card:hover {
    box-shadow:
      0 28px 56px rgba(0, 0, 0, 0.28),
      0 20px 40px rgba(13, 148, 136, 0.22),
      0 0 0 2px rgba(13, 148, 136, 0.3);
    border-color: rgba(45, 212, 191, 0.25);
    transform: perspective(500px) translateY(-18px) translateZ(32px) rotateX(18deg) rotateY(-10deg);
  }
}
.plan-image-link { display: none; }
.plan-image-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.plan-card:hover .plan-image-link img {
  transform: scale(1.06);
}
.plan-content { padding: 1.25rem; }
.plan-coverage { font-size: 0.9rem; color: #b7c7dc; margin: 0.35rem 0; }
.plan-payment { font-size: 0.85rem; color: #8ea3bb; display: block; margin-top: 0.25rem; }
.price-lei { font-weight: 500; color: #b7c7dc; font-size: 0.9em; }
.plan-badge-recommended {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 6px;
  margin-bottom: 0.5rem;
  box-shadow: 0 2px 10px rgba(13, 148, 136, 0.4);
  animation: badge-glow 2.5s ease-in-out infinite;
}
@keyframes badge-glow {
  0%, 100% { box-shadow: 0 2px 10px rgba(13, 148, 136, 0.4); }
  50% { box-shadow: 0 4px 20px rgba(13, 148, 136, 0.6); }
}
.plan-badge {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 6px;
  margin-bottom: 0.5rem;
}
.plan-badge-hot {
  background: linear-gradient(135deg, #ff4d4d 0%, #ff1f1f 45%, #b30000 100%);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  text-shadow: 0 0 6px rgba(255, 255, 255, 0.45), 0 0 14px rgba(255, 60, 60, 0.9);
  box-shadow: 0 6px 18px rgba(255, 42, 42, 0.75);
  animation: hot-badge-pulse 1.15s ease-in-out infinite, hot-badge-flicker 2.4s linear infinite;
}
@keyframes hot-badge-pulse {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.98; }
  50% { transform: translateY(-1px) scale(1.03); opacity: 1; }
}
@keyframes hot-badge-flicker {
  0%, 100% { filter: brightness(1); }
  45% { filter: brightness(1.06); }
  50% { filter: brightness(1.14); }
  55% { filter: brightness(1.06); }
}
.plan-card-hot {
  border-color: rgba(255, 52, 52, 0.9);
  box-shadow:
    0 0 0 1px rgba(255, 52, 52, 0.55),
    0 16px 34px rgba(120, 0, 0, 0.48),
    0 0 34px rgba(255, 36, 36, 0.55);
  animation: hot-card-glow 1.8s ease-in-out infinite;
}
/* Chenar roșu evidențiat (ex. plan Connect – cel mai cumpărat) */
.plan-card-hot-redframe {
  border-width: 2px;
  border-style: solid;
  border-color: #dc2626;
  box-shadow:
    0 0 0 2px rgba(220, 38, 38, 0.75),
    0 0 0 4px rgba(239, 68, 68, 0.35),
    0 16px 38px rgba(127, 29, 29, 0.55),
    0 0 40px rgba(248, 113, 113, 0.45);
}
@keyframes hot-card-glow {
  0%, 100% { transform: translateY(0); opacity: 0.98; }
  50% { transform: translateY(-1px); opacity: 1; }
}
@media (hover: hover) {
  .plan-card-hot:hover {
    border-color: rgba(255, 124, 124, 1);
    box-shadow:
      0 32px 64px rgba(0, 0, 0, 0.36),
      0 24px 52px rgba(255, 0, 0, 0.55),
      0 0 0 2px rgba(255, 124, 124, 0.95),
      0 0 56px rgba(255, 35, 35, 0.8);
  }
  .plan-card-hot-redframe:hover {
    border-color: #f87171;
    box-shadow:
      0 32px 64px rgba(0, 0, 0, 0.36),
      0 24px 52px rgba(220, 38, 38, 0.5),
      0 0 0 2px #fca5a5,
      0 0 0 4px rgba(239, 68, 68, 0.4),
      0 0 60px rgba(248, 113, 113, 0.65);
  }
}

/* Acordeon Connect – detalii viteză (tema închisă, accent teal ca pe site) */
.plan-connect-details {
  margin-top: 1rem;
  border: 1px solid rgba(71, 85, 105, 0.65);
  border-radius: 10px;
  overflow: hidden;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.04);
  text-align: left;
}
.plan-content > .plan-connect-details + .plan-connect-details {
  margin-top: 0.65rem;
}
.plan-connect-details__summary {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 0.85rem;
  cursor: pointer;
  list-style: none;
  background: linear-gradient(180deg, rgba(13, 148, 136, 0.22) 0%, rgba(30, 41, 59, 0.55) 100%);
  border-bottom: 1px solid rgba(45, 212, 191, 0.12);
  font-weight: 700;
  color: #f1f5f9;
  font-size: 0.86rem;
  line-height: 1.3;
}
.plan-connect-details__summary:hover {
  background: linear-gradient(180deg, rgba(13, 148, 136, 0.3) 0%, rgba(30, 41, 59, 0.65) 100%);
}
.plan-connect-details__summary:focus {
  outline: none;
}
.plan-connect-details__summary:focus-visible {
  box-shadow: inset 0 0 0 2px rgba(45, 212, 191, 0.45);
}
.plan-connect-details__summary::-webkit-details-marker,
.plan-connect-details__summary::marker {
  display: none;
  content: '';
}
.plan-connect-details__title {
  flex: 1;
  min-width: 0;
}
.plan-connect-details__q {
  display: inline-flex;
  width: 1.35rem;
  height: 1.35rem;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(45, 212, 191, 0.55);
  border-radius: 50%;
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1;
  flex-shrink: 0;
  color: #2dd4bf;
  background: rgba(13, 148, 136, 0.12);
}
.plan-connect-details__toggle {
  width: 1.2rem;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1;
  color: #2dd4bf;
  flex-shrink: 0;
}
.plan-connect-details__toggle::before {
  content: '+';
}
.plan-connect-details[open] .plan-connect-details__toggle::before {
  content: '\2212';
}
.plan-connect-details__panel {
  padding: 0.6rem 0.85rem 0.72rem;
  background: rgba(30, 41, 59, 0.45);
  border-top: 1px solid rgba(71, 85, 105, 0.5);
}
.plan-connect-details__panel--countries {
  padding: 0.5rem 0.55rem 0.62rem;
}
.plan-connect-countries-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(104px, 1fr));
  gap: 0.38rem;
  margin: 0;
  padding: 0;
  font-size: 0.74rem;
  line-height: 1.2;
}
.plan-connect-details .plan-connect-countries-list .country-card {
  padding: 0.28rem 0.4rem;
  font-size: 0.72rem;
}

/* Orange minutes+SMS — listă țări în acordeon */
.plan-orange-minutes-coverage-intro {
  margin: 0 0 0.45rem;
  font-size: 0.68rem;
  line-height: 1.45;
  color: #94a3b8;
}
.orange-minutes-coverage-list {
  max-height: 15rem;
  overflow-y: auto;
  padding: 0.1rem 0.05rem 0.25rem 0;
  -webkit-overflow-scrolling: touch;
  scrollbar-gutter: stable;
}
.orange-minutes-coverage-row {
  font-size: 0.66rem;
  line-height: 1.35;
  color: #cbd5e1;
  padding: 0.18rem 0;
  border-bottom: 1px solid rgba(71, 85, 105, 0.35);
}
.orange-minutes-coverage-row:last-child {
  border-bottom: none;
}

.plan-connect-details__body {
  margin: 0;
  font-size: 0.74rem;
  line-height: 1.55;
  color: #b7c7dc;
  font-weight: 400;
}
.plan-connect-details__body strong {
  font-weight: 700;
  color: #2dd4bf;
}

.plan-content h3 { margin: 0 0 0.5rem; font-size: 1.2rem; color: #f1f5f9; }
.plan-content p { color: #b7c7dc; }
.plan-content .plan-connect-details__body { color: #b7c7dc; }
.plan-content .plan-connect-details__body strong { color: #2dd4bf; }
.plan-content ul { margin: 0.75rem 0; padding-left: 1.25rem; font-size: 0.9rem; color: #b7c7dc; }
.plan-content ul.plan-orange-europe-bullets { margin: 0.45rem 0 0.65rem; line-height: 1.45; }
.plan-extra { font-size: 0.9rem; color: #b7c7dc; margin: 0.5rem 0; }
.plan-highlight-90 {
  display: inline-block;
  color: #f59e0b;
  padding: 0.15em 0.4em;
  border-radius: 6px;
  background: rgba(245, 158, 11, 0.12);
  box-shadow: 0 0 0 1px rgba(245, 158, 11, 0.3);
  animation: plan-90-pulse 3s ease-in-out infinite;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(245, 158, 11, 0.6);
}
@keyframes plan-90-pulse {
  0%, 100% { transform: translateY(0); opacity: 0.95; }
  50% { transform: translateY(-1px); opacity: 1; }
}
.plan-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 0.75rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(71, 85, 105, 0.6);
}
.plan-meta .plan-payment { width: 100%; order: 10; margin-top: 0.25rem; }
/* Notă QR — acordeon compact (același pattern ca plan-connect-details) */
.plan-qr-footnote-details {
  margin-top: 0.55rem;
}
.plan-qr-footnote-details .plan-connect-details__summary {
  padding: 0.45rem 0.7rem;
  font-size: 0.78rem;
  font-weight: 600;
}
.plan-qr-footnote-details .plan-connect-details__q {
  border-color: rgba(251, 191, 36, 0.55);
  color: #fbbf24;
  background: rgba(180, 83, 9, 0.2);
}
.plan-qr-footnote-details__panel {
  padding: 0.4rem 0.55rem 0.5rem !important;
}
.plan-qr-footnote-body {
  margin: 0;
  font-size: 0.72rem !important;
  line-height: 1.45;
  font-weight: 500;
  color: #fde68a !important;
  background: linear-gradient(135deg, rgba(180, 83, 9, 0.32), rgba(146, 64, 14, 0.24));
  border: 1px solid rgba(251, 191, 36, 0.42);
  border-radius: 8px;
  padding: 0.45rem 0.55rem !important;
}
.plan-content .plan-qr-footnote-details .plan-qr-footnote-body {
  color: #fde68a !important;
}

/* Notă APN Vodafone – altă culoare + animație */
.plan-footnote-apn {
  margin-top: 0.55rem;
  padding: 0.6rem 0.75rem;
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.45;
  color: #e0e7ff;
  background: linear-gradient(135deg, rgba(67, 56, 202, 0.42), rgba(79, 70, 229, 0.32));
  border: 1px solid rgba(129, 140, 248, 0.65);
  box-shadow: 0 4px 16px rgba(49, 46, 129, 0.35);
  animation: plan-footnote-apn-pulse 3.4s ease-in-out infinite;
}
@keyframes plan-footnote-apn-pulse {
  0%, 100% { transform: translateY(0); opacity: 0.96; }
  50% { transform: translateY(-1px); opacity: 1; }
}
.plan-footnote-apn code {
  font-size: 0.95em;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 0 12px rgba(165, 180, 252, 0.6);
}
@media (prefers-reduced-motion: reduce) {
  .plan-footnote-apn,
  .plan-highlight-90,
  .review-stars {
    animation: none;
  }
}

@supports (content-visibility: auto) {
  #faq,
  #cum-functioneaza,
  #tvalecs,
  #saltbank,
  #activare {
    content-visibility: auto;
    contain-intrinsic-size: 900px;
  }
}
.price {
  font-weight: 700;
  color: var(--teal-light);
  font-size: 1rem;
  text-shadow: 0 0 20px rgba(13, 148, 136, 0.25);
  animation: price-shine 5s ease-in-out infinite;
}
@keyframes price-shine {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.92; }
}
.delivery-note { text-align: center; margin: 1.5rem 0 0; color: #b7c7dc; font-size: 0.95rem; }
.price-note { text-align: center; margin: 0.5rem 0 0; font-size: 0.9rem; color: #8ea3bb; }

/* ===== FAQ ===== */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
}
.faq-item {
  padding: 0.85rem 1rem;
  border: 1px solid rgba(45, 212, 191, 0.22);
}
.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  color: #e2e8f0;
  list-style: none;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: '+';
  float: right;
  color: #2dd4bf;
  font-weight: 800;
}
.faq-item[open] summary::after {
  content: '-';
}
.faq-item p {
  margin: 0.65rem 0 0;
  font-size: 0.92rem;
  color: #b7c7dc;
  line-height: 1.55;
}

/* ===== Reviews ===== */
.reviews-section .container {
  position: relative;
}
.reviews-intro {
  text-align: center;
  color: #b7c7dc;
  max-width: 860px;
  margin: 0 auto 1.3rem;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}
.review-card {
  padding: 1rem 1rem 1.05rem;
  border: 1px solid rgba(45, 212, 191, 0.2);
  background: linear-gradient(160deg, rgba(15, 23, 42, 0.88), rgba(15, 23, 42, 0.74));
  box-shadow: 0 14px 28px rgba(2, 8, 23, 0.35);
}
.review-stars {
  color: #fbbf24;
  letter-spacing: 0.14em;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 7px rgba(251, 191, 36, 0.25);
  animation: review-stars-glow 2.5s ease-in-out infinite;
}
@keyframes review-stars-glow {
  0%, 100% { opacity: 0.95; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(-1px); }
}
.review-text {
  margin: 0;
  color: #e2e8f0;
  font-size: 0.92rem;
  line-height: 1.6;
}
.review-meta {
  margin: 0.75rem 0 0;
  font-size: 0.8rem;
  font-weight: 600;
  color: #2dd4bf;
}
.review-meta::before {
  content: "✔ Client verificat";
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-right: 0.4rem;
  padding: 0.12rem 0.45rem;
  border-radius: 999px;
  color: #22c55e;
  background: rgba(34, 197, 94, 0.16);
  border: 1px solid rgba(34, 197, 94, 0.58);
  font-size: 0.72rem;
  font-weight: 700;
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.28);
}
.review-meta.review-meta-muted::before {
  content: none;
}
.review-verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #22c55e;
  font-weight: 700;
}
.review-verified-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1rem;
  height: 1rem;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.2);
  border: 1px solid rgba(34, 197, 94, 0.65);
  font-size: 0.68rem;
  line-height: 1;
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.35);
}
.reviews-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1rem;
}
.review-form-wrap {
  margin-top: 1rem;
  padding: 1rem;
  border: 1px solid rgba(45, 212, 191, 0.2);
}
.review-form-wrap h3 {
  margin: 0 0 0.4rem;
  color: #f8fafc;
}
.review-form-note {
  margin: 0 0 0.6rem;
  color: #cbd5e1;
  font-size: 0.9rem;
}
.review-form-setup {
  margin: 0 0 0.6rem;
  font-size: 0.8rem;
  color: #fbbf24;
}
.review-form-iframe {
  width: 100%;
  min-height: 720px;
  border: 1px solid rgba(148, 163, 184, 0.3);
  border-radius: 10px;
  background: #0f172a;
}

/* Formular recenzie inline (PHP) */
.review-inline-form-wrap {
  margin-top: 1.25rem;
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
  padding: 1.35rem 1.35rem 1.45rem;
  border-radius: 16px;
  border: 1px solid rgba(45, 212, 191, 0.22);
  background: linear-gradient(165deg, rgba(15, 23, 42, 0.95), rgba(8, 12, 24, 0.92));
  box-shadow: 0 18px 40px rgba(2, 8, 23, 0.45);
}
.review-inline-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.review-inline-form-title {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
  color: #f8fafc;
  letter-spacing: -0.02em;
}
.review-inline-form-note {
  margin: -0.35rem 0 0;
  font-size: 0.82rem;
  line-height: 1.45;
  color: #94a3b8;
}
.review-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.review-field label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #cbd5e1;
}
.review-inline-form input[type="email"],
.review-inline-form input[type="text"],
.review-inline-form select,
.review-inline-form textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 0.65rem 0.85rem;
  font-size: 0.92rem;
  color: #e2e8f0;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 12px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.review-inline-form textarea {
  min-height: 6.5rem;
  resize: vertical;
  line-height: 1.5;
}
.review-inline-form input::placeholder,
.review-inline-form textarea::placeholder {
  color: rgba(148, 163, 184, 0.75);
}
.review-inline-form select {
  cursor: pointer;
  appearance: auto;
}
.review-inline-form input:focus,
.review-inline-form select:focus,
.review-inline-form textarea:focus {
  border-color: rgba(45, 212, 191, 0.75);
  box-shadow: 0 0 0 3px rgba(45, 212, 191, 0.22);
}
.review-inline-form-submit {
  margin-top: 0.25rem;
  width: 100%;
  padding: 0.85rem 1.25rem;
  font-size: 0.98rem;
  font-weight: 700;
  color: #0f172a;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  background: linear-gradient(90deg, #5eead4 0%, #2dd4bf 35%, #a78bfa 100%);
  box-shadow: 0 10px 28px rgba(45, 212, 191, 0.25);
  transition: transform 0.15s ease, filter 0.15s ease, opacity 0.2s ease;
}
.review-inline-form-submit:hover:not(:disabled) {
  filter: brightness(1.05);
  transform: translateY(-1px);
}
.review-inline-form-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}
.review-form-message {
  margin: 0;
  padding: 0.55rem 0.65rem;
  font-size: 0.85rem;
  line-height: 1.45;
  border-radius: 10px;
}
.review-form-message.is-success {
  color: #bbf7d0;
  background: rgba(34, 197, 94, 0.14);
  border: 1px solid rgba(34, 197, 94, 0.4);
}
.review-form-message.is-error {
  color: #fecaca;
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(248, 113, 113, 0.45);
}

/* ===== Steps ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}
.step-card {
  background: rgba(30, 41, 59, 0.9);
  border-radius: 14px;
  padding: 1.5rem;
  border: 1px solid rgba(71, 85, 105, 0.6);
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(45, 212, 191, 0.2);
}
.step-card span {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--teal-light);
  margin-bottom: 0.5rem;
  line-height: 1;
  text-shadow: 0 0 20px rgba(13, 148, 136, 0.3);
}
.step-card h3 { margin: 0 0 0.5rem; font-size: 1.05rem; color: #f1f5f9; }
.step-card p { margin: 0; font-size: 0.9rem; color: #b7c7dc; }

/* ===== Activation ===== */
.activation-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.activation-head .section-title { margin: 0; text-align: left; }
.activation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.activation-grid .glass-card ol { padding-left: 1.25rem; margin: 0; }
.recommendation {
  background: rgba(13, 148, 136, 0.12);
  border: 1px solid rgba(13, 148, 136, 0.4);
  border-radius: 14px;
  padding: 1.25rem;
  box-shadow: 0 4px 20px rgba(13, 148, 136, 0.15), inset 0 1px 0 rgba(255,255,255,0.06);
}
.recommendation h3 { margin: 0 0 0.5rem; color: #f1f5f9; }
.recommendation ul { margin: 0; color: #b7c7dc; }

/* ===== Legal ===== */
.legal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}
.legal-card {
  background: rgba(30, 41, 59, 0.85);
  border-radius: 12px;
  padding: 1.25rem;
  border: 1px solid rgba(71, 85, 105, 0.6);
}
.legal-card h3 { margin: 0 0 0.5rem; font-size: 1.05rem; color: #f1f5f9; }
.legal-card p { margin: 0 0 0.5rem; font-size: 0.9rem; color: #b7c7dc; }
.legal-card p:last-child { margin-bottom: 0; }

/* ===== Footer ===== */
.site-footer {
  background: #111827;
  color: #f1f5f9;
  padding: 2.5rem 0 0;
  padding-bottom: env(safe-area-inset-bottom);
  margin-top: 3rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  padding-bottom: 2rem;
}
.site-footer h3 {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  color: #f8fafc;
}
.site-footer p { margin: 0 0 0.75rem; font-size: 0.9rem; color: #dbeafe; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.35rem; }
.footer-links a {
  color: #dbeafe;
  padding: 0.35rem 0;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  position: relative;
  transition: color 0.25s ease, transform 0.2s ease;
}
.footer-links a:hover {
  color: #f8fafc;
  transform: translateX(4px);
}

/* Plăți sigure (Stripe + metode comune la checkout) */
.footer-payments {
  max-width: 22rem;
}
.footer-payments-desc {
  margin: 0 0 0.4rem;
  font-size: 0.88rem;
  color: #dbeafe;
  line-height: 1.45;
}
.footer-payments-note {
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  color: #94a3b8;
  line-height: 1.4;
}
.payment-badges {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.45rem;
  margin: 0.5rem 0 0.65rem;
  max-width: 17.5rem;
}
.payment-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.45rem;
  padding: 0.3rem 0.4rem;
  background: #fff;
  border-radius: 8px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.payment-badge-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.payment-ico svg {
  display: block;
  width: 100%;
  height: auto;
  max-height: 26px;
}
.payment-txt {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
  text-align: center;
  line-height: 1.2;
}
.payment-txt-paypal {
  color: #003087;
  font-family: system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 0.72rem;
}
.payment-txt-visa {
  color: #1434cb;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
}
.payment-txt-apple {
  color: #000;
  font-size: 0.62rem;
  font-weight: 600;
}
.payment-txt-link {
  color: #3e1a8a;
  font-family: system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: -0.02em;
}
.payment-gpay {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 0.68rem;
  font-weight: 600;
  color: #5f6368;
}
.payment-gpay-g {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.05rem;
  height: 1.05rem;
  border-radius: 50%;
  background: conic-gradient(from 0deg, #4285f4, #34a853, #fbbc05, #ea4335);
  color: #fff;
  font-size: 0.58rem;
  font-weight: 800;
  line-height: 1;
}
.payment-txt-stripe {
  color: #635bff;
  font-family: system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: lowercase;
}
.footer-payments-stripe {
  display: inline-block;
  margin-top: 0.15rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: #5eead4;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer-payments-stripe:hover {
  color: #99f6e4;
}
@media (max-width: 480px) {
  .payment-badges {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 100%;
  }
}

.footer-apps { max-width: 22rem; }
.footer-apps-intro { margin: 0 0 0.75rem; font-size: 0.9rem; color: #dbeafe; }
.footer-apps-site-links {
  margin: 0 0 1rem;
  font-size: 0.88rem;
  color: #cbd5e1;
}
.footer-apps-site-links a {
  color: #5eead4;
  font-weight: 600;
  text-decoration: none;
}
.footer-apps-site-links a:hover { text-decoration: underline; color: #99f6e4; }
.footer-apps-sep { margin: 0 0.35rem; color: #64748b; }
.footer-apps-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.75rem; }
.footer-apps-list li { margin: 0; }
.btn-app {
  display: block;
  padding: 0.75rem 1rem;
  min-height: 44px;
  background: rgba(15, 23, 42, 0.92);
  border: 1px solid rgba(148, 163, 184, 0.45);
  border-radius: 10px;
  color: #f8fafc;
  text-decoration: none;
  transition: background 0.25s, border-color 0.25s, transform 0.25s ease, box-shadow 0.25s ease;
  -webkit-tap-highlight-color: transparent;
}
.btn-app:hover {
  background: rgba(15, 23, 42, 1);
  border-color: rgba(45, 212, 191, 0.7);
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(13, 148, 136, 0.2);
}
.btn-app .app-name { display: block; font-weight: 600; font-size: 0.95rem; margin-bottom: 0.2rem; }
.btn-app .app-desc { display: block; font-size: 0.8rem; color: #e2e8f0; margin-bottom: 0.5rem; }
.btn-app .app-cta { font-size: 0.8rem; font-weight: 700; color: #5eead4; }
.btn-app:hover .app-cta { color: #99f6e4; }

.btn-social {
  display: inline-flex;
  margin: 0.25rem 0.25rem 0 0;
  color: #e2e8f0;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.05);
}
.btn-social:hover { background: rgba(255,255,255,0.1); color: #fff; text-decoration: none; }
.social-list { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.anpc-intro { margin: 0 0 0.75rem; font-size: 0.85rem; color: #dbeafe; max-width: 28rem; }
.anpc-banners { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 0.5rem; }
.anpc-card {
  display: block;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  text-decoration: none;
  color: #e2e8f0;
  transition: background 0.2s, border-color 0.2s, transform 0.25s ease, box-shadow 0.25s ease;
  min-width: 180px;
}
.anpc-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}
.anpc-card-inner { display: flex; flex-direction: column; align-items: flex-start; gap: 0.5rem; }
.anpc-card img { max-height: 40px; width: auto; }
.anpc-card-text { font-size: 0.8rem; font-weight: 600; line-height: 1.3; text-transform: uppercase; letter-spacing: 0.02em; }
.anpc-card-btn {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  margin-top: 0.25rem;
}
.anpc-card:hover .anpc-card-btn { background: rgba(255, 255, 255, 0.25); }
.footer-bottom { padding: 1rem 1.25rem; border-top: 1px solid rgba(255,255,255,0.1); text-align: center; }
.footer-bottom p { margin: 0; font-size: 0.85rem; color: #dbeafe; }

/* ===== Înapoi sus ===== */
.back-to-top {
  position: fixed;
  bottom: max(1.5rem, env(safe-area-inset-bottom));
  right: max(1.5rem, env(safe-area-inset-right));
  z-index: 40;
  min-width: 44px;
  min-height: 44px;
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
  color: #fff;
  border-radius: 50%;
  font-size: 1.25rem;
  font-weight: bold;
  box-shadow: 0 4px 20px rgba(13, 148, 136, 0.45), 0 0 0 0 rgba(13, 148, 136, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(0.5rem);
  transition: opacity 0.2s, visibility 0.2s, transform 0.25s ease, background 0.2s, box-shadow 0.25s ease;
  -webkit-tap-highlight-color: transparent;
}
.back-to-top:hover {
  background: linear-gradient(135deg, #0f766e 0%, #115e59 100%);
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(13, 148, 136, 0.5);
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  animation: back-to-top-appear 0.4s ease-out;
}
@keyframes back-to-top-appear {
  0% { transform: translateY(0.5rem); opacity: 0; }
  70% { transform: translateY(-3px); }
  100% { transform: translateY(0); opacity: 1; }
}
.back-to-top:focus-visible { outline: 2px solid #0f766e; outline-offset: 2px; }

/* ===== Buton WhatsApp flotant ===== */
.whatsapp-float {
  position: fixed;
  bottom: max(5rem, calc(env(safe-area-inset-bottom) + 4rem));
  right: max(1rem, env(safe-area-inset-right));
  z-index: 39;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  background: #25d366;
  color: #fff;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5), 0 0 0 0 rgba(37, 211, 102, 0.4);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  -webkit-tap-highlight-color: transparent;
  animation: whatsapp-pulse 2.8s ease-in-out infinite;
}
@keyframes whatsapp-pulse {
  0%, 100% { transform: translateY(0); opacity: 0.96; }
  50% { transform: translateY(-1px); opacity: 1; }
}
.whatsapp-float:hover {
  background: #20ba5a;
  color: #fff;
  text-decoration: none;
  transform: scale(1.05);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.65);
  animation: none;
}
.whatsapp-float svg { flex-shrink: 0; }
.whatsapp-float-text { white-space: nowrap; }
@media (max-width: 480px) {
  .whatsapp-float-text { display: none; }
  .whatsapp-float {
    padding: 0.55rem 0.6rem;
    font-size: 0.82rem;
    bottom: max(4rem, calc(env(safe-area-inset-bottom) + 3.25rem));
    right: max(0.75rem, env(safe-area-inset-right));
  }
  .whatsapp-float svg { width: 22px; height: 22px; }
}

/* ===== Reveal la scroll (opțional) ===== */
.reveal {
  transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1), transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal:not(.visible) {
  opacity: 0;
  transform: translateY(1.25rem) scale(0.98);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
/* Stagger la apariție pentru carduri */
.plan-grid .reveal.visible:nth-child(1) { transition-delay: 0.05s; }
.plan-grid .reveal.visible:nth-child(2) { transition-delay: 0.12s; }
.plan-grid .reveal.visible:nth-child(3) { transition-delay: 0.19s; }
.plan-grid .reveal.visible:nth-child(4) { transition-delay: 0.26s; }
.plan-grid .reveal.visible:nth-child(5) { transition-delay: 0.33s; }
.plan-grid .reveal.visible:nth-child(6) { transition-delay: 0.4s; }
.steps-grid .reveal.visible:nth-child(1) { transition-delay: 0.05s; }
.steps-grid .reveal.visible:nth-child(2) { transition-delay: 0.1s; }
.steps-grid .reveal.visible:nth-child(3) { transition-delay: 0.15s; }
.steps-grid .reveal.visible:nth-child(4) { transition-delay: 0.2s; }
.benefits-grid .reveal.visible:nth-child(1) { transition-delay: 0.05s; }
.benefits-grid .reveal.visible:nth-child(2) { transition-delay: 0.12s; }
.benefits-grid .reveal.visible:nth-child(3) { transition-delay: 0.19s; }
.benefits-grid .reveal.visible:nth-child(4) { transition-delay: 0.26s; }

/* ===== Mobile & tablet ===== */
@media (max-width: 768px) {
  body {
    font-size: 0.9375rem;
    line-height: 1.55;
  }
  p { margin-bottom: 0.75rem; }

  .menu-toggle { display: flex; }
  .main-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding: 0.5rem 0 1rem;
    order: 99;
    gap: 0;
  }
  .main-nav.is-open { display: flex; }
  .main-nav a {
    min-height: 44px;
    padding: 0.6rem 0.5rem;
    display: flex;
    align-items: center;
    -webkit-tap-highlight-color: transparent;
  }
  .nav-wrap { flex-wrap: wrap; padding: 0.6rem 1rem; }
  .nav-cta { order: 98; }
  .lang-switch { order: 97; }
  .lang-btn { min-width: 44px; min-height: 44px; -webkit-tap-highlight-color: transparent; }

  .section { padding: 1.15rem 0; }
  .section-title {
    font-size: 1.22rem;
    margin-bottom: 0.85rem;
    letter-spacing: -0.03em;
  }
  .section-title::after {
    width: 44px;
    height: 3px;
    margin: 0.45rem auto 0;
    animation: none;
  }

  .price {
    animation: none;
    text-shadow: none;
  }
  .plan-card {
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22), 0 0 0 1px rgba(255, 255, 255, 0.03);
  }
  .glass-card {
    padding: 0.9rem;
  }
  .glass-card h3 { font-size: 1.05rem; }
  .glass-card p { font-size: 0.88rem; margin-bottom: 0.6rem; }

  .reviews-intro,
  .countries-subtitle,
  .networks-intro,
  .about-content p {
    font-size: 0.88rem;
    line-height: 1.5;
    margin-bottom: 0.85rem;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }
  .review-card {
    padding: 0.85rem 0.75rem;
    box-shadow: 0 8px 18px rgba(2, 8, 23, 0.3);
  }
  .review-text { font-size: 0.86rem; line-height: 1.5; }
  .review-stars { font-size: 0.85rem; margin-bottom: 0.35rem; }
  .review-meta { font-size: 0.74rem; margin-top: 0.5rem; }
  .review-meta::before {
    font-size: 0.65rem;
    padding: 0.1rem 0.35rem;
    margin-right: 0.3rem;
  }

  .review-inline-form-wrap {
    max-width: none;
    margin-top: 0.9rem;
    padding: 1.1rem 1rem 1.15rem;
    border-radius: 14px;
    box-shadow: 0 12px 28px rgba(2, 8, 23, 0.38);
  }
  .review-inline-form { gap: 0.75rem; }
  .review-inline-form-title { font-size: 1.05rem; }
  .review-inline-form-note { font-size: 0.78rem; }
  .review-field { gap: 0.3rem; }
  .review-field label { font-size: 0.78rem; }
  .review-inline-form input[type="email"],
  .review-inline-form input[type="text"],
  .review-inline-form select,
  .review-inline-form textarea {
    padding: 0.55rem 0.75rem;
    font-size: 0.88rem;
    border-radius: 10px;
  }
  .review-inline-form textarea { min-height: 5.25rem; }
  .review-inline-form-submit {
    padding: 0.7rem 1rem;
    font-size: 0.9rem;
  }

  .hero { padding-top: 1.25rem; padding-bottom: 1.75rem; }
  .hero-grid { grid-template-columns: 1fr; gap: 1.25rem; text-align: center; }
  .hero-copy .kicker { font-size: 0.78rem; }
  .hero-copy h1 { font-size: clamp(1.25rem, 5vw, 1.65rem); }
  .hero-copy p { font-size: 0.9rem; max-width: none; }
  .hero-badges-row { font-size: 0.8rem; margin-bottom: 0.65rem; }
  .hero-actions { margin: 0.9rem 0; justify-content: center; gap: 0.65rem; }
  .hero-badges { margin-top: 1rem; font-size: 0.82rem; }
  .hero-badges { justify-content: center; }
  .hero-media { max-width: 100%; }

  .tvalecs-content { grid-template-columns: 1fr; }
  .tvalecs-screens { order: -1; }
  .tvalecs-screens img { max-width: 118px; }
  .esimapp-content { grid-template-columns: 1fr; }
  .esimapp-screens { order: -1; }
  .esimapp-screens img { max-width: 118px; }
  .saltbank-referral { flex-direction: column; }
  .benefits-grid { grid-template-columns: 1fr; gap: 0.75rem; }
  .plan-grid { gap: 0.8rem; }
  .plan-content { padding: 0.82rem; }
  .plan-content h3 { font-size: 1rem; }
  .plan-content ul { font-size: 0.8rem; margin: 0.5rem 0; }
  .plan-meta { margin-top: 0.75rem; padding-top: 0.75rem; }
  .plan-meta .price { font-size: 0.98rem; }
  .plan-qr-footnote-details .plan-connect-details__summary { font-size: 0.74rem; padding: 0.42rem 0.65rem; }
  .plan-qr-footnote-body { font-size: 0.68rem !important; padding: 0.42rem 0.5rem !important; }
  .plan-extra { font-size: 0.84rem; margin: 0.4rem 0; }
  .plan-coverage { font-size: 0.84rem; }
  .plan-connect-details { margin-top: 0.75rem; }
  .plan-connect-details__summary { padding: 0.55rem 0.75rem; font-size: 0.82rem; }
  .plan-connect-details__body { font-size: 0.72rem; }
  .plan-connect-countries-list { gap: 0.32rem; grid-template-columns: repeat(auto-fill, minmax(98px, 1fr)); }
  .countries-subtitle { font-size: 0.92rem; margin-bottom: 0.85rem; }
  .faq-grid { gap: 0.55rem; }
  .faq-item { padding: 0.7rem 0.85rem; }
  .faq-item p { font-size: 0.86rem; }
  .delivery-note { font-size: 0.86rem; margin: 1rem 0 0; }
  .price-note { font-size: 0.82rem; }

  .how-steps { grid-template-columns: 1fr; gap: 0.85rem; }
  .step-card { padding: 0.9rem; }
  .step-card span { font-size: 1.15rem; }
  .step-card p { font-size: 0.86rem; }
  .activation-head { flex-direction: column; align-items: stretch; gap: 0.85rem; }
  .activation-head .section-title { text-align: center; }
  .activation-grid { grid-template-columns: 1fr; gap: 0.85rem; }
  .legal-grid { grid-template-columns: 1fr; gap: 0.85rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 1.15rem; padding-bottom: 1.25rem; }
  .footer-apps { max-width: none; }
  .btn-social { min-height: 44px; padding: 0.5rem 0.75rem; -webkit-tap-highlight-color: transparent; }
  .anpc-banners { flex-direction: column; }
  .anpc-card { min-width: 0; }
}

/* ===== Telefoane mici (sub 480px) — minimalist, dens, mai puțin scroll ===== */
@media (max-width: 480px) {
  .container { padding: 0 0.7rem; }

  .nav-wrap { padding: 0.4rem 0.7rem; }
  .logo { font-size: 0.9rem; gap: 0.3rem; }
  .logo-mark { width: 38px; height: 38px; }
  .logo-svg { width: 30px; height: 30px; }
  .logo-6g { font-size: 0.62rem; padding: 0.1em 0.28em; }

  body {
    font-size: 0.875rem;
    line-height: 1.48;
  }

  .section { padding: 0.7rem 0; }
  .section-title {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
  }
  .section-title::after {
    width: 36px;
    height: 2px;
    margin: 0.35rem auto 0;
  }

  /* Watermark mai discret pe ecran mic */
  .bg-esim-watermark {
    font-size: clamp(3.25rem, 20vw, 8rem);
  }
  .bg-esim-watermark-2 {
    font-size: clamp(2.5rem, 15vw, 6.5rem);
  }

  .hero { padding-top: 0.55rem; padding-bottom: 1rem; }
  .hero-grid { gap: 0.75rem; }
  .hero-copy .kicker { font-size: 0.72rem; }
  .hero-copy h1 { font-size: clamp(1rem, 5.2vw, 1.12rem); line-height: 1.22; }
  .hero-copy p { font-size: 0.82rem; }
  .hero-badges-row { font-size: 0.75rem; gap: 0.45rem 0.75rem; margin-bottom: 0.45rem; }
  .hero-actions { flex-direction: column; width: 100%; margin: 0.5rem 0; }
  .hero-actions .btn { width: 100%; padding: 0.45rem 0.85rem; min-height: 40px; font-size: 0.84rem; }
  .hero-badges { flex-direction: column; align-items: center; margin-top: 0.55rem; font-size: 0.74rem; gap: 0.3rem; }
  .hero-badges li { width: 100%; text-align: center; padding: 0.28rem 0.45rem; }

  .btn { padding: 0.45rem 0.85rem; min-height: 40px; font-size: 0.84rem; }
  .btn-small { padding: 0.4rem 0.75rem; font-size: 0.78rem; min-height: 40px; }

  .plan-grid { gap: 0.65rem; }
  .plan-meta { flex-direction: column; align-items: stretch; gap: 0.45rem; }
  .plan-meta .btn { width: 100%; }
  .glass-card { padding: 0.65rem 0.6rem; border-radius: 12px; }
  .glass-card h3 { font-size: 0.92rem; }
  .glass-card p { font-size: 0.8rem; }
  .benefits-grid { gap: 0.55rem; }
  .recommendation { padding: 0.7rem 0.65rem; font-size: 0.8rem; border-radius: 12px; }

  .plan-content { padding: 0.6rem 0.55rem; }
  .plan-content h3 { font-size: 0.92rem; }
  .plan-content ul { font-size: 0.76rem; padding-left: 1rem; margin: 0.45rem 0; }
  .plan-extra { font-size: 0.78rem; }
  .plan-qr-footnote-details .plan-connect-details__summary { font-size: 0.7rem; padding: 0.38rem 0.55rem; }
  .plan-qr-footnote-body { font-size: 0.65rem !important; padding: 0.38rem 0.45rem !important; }
  .plan-connect-details__summary { padding: 0.48rem 0.6rem; font-size: 0.76rem; }
  .plan-connect-details__panel { padding: 0.45rem 0.55rem 0.55rem; }
  .plan-connect-details__body { font-size: 0.68rem; line-height: 1.5; }
  .plan-connect-details__q { width: 1.2rem; height: 1.2rem; font-size: 0.6rem; }
  .plan-connect-countries-list {
    grid-template-columns: repeat(auto-fill, minmax(88px, 1fr));
    gap: 0.28rem;
    font-size: 0.65rem;
  }
  .plan-connect-details .plan-connect-countries-list .country-card { padding: 0.22rem 0.3rem; font-size: 0.64rem; }

  .reviews-intro { margin-bottom: 0.65rem; font-size: 0.8rem; }
  .review-card { padding: 0.6rem 0.55rem; }
  .review-text { font-size: 0.78rem; }
  .review-inline-form-wrap {
    padding: 0.75rem 0.65rem 0.85rem;
    margin-top: 0.65rem;
  }
  .review-inline-form { gap: 0.55rem; }
  .review-inline-form-title { font-size: 0.92rem; }

  .networks-grid { gap: 0.55rem; }
  .network-card { padding: 0.7rem 0.65rem; }
  .network-card p { font-size: 0.84rem; }
  .countries-subtitle { font-size: 0.86rem; margin-bottom: 0.65rem; }
  .countries-grid { padding: 0.6rem 0.55rem !important; font-size: 0.68rem; gap: 0.32rem; grid-template-columns: repeat(auto-fit, minmax(88px, 1fr)); }
  .country-card { padding: 0.2rem 0.28rem; gap: 0.22rem; }
  .country-flag-img { width: 16px; height: 12px; }

  .faq-item { padding: 0.6rem 0.7rem; }
  .faq-item summary { font-size: 0.86rem; }
  .faq-item p { font-size: 0.8rem; margin-top: 0.5rem; }

  .step-card { padding: 0.75rem 0.65rem; }
  .how-steps { gap: 0.65rem; }

  .footer-grid { gap: 0.9rem; padding-bottom: 1rem; }
  .footer-bottom { padding: 0.75rem 0.7rem; }
  .footer-bottom p { font-size: 0.78rem; }

  .back-to-top { width: 40px; height: 40px; font-size: 1.1rem; bottom: max(0.75rem, env(safe-area-inset-bottom)); right: max(0.7rem, env(safe-area-inset-right)); }
  .tvalecs-screens img { max-width: 88px; }
  .esimapp-screens img { max-width: 88px; }
  .tvalecs-intro,
  .esimapp-intro,
  .saltbank-intro { font-size: 0.9rem; margin-bottom: 1rem; }
  .saltbank-referral { padding: 0.75rem 0.65rem; margin-bottom: 1rem; }
  .saltbank-referral-code { font-size: 1.1rem; }
}
