/* ═══════════════════════════════════════════════════════════
   IPTV Portugal – Main Stylesheet
   White/Light theme with Royal Blue (#1565C0) accents
   ═══════════════════════════════════════════════════════════ */

:root {
  --blue:        #1565C0;
  --blue-dark:   #0D47A1;
  --blue-light:  #1E88E5;
  --blue-bg:     #E3F2FD;
  --navy:        #0d2255;
  --white:       #FFFFFF;
  --gray-50:     #F8F9FA;
  --gray-100:    #F1F3F5;
  --gray-200:    #E9ECEF;
  --gray-400:    #ADB5BD;
  --gray-600:    #6C757D;
  --gray-800:    #343A40;
  --text:        #1a1a2e;
  --text-light:  #555;

  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   18px;
  --radius-xl:   24px;
  --radius-full: 999px;

  --shadow-sm:   0 1px 4px rgba(0,0,0,0.07);
  --shadow-md:   0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg:   0 8px 32px rgba(0,0,0,0.13);
  --shadow-blue: 0 4px 20px rgba(21,101,192,0.30);

  --nav-h: 68px;
  --container: 1160px;
  --pad: clamp(16px, 4vw, 40px);

  --transition: 220ms ease;
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ─── Container ─── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* ─── Section colours ─── */
.section--white { background: var(--white); }
.section--gray  { background: var(--gray-50); }
.section--dark  { background: var(--navy); }

/* ─── Section labels / headings ─── */
.section-label {
  display: inline-block;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  border-left: 3px solid var(--blue);
  padding: 0 0 0 10px;
  margin-bottom: 14px;
}
.section-label--white {
  color: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.6);
}

.section-title {
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.section-title.white { color: #fff; }
.section-sub { font-size: 1.0rem; color: var(--text-light); }

.tc { text-align: center; }
.text--blue { color: var(--blue); }

/* ═════ BUTTONS ═════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: all var(--transition);
  white-space: nowrap;
  font-family: inherit;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn--sm  { padding: 8px 20px;  font-size: 0.875rem; }
.btn--md  { padding: 11px 26px; font-size: 0.9375rem; }
.btn--lg  { padding: 14px 32px; font-size: 1rem; }
.btn--full { width: 100%; justify-content: center; }

.btn--primary {
  background: var(--blue);
  color: #fff;
  box-shadow: var(--shadow-blue);
}
.btn--primary:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(21,101,192,0.40);
}

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

.btn--white {
  background: #fff;
  color: var(--blue);
  border-color: #fff;
}
.btn--white:hover {
  background: var(--blue-bg);
}

/* ═════ NAVBAR ═════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow var(--transition);
}
.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}
.logo__icon {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
}
.logo__icon svg { width: 36px; height: 36px; }
.logo__text { color: var(--text); }
.logo__accent { color: var(--blue); }

/* Nav links */
.navbar__nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.nav-link {
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-600);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.nav-link:hover {
  color: var(--blue);
  background: var(--blue-bg);
}

.navbar__actions { display: flex; align-items: center; gap: 12px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
}
.hamburger:hover { background: var(--gray-100); }
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═════ HERO ═════ */
.hero {
  padding-top: var(--nav-h);
  background: linear-gradient(160deg, #f0f6ff 0%, #ffffff 60%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--gray-200);
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  padding-top: 48px;
  padding-bottom: 64px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--blue);
  background: var(--blue-bg);
  border: 1px solid rgba(21,101,192,0.2);
  border-radius: var(--radius-full);
  padding: 5px 14px;
  margin-bottom: 18px;
}

.hero__title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
  color: var(--text);
}

.hero__lead {
  font-size: 1.1rem;
  color: var(--blue);
  margin-bottom: 10px;
}

.hero__sub {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 480px;
}

.hero__btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.hero__trust {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.trust-item {
  font-size: 0.825rem;
  font-weight: 500;
  color: var(--text-light);
}

/* TV Mockup */
.hero__mockup-wrap { position: relative; }

.mockup-tv {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--gray-200);
  overflow: hidden;
}

.mockup-tv__frame {
  background: var(--gray-800);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  padding: 10px 10px 0;
}

.mockup-tv__screen {
  background: #1a1a2e;
  border-radius: 8px 8px 0 0;
  padding: 12px;
  min-height: 220px;
}

.mockup-screen__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 700;
  color: #fff;
  background: rgba(255,255,255,0.08);
  border-radius: 4px;
  padding: 6px 10px;
  margin-bottom: 12px;
}

.live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #ef4444;
  animation: liveBlink 1.5s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes liveBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.channel-name { margin-left: auto; color: rgba(255,255,255,0.6); font-weight: 400; }

.mockup-screen__channels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-bottom: 12px;
}

.ch {
  padding: 6px 8px;
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 600;
  color: #fff;
  text-align: center;
}
.ch--sport  { background: rgba(21,101,192,0.7); }
.ch--movie  { background: rgba(198,40,40,0.7); }
.ch--series { background: rgba(46,125,50,0.7); }
.ch--news   { background: rgba(230,81,0,0.7); }
.ch--kids   { background: rgba(106,27,154,0.7); }
.ch--music  { background: rgba(0,131,143,0.7); }

.mockup-screen__player {
  display: flex;
  gap: 10px;
  align-items: center;
  background: rgba(255,255,255,0.05);
  border-radius: 6px;
  padding: 8px 10px;
}

.player__thumb {
  width: 52px; height: 36px;
  background: linear-gradient(135deg, var(--blue), #0d47a1);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}
.player__play { font-size: 1rem; color: #fff; }
.player__label {
  position: absolute;
  bottom: 2px; right: 3px;
  font-size: 0.45rem;
  font-weight: 800;
  color: #fff;
  background: rgba(0,0,0,0.5);
  padding: 1px 3px;
  border-radius: 2px;
}

.player__title { font-size: 0.7rem; font-weight: 600; color: #fff; margin-bottom: 4px; }

.player__progress { display: flex; align-items: center; gap: 6px; }
.progress-bar {
  flex: 1;
  height: 3px;
  background: rgba(255,255,255,0.2);
  border-radius: 2px;
}
.progress-fill {
  height: 100%;
  background: var(--blue-light);
  border-radius: 2px;
}
.player__progress span { font-size: 0.6rem; color: rgba(255,255,255,0.5); }

.mockup-tv__stand {
  height: 14px;
  width: 35%;
  background: var(--gray-400);
  margin: 0 auto;
  border-radius: 0 0 6px 6px;
}

.mockup-phones {
  display: flex;
  gap: 16px;
  margin-top: 16px;
  justify-content: center;
}

.mockup-phone {
  background: var(--gray-800);
  border-radius: 14px;
  padding: 6px;
  width: 100px;
  box-shadow: var(--shadow-md);
}
.phone__screen {
  background: #1a1a2e;
  border-radius: 10px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.phone__content { text-align: center; }
.phone__icon { font-size: 1.4rem; }
.phone__text { font-size: 0.5rem; color: rgba(255,255,255,0.6); margin-top: 2px; font-weight: 600; }

/* ═════ INTRO 3-COL ═════ */
.intro-cols {
  padding: clamp(56px, 7vw, 96px) 0;
}

.cols-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.col-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.col-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(21,101,192,0.2);
  transform: translateY(-3px);
}

.col-card__icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  background: var(--blue-bg);
  border-radius: var(--radius-md);
}
.col-card__icon svg { width: 32px; height: 32px; }

.col-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}
.col-card__text {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ═════ CONTENT MEDIA ═════ */
.content-media { padding: clamp(56px, 7vw, 96px) 0; }

.content-media__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.content-media__desc {
  font-size: 0.975rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 20px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.feature-list li {
  font-size: 0.9rem;
  color: var(--text-light);
  padding: 4px 0;
}

/* Device visual */
.devices-visual { position: relative; }

.device-tv {
  background: #fff;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  margin-bottom: 16px;
}

.device-tv__screen {
  background: #1a1a2e;
  padding: 12px;
}

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

.screen-thumb {
  height: 56px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}

.device-tv__stand {
  height: 10px;
  width: 30%;
  background: var(--gray-300, #ddd);
  margin: 0 auto;
}

.device-row {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.device-tablet {
  background: var(--gray-800);
  border-radius: 10px;
  padding: 6px;
  width: 140px;
  box-shadow: var(--shadow-sm);
}
.device-tablet__screen {
  background: #1a1a2e;
  border-radius: 6px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mini-player {
  width: 32px; height: 32px;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.9rem;
}

.device-mobile {
  background: var(--gray-800);
  border-radius: 14px;
  padding: 6px;
  width: 72px;
  box-shadow: var(--shadow-sm);
}
.device-mobile__screen {
  background: #1a1a2e;
  border-radius: 10px;
  height: 88px;
  padding: 8px 6px;
}
.mini-list { display: flex; flex-direction: column; gap: 6px; }
.mini-row {
  font-size: 0.5rem;
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.07);
  padding: 3px 5px;
  border-radius: 3px;
  font-weight: 600;
}

/* ═════ CHOOSE SUB ═════ */
.choose-sub { padding: clamp(56px, 7vw, 96px) 0; }

.choose-sub__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.choose-sub__text p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.75;
}

.device-compat {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.compat-item {
  font-size: 0.8rem;
  font-weight: 600;
  background: var(--blue-bg);
  color: var(--blue-dark);
  padding: 5px 12px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(21,101,192,0.15);
}

.sub-preview {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sub-preview__card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.sub-preview__card:hover { box-shadow: var(--shadow-md); transform: translateX(4px); }
.sub-preview__card--highlight {
  border-color: var(--blue);
  background: var(--blue-bg);
}

.sub-preview__icon { font-size: 1.5rem; }
.sub-preview__name { font-weight: 700; font-size: 0.95rem; }
.sub-preview__desc { font-size: 0.78rem; color: var(--gray-600); }
.sub-preview__badge {
  margin-left: auto;
  font-size: 0.72rem;
  font-weight: 700;
  background: var(--blue);
  color: #fff;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}
.sub-preview__badge--popular { background: #e53935; }

/* Countdown */
.pricing-countdown {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff5f5;
  border: 1.5px solid #fca5a5;
  border-radius: var(--radius-full);
  padding: 7px 20px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #dc2626;
  margin-bottom: 40px;
}
.countdown-fire { font-size: 1rem; }
.countdown-label { color: #555; font-weight: 400; }
.countdown-timer {
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.06em;
  color: #dc2626;
  min-width: 40px;
}

/* ═════════════════════════════════════
   PRICING V3  (screenshot-matched cards)
   ═════════════════════════════════════ */
.pricing-v3 { padding: clamp(56px, 7vw, 96px) 0; text-align: center; }

/* section-label centred variant */
.tc-label {
  display: inline-block;
  border-left: none;
  border-bottom: 2px solid var(--blue);
  padding: 0 0 4px;
  margin-bottom: 14px;
}

/* 4-column grid */
.pv3-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 8px;
  align-items: start;
}

/* ── Base card ── */
.pv3-card {
  border-radius: 16px;
  padding: 24px 20px 20px;
  position: relative;
  text-align: left;
  transition: box-shadow .22s ease, transform .22s ease;
}

/* Dark (featured) */
.pv3-card--dark {
  background: #1e3a8a;
  color: #fff;
  box-shadow: 0 8px 32px rgba(30,58,138,.35);
}
.pv3-card--dark:hover { box-shadow: 0 14px 48px rgba(30,58,138,.45); transform: translateY(-3px); }

/* Light (regular) */
.pv3-card--light {
  background: #fff;
  border: 1.5px solid #e5e7eb;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.pv3-card--light:hover { box-shadow: 0 8px 28px rgba(0,0,0,.11); transform: translateY(-3px); }

/* ── "+ N meses grátis" badge ── */
.pv3-bonus {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 700;
  border-radius: 999px;
  padding: 4px 12px;
  margin-bottom: 14px;
  white-space: nowrap;
}
.pv3-bonus--white { background: #fff; color: #1e3a8a; }
.pv3-bonus--blue  { background: #1565C0; color: #fff; }

/* ── Period heading ── */
.pv3-period {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}
.pv3-period--blue { color: #1565C0; }

/* ── Price row ── */
.pv3-price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 10px;
}
.pv3-price {
  font-size: 2.6rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #fff;
}
.pv3-price--dark { color: #111827; }
.pv3-old {
  font-size: 1rem;
  color: rgba(255,255,255,.55);
  text-decoration: line-through;
  font-weight: 500;
}
.pv3-card--light .pv3-old { color: #9ca3af; }

/* ── "1 dispositivo…" ── */
.pv3-device {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  margin-bottom: 16px;
}
.pv3-card--light .pv3-device { color: #6b7280; }

/* ── Buttons ── */
.pv3-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 13px 16px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: all .2s ease;
  border: none;
  margin-bottom: 20px;
}
.pv3-btn--white {
  background: #fff;
  color: #1565C0;
}
.pv3-btn--white:hover { background: #dbeafe; }
.pv3-btn--blue {
  background: #1565C0;
  color: #fff;
  box-shadow: 0 4px 14px rgba(21,101,192,.35);
}
.pv3-btn--blue:hover { background: #0D47A1; box-shadow: 0 6px 20px rgba(21,101,192,.45); }

/* ── Divider ── */
.pv3-divider {
  height: 1px;
  background: rgba(255,255,255,.15);
  margin-bottom: 16px;
}
.pv3-card--light .pv3-divider { background: #e5e7eb; }

/* ── "O que está incluído?" ── */
.pv3-includes {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.pv3-includes--orange { color: #f59e0b; }
.pv3-includes--blue   { color: #1565C0; }

/* ── Features list ── */
.pv3-features {
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-size: 0.845rem;
  color: rgba(255,255,255,.88);
  margin-bottom: 20px;
}
.pv3-features--dark { color: #374151; }
.pv3-features li {
  display: flex;
  align-items: center;
  gap: 9px;
  line-height: 1.3;
}

/* ── Circular checkmarks ── */
.pv3-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px; height: 18px;
  border-radius: 50%;
  font-size: 0.6rem;
  font-weight: 800;
  flex-shrink: 0;
}
.pv3-check--orange { background: #f59e0b; color: #fff; }
.pv3-check--blue   { background: #1565C0; color: #fff; }

/* ── Payment icons row ── */
.pv3-payments {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.pv3-payments--dark { border-top-color: #e5e7eb; }

.pay-mb {
  font-size: 0.6rem; font-weight: 900;
  background: #c41e3a; color: #fff;
  padding: 3px 6px; border-radius: 4px;
  letter-spacing: .04em;
}
.pay-bc {
  font-size: 0.55rem; font-weight: 800;
  background: linear-gradient(90deg,#005499,#ffb800);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  border: 1px solid #e5e7eb; border-radius: 4px;
  padding: 2px 5px;
}
.pay-visa {
  font-size: 0.7rem; font-weight: 900;
  color: #1a1f71; font-style: italic;
  letter-spacing: -.02em;
  border: 1px solid #e5e7eb; border-radius: 4px; padding: 2px 5px;
}
.pv3-card--dark .pay-visa { color: #fff; border-color: rgba(255,255,255,.25); }
.pv3-card--dark .pay-bc   { -webkit-text-fill-color: #fff; background: none; border-color: rgba(255,255,255,.25); font-size:0.6rem; }
.pv3-card--dark .pay-mb   { background: rgba(255,255,255,.25); }
.pay-mc {
  display: flex; align-items: center;
  font-size: 0.95rem; letter-spacing: -0.45em;
  padding-left: 2px;
}
.pay-mc span:first-child  { color: #eb001b; }
.pay-mc span:last-child   { color: #f79e1b; }
.pv3-card--dark .pay-mc span:first-child { color: #ff6b6b; }
.pv3-card--dark .pay-mc span:last-child  { color: #ffd166; }

/* ── Responsive ── */
@media (max-width: 1100px) {
  .pv3-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
  .pv3-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
}

/* ═════ MULTI-DEVICE PRICING ═════ */
.pricing-multi {
  padding: clamp(56px, 7vw, 96px) 0;
}

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

.mcard {
  background: #fff;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.mcard:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.mcard--featured {
  background: linear-gradient(135deg, #1565C0, #1E88E5);
  border-color: transparent;
  color: #fff;
}
.mcard--featured:hover { transform: translateY(-6px); box-shadow: var(--shadow-blue); }

.mcard__badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffd600;
  color: #1a1a2e;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.mcard__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.mcard--featured .mcard__top { border-color: rgba(255,255,255,0.2); }

.mcard__connections { font-size: 1.1rem; font-weight: 800; }
.mcard__period { font-size: 0.85rem; font-weight: 500; opacity: 0.7; }

.mcard__price {
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--blue);
  margin-bottom: 4px;
  display: flex;
  align-items: flex-start;
  gap: 2px;
}
.mcard--featured .mcard__price { color: #fff; }
.mcard__price > span:first-child { font-size: 1.3rem; padding-top: 6px; font-weight: 700; }
.mcard__cents { font-size: 1.3rem; padding-top: 6px; font-weight: 700; }

.mcard__saving {
  font-size: 0.78rem;
  font-weight: 600;
  color: #2E7D32;
  background: #E8F5E9;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  display: inline-block;
  margin-bottom: 20px;
}
.mcard--featured .mcard__saving { background: rgba(255,255,255,0.2); color: #fff; }

.mcard__features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 0.875rem;
  color: var(--text-light);
}
.mcard--featured .mcard__features { color: rgba(255,255,255,0.9); }
.mcard__features li { display: flex; gap: 6px; align-items: flex-start; }

/* ═════ STEPS ═════ */
.steps { padding: clamp(56px, 7vw, 96px) 0; }

.steps__grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
  margin-top: 48px;
}

.step {
  text-align: center;
  padding: 0 16px;
}

.step__num {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
}

.step__icon {
  font-size: 2.5rem;
  width: 80px; height: 80px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  margin: 0 auto 18px;
  transition: all var(--transition);
}
.step:hover .step__icon {
  background: rgba(255,255,255,0.18);
  transform: scale(1.08);
}

.step__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.step__desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
}

.step__arrow {
  color: rgba(255,255,255,0.3);
  font-size: 1.8rem;
  padding-top: 36px;
  align-self: start;
}

/* ═════ WHY CHOOSE ═════ */
.why-choose { padding: clamp(56px, 7vw, 96px) 0; }

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

.why-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.why-card:hover {
  border-color: rgba(21,101,192,0.25);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

/* ═════ LANGUAGE SWITCHER ═════ */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  background: var(--gray-100);
  border-radius: 8px;
  padding: 3px;
}
.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 9px;
  border-radius: 6px;
  color: var(--text-light);
  transition: background 0.2s, color 0.2s;
  letter-spacing: 0.04em;
}
.lang-btn:hover { background: #fff; color: var(--text); }
.lang-btn.active { background: var(--primary); color: #fff; }

.why-card__icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.why-card:hover .why-card__icon {
  transform: scale(1.08);
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}
.why-card:nth-child(1) .why-card__icon { background: linear-gradient(135deg,#1565C0,#42A5F5); }
.why-card:nth-child(2) .why-card__icon { background: linear-gradient(135deg,#E65100,#FFA726); }
.why-card:nth-child(3) .why-card__icon { background: linear-gradient(135deg,#2E7D32,#66BB6A); }
.why-card:nth-child(4) .why-card__icon { background: linear-gradient(135deg,#6A1B9A,#AB47BC); }
.why-card:nth-child(5) .why-card__icon { background: linear-gradient(135deg,#B71C1C,#EF5350); }
.why-card:nth-child(6) .why-card__icon { background: linear-gradient(135deg,#00695C,#26A69A); }
.why-card:nth-child(7) .why-card__icon { background: linear-gradient(135deg,#0277BD,#29B6F6); }
.why-card:nth-child(8) .why-card__icon { background: linear-gradient(135deg,#4527A0,#7E57C2); }
.why-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}
.why-card p {
  font-size: 0.825rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ═════ ADVANTAGES ACCORDION ═════ */
.advantages { padding: clamp(56px, 7vw, 96px) 0; }

.advantages__inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}

.advantages__text p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.75;
}

.acc-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color var(--transition);
}
.acc-item.open { border-color: var(--blue); }

.acc-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 22px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  transition: color var(--transition);
}
.acc-q:hover, .acc-item.open .acc-q { color: var(--blue); }

.acc-icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--blue);
  transition: transform var(--transition);
  flex-shrink: 0;
  line-height: 1;
}
.acc-item.open .acc-icon { transform: rotate(45deg); }

.acc-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s cubic-bezier(0.4,0,0.2,1);
}
.acc-item.open .acc-a { max-height: 300px; }

.acc-a p, .acc-a ul, .acc-a ol {
  padding: 0 22px 20px;
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.75;
}

/* ═════ TESTIMONIALS ═════ */
.testimonials { padding: clamp(56px, 7vw, 96px) 0; }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 44px;
}

.tcard {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.tcard:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(21,101,192,0.2);
  transform: translateY(-3px);
}

.tcard__stars {
  color: #f59e0b;
  font-size: 0.875rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.tcard__text {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 18px;
  font-style: italic;
}
.tcard__author { display: flex; align-items: center; gap: 10px; }
.tcard__avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.tcard__name { font-size: 0.875rem; font-weight: 700; }
.tcard__loc  { font-size: 0.75rem; color: var(--gray-600); }

/* ═════ CTA BAND ═════ */
.cta-band {
  background: linear-gradient(135deg, #0D47A1, #1565C0);
  padding: clamp(48px, 7vw, 80px) 0;
}
.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-band__title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 10px;
}
.cta-band__sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  max-width: 520px;
}

/* ═════ FAQ ═════ */
.faq { padding: clamp(56px, 7vw, 96px) 0; }

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: var(--blue); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 22px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  transition: color var(--transition);
  background: #fff;
}
.faq-q:hover, .faq-item.open .faq-q { color: var(--blue); }

.faq-icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--blue);
  transition: transform var(--transition);
  flex-shrink: 0;
  line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s cubic-bezier(0.4,0,0.2,1);
  background: var(--gray-50);
}
.faq-item.open .faq-a { max-height: 400px; }

.faq-a p, .faq-a ul, .faq-a ol {
  padding: 0 22px 20px;
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.75;
}

/* ═════ BLOG ═════ */
.blog { padding: clamp(56px, 7vw, 96px) 0; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 44px;
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.blog-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.blog-card__thumb {
  height: 180px;
  display: flex;
  align-items: flex-end;
  padding: 14px;
  position: relative;
}
.blog-card__thumb--1 { background: linear-gradient(135deg, #1565C0, #0288D1); }
.blog-card__thumb--2 { background: linear-gradient(135deg, #2E7D32, #00838F); }
.blog-card__thumb--3 { background: linear-gradient(135deg, #C62828, #F57C00); }

.blog-card__cat {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(255,255,255,0.2);
  color: #fff;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.blog-card__body { padding: 22px; }
.blog-card__date { font-size: 0.75rem; color: var(--gray-600); margin-bottom: 8px; }
.blog-card__title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 10px;
  color: var(--text);
}
.blog-card__excerpt {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 14px;
}
.blog-card__link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue);
  transition: color var(--transition);
}
.blog-card__link:hover { color: var(--blue-dark); }

/* ═════ FOOTER ═════ */
.footer {
  background: #0d1b3e;
  color: rgba(255,255,255,0.8);
}

.footer__top {
  padding: clamp(48px, 6vw, 80px) 0 40px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer__desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 280px;
}

.footer__contact { display: flex; flex-direction: column; gap: 6px; }
.footer__contact-item { font-size: 0.825rem; color: rgba(255,255,255,0.65); }

.footer__col-title {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  margin-bottom: 16px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer__links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer__links a:hover { color: #fff; }

.footer__bottom {
  padding: 22px 0;
}
.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
}

.footer__legal { display: flex; gap: 20px; }
.footer__legal a {
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
}
.footer__legal a:hover { color: rgba(255,255,255,0.8); }

/* ═════ SCROLL TO TOP ═════ */
/* ═════ FLOATING LANGUAGE SWITCHER ═════ */
.lang-float {
  position: fixed;
  bottom: 84px;
  right: 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 900;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: all 0.3s ease;
}
.lang-float.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.lang-float__btn {
  display: flex;
  align-items: center;
  gap: 5px;
  background: #fff;
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  padding: 6px 11px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-light);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  transition: all 0.2s;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.lang-float__btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateX(-3px);
}
.lang-float__btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  box-shadow: var(--shadow-blue);
}
.lang-float__code { font-weight: 700; }

.scroll-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 44px; height: 44px;
  background: var(--blue);
  color: #fff;
  border-radius: var(--radius-md);
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(16px);
  transition: all var(--transition);
  pointer-events: none;
  z-index: 900;
  box-shadow: var(--shadow-blue);
}
.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.scroll-top:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
}

/* ── Floating WhatsApp button ── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  left: 28px;
  width: 52px;
  height: 52px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
  box-shadow: 0 4px 16px rgba(37,211,102,0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.07);
  box-shadow: 0 8px 24px rgba(37,211,102,0.55);
}

/* ═══════════════════════════════════════
   BLOG — Index page
═══════════════════════════════════════ */
.blog-hero {
  background: linear-gradient(135deg, #0d1b35 0%, #1565C0 100%);
  padding: calc(var(--nav-h) + 56px) 0 64px;
  text-align: center;
  color: #fff;
}
.blog-hero__eyebrow {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 14px;
  margin-bottom: 18px;
  color: #90CAF9;
}
.blog-hero__title {
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}
.blog-hero__sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  margin: 0 auto;
}

.blog-section { padding: 64px 0 80px; }

.blog-index-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
  margin-top: 48px;
}
.blog-index-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e8edf4;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  text-decoration: none;
  color: inherit;
}
.blog-index-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(21,101,192,0.13);
}
.blog-index-card__thumb {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  flex-shrink: 0;
}
.blog-index-card__body { padding: 20px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.blog-index-card__cat {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--blue);
  margin-bottom: 8px;
}
.blog-index-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 10px;
  color: #1a1a2e;
}
.blog-index-card__excerpt {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
}
.blog-index-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.78rem;
  color: #999;
}
.blog-index-card__meta span { display: flex; align-items: center; gap: 4px; }
.blog-index-card__read {
  margin-top: 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.blog-index-card__read::after { content: "→"; }

/* ═══════════════════════════════════════
   BLOG — Article page
═══════════════════════════════════════ */
.article-hero {
  background: linear-gradient(135deg, #0d1b35 0%, #1565C0 100%);
  padding: calc(var(--nav-h) + 48px) 0 52px;
  color: #fff;
}
.article-hero__cat {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 4px 12px;
  margin-bottom: 16px;
  color: #90CAF9;
}
.article-hero__title {
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  max-width: 780px;
  margin-bottom: 16px;
}
.article-hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
}
.article-hero__meta span { display: flex; align-items: center; gap: 5px; }
.article-hero__lead {
  font-size: 1.08rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.85);
  max-width: 720px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
}
.breadcrumb a { color: rgba(255,255,255,0.65); text-decoration: none; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb__sep { opacity: .4; }

.article-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  align-items: start;
  padding: 52px 0 80px;
}

/* Article body typography */
.article-body { min-width: 0; }
.article-body h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #1a1a2e;
  margin: 40px 0 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid #e8edf4;
  line-height: 1.25;
}
.article-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1a1a2e;
  margin: 28px 0 10px;
}
.article-body p {
  font-size: 1rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 18px;
}
.article-body ul, .article-body ol {
  margin: 0 0 20px 20px;
  padding: 0;
}
.article-body li {
  font-size: 1rem;
  line-height: 1.75;
  color: #444;
  margin-bottom: 6px;
}
.article-body a { color: var(--blue); font-weight: 500; }
.article-body a:hover { text-decoration: underline; }
.article-body strong { color: #1a1a2e; }

.article-body .infobox {
  background: #EFF6FF;
  border-left: 4px solid var(--blue);
  border-radius: 0 10px 10px 0;
  padding: 16px 20px;
  margin: 24px 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #334155;
}
.article-body .infobox strong { color: var(--blue); }

.article-body .warnbox {
  background: #FFF8E1;
  border-left: 4px solid #F59E0B;
  border-radius: 0 10px 10px 0;
  padding: 16px 20px;
  margin: 24px 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #334155;
}

.article-body .steps {
  counter-reset: step;
  list-style: none;
  margin-left: 0;
  padding: 0;
}
.article-body .steps li {
  counter-increment: step;
  position: relative;
  padding: 16px 16px 16px 56px;
  background: #f8fafc;
  border-radius: 10px;
  margin-bottom: 10px;
  border: 1px solid #e8edf4;
}
.article-body .steps li::before {
  content: counter(step);
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background: var(--blue);
  color: #fff;
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.article-body .compare-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 0.92rem;
}
.article-body .compare-table th {
  background: #1565C0;
  color: #fff;
  padding: 10px 14px;
  text-align: left;
  font-weight: 600;
}
.article-body .compare-table td {
  padding: 10px 14px;
  border-bottom: 1px solid #e8edf4;
  color: #444;
}
.article-body .compare-table tr:nth-child(even) td { background: #f8fafc; }
.article-body .compare-table .yes { color: #16A34A; font-weight: 600; }
.article-body .compare-table .no  { color: #DC2626; font-weight: 600; }

.inline-cta {
  background: linear-gradient(135deg, #1565C0, #1E88E5);
  border-radius: 14px;
  padding: 24px 28px;
  margin: 32px 0;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.inline-cta__text { font-size: 1rem; font-weight: 600; line-height: 1.4; }
.inline-cta__sub { font-size: 0.83rem; opacity: .8; margin-top: 4px; }
.inline-cta .btn { white-space: nowrap; flex-shrink: 0; }

/* Sidebar */
.article-sidebar {
  position: sticky;
  top: calc(var(--nav-h) + 20px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.sidebar-box {
  background: #fff;
  border: 1px solid #e8edf4;
  border-radius: 14px;
  padding: 20px;
}
.sidebar-box__title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #999;
  margin-bottom: 14px;
}
.toc-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.toc-list li { margin-bottom: 8px; }
.toc-list a {
  font-size: 0.87rem;
  color: #555;
  text-decoration: none;
  display: flex;
  align-items: flex-start;
  gap: 6px;
  line-height: 1.4;
  transition: color .15s;
}
.toc-list a:hover { color: var(--blue); }
.toc-list a::before {
  content: "›";
  font-weight: 700;
  color: var(--blue);
  flex-shrink: 0;
  margin-top: 1px;
}

.sidebar-cta {
  background: linear-gradient(135deg, #1565C0, #1E88E5);
  border-radius: 14px;
  padding: 22px;
  color: #fff;
  text-align: center;
}
.sidebar-cta__title { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.sidebar-cta__sub { font-size: 0.82rem; opacity: .8; margin-bottom: 16px; line-height: 1.5; }
.sidebar-cta .btn { width: 100%; text-align: center; justify-content: center; }

.related-list { list-style: none; margin: 0; padding: 0; }
.related-list li { margin-bottom: 12px; padding-bottom: 12px; border-bottom: 1px solid #f0f4f8; }
.related-list li:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.related-list a {
  font-size: 0.87rem;
  color: #334155;
  text-decoration: none;
  font-weight: 500;
  line-height: 1.4;
  display: block;
}
.related-list a:hover { color: var(--blue); }

.article-author {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #f8fafc;
  border-radius: 14px;
  padding: 20px 24px;
  margin-top: 40px;
  border: 1px solid #e8edf4;
}
.author-avatar {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, #1565C0, #42A5F5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.author-info__name { font-weight: 700; font-size: 0.95rem; color: #1a1a2e; }
.author-info__role { font-size: 0.82rem; color: #888; margin-top: 2px; }

@media (max-width: 900px) {
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
  .blog-index-grid { grid-template-columns: 1fr; }
  .inline-cta { flex-direction: column; }
  .article-body .compare-table { font-size: 0.8rem; }
  .article-body .compare-table th,
  .article-body .compare-table td { padding: 8px 10px; }
}

/* ═════ SCROLL REVEAL ═════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
  transition-delay: var(--d, 0s);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal--delay { --d: 0.18s; }

/* ═════ RESPONSIVE ═════ */
/* ══════════════════════════════════════════════
   RESPONSIVE – Tablet (≤1024px)
══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .pv3-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ══════════════════════════════════════════════
   RESPONSIVE – Mobile landscape / small tablet (≤900px)
══════════════════════════════════════════════ */
@media (max-width: 900px) {
  /* Navbar – clean mobile bar: logo left, hamburger right */
  :root { --nav-h: 60px; }
  .navbar {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 9999; background: #fff;
    height: calc(60px + env(safe-area-inset-top, 0px));
    padding-top: env(safe-area-inset-top, 0px);
    box-shadow: 0 1px 8px rgba(0,0,0,0.08);
  }
  .navbar__inner { height: 60px; display: flex; align-items: center; justify-content: space-between; gap: 8px; padding: 0 20px; }
  .logo { flex-shrink: 0; }
  .navbar__actions { gap: 8px; flex-shrink: 0; }
  .navbar__actions .lang-switcher { display: none; }
  .navbar__actions .btn--sm { display: none; }
  .hamburger { display: flex; }

  .navbar__nav {
    position: fixed;
    top: calc(60px + env(safe-area-inset-top, 0px));
    left: 0; right: 0;
    background: #fff;
    border-bottom: 1px solid var(--gray-200);
    flex-direction: column;
    padding: 8px 0;
    gap: 0;
    transform: translateY(-20px);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.25s ease, opacity 0.25s ease, visibility 0.25s;
    z-index: 9998;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  }
  .navbar__nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .nav-link { width: 100%; text-align: left; padding: 16px 24px; font-size: 1rem; font-weight: 500; border-bottom: 1px solid var(--gray-100); color: var(--text); }
  .nav-link:last-child { border-bottom: none; }

  /* Backdrop */
  .menu-backdrop {
    display: none;
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 9997;
    opacity: 0;
    transition: opacity 0.25s ease;
  }
  .menu-backdrop.open { display: block; opacity: 1; }

  /* Hero */
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__sub, .hero__btns, .hero__trust { max-width: 100%; justify-content: center; }
  .hero__visual { order: -1; }
  .hero__btns { justify-content: center; flex-wrap: wrap; }

  /* Layout grids */
  .cols-3 { grid-template-columns: 1fr; }
  .content-media__inner { grid-template-columns: 1fr; }
  .choose-sub__inner { grid-template-columns: 1fr; }
  .advantages__inner { grid-template-columns: 1fr; }

  /* Steps */
  .steps__grid { grid-template-columns: 1fr; gap: 32px; }
  .step__arrow { display: none; }

  /* Pricing multi */
  .multi-grid { grid-template-columns: 1fr; max-width: 420px; margin: 44px auto 0; }

  /* Blog */
  .blog-grid { grid-template-columns: 1fr; max-width: 500px; margin: 44px auto 0; }

  /* Footer */
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .footer__bottom-inner { flex-direction: column; text-align: center; gap: 8px; }
}

/* ══════════════════════════════════════════════
   RESPONSIVE – Mobile (≤640px)
══════════════════════════════════════════════ */
@media (max-width: 640px) {
  :root { --pad: 16px; }

  /* Navbar */
  .logo__text { font-size: 1rem; }
  .btn--sm { font-size: 0.78rem; padding: 8px 14px; }

  /* Hero */
  .hero { padding: calc(60px + env(safe-area-inset-top, 0px) + 24px) 0 40px; min-height: unset; }
  .hero__inner { padding-top: 0; padding-bottom: 0; }
  .hero__title { font-size: clamp(1.6rem, 6.5vw, 2rem); }
  .hero__lead { font-size: 0.95rem; }
  .hero__sub { font-size: 0.9rem; }
  .hero__btns { flex-direction: column; align-items: center; gap: 12px; }
  .hero__btns .btn { width: 100%; max-width: 320px; justify-content: center; }
  .hero__trust { flex-direction: column; align-items: center; gap: 6px; }
  .hero__badge { font-size: 0.8rem; }

  /* Hide hero visual entirely on mobile */
  .hero__visual { display: none; }

  /* Section headings */
  .section-title { font-size: clamp(1.4rem, 5.5vw, 1.9rem); }

  /* Intro cols */
  .cols-3 { gap: 20px; }
  .col-card { padding: 20px 16px; }

  /* Pricing */
  .pv3-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
  .pv3-card { padding: 24px 20px; }

  /* Why grid */
  .why-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .why-card { padding: 18px 14px; }
  .why-card__icon { width: 50px; height: 50px; border-radius: 13px; }
  .why-card h4 { font-size: 0.85rem; }
  .why-card p { font-size: 0.78rem; }

  /* Testimonials */
  .testi-grid { grid-template-columns: 1fr; }

  /* CTA */
  .cta-band__inner { flex-direction: column; text-align: center; gap: 20px; }
  .cta-band__title { font-size: clamp(1.3rem, 5vw, 1.8rem); }

  /* Footer */
  .footer__grid { grid-template-columns: 1fr; }
  .footer__col { text-align: left; }

  /* Floating lang – tighter on mobile */
  .lang-float { bottom: 80px; right: 16px; }
  .lang-float__btn { padding: 5px 9px; font-size: 0.68rem; }
  .scroll-top { right: 16px; bottom: 24px; }

  /* Steps */
  .step { padding: 20px 16px; }

  /* Advantages */
  .acc-q { font-size: 0.88rem; padding: 14px 16px; }

  /* Blog cards */
  .blog-grid { max-width: 100%; }
  .blog-card__body { padding: 18px 16px; }
}

/* ══════════════════════════════════════════════
   RESPONSIVE – Small mobile (≤400px)
══════════════════════════════════════════════ */
@media (max-width: 400px) {
  .why-grid { grid-template-columns: 1fr; }
  .hero__title { font-size: 1.45rem; }
  .pv3-grid { max-width: 100%; }
  .multi-grid { max-width: 100%; }
}
