/* ============================================
   BritishIPTV – Homepage Sections
============================================ */

/* ---- Shared section styles ---- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,48,135,0.07);
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  border: 1px solid rgba(0,48,135,0.12);
  margin-bottom: 16px;
}
.section-label.red {
  background: rgba(207,20,43,0.07);
  color: var(--accent);
  border-color: rgba(207,20,43,0.15);
}
.section-heading {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 900;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}
.section-heading span { color: var(--accent); }
.section-heading .blue { color: var(--primary); }
.section-intro {
  font-size: 17px;
  color: var(--muted);
  max-width: 580px;
  line-height: 1.7;
}
.section-intro strong { color: var(--text); }

/* ============================================
   FEATURES SECTION
============================================ */
.features-section {
  background: #ffffff;
  padding: 90px 0 100px;
  position: relative;
  overflow: hidden;
}
/* Subtle background pattern */
.features-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(0,48,135,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.features-top {
  text-align: center;
  margin-bottom: 60px;
}
.features-top .section-intro {
  margin: 0 auto;
}

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

.feature-card {
  background: #ffffff;
  border: 1.5px solid #e8eef8;
  border-radius: 16px;
  padding: 36px 30px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
  border-radius: 16px 16px 0 0;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,48,135,0.10);
  border-color: rgba(0,48,135,0.15);
}
.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  flex-shrink: 0;
}
.icon-blue   { background: rgba(0,48,135,0.08); }
.icon-red    { background: rgba(207,20,43,0.08); }
.icon-green  { background: rgba(5,150,105,0.08); }
.icon-purple { background: rgba(109,40,217,0.08); }
.icon-orange { background: rgba(234,88,12,0.08); }
.icon-teal   { background: rgba(13,148,136,0.08); }

.feature-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.3;
}
.feature-desc {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.7;
}
.feature-desc strong { color: var(--text); font-weight: 600; }

/* Feature card number badge */
.feature-num {
  position: absolute;
  top: 22px;
  right: 24px;
  font-size: 42px;
  font-weight: 900;
  color: rgba(0,48,135,0.05);
  line-height: 1;
  pointer-events: none;
  font-family: 'Segoe UI', Arial, sans-serif;
}

/* ---- Coloured feature card variants ---- */
.feature-card.fc-blue   { background: linear-gradient(135deg, #003087 0%, #1a5fd4 100%); border-color: transparent; }
.feature-card.fc-red    { background: linear-gradient(135deg, #CF142B 0%, #ff4060 100%); border-color: transparent; }
.feature-card.fc-green  { background: linear-gradient(135deg, #059669 0%, #10b981 100%); border-color: transparent; }
.feature-card.fc-purple { background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%); border-color: transparent; }
.feature-card.fc-orange { background: linear-gradient(135deg, #ea580c 0%, #f97316 100%); border-color: transparent; }
.feature-card.fc-teal   { background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%); border-color: transparent; }

.feature-card[class*="fc-"] { box-shadow: 0 8px 30px rgba(0,0,0,0.12); }
.feature-card[class*="fc-"]:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.22);
  border-color: transparent;
}
.feature-card[class*="fc-"]::before { display: none; }
.feature-card[class*="fc-"] .feature-num   { color: rgba(255,255,255,0.10); }
.feature-card[class*="fc-"] .feature-icon-wrap { background: rgba(255,255,255,0.18) !important; }
.feature-card[class*="fc-"] .feature-icon-wrap svg { stroke: #ffffff !important; }
.feature-card[class*="fc-"] .feature-title { color: #ffffff; }
.feature-card[class*="fc-"] .feature-desc  { color: rgba(255,255,255,0.82); }
.feature-card[class*="fc-"] .feature-desc strong { color: #ffffff; font-weight: 700; }

/* ============================================
   CHANNEL CATEGORIES SECTION
============================================ */
.channels-section {
  background: linear-gradient(160deg, #f4f6fb 0%, #eef1f9 100%);
  padding: 90px 0 100px;
  position: relative;
}

.channels-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.channels-top-left { max-width: 560px; }
.channels-view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 700;
  font-size: 14px;
  border-bottom: 2px solid var(--primary);
  padding-bottom: 2px;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
}
.channels-view-all:hover { color: var(--accent); border-color: var(--accent); }

/* Category cards */
.channels-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.channel-cat-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 32px 24px 28px;
  text-align: center;
  border: 1.5px solid #e4eaf6;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: default;
}
.channel-cat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,48,135,0.10);
}
/* Gradient glow on hover */
.channel-cat-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(0,48,135,0.04), transparent);
  opacity: 0;
  transition: opacity 0.3s;
  border-radius: 18px;
}
.channel-cat-card:hover::after { opacity: 1; }

.cat-flag {
  font-size: 44px;
  line-height: 1;
  margin-bottom: 14px;
  display: block;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.12));
}
.cat-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 6px;
}
.cat-count {
  font-size: 13px;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 10px;
}
.cat-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}
/* ---- Coloured channel category cards ---- */
.channel-cat-card.ccc-uk      { background: linear-gradient(145deg, #002670 0%, #CF142B 100%); border-color: transparent; }
.channel-cat-card.ccc-europe  { background: linear-gradient(145deg, #003399 0%, #0055cc 100%); border-color: transparent; }
.channel-cat-card.ccc-romania { background: linear-gradient(145deg, #002B7F 0%, #CE1126 100%); border-color: transparent; }
.channel-cat-card.ccc-sports  { background: linear-gradient(145deg, #1d4ed8 0%, #059669 100%); border-color: transparent; }
.channel-cat-card.ccc-movies  { background: linear-gradient(145deg, #6d28d9 0%, #db2777 100%); border-color: transparent; }
.channel-cat-card.ccc-world   { background: linear-gradient(145deg, #0369a1 0%, #0891b2 100%); border-color: transparent; }
.channel-cat-card.ccc-news    { background: linear-gradient(145deg, #b91c1c 0%, #c2410c 100%); border-color: transparent; }
.channel-cat-card.ccc-kids    { background: linear-gradient(145deg, #d97706 0%, #059669 100%); border-color: transparent; }

.channel-cat-card[class*="ccc-"] { box-shadow: 0 8px 28px rgba(0,0,0,0.14); }
.channel-cat-card[class*="ccc-"]:hover { box-shadow: 0 20px 50px rgba(0,0,0,0.25); }
.channel-cat-card[class*="ccc-"]::after { display: none; }
.channel-cat-card[class*="ccc-"] .cat-title { color: #ffffff; }
.channel-cat-card[class*="ccc-"] .cat-count { color: rgba(255,255,255,0.95); font-size: 14px; }
.channel-cat-card[class*="ccc-"] .cat-desc  { color: rgba(255,255,255,0.75); }
.channel-cat-card[class*="ccc-"] .cat-flag  { filter: drop-shadow(0 4px 10px rgba(0,0,0,0.3)); }

/* Channels bottom CTA bar */
.channels-cta-bar {
  margin-top: 50px;
  background: linear-gradient(135deg, var(--primary), #001f6b);
  border-radius: 20px;
  padding: 40px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  box-shadow: 0 20px 50px rgba(0,48,135,0.25);
  position: relative;
  overflow: hidden;
}
.channels-cta-bar::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 400px; height: 400px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
  pointer-events: none;
}
.cta-bar-text h3 {
  font-size: 24px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 6px;
}
.cta-bar-text p {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
}
.cta-bar-text p strong { color: rgba(255,255,255,0.9); }
.cta-bar-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 15px 34px;
  border-radius: 50px;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(207,20,43,0.45);
  transition: transform 0.2s, box-shadow 0.2s;
}
.cta-bar-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(207,20,43,0.55);
  color: #fff;
}

/* ============================================
   Responsive
============================================ */
@media (max-width: 1024px) {
  .features-grid  { grid-template-columns: repeat(2, 1fr); }
  .channels-grid  { grid-template-columns: repeat(4, 1fr); gap: 16px; }
  .channel-cat-card { padding: 24px 16px 20px; }
}

@media (max-width: 768px) {
  .features-section,
  .channels-section { padding: 60px 0 70px; }
  .features-grid  { grid-template-columns: 1fr; gap: 18px; }
  .channels-grid  { grid-template-columns: repeat(2, 1fr); }
  .channels-top   { flex-direction: column; align-items: flex-start; margin-bottom: 36px; }
  .channels-cta-bar { padding: 30px 24px; flex-direction: column; text-align: center; }
  .cta-bar-text h3 { font-size: 20px; }
  .features-top   { margin-bottom: 36px; }
}

@media (max-width: 480px) {
  .channels-grid  { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .cat-flag       { font-size: 34px; }
  .cat-title      { font-size: 14px; }
  .feature-card   { padding: 26px 22px; }
}

/* ============================================
   HOW TO ORDER SECTION
============================================ */
.how-order-section {
  background: #ffffff;
  padding: 100px 0 110px;
  position: relative;
  overflow: hidden;
}
/* Dot texture */
.how-order-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(0,48,135,0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.how-order-top {
  text-align: center;
  margin-bottom: 72px;
  position: relative;
  z-index: 1;
}
.how-order-top .section-intro { margin: 0 auto; }

/* Steps container */
.how-order-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
  z-index: 1;
  align-items: start;
}

/* ---- Step cards grid ---- */
.how-steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}

/* Individual card */
.how-card {
  background: #ffffff;
  border: 1.5px solid #e8eef8;
  border-radius: 20px;
  padding: 30px 22px 26px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 18px rgba(0,48,135,0.06);
}
.how-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 22px 55px rgba(0,0,0,0.12);
}

/* Coloured left border */
.how-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  border-radius: 20px 0 0 20px;
}
.hc-1::before { background: linear-gradient(180deg, #003087, #1a5fd4); }
.hc-2::before { background: linear-gradient(180deg, #CF142B, #ff4060); }
.hc-3::before { background: linear-gradient(180deg, #059669, #10b981); }
.hc-4::before { background: linear-gradient(180deg, #7c3aed, #a855f7); }
.hc-5::before { background: linear-gradient(180deg, #d97706, #f59e0b); }

/* Big watermark number */
.how-card-num {
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 56px;
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
  font-family: 'Segoe UI', Arial, sans-serif;
}
.hc-1 .how-card-num { color: rgba(0,48,135,0.06); }
.hc-2 .how-card-num { color: rgba(207,20,43,0.06); }
.hc-3 .how-card-num { color: rgba(5,150,105,0.06); }
.hc-4 .how-card-num { color: rgba(124,58,237,0.06); }
.hc-5 .how-card-num { color: rgba(217,119,6,0.07); }

/* Icon box */
.how-card-icon {
  width: 54px;
  height: 54px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hci-blue   { background: linear-gradient(135deg, #003087, #1a5fd4); }
.hci-red    { background: linear-gradient(135deg, #CF142B, #ff4060); }
.hci-green  { background: linear-gradient(135deg, #059669, #10b981); }
.hci-purple { background: linear-gradient(135deg, #7c3aed, #a855f7); }
.hci-gold   { background: linear-gradient(135deg, #d97706, #f59e0b); }

/* Step label */
.how-card-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: -4px;
}

/* Title */
.how-card-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--text);
  line-height: 1.3;
  margin: 0;
}

/* Description */
.how-card-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
  flex: 1;
}
.how-card-desc strong { color: var(--text); font-weight: 600; }

/* Tag on last card */
.how-card-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(5,150,105,0.08);
  border: 1px solid rgba(5,150,105,0.25);
  color: #059669;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 50px;
  width: fit-content;
  margin-top: 4px;
}

/* Bottom CTA */
.how-order-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 56px;
  position: relative;
  z-index: 1;
}

/* Responsive */
@media (max-width: 1100px) {
  .how-steps-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .how-order-section { padding: 70px 0 80px; }
  .how-steps-grid    { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .how-order-top     { margin-bottom: 40px; }
}
@media (max-width: 480px) {
  .how-steps-grid { grid-template-columns: 1fr; gap: 14px; }
}

/* ============================================
   DEVICES & APPS SECTION
============================================ */
.devices-section {
  background: #ffffff;
  padding: 100px 0 110px;
  position: relative;
  overflow: hidden;
}
.devices-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(0,48,135,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.devices-section::after {
  content: '';
  position: absolute;
  bottom: -80px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(207,20,43,0.05) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.devices-top {
  text-align: center;
  margin-bottom: 64px;
  position: relative;
  z-index: 1;
}
.devices-top .section-intro { margin: 0 auto; }

/* ---- Device cards grid ---- */
.devices-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 70px;
  position: relative;
  z-index: 1;
}

.device-card {
  background: #ffffff;
  border: 1.5px solid #e8eef8;
  border-radius: 20px;
  padding: 34px 22px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  position: relative;
  overflow: hidden;
}
.device-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
  border-radius: 0 0 20px 20px;
}
.device-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,48,135,0.10);
  border-color: rgba(0,48,135,0.18);
}
.device-card:hover::before { transform: scaleX(1); }

.dc-blue::before   { background: linear-gradient(90deg, #003087, #1a5fd4); }
.dc-red::before    { background: linear-gradient(90deg, #CF142B, #ff4060); }
.dc-green::before  { background: linear-gradient(90deg, #059669, #10b981); }
.dc-purple::before { background: linear-gradient(90deg, #7c3aed, #a855f7); }
.dc-orange::before { background: linear-gradient(90deg, #ea580c, #f97316); }
.dc-teal::before   { background: linear-gradient(90deg, #0d9488, #14b8a6); }
.dc-pink::before   { background: linear-gradient(90deg, #db2777, #ec4899); }
.dc-dark::before   { background: linear-gradient(90deg, #1e293b, #475569); }

.device-icon-box {
  width: 72px; height: 72px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.dib-blue   { background: rgba(0,48,135,0.08); }
.dib-red    { background: rgba(207,20,43,0.08); }
.dib-green  { background: rgba(5,150,105,0.08); }
.dib-purple { background: rgba(124,58,237,0.08); }
.dib-orange { background: rgba(234,88,12,0.08); }
.dib-teal   { background: rgba(13,148,136,0.08); }
.dib-pink   { background: rgba(219,39,119,0.08); }
.dib-dark   { background: rgba(30,41,59,0.08); }

.device-name {
  font-size: 15px;
  font-weight: 800;
  color: var(--text);
  line-height: 1.3;
}
.device-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}
.device-badge {
  font-size: 11px;
  font-weight: 700;
  color: #059669;
  background: rgba(5,150,105,0.08);
  padding: 3px 12px;
  border-radius: 50px;
  border: 1px solid rgba(5,150,105,0.2);
}

/* ---- Apps row ---- */
.apps-label {
  text-align: center;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}
.apps-label h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 6px;
}
.apps-label p {
  font-size: 15px;
  color: var(--muted);
}

.apps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  position: relative;
  z-index: 1;
  margin-bottom: 56px;
}

.app-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--light-bg);
  border: 1.5px solid var(--border);
  border-radius: 50px;
  padding: 10px 20px;
  transition: background 0.2s, border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  cursor: default;
}
.app-pill:hover {
  background: #fff;
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,48,135,0.10);
}
.app-pill-icon { font-size: 20px; line-height: 1; }
.app-pill-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
}

/* ---- Bottom compatibility banner ---- */
.compat-banner {
  background: linear-gradient(135deg, var(--primary) 0%, #001f6b 100%);
  border-radius: 20px;
  padding: 36px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,48,135,0.22);
}
.compat-banner::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 260px; height: 260px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
  pointer-events: none;
}
.compat-items {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: center;
}
.compat-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.compat-item-icon {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.compat-item-text { display: flex; flex-direction: column; }
.compat-item-val  { font-size: 18px; font-weight: 900; color: #fff; line-height: 1; }
.compat-item-lbl  { font-size: 11px; color: rgba(255,255,255,0.55); font-weight: 500; margin-top: 2px; }

/* Responsive */
@media (max-width: 1024px) {
  .devices-grid { grid-template-columns: repeat(4, 1fr); gap: 18px; }
}
@media (max-width: 768px) {
  .devices-section { padding: 70px 0 80px; }
  .devices-grid    { grid-template-columns: repeat(2, 1fr); }
  .devices-top     { margin-bottom: 44px; }
  .compat-banner   { padding: 28px 24px; flex-direction: column; align-items: flex-start; }
  .compat-items    { gap: 20px; }
}
@media (max-width: 480px) {
  .devices-grid  { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .device-card   { padding: 24px 16px 20px; }
  .device-icon-box { width: 58px; height: 58px; }
  .apps-grid     { gap: 10px; }
  .app-pill      { padding: 8px 14px; }
  .app-pill-name { font-size: 13px; }
}

/* ============================================
   PRICING SECTION
============================================ */
.pricing-section {
  background: linear-gradient(160deg, #05071a 0%, #0d1640 50%, #07091e 100%);
  padding: 100px 0 110px;
  position: relative;
  overflow: hidden;
}
.pricing-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
/* Decorative orbs */
.pricing-section::after {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,52,160,0.20) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.pricing-top {
  text-align: center;
  margin-bottom: 20px;
}
.pricing-top .section-intro { margin: 0 auto; }

/* Dark bg overrides */
.pricing-section .section-label {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.12);
}
.pricing-section .section-heading { color: #ffffff; }
.pricing-section .section-heading span { color: #CF142B; }
.pricing-section .section-intro   { color: rgba(255,255,255,0.6); }
.pricing-section .section-intro strong { color: rgba(255,255,255,0.9); }

/* Guarantee strip */
.pricing-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin: 22px 0 56px;
}
.pg-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
}
.pg-item svg { flex-shrink: 0; }
.pg-divider {
  width: 1px; height: 20px;
  background: rgba(255,255,255,0.15);
}

/* Pricing grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
  position: relative;
  z-index: 1;
}

/* Base card */
.price-card {
  background: #ffffff;
  border: 2px solid #e4eaf6;
  border-radius: 24px;
  padding: 40px 34px 36px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
  overflow: hidden;
}
.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,48,135,0.12);
}

/* Popular card – centre, elevated */
.price-card.popular {
  border-color: var(--primary);
  transform: translateY(-12px);
  box-shadow: 0 32px 80px rgba(0,48,135,0.18);
  z-index: 2;
}
.price-card.popular:hover {
  transform: translateY(-18px);
  box-shadow: 0 40px 90px rgba(0,48,135,0.22);
}

/* Best value card */
.price-card.best-value {
  border-color: var(--accent);
}
.price-card.best-value:hover {
  box-shadow: 0 24px 60px rgba(207,20,43,0.12);
}

/* Card top gradient strip */
.price-card-strip {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  border-radius: 24px 24px 0 0;
}
.strip-default { background: linear-gradient(90deg, #c8d6f0, #a0b4dc); }
.strip-popular { background: linear-gradient(90deg, var(--primary), #1a5fd4); }
.strip-value   { background: linear-gradient(90deg, var(--accent), #ff6b85); }

/* Badge */
.price-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 22px;
  width: fit-content;
}
.badge-popular   { background: var(--primary); color: #fff; }
.badge-value     { background: var(--accent);  color: #fff; }
.badge-standard  { background: rgba(0,48,135,0.07); color: var(--primary); }

/* Plan name */
.price-plan-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

/* Price display */
.price-display {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  margin-bottom: 6px;
  line-height: 1;
}
.price-currency {
  font-size: 26px;
  font-weight: 800;
  color: var(--text);
  margin-top: 10px;
}
.price-amount {
  font-size: 72px;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -3px;
  line-height: 1;
}
.price-card.popular  .price-amount { color: var(--primary); }
.price-card.best-value .price-amount { color: var(--accent); }

.price-period {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 6px;
}
.price-per-month {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  background: var(--light-bg);
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 28px;
}
.price-card.popular   .price-per-month { background: rgba(0,48,135,0.07);  color: var(--primary); }
.price-card.best-value .price-per-month { background: rgba(207,20,43,0.07); color: var(--accent); }

/* Divider */
.price-divider {
  height: 1px;
  background: var(--border);
  margin: 0 0 24px;
}

/* Feature list */
.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  margin-bottom: 32px;
}
.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.4;
}
.price-features li .check {
  flex-shrink: 0;
  width: 20px; height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.check-blue  { background: rgba(0,48,135,0.10); }
.check-red   { background: rgba(207,20,43,0.10); }
.check-green { background: rgba(5,150,105,0.10); }

/* Bonus row (media player) */
.price-bonus {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.4;
  background: linear-gradient(135deg, rgba(207,20,43,0.06), rgba(207,20,43,0.03));
  border: 1px dashed rgba(207,20,43,0.3);
  border-radius: 10px;
  padding: 10px 12px;
  margin-bottom: 12px;
}
.price-bonus strong { color: var(--accent); }
.bonus-icon {
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* CTA button */
.price-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  padding: 15px 24px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  transition: transform 0.2s, box-shadow 0.2s;
  text-align: center;
}
.price-btn:hover { transform: translateY(-2px); }

.btn-plan-default {
  background: var(--light-bg);
  color: var(--primary);
  border: 2px solid var(--border);
}
.btn-plan-default:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 8px 24px rgba(0,48,135,0.25);
}
.btn-plan-popular {
  background: linear-gradient(135deg, var(--primary), #1a5fd4);
  color: #fff;
  box-shadow: 0 8px 28px rgba(0,48,135,0.35);
}
.btn-plan-popular:hover {
  box-shadow: 0 14px 36px rgba(0,48,135,0.45);
  color: #fff;
}
.btn-plan-value {
  background: linear-gradient(135deg, var(--accent), #ff4060);
  color: #fff;
  box-shadow: 0 8px 28px rgba(207,20,43,0.35);
}
.btn-plan-value:hover {
  box-shadow: 0 14px 36px rgba(207,20,43,0.45);
  color: #fff;
}

/* Trust note under pricing */
.pricing-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 44px;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}

/* Responsive */
@media (max-width: 1024px) {
  .pricing-grid { gap: 20px; }
  .price-card   { padding: 32px 26px 28px; }
  .price-amount { font-size: 60px; }
}
@media (max-width: 768px) {
  .pricing-section { padding: 70px 0 80px; }
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }
  .price-card.popular { transform: none; }
  .price-card.popular:hover { transform: translateY(-6px); }
}
@media (max-width: 480px) {
  .price-amount   { font-size: 52px; }
  .price-currency { font-size: 22px; }
  .pg-divider     { display: none; }
}

/* ============================================
   SEO CONTENT SECTION
============================================ */
.seo-content-section {
  background: #ffffff;
  padding: 100px 0 110px;
  position: relative;
  overflow: hidden;
}
.seo-content-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(0,48,135,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.seo-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 100px;
}
.seo-block:last-child { margin-bottom: 0; }

.seo-block-reverse .seo-img-wrap { order: 2; }
.seo-block-reverse .seo-text     { order: 1; }

.seo-img-wrap { position: relative; }
.seo-img-wrap::before {
  content: '';
  position: absolute;
  inset: -14px;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(0,48,135,0.07), rgba(207,20,43,0.05));
  z-index: 0;
}
.seo-illustration {
  position: relative;
  z-index: 1;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(0,0,0,0.18), 0 0 0 1px rgba(0,48,135,0.10);
  line-height: 0;
}
.seo-illustration svg { width: 100%; height: auto; display: block; }

.seo-text { position: relative; z-index: 1; }
.seo-text .section-label { margin-bottom: 18px; }

.seo-heading {
  font-size: clamp(24px, 2.6vw, 36px);
  font-weight: 900;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}
.seo-heading span { color: var(--accent); }
.seo-heading .blue { color: var(--primary); }

.seo-text p {
  font-size: 15.5px;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 14px;
}
.seo-text p strong { color: var(--text); font-weight: 700; }

.seo-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-top: 22px;
}
.seo-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 14.5px;
  color: var(--text);
  font-weight: 500;
  line-height: 1.5;
}
.seo-check {
  width: 22px; height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.sc-blue  { background: rgba(0,48,135,0.10); }
.sc-red   { background: rgba(207,20,43,0.10); }
.sc-green { background: rgba(5,150,105,0.10); }

@media (max-width: 960px) {
  .seo-block {
    grid-template-columns: 1fr;
    gap: 44px;
    margin-bottom: 70px;
  }
  .seo-block-reverse .seo-img-wrap { order: 0; }
  .seo-block-reverse .seo-text     { order: 0; }
  .seo-img-wrap::before { display: none; }
}
@media (max-width: 480px) {
  .seo-content-section { padding: 70px 0 80px; }
  .seo-heading { font-size: 22px; }
}
