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

:root {
  --bg: #000000;
  --bg-soft: #0b0b0f;
  --card: #1a1a1f;
  --card-2: #16161b;
  --text: #ffffff;
  --muted: #b8b8bd;
  --red: #e0003a;
  --radius: 12px;
  --maxw: 1440px;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 12px;
  padding: 11px 22px;
  white-space: nowrap;
  transition: filter 0.15s, transform 0.15s;
}
.btn:hover { filter: brightness(1.08); }
.btn:active { transform: translateY(1px); }

.btn-solid {
  background: #fff;
  color: #0b0b0f;
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.btn-outline {
  background: #2a2a30;
  color: #fff;
}
.btn-inline {
  align-self: flex-start;
  background: #fff;
  color: #0b0b0f;
  border-radius: 10px;
  padding: 8px 16px;
  font-size: 14px;
  margin-top: 12px;
}
.btn-block { width: 100%; margin-top: 14px; }
.btn-lg { font-size: 17px; padding: 14px 30px; border-radius: 14px; }

/* ===== Top Nav ===== */
.top-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: #131a2e;
  box-shadow: 0 2px 18px rgba(0, 0, 0, 0.4);
}
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-actions { display: flex; gap: 12px; }

/* ===== Hero ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
}
.hero-track {
  display: flex;
  height: 100%;
  transition: transform 0.7s cubic-bezier(0.76, 0, 0.24, 1);
}
.hero-slide {
  position: relative;
  min-width: 100%;
  height: 100%;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
/* 暗角黑化效果：四周向中心渐变压暗 + 底部整体加深，突出中心主体 */
.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(ellipse at center,
      rgba(0, 0, 0, 0) 42%,
      rgba(0, 0, 0, 0.55) 76%,
      rgba(0, 0, 0, 0.9) 100%),
    linear-gradient(to top,
      rgba(0, 0, 0, 0.78) 0%,
      rgba(0, 0, 0, 0.25) 42%,
      rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
}
.hero-info {
  position: absolute;
  left: 60px;
  bottom: 70px;
  max-width: 520px;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.hero-info:only-child { gap: 0; }
.hero-badge {
  border: 2px solid #fff;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
}
.hero-date {
  background: #fff;
  color: #0b0b0f;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 4px;
}
.hero-title {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.5px;
}
.hero-desc {
  font-size: 17px;
  color: #e6e6e6;
  line-height: 1.5;
}
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 6;
  background: rgba(0, 0, 0, 0.55);
  border-radius: 50%;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.hero-arrow:hover { background: #fff; }
.hero-arrow:hover svg path { stroke: #000; }
.hero-arrow-left { left: 34px; }
.hero-arrow-right { right: 34px; }
.hero-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 6;
}
.hero-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
}
.hero-dots span.active { background: #fff; }

/* ===== Sections ===== */
.section {
  padding: 70px 40px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
}
.section-title {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.3px;
}
.section-title.center { text-align: center; max-width: 760px; margin: 0 auto 10px; }
.section-title.center.gold { color: #d4af37; font-size: 30px; }
.section-sub {
  margin-top: 10px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
  max-width: 720px;
}
.section-sub.center { text-align: center; margin-left: auto; margin-right: auto; }

.carousel-controls { display: flex; gap: 10px; align-items: center; }
.ctrl-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #2a2a30;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.ctrl-btn::before {
  content: "";
  width: 9px;
  height: 9px;
  border: solid #fff;
  border-width: 2px 2px 0 0;
}
.ctrl-btn[data-car$="Prev"]::before { transform: rotate(-135deg); }
.ctrl-btn[data-car$="Next"]::before { transform: rotate(45deg); }
.ctrl-btn:hover { background: #3a3a42; }

/* ===== Carousel ===== */
.carousel {
  overflow: hidden;
  position: relative;
}
.carousel-track {
  display: flex;
  gap: 20px;
  transition: transform 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ===== Cards ===== */
.card {
  flex: 0 0 calc((100% - 60px) / 4);
  max-width: calc((100% - 60px) / 4);
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
}
.card-media {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
}
.card-media.ph-img {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
#dmTrack .card .card-media {
  aspect-ratio: 3 / 4;
  background-position: center top;
}
#sub1Track .card .card-media,
.card-media-sub {
  aspect-ratio: 3 / 4;
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
}
.card-body {
  padding: 16px 18px 20px;
  display: flex;
  flex-direction: column;
  text-align: left;
}
.card-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0, 0, 0, 0.55);
  padding: 3px 8px;
  border-radius: 4px;
  align-self: flex-start;
  margin-bottom: 8px;
}
.card-title {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.25;
}
.card-sub {
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
}
.card-desc {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
  margin: 4px 0 0;
}

/* Sub card */
.sub-card .card-media { aspect-ratio: 16 / 9; }
.brand-logo {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.5px;
  align-self: flex-start;
  margin-bottom: 6px;
  padding: 6px 10px;
  border-radius: 6px;
}

/* Event card (boxing) */
.event-card .card-media { aspect-ratio: 4 / 3; }
.card-top {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 3;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 4px 8px;
  background: rgba(0, 0, 0, 0.55);
  border-radius: 5px;
  align-items: flex-start;
  flex-direction: column;
}
.card-top svg { flex-shrink: 0; margin-top: 1px; }
.card-top-note {
  font-style: normal;
  font-weight: 400;
  font-size: 10px;
  color: #d6d6d6;
  max-width: 140px;
}
.card-text-overlay {
  position: absolute;
  top: 42%;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 3;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
}
.card-text-overlay span { font-size: 16px; font-weight: 400; opacity: 0.8; }

/* Football card */
.football-card .card-media { aspect-ratio: 16 / 9; }
.football-card .card-top { flex-direction: row; align-items: center; }
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
/* Elements with an inline background image must not show the "Image" placeholder */
.ph[style*="background-image"]::after {
  content: none;
}`
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

/* ===== Feature sections (boxing / football) ===== */
.section-feature {
  position: relative;
  max-width: none;
  padding: 0;
}
.feature-bg {
  position: absolute;
  inset: 0;
  filter: brightness(0.85);
  background-size: cover;
  background-position: center;
}
.feature-bg.ph::after { content: none; }
.section-feature .section-inner {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 90px 40px 90px;
}
.section-feature .section-head { align-items: center; }

/* ===== Split (Try free) ===== */
.section-split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
  gap: 40px;
  position: relative;
}
.split-copy { display: flex; flex-direction: column; gap: 20px; align-items: flex-start; }
.split-copy .btn { align-self: flex-start; }
.split-media .ph {
  border-radius: var(--radius);
  min-height: 360px;
}
.split-media.ph[style*="background-image"] {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* ===== Devices ===== */
.section-devices { text-align: center; padding-top: 60px; }
.devices-divider {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 720px;
  margin: 34px auto 26px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.devices-divider::before,
.devices-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}
.device-grid {
  max-width: 900px;
  margin: 0 auto 26px;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 28px 20px;
  align-items: center;
}
.device-logo-img {
  height: 34px;
  max-width: 120px;
  width: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  filter: brightness(0) invert(1);
}
.section-devices a { color: #4da3ff; }

/* ===== FAQ ===== */
.section-faq { max-width: 900px; }
.faq-list { margin-top: 36px; display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: var(--card);
  border-radius: 14px;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 26px;
  font-size: 17px;
  font-weight: 700;
  text-align: left;
  color: #fff;
}
.faq-icon {
  position: relative;
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: #fff;
  border-radius: 2px;
}
.faq-icon::before { width: 12px; height: 2px; top: 5px; left: 0; }
.faq-icon::after { width: 2px; height: 12px; top: 0; left: 5px; transition: transform 0.25s; }
.faq-item.open .faq-icon::after { transform: rotate(90deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-item.open .faq-a { max-height: 200px; }
.faq-a p {
  padding: 0 26px 24px;
  color: var(--muted);
  line-height: 1.6;
  font-size: 15px;
}

/* ===== Footer ===== */
.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 40px 40px 60px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  color: var(--muted);
  font-size: 14px;
}
.footer-links a:hover { color: #fff; }
.footer-links .dazn-mark { font-weight: 800; color: #ccc; }
.footer-logo { margin-top: 34px; }

/* ===== Placeholder background gradients ===== */
.ph {
  background: linear-gradient(135deg, #2a2a30 0%, #121216 100%);
  position: relative;
}
.ph::after {
  content: "Image";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: rgba(255, 255, 255, 0.35);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
}
/* Elements with an inline background image must not show the "Image" placeholder */
.ph[style*="background-image"]::after {
  content: none;
}
.ph-women { background: linear-gradient(135deg, #d95f2b 0%, #7a1f1f 55%, #2a0d14 100%); }
.ph-boxing { background: linear-gradient(160deg, #3a2a3a 0%, #140f16 60%, #000 100%); }
.ph-nfl { background: linear-gradient(135deg, #1f3a2e 0%, #0d141a 60%, #000 100%); }
.ph-football { background: linear-gradient(135deg, #1f2f3a 0%, #0d141a 60%, #000 100%); }
.ph-boxing2 { background: linear-gradient(135deg, #5a3a3a 0%, #1a0f0f 100%); }
.ph-boxing3 { background: linear-gradient(135deg, #3a2a4a 0%, #121018 100%); }
.ph-boxing4 { background: linear-gradient(135deg, #4a3a2a 0%, #1a120e 100%); }
.ph-nfl2 { background: linear-gradient(135deg, #103a4a 0%, #0a1420 100%); }
.ph-nfl3 { background: linear-gradient(135deg, #4a1020 0%, #14080c 100%); }
.ph-women2 { background: linear-gradient(135deg, #c95f2b 0%, #6a1f1f 55%, #2a0d14 100%); }
.ph-basketball { background: linear-gradient(135deg, #2b3a5a 0%, #10141f 100%); }
.ph-football2 { background: linear-gradient(135deg, #3a5a2b 0%, #101f14 100%); }
.ph-all { background: linear-gradient(135deg, #3a4a6a 0%, #141a24 55%, #0a0d14 100%); }
.ph-ncaa { background: linear-gradient(135deg, #1a5a9a 0%, #0a1a2a 60%, #04101c 100%); }
.ph-golf { background: linear-gradient(135deg, #3a3a1f 0%, #141410 100%); }
.ph-tennis { background: linear-gradient(135deg, #2b6a4a 0%, #0e1a14 100%); }
.ph-cycling { background: linear-gradient(135deg, #5a3a1f 0%, #1a1208 100%); }
.ph-hockey { background: linear-gradient(135deg, #2b3a6a 0%, #0e141f 100%); }
.ph-snooker { background: linear-gradient(135deg, #1f3a3a 0%, #0a1414 100%); }
.ph-band { background: linear-gradient(135deg, #5a2b3a 0%, #1a0e14 100%); }
.ph-bundesliga { background: linear-gradient(135deg, #7a1420 0%, #2a0a12 100%); }
.ph-bundesliga2 { background: linear-gradient(135deg, #1f1f2a 0%, #0a0a10 80%, #d9cc1a 100%); }
.ph-jupiler { background: linear-gradient(135deg, #1a4a3a 0%, #0a1410 60%, #2a5a7a 100%); }
.ph-national { background: linear-gradient(135deg, #2a2a3a 0%, #12121a 80%, #5a4a1a 100%); }
.ph-sports { background: linear-gradient(135deg, #3a0e14 0%, #7a1420 55%, #1a0408 100%); min-height: 360px; }

/* ===== Responsive ===== */
@media (max-width: 1100px) {
  .card { flex: 0 0 calc((100% - 40px) / 3); max-width: calc((100% - 40px) / 3); }
  .device-grid { grid-template-columns: repeat(6, 1fr); }
}
@media (max-width: 820px) {
  .hero-info { left: 30px; bottom: 46px; }
  .hero-title { font-size: 38px; }
  .section { padding: 50px 24px; }
  .card { flex: 0 0 calc((100% - 20px) / 2); max-width: calc((100% - 20px) / 2); }
  .carousel-track { gap: 14px; }
  .section-split { grid-template-columns: 1fr; }
  .device-grid { grid-template-columns: repeat(3, 1fr); }
  .section-head { flex-direction: column; align-items: flex-start; }
}

/* Scrollbar helper (hidden) */
.carousel::-webkit-scrollbar { display: none; }
/* ============================================================
   Welcome / Subscription Landing Page (Italy en-IT)
   ============================================================ */

/* --- Welcome Hero --- */
.welcome-hero {
  position: relative;
  width: 1600px;
  max-width: calc(100% - 48px);
  min-height: 700px;
  margin: 72px auto 0;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  text-align: left;
  padding: 0 0 64px;
  border-radius: 28px;
  background: #000;
  box-shadow: inset -260px 0 160px rgba(0, 0, 0, 0.32);
}
.welcome-hero-bg {
  position: absolute;
  inset: 0;
  background-size: 100% auto;
  background-position: center 22%;
  background-repeat: no-repeat;
  min-height: 100%;
}
.welcome-hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.08) 40%, rgba(0, 0, 0, 0) 78%);
}
.welcome-hero-content {
  position: relative;
  z-index: 3;
  max-width: 860px;
  padding: 0 56px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.welcome-hero-title {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.5px;
  text-wrap: balance;
}
.welcome-hero-sub {
  font-size: 20px;
  font-weight: 400;
  color: #ececef;
  line-height: 1.55;
  max-width: 620px;
  text-wrap: balance;
}
.welcome-hero-price {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  padding: 7px 16px;
}

/* --- Billing toggle (Annual / Monthly) --- */
.billing-toggle {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 10px;
}
.billing-option {
  font-size: 16px;
  font-weight: 600;
  color: #b8b8bd;
  cursor: pointer;
  transition: color 0.2s;
}
.billing-option.active { color: #fff; }
.billing-switch {
  position: relative;
  width: 58px;
  height: 32px;
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: background 0.25s;
}
.billing-thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.25s;
}
#billingSwitch.on { background: var(--red); }
#billingSwitch.on .billing-thumb { transform: translateX(26px); }

/* --- Pricing plans --- */
.section-plans { padding-top: 60px; }
.plan-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  align-items: stretch;
}
.plan-card {
  position: relative;
  background: var(--card);
  border-radius: var(--radius);
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}
.plan-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5); }
.plan-featured { border: 2px solid var(--red); }
.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  border-radius: 20px;
  padding: 6px 14px;
  white-space: nowrap;
}
.plan-name { font-size: 24px; font-weight: 800; }
.plan-desc { font-size: 14px; color: var(--muted); line-height: 1.5; min-height: 64px; }
.plan-price { display: flex; align-items: baseline; gap: 4px; margin-top: 2px; }
.plan-price-amount { font-size: 30px; font-weight: 800; }
.plan-price-period { font-size: 15px; color: var(--muted); font-weight: 600; }
.plan-links {
  display: flex;
  gap: 18px;
  font-size: 14px;
  font-weight: 600;
}
.plan-link { cursor: pointer; color: #fff; }
.plan-link:hover { text-decoration: underline; }
.plan-link.muted { color: var(--muted); }
.plan-logos {
  margin-top: auto;
  padding-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.plan-logo { font-size: 15px; font-weight: 800; letter-spacing: -0.5px; }
.plan-logo-img {
  width: 42px;
  height: 28px;
  object-fit: contain;
  background: #fff;
  border-radius: 6px;
  padding: 3px;
}
.brand-dazn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 28px;
  background: #fff;
  color: #0b0b0f;
  border-radius: 6px;
  font-size: 12px;
  padding: 0 6px;
}

/* --- DAZN FULL marketing --- */
.section-daznf { position: relative; }
.daznf-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.16;
}
.daznf-inner {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.daznf-edition {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--red);
}
.daznf-list {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  text-align: left;
  max-width: 720px;
}
.daznf-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 18px 20px;
}
.daznf-item p { font-size: 16px; line-height: 1.5; color: #e6e6e6; }
.daznf-icon { flex-shrink: 0; margin-top: 2px; }

/* --- Responsive for plans & hero --- */
@media (max-width: 1180px) {
  .plan-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .plan-grid { grid-template-columns: 1fr; }
  .welcome-hero { min-height: 560px; padding-bottom: 40px; }
  .welcome-hero-title { font-size: 40px; }
  .welcome-hero-sub { font-size: 16px; }
  .welcome-hero-content { padding: 0 24px; }
  .welcome-hero-title { font-size: 34px; }
}

/* ============================================================
   Welcome v2 — Matched to Italy en-IT live screenshot
   (yellow/gold accent, dual Hero CTA, Full Mobile block)
   ============================================================ */

/* --- Yellow / gold accent --- */
.white { --aa: #fff; }
.section-title.center { text-align: center; max-width: 820px; margin: 0 auto 10px; }
.center-head {
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.section-title.center,
.section-head.center { text-align: center; }

/* Yellow primary buttons */
.btn-yellow {
  background: #ffd019;
  color: #0b0b0f;
}
.btn-solid { background: #fff; color: #0b0b0f; }
.btn-block { width: 100%; margin-top: 8px; }

/* Hero dual CTA */
.welcome-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  margin-top: 14px;
}
.welcome-cta .btn {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.welcome-cta .btn-yellow {
  background: #f6c90e;
  box-shadow: 0 8px 24px rgba(246, 201, 14, 0.3);
}
.welcome-cta .btn-yellow:hover {
  background: #ffd41f;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(246, 201, 14, 0.42);
  filter: none;
}
.welcome-cta .btn-solid {
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}
.welcome-cta .btn-solid:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
  filter: none;
}
.welcome-cta .cta-price {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.2px;
}
.welcome-cta .cta-per {
  font-size: 14px;
  font-weight: 600;
  opacity: 0.6;
  margin-left: 4px;
  margin-top: 0;
}
.cta-or {
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  opacity: 0.85;
}

/* --- Full Mobile block --- */
/* --- Full Mobile block (centered banner + grid) --- */
.section-fullmobile {
  background: linear-gradient(180deg, #0b0b0f 0%, #17171c 100%);
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 40px 96px;
}
.fullmobile-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
  max-width: 1200px;
  width: 100%;
}
.fullmobile-head .section-title {
  font-size: 42px;
  text-align: center;
  white-space: nowrap;
  max-width: none;
}
.fullmobile-head .section-sub { text-align: center; max-width: none; white-space: nowrap; font-size: 16px; }
.fullmobile-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #3a2600;
  background: #ffd019;
  padding: 9px 18px;
  border-radius: 999px;
  text-transform: uppercase;
}

/* --- Full Mobile : lower "frame" with left-text / right-visual --- */
.fullmobile-frame {
  width: 100%;
  max-width: 1600px;
  margin: 60px auto 0;
  min-height: 680px;
  border: 1px solid rgba(255, 208, 25, 0.14);
  border-radius: 28px;
  background-image: url("../assets/fullmobile-phone2.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* 轻微遮罩保证左侧文字可读，整体保持明亮 */
  box-shadow: inset -240px 0 140px rgba(0, 0, 0, 0.55), inset 0 0 80px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.fullmobile-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(8, 8, 12, 0.7) 0%, rgba(8, 8, 12, 0.45) 40%, rgba(8, 8, 12, 0.05) 70%, transparent 92%);
  pointer-events: none;
}
.fullmobile-frame-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  max-width: 640px;
  padding: 84px 48px 84px 88px;
}
.frame-title { font-size: 30px; font-weight: 800; color: #fff; line-height: 1.2; }
.frame-note { font-size: 15px; color: #dcdce2; }
.btn-solid-frame {
  margin-top: 4px;
  background: #fff;
  color: #0b0b0f;
  border: none;
  border-radius: 999px;
  padding: 13px 30px;
  font-weight: 700;
  font-size: 15px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 10px 26px rgba(0,0,0,0.35);
}
.btn-solid-frame:hover { transform: translateY(-2px); }
.frame-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-top: 6px;
}
.frame-features li {
  font-size: 14px;
  color: #cfcfd6;
  line-height: 1.45;
  padding-left: 28px;
  position: relative;
}
.frame-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 16px;
  height: 16px;
  background: #ffd019;
  border-radius: 50%;
}
.frame-features li::after {
  content: "✓";
  position: absolute;
  left: 2px;
  top: 2px;
  width: 12px;
  height: 12px;
  color: #0b0b0f;
  font-size: 10px;
  font-weight: 700;
  line-height: 16px;
  text-align: center;
}


/* --- Plan cards (gold featured) --- */
.plan-featured { border: 2px solid #ffd019; }
.plan-badge {
  background: #ffd019;
  color: #0b0b0f;
}
.plan-feats { list-style: none; display: flex; flex-direction: column; gap: 9px; margin-top: 2px; }
.plan-feats li { font-size: 14px; color: var(--muted); padding-left: 22px; position: relative; }
.plan-feats li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ffd019;
}
.plan-more { margin-top: auto; padding-top: 16px; font-size: 14px; font-weight: 600; color: #fff; }
.plan-more:hover { text-decoration: underline; }

/* Billing switch gold when active */
#billingSwitch.on { background: #ffd019; }
#billingSwitch.on .billing-thumb { transform: translateX(26px); background: #0b0b0f; }

/* Devices divider */
.devices-divider {
  max-width: 560px;
  margin: 26px auto 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.devices-divider::before,
.devices-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
}

/* Responsive */
@media (max-width: 980px) {
  .section-fullmobile { padding: 70px 24px; }
  .fullmobile-head .section-title { font-size: 34px; white-space: normal; }
  .fullmobile-head .section-sub { font-size: 14px; white-space: normal; }
  .fullmobile-frame { min-height: 460px; padding: 36px 26px; margin-top: 44px; }
  .fullmobile-frame-copy { max-width: none; padding-right: 0; }
  .frame-title { font-size: 24px; }
}

/* Plan logo rows */
.plan-logos { margin-top: auto; padding-top: 16px; }
.plan-logo-img { display: inline-block; }
.brand-dazn { display: inline-flex; }

/* Device logo grid images */
.device-logo-img {
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
