@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');
@import url('https://api.fontshare.com/v2/css?f[]=clash-display@400,500,600,700&display=swap');

:root {
  --primary: #5C2D91;
  --primary-hover: #6D38AB;
  --primary-tint: #F4F0FA;
  --primary-border: #E6DDF5;
  --support-yellow: #F6C445;
  --support-yellow-bright: #FFD95A;

  --secondary: #FFD95A;
  --secondary-hover: #F6C445;
  --secondary-tint: #FEF7E5;
  --secondary-border: #FDE3A7;

  --bg: #FFFFFF;
  --bg-alt: #FAFAFC;
  --card-bg: #FFFFFF;
  --border: #ECECF2;
  --divider: #F1F1F4;

  --text: #111111;
  --text-secondary: #6B7280;

  --gold: #C8A24D;
  --success: #16A34A;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-card: 0 12px 40px rgba(0, 0, 0, 0.04);
  --shadow-hover: 0 20px 60px rgba(0, 0, 0, 0.08);
  --shadow-btn: 0 14px 40px rgba(92, 45, 145, 0.14);

  --radius-card: 24px;
  --radius-btn: 18px;
  --radius-input: 14px;

  --spacing-section: 64px;
  --container: 1440px;
  --font: 'Inter', sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.25s ease;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--text);
  margin-bottom: 16px;
}

h1 {
  font-size: 72px;
  font-weight: 800;
  line-height: 78px;
  letter-spacing: -3px;
}

h2 {
  font-size: 52px;
  font-weight: 700;
  line-height: 60px;
  letter-spacing: -1.5px;
}

h3 {
  font-size: 32px;
  font-weight: 600;
  line-height: 40px;
  letter-spacing: -0.5px;
}

p {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 16px;
}

.body-large {
  font-size: 18px;
  line-height: 32px;
  color: var(--text-secondary);
}

.small-text {
  font-size: 14px;
  line-height: 22px;
  color: var(--text-secondary);
}

/* Layout */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 80px;
}

.section {
  padding: var(--spacing-section) 0;
  position: relative;
}

.section-alt {
  background: var(--bg-alt);
}

.grid {
  display: grid;
  gap: 32px;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: var(--radius-btn);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-family: var(--font);
  gap: 8px;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow-btn);
}

.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 20px 50px rgba(92, 45, 145, 0.2);
}

.btn-secondary {
  background: #fff;
  color: var(--text);
  border: 1px solid #E5E7EB;
}

.btn-secondary:hover {
  background: #F9FAFB;
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.btn-full {
  width: 100%;
}

/* =============================
   SECTION LABEL  (editorial ■ style)
   ============================= */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: #F6C445;
  margin-bottom: 16px;
  position: relative;
}

.section-label--center {
  display: flex;
  justify-content: center;
}

.section-label-icon {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #F6C445;
  border-radius: 1px;
  /* sharp square */
  flex-shrink: 0;
  position: relative;
  box-shadow: 0 0 8px rgba(246, 196, 69, 0.55), 0 0 16px rgba(246, 196, 69, 0.2);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

/* Subtle hover pulse on the icon */
.section-label:hover .section-label-icon {
  box-shadow: 0 0 12px rgba(246, 196, 69, 0.8), 0 0 24px rgba(246, 196, 69, 0.35);
  transform: scale(1.15);
}

/* =============================
   BADGES  (keep .badge-popular for pricing card)
   ============================= */
.badge-popular {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  background: linear-gradient(90deg, var(--support-yellow), var(--support-yellow-bright));
  color: #111111;
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  white-space: nowrap;
}

/* Cards */
.card {
  background: var(--card-bg);
  /* border: 1px solid var(--border); */
  border-radius: var(--radius-card);
  padding: 32px;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary-border);
}

/* Section Headers */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  font-size: 18px;
}

/* =============================
   HEADER
   ============================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  height: 88px;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(17, 17, 17, 0.04);
  transition: box-shadow 0.3s ease;
}

.header.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.header-container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-brand {
  display: flex;
  align-items: center;
}

.logo img {
  height: 32px;
}

/* Remove brand divider and secondary logo styles - no longer needed */

.nav {
  display: flex;
  gap: 40px;
}

.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
}

.nav-link:hover {
  color: var(--text);
}

.nav-link.active {
  color: var(--support-yellow-bright);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--support-yellow), var(--support-yellow-bright));
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.header-support-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(246, 196, 69, 0.1);
  border: 1px solid rgba(246, 196, 69, 0.32);
  color: var(--text);
  white-space: nowrap;
  transition: all 0.3s ease;
}

.header-support-link:hover {
  background: rgba(246, 196, 69, 0.16);
  transform: translateY(-1px);
}

.header-support-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(246, 196, 69, 0.18);
  color: var(--support-yellow);
  box-shadow: 0 0 0 6px rgba(246, 196, 69, 0.08);
  flex-shrink: 0;
}

.header-support-icon i {
  width: 16px;
  height: 16px;
  filter: drop-shadow(0 0 8px rgba(246, 196, 69, 0.45));
}

.header-support-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.header-support-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: rgba(255, 217, 90, 0.82);
}

.header-support-number {
  font-size: 14px;
  font-weight: 700;
  color: var(--support-yellow-bright);
}

.lang-switch-container {
  position: relative;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
}

.lang-switch:hover {
  color: var(--text);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 16px);
  right: -10px;
  background: #1c1c1c;
  border-radius: 8px;
  width: 170px;
  padding: 6px 0;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.2s ease;
  z-index: 200;
}

.lang-dropdown.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.2s;
}

.lang-option:hover,
.lang-option.active {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.lang-flag {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.lang-option:hover .lang-flag,
.lang-option.active .lang-flag {
  border-color: rgba(255, 255, 255, 0.2);
}

/* =============================
   ATTRIBUTION STRIP
   ============================= */
.attribution-strip {
  margin-top: 88px;
  height: 56px;
  background: #FFFFFF;
  border-bottom: 1px solid #F3F4F6;
  display: flex;
  align-items: center;
  justify-content: center;
}

.attr-text {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-secondary);
}

.attr-text strong {
  font-weight: 700;
  color: #111111;
}

/* =============================
   HERO
   ============================= */
.hero {
 
  display: flex;
  flex-direction: column;
  background: #FFFFFF;
  position: relative;
  overflow: hidden;
}

/* Subtle grid pattern */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(17, 17, 17, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 17, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  z-index: 0;
}

.hero-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 72px 80px 88px;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 920px;
}

/* beIN Sports logo in Hero */
.hero-bein-logo {
  margin-bottom: 24px;
  opacity: 0.92;
  transition: opacity 0.3s ease;
}

.hero-bein-logo:hover {
  opacity: 1;
}

.hero-bein-logo img {
  height: 36px;
  width: auto;
}


.hero-headline {
  font-size: 72px;
  font-weight: 800;
  line-height: 78px;
  letter-spacing: -3px;
  color: #111111;
  margin-bottom: 32px;
}

.hero-subtitle {
  font-size: 20px;
  line-height: 36px;
  color: var(--text-secondary);
  max-width: 760px;
  margin: 0 auto 40px;
}

.hero-cta-group {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 16px;
}

.hero-support-card {
  width: 100%;
  max-width: 520px;
  margin-top: 12px;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  text-align: left;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(17, 17, 19, 0.92), rgba(24, 24, 27, 0.88));
  border: 1px solid rgba(246, 196, 69, 0.36);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
  color: #FFFFFF;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.hero-support-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 217, 90, 0.54);
}

.hero-support-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(246, 196, 69, 0.16);
  color: var(--support-yellow);
  box-shadow: 0 0 0 8px rgba(246, 196, 69, 0.08);
}

.hero-support-icon i {
  width: 22px;
  height: 22px;
  filter: drop-shadow(0 0 10px rgba(246, 196, 69, 0.55));
}

.hero-support-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-support-kicker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: rgba(255, 217, 90, 0.82);
}

.hero-support-card strong {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
  color: #FFFFFF;
}

.hero-support-number {
  font-size: 24px;
  font-weight: 800;
  color: var(--support-yellow-bright);
  letter-spacing: -0.4px;
}

.hero-support-note {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.68);
}

.hero-btn-primary {
  height: 58px;
  padding: 0 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #5C2D91;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 600;
  border-radius: 18px;
  box-shadow: 0 14px 40px rgba(92, 45, 145, 0.14);
  transition: all 0.3s ease;
  text-decoration: none;
}

.hero-btn-primary:hover {
  background: #462270;
  transform: translateY(-2px);
}

.hero-btn-secondary {
  height: 58px;
  padding: 0 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fafafc;
  color: #111111;
  font-size: 16px;
  font-weight: 600;
  border-radius: 18px;
  border: 1px solid #E5E7EB;
  transition: all 0.3s ease;
  text-decoration: none;
}

.hero-btn-secondary:hover {
  background: #FAFAFC;
  transform: translateY(-2px);
}

.hero-microcopy {
  font-size: 14px;
  color: var(--text-secondary);
}

/* =============================
   PLATFORM LOGO SLIDER
   ============================= */
.platform-slider-wrap {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding-bottom: 32px;
  width: 100%;
}

.platform-header {
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.platform-marquee {
  width: 100%;
  overflow: hidden;
  background: #FFFFFF;
  /* border-top: 1px solid #F3F4F6;
  border-bottom: 1px solid #F3F4F6; */
  padding: 32px 0;
  display: flex;
}

.marquee-content {
  display: flex;
  align-items: center;
  animation: scrollMarquee 30s linear infinite;
  white-space: nowrap;
}

.marquee-logo {
  font-size: 24px;
  font-weight: 800;
  color: #111111;
  opacity: 0.6;
  margin: 0 40px;
  transition: opacity 0.3s ease;
  cursor: default;
}

.marquee-logo:hover {
  opacity: 1;
}

@keyframes scrollMarquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* =============================
   CALL CENTER SUPPORT
   ============================= */
.call-center-support {
  padding: 80px 0;
  background: linear-gradient(180deg, #0D0D0F 0%, #121317 100%);
  position: relative;
  overflow: hidden;
}

/* Subtle stadium lighting effect */
.call-center-support::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(ellipse, rgba(246, 196, 69, 0.08) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.support-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  position: relative;
  z-index: 1;
}

.support-left {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 1;
}

.support-icon-wrapper {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: rgba(246, 196, 69, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--support-yellow);
  flex-shrink: 0;
  box-shadow: 0 0 0 12px rgba(246, 196, 69, 0.06);
  transition: all 0.3s ease;
}

.support-strip:hover .support-icon-wrapper {
  box-shadow: 0 0 0 16px rgba(246, 196, 69, 0.08), 0 0 40px rgba(246, 196, 69, 0.2);
}

.support-icon-wrapper i {
  filter: drop-shadow(0 0 12px rgba(246, 196, 69, 0.5));
}

.support-text h3 {
  font-size: 28px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 8px;
  line-height: 1.2;
}

.support-text p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.68);
  margin: 0;
  line-height: 1.5;
}

.support-right {
  flex-shrink: 0;
}

/* Call Center Card - Premium Glassmorphism */
.call-center-card {
  position: relative;
  padding: 32px 36px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(27, 28, 34, 0.95), rgba(24, 25, 31, 0.92));
  /* border: 1px solid rgba(246, 196, 69, 0.32); */
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 380px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.call-center-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(246, 196, 69, 0.4), rgba(107, 33, 255, 0.3));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.call-center-card:hover::before {
  opacity: 1;
}

.call-center-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 217, 90, 0.5);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5), 0 0 60px rgba(246, 196, 69, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

.support-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 16px;
  border-radius: 100px;
  background: #F6C445;
  /* border: 1px solid rgba(107, 33, 255, 0.4); */
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #FFFFFF;
  white-space: nowrap;

}

.call-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: rgba(246, 196, 69, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--support-yellow-bright);
  margin-bottom: 20px;
  box-shadow: 0 0 0 10px rgba(246, 196, 69, 0.08);
  transition: all 0.3s ease;
}

.call-center-card:hover .call-icon {
  box-shadow: 0 0 0 14px rgba(246, 196, 69, 0.12), 0 0 30px rgba(246, 196, 69, 0.3);
  transform: scale(1.05);
}

.call-icon i {
  filter: drop-shadow(0 0 14px rgba(246, 196, 69, 0.6));
}

.call-details {
  margin-bottom: 24px;
}

.call-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: rgba(255, 217, 90, 0.8);
  margin-bottom: 8px;
}

.call-number {
  font-size: 32px;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
  line-height: 1;
  text-shadow: 0 2px 12px rgba(246, 196, 69, 0.2);
}

.call-availability {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 500;
}

.call-now-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 56px;
  padding: 0 32px;
  border-radius: 16px;
  background: #5c2d91;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 12px 32px rgba(246, 196, 69, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.call-now-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.call-now-btn:hover::before {
  opacity: 1;
}

.call-now-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(246, 196, 69, 0.4), 0 0 40px rgba(246, 196, 69, 0.2);
}

.call-now-btn:active {
  transform: translateY(0);
}

/* Mobile Sticky CTA */
@media (max-width: 768px) {
  .call-center-support {
    padding: 60px 0;
  }

  .support-strip {
    flex-direction: column;
    gap: 32px;
    text-align: center;
  }

  .support-left {
    flex-direction: column;
    text-align: center;
  }

  .support-text h3 {
    font-size: 24px;
  }

  .call-center-card {
    min-width: 100%;
    width: 100%;
  }

  /* Mobile sticky call button */
  .mobile-call-sticky {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--support-yellow-bright), var(--support-yellow));
    color: #111111;
    font-size: 16px;
    font-weight: 700;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(246, 196, 69, 0.4);
    text-decoration: none;
  }
}

/* =============================
   BENEFITS
   ============================= */
.benefit-card {
  text-align: left;
  padding: 36px 32px;
}

.benefit-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 24px;
}

.benefit-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

/* =============================
   COMMERCIAL PACKAGES
   ============================= */
.packages-section {
  padding: 60px 0;
  background: #FFFFFF;
}

.packages-header {
  max-width: 620px;
  text-align: left;
}

/* beIN Sports logo in Packages section */
.packages-bein-logo {
  margin-bottom: 20px;
  opacity: 0.92;
  transition: opacity 0.3s ease;
}

.packages-bein-logo:hover {
  opacity: 1;
}

.packages-bein-logo img {
  height: 28px;
  width: auto;
}

.packages-header h2 {
  font-size: 56px;
  font-weight: 800;
  line-height: 62px;
  letter-spacing: -2px;
  color: #111111;
  margin-bottom: 24px;
}

.packages-header p {
  font-size: 18px;
  line-height: 32px;
  color: var(--text-secondary);
  max-width: 560px;
}

/* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
  align-items: stretch;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  background: #fafafc;

  border-radius: 28px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-4px);
}

.pricing-card.featured {
  transform: scale(1.02);
  border-top: 4px solid #5C2D91;
  box-shadow: 0 30px 80px rgba(92, 45, 145, 0.10);
}

.pricing-card.featured:hover {
  transform: scale(1.02) translateY(-4px);
}

.plan-duration {
  font-size: 32px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 4px;
}

.plan-subtitle {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.plan-price {
  font-size: 35px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 24px;
  line-height: 1;
}

.plan-price-discount-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.plan-price span {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-secondary);
}

.plan-price--discounted {
  margin-bottom: 6px;
}

.plan-discount-badge-wrap {
  margin-bottom: 10px;
}

.discount-badge {
  display: inline-block;
  background: #27ae60;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  letter-spacing: 0.06em;
  line-height: 1.5;
  text-transform: uppercase;
}

.plan-price-old-wrap {
  margin-bottom: 20px;
}

.plan-price-old {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: line-through;
  opacity: 0.6;
}

.plan-divider {
  height: 1px;
  background: #ECECF2;
  margin-bottom: 24px;
}

.plan-features {
  flex: 1;
  margin-bottom: 32px;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-secondary);
}

.plan-features li i {
  color: #5C2D91;
  flex-shrink: 0;
}
.plan-features li.feature-unavailable {
  opacity: 0.5;
}
.plan-features li.feature-unavailable svg {
  color: #e74c3c;
  stroke: #e74c3c;
}

/* CTA Button */
.plan-btn {
  width: 100%;
  height: 56px;
  border-radius: 16px;
  background: #5C2D91;
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(92, 45, 145, 0.12);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  margin-top: auto;
}

.plan-btn:hover {
  background: #6D38AB;
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(92, 45, 145, 0.16);
}

.plan-btn-ghost {
  background: #FFFFFF;
  color: #111111;
  border: 1px solid #ECECF2;
  box-shadow: none;
}

.plan-btn-ghost:hover {
  background: #FAFAFC;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Add-on Area */
.addon-area {
  margin-top: 72px;
}

.addon-intro {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 24px;
}

.addon-card {
  display: flex;
  background: #FAFAFC;
  border-radius: 32px;
  padding: 16px;
  height: 290px;
  align-items: center;
}

.addon-visual {
  flex: 0 0 35%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.addon-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.addon-visual-overlay {
  position: absolute;
  inset: 0;
  background: rgba(92, 45, 145, 0.1);
}

.addon-content {
  flex: 0 0 45%;
  padding: 0 40px;
}

.addon-label {
  font-size: 12px;
  font-weight: 600;
  color: #5C2D91;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.addon-content h3 {
  font-size: 40px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.addon-content p {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 420px;
  margin: 0;
  line-height: 24px;
}

.addon-action {
  position: relative;
  flex: 0 0 20%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
  border-left: 1px solid #ECECF2;
  padding-left: 40px;
  padding-top: 20px;
  height: 100%;
}

.addon-action--discounted {
  border-left: 2px solid #27ae60;
}

/* Corner badge — anchored top-right, asymmetric radius */
.addon-corner-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: #27ae60;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 0 12px 0 14px;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Main price */
.addon-price {
  font-size: 38px;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}

.addon-price span {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-left: 4px;
}

/* Duration label: "/ 1 month" */
.addon-duration-label {
  font-size: 13px;
  color: var(--text-secondary);
  opacity: 0.65;
  margin: -4px 0 0 0;
}

/* Original price strikethrough */
.addon-was-price {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: line-through;
  opacity: 0.5;
  margin: 0;
}

/* Green CTA button for discounted addons */
.plan-btn-green {
  background: #27ae60;
  color: #fff;
  box-shadow: 0 8px 24px rgba(39, 174, 96, 0.25);
}

.plan-btn-green:hover {
  background: #219a52;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(39, 174, 96, 0.35);
}

/* Sparkle icon inside button */
.addon-btn-sparkle {
  position: absolute;
  right: 14px;
  font-size: 18px;
  opacity: 0.65;
}

.addon-action-btn {
  position: relative;
  height: 46px;
  width: 100%;
  margin-top: 8px;
}

/* Micro Trust Row */
.micro-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 24px;
  padding-left: 16px;
}

.micro-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 500;
}

.micro-trust-item i {
  color: var(--support-yellow);
}

/* =============================
   HOW IT WORKS
   ============================= */
.steps-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  position: relative;
}

.steps-container::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 15%;
  right: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-border), transparent);
}

.step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--primary-tint);
  border: 1px solid var(--primary-border);
  color: var(--primary);
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  transition: all 0.3s ease;
}

.step:hover .step-number {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.step h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

/* =============================
   TRUST / STATS
   ============================= */
.trust-section {
  background: var(--bg-alt);
  /* border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider); */
}

.trust-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.trust-item i {
  width: 28px;
  height: 28px;
  color: var(--support-yellow);
}

.trust-text h4 {
  font-size: 22px;
  margin-bottom: 4px;
}

.trust-text p {
  margin: 0;
  font-size: 14px;
}

/* =============================
   FAQ
   ============================= */
.faq-container {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 16px;
  margin-bottom: 12px;
  background: #fafafc;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.faq-item:hover {
  box-shadow: var(--shadow-card);
}

.faq-header {
  padding: 24px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-header h4 {
  margin: 0;
  font-size: 17px;
  font-weight: 600;
}

.faq-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  color: var(--primary);
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-body {
  padding: 0 28px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.35s ease;
}

.faq-item.active .faq-body {
  padding: 0 28px 24px;
  max-height: 300px;
}

/* =============================
   FINAL CTA
   ============================= */
.final-cta {
  text-align: center;
  border-radius: 32px;
  padding: 96px 48px;
  background: var(--primary-tint);
  border: 1px solid var(--primary-border);
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(92, 45, 145, 0.06) 0%, transparent 70%);
}

.final-cta>* {
  position: relative;
  z-index: 1;
}

.final-cta h2 {
  font-size: 56px;
  margin-bottom: 20px;
}

.final-cta p {
  font-size: 18px;
  margin-bottom: 36px;
}

/* =============================
   FOOTER
   ============================= */
.footer {
  background: #111113;
  color: rgba(255, 255, 255, 0.92);
}

.footer-cta-banner {
  background: var(--card-bg);
  border-top: 1px solid var(--border);
  padding: 120px 24px;
}

.footer-cta-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.footer-cta-inner h2 {
  margin-bottom: 24px;
  font-size: 64px;
  font-weight: 800;
  line-height: 70px;
  letter-spacing: -2px;
  color: var(--title);
}

.footer-cta-inner p {
  margin: 0 auto;
  max-width: 700px;
  font-size: 18px;
  line-height: 32px;
  color: var(--text-secondary);
}

.footer-cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.footer-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 28px;
  border-radius: 18px;
  font-size: 16px;
  font-weight: 600;
}

.footer-btn-primary {
  background: #5C2D91;
  color: #FFFFFF;
}

.footer-btn-secondary {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  color: #111113;
}

.footer-main {
  background: #111113;
  padding: 88px 0 64px;
}

.footer-main-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 80px;
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 80px;
  align-items: start;
}

.footer-brand-lockup {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
}

.footer-logo img {
  height: 28px;
  width: auto;
}

.footer-description {
  max-width: 420px;
  margin-bottom: 28px;
  font-size: 16px;
  line-height: 30px;
  color: rgba(255, 255, 255, 0.68);
}

.footer-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 30px;
  font-size: 12px;
  letter-spacing: 0.9px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.56);
}

.footer-trust-row span+span {
  position: relative;
}

.footer-trust-row span+span::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 50%;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.24);
  transform: translateY(-50%);
}

.footer-socials {
  display: flex;
  gap: 18px;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-socials a:hover {
  color: var(--support-yellow-bright);
}

.footer-link-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 80px;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  padding-left: 80px;
}

.footer-col h4 {
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
}

.footer-support-number {
  margin-bottom: 24px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.1;
  color: #FFFFFF;
  display: inline-flex;
  width: fit-content;
  transition: color 0.3s ease;
}

.footer-support-number:hover {
  color: var(--support-yellow-bright);
}

.footer-support-block {
  margin-bottom: 24px;
}

.footer-support-label {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--support-yellow-bright);
}

.footer-col ul li+li {
  margin-top: 18px;
}

.footer-col ul li a {
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.68);
  transition: color 0.25s ease;
}

.footer-col ul li a:hover {
  color: var(--support-yellow-bright);
}

.mobile-call-button {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 1200;
  display: none;
  align-items: center;
  gap: 10px;
  min-height: 60px;
  padding: 0 18px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--support-yellow-bright), var(--support-yellow));
  color: #111111;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.24);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.mobile-call-button i {
  width: 20px;
  height: 20px;
}

.mobile-call-button:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.28);
}

.footer-col ul li a:hover {
  color: #FFFFFF;
}

.footer-bottom-bar {
  min-height: 72px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px 80px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
  max-width: 1280px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.48);
  font-size: 14px;
}

.footer-bottom-center {
  text-align: center;
}

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

@media (min-width: 769px) and (max-width: 1024px) {
  .footer-main {
    padding: 64px 0 48px;
  }

  .footer-main-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 0 40px;
  }

  .footer-description {
    font-size: 14px;
    line-height: 24px;
  }

  .footer-link-columns {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    padding-left: 40px;
  }

  .footer-support-number {
    font-size: 22px;
  }

  .footer-bottom-bar {
    padding: 16px 40px;
  }
}

@media (max-width: 1200px) {

  .container,
  .header-container {
    padding: 0 40px;
  }

  .hero-container {
    padding: 64px 40px;
    gap: 48px;
  }

  .hero-headline {
    font-size: 56px;
    line-height: 64px;
    letter-spacing: -2px;
  }

  h2 {
    font-size: 42px;
    line-height: 50px;
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --spacing-section: 64px;
  }

  .container,
  .header-container {
    padding: 0 24px;
  }

  .hero-container {
    grid-template-columns: 1fr;
    padding: 48px 24px;
    gap: 48px;
    text-align: center;
  }

  /* beIN logos responsive */
  .hero-bein-logo img {
    height: 28px;
  }

  .packages-bein-logo img {
    height: 24px;
  }

  .hero-headline {
    font-size: 42px;
    line-height: 50px;
    letter-spacing: -2px;
    max-width: 100%;
  }

  .hero-subtitle {
    max-width: 100%;
  }

  .hero-label {
    margin: 0 auto 32px;
  }

  .hero-cta-group {
    justify-content: center;
    flex-direction: column;
    align-items: stretch;
  }

  .hero-trust {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-image-wrap {
    max-width: 460px;
    margin: 0 auto;
  }

  .hero-float-card {
    left: 12px;
    bottom: 16px;
  }

  h2 {
    font-size: 34px;
    line-height: 42px;
  }

  .nav {
    display: none;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
  }

  .card-12mo {
    order: 1;
  }

  .card-6mo {
    order: 2;
  }

  .card-3mo {
    order: 3;
  }

  .packages-section {
    padding: 50px 0;
  }

  .pricing-card.featured {
    transform: scale(1);
  }

  .pricing-card.featured:hover {
    transform: translateY(-4px);
  }

  .addon-card {
    flex-direction: column;
    height: auto;
    padding: 24px;
  }

  .addon-visual {
    min-height: 220px;
    flex: none;
    width: 100%;
    border-radius: 16px;
    margin-bottom: 24px;
  }

  .addon-content {
    padding: 0;
    margin-bottom: 24px;
    text-align: center;
  }

  .addon-action {
    border-left: none;
    border-top: 1px solid #ECECF2;
    padding: 24px 0 0;
    width: 100%;
    align-items: center;
    text-align: center;
  }

  .micro-trust {
    justify-content: center;
    padding-left: 0;
    flex-wrap: wrap;
  }

  .steps-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .steps-container::before {
    display: none;
  }

  .final-cta h2 {
    font-size: 36px;
  }

  .final-cta {
    padding: 64px 28px;
  }

  .footer-cta-banner {
    padding: 88px 24px;
  }

  .footer-cta-inner h2 {
    font-size: 42px;
    line-height: 50px;
    letter-spacing: -1.6px;
  }

  .footer-cta-inner p {
    font-size: 16px;
    line-height: 28px;
  }

  .footer-btn {
    width: 100%;
  }

  .footer-main {
    padding: 72px 0 56px;
  }

  .footer-main-grid {
    grid-template-columns: 1fr;
    gap: 56px;
    padding: 0 24px;
  }

  .footer-link-columns {
    grid-template-columns: 1fr;
    gap: 40px;
    border-left: 0;
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 40px;
  }

  .footer-bottom-bar {
    grid-template-columns: 1fr;
    gap: 10px;
    text-align: center;
    padding: 18px 24px 24px;
  }

  .footer-brand-lockup {
    align-items: flex-start;
  }

  .footer-trust-row {
    gap: 12px 18px;
  }
}

/* REMOVE ALL SHADOWS AND BORDERS AS REQUESTED */
*,
*::before,
*::after {
  box-shadow: none !important;
}

/* =============================
   LIGHT/DARK MODE SYSTEM
   ============================= */

/* Global Transitions for smooth theme switching */
body,
.header,
.card,
.btn,
.badge,
.section,
.footer,
.trust-item,
.lang-dropdown,
.attribution-strip,
.platform-marquee,
.pricing-card,
.addon-card {
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease !important;
}

/* Theme Toggle Button */
.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(17, 17, 17, 0.05);
  border: 1px solid rgba(17, 17, 17, 0.1);
  color: var(--text);
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
  margin-left: 8px;
}

.theme-toggle:hover {
  background: rgba(17, 17, 17, 0.1);
  transform: translateY(-1px);
}

.theme-toggle svg {
  width: 20px;
  height: 20px;
  transition: transform 0.5s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.theme-toggle:active svg {
  transform: scale(0.9) rotate(15deg);
}

/* Dark Theme Overrides */
[data-theme="dark"] {
  --bg: #0F0F10;
  --bg-alt: #18181B;
  --card-bg: #1F1F23;
  --border: rgba(255, 255, 255, 0.08);
  --divider: rgba(255, 255, 255, 0.08);
  --text: #FFFFFF;
  --text-secondary: #A1A1AA;
  --text-muted: var(--text-secondary);
  --primary-tint: rgba(92, 45, 145, 0.2);
  --primary-border: rgba(92, 45, 145, 0.4);
  --secondary-tint: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] body {
  background-color: var(--bg);
  color: var(--text);
}

[data-theme="dark"] .header {
  background: rgba(15, 15, 16, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

[data-theme="dark"] .brand-divider {
  background: rgba(255, 255, 255, 0.12);
}

[data-theme="dark"] .nav-link,
[data-theme="dark"] .attr-text {
  color: var(--text-secondary);
}

[data-theme="dark"] .nav-link:hover,
[data-theme="dark"] .attr-text strong {
  color: var(--text);
}

[data-theme="dark"] .nav-link.active {
  color: var(--support-yellow-bright);
}

[data-theme="dark"] .nav-link.active::after {
  background: linear-gradient(90deg, var(--support-yellow), var(--support-yellow-bright));
}

[data-theme="dark"] .header-support-link {
  background: rgba(246, 196, 69, 0.1);
  border-color: rgba(246, 196, 69, 0.3);
}

[data-theme="dark"] .header-support-label {
  color: rgba(255, 217, 90, 0.84);
}

[data-theme="dark"] .header-support-number {
  color: var(--support-yellow-bright);
}

[data-theme="dark"] .lang-switch {
  color: var(--text-secondary);
}

[data-theme="dark"] .lang-switch:hover {
  color: var(--text);
}

[data-theme="dark"] .theme-toggle {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--text);
}

[data-theme="dark"] .theme-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .attribution-strip {
  background: var(--bg-alt);
  border-bottom-color: var(--border);
}

[data-theme="dark"] .hero {
  background: var(--bg);
}

[data-theme="dark"] .hero-headline,
[data-theme="dark"] .section-header h2,
[data-theme="dark"] .packages-header h2 {
  color: var(--text);
}

[data-theme="dark"] .hero-subtitle,
[data-theme="dark"] .hero-microcopy,
[data-theme="dark"] .section-header p,
[data-theme="dark"] .packages-header p {
  color: var(--text-secondary);
}

[data-theme="dark"] .hero-btn-secondary {
  background: var(--card-bg);
  color: var(--text);
  border-color: var(--border);
}

[data-theme="dark"] .hero-btn-secondary:hover {
  background: var(--bg-alt);
}

[data-theme="dark"] .platform-marquee {
  background: var(--bg-alt);
  border-color: var(--border);
}

[data-theme="dark"] .marquee-logo {
  color: var(--text);
}

[data-theme="dark"] .section-alt {
  background: var(--bg-alt);
}

[data-theme="dark"] .card {
  background: var(--card-bg);
  border-color: var(--border);
}

[data-theme="dark"] .card:hover {
  border-color: var(--primary-border);
}

[data-theme="dark"] .packages-section {
  background: var(--bg);
}

[data-theme="dark"] .pricing-card {
  background: var(--card-bg);
  border-color: var(--border);
}

[data-theme="dark"] .pricing-card.featured {
  border-top-color: var(--secondary);
}

[data-theme="dark"] .plan-duration,
[data-theme="dark"] .plan-price {
  color: var(--text);
}

[data-theme="dark"] .plan-divider {
  background: var(--border);
}

[data-theme="dark"] .btn-secondary,
[data-theme="dark"] .plan-btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

[data-theme="dark"] .btn-secondary:hover,
[data-theme="dark"] .plan-btn-ghost:hover {
  background: var(--bg-alt);
}

[data-theme="dark"] .addon-card {
  background: var(--card-bg);
  border-color: var(--border);
}

[data-theme="dark"] .addon-action {
  border-top-color: var(--border);
  border-left-color: var(--border);
}

[data-theme="dark"] .faq-item {
  background: var(--card-bg);
  border-color: var(--border);
}

/* =============================
   ABOUT WOWMART
   ============================= */
.about-wowmart {
  background-color: #1E1A29;
  padding: 120px 0;
  color: #FFFFFF;
  overflow: hidden;
  position: relative;
}

.about-wowmart::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 0% 50%, rgba(107, 33, 255, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 100% 100%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-visual {
  position: relative;
  z-index: 1;
}

.about-img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.glass-card {
  background: rgba(30, 41, 59, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px 24px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  font-size: 15px;
  color: #FFFFFF;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  position: absolute;
  transition: transform 0.3s ease;
}

.glass-card:hover {
  transform: translateY(-4px);
}

.trust-float.float-1 {
  top: 10%;
  left: -20px;
}

.trust-float.float-2 {
  bottom: 20%;
  left: -40px;
}

.trust-float.float-3 {
  bottom: 10%;
  right: -20px;
}

.about-content {
  position: relative;
  z-index: 1;
  padding-left: 32px;
}

.about-heading {
  font-family: 'Clash Display', sans-serif;
  font-size: 52px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: #FFFFFF;
  margin-bottom: 24px;
}

.about-paragraph {
  font-size: 18px;
  color: #E5E7EB;
  line-height: 1.6;
  margin-bottom: 40px;
}

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

.stat-card {
  background: #111111;
  border-radius: 20px;
  padding: 24px 20px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(246, 196, 69, 0.32);
}

.stat-value {
  font-family: 'Clash Display', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--support-yellow-bright);
  margin-bottom: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 48px;
}

.stat-label {
  font-size: 14px;
  color: #FFFFFF;
  font-weight: 500;
}

.about-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 52px;
  padding: 0 28px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;

  background: var(--primary);
  color: #FFFFFF;
  border: none;
  box-shadow: 0 10px 30px rgba(92, 45, 145, 0.35);
}

.about-cta i {
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.about-cta:hover {
  background: var(--primary-hover);
  color: #FFFFFF;
  box-shadow: 0 16px 40px rgba(92, 45, 145, 0.5);
  transform: translateY(-2px);
}

.about-cta:hover i {
  transform: translateX(4px);
}

@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-content {
    padding-left: 0;
  }

  .about-visual {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .about-img {
    width: 100%;
  }

  .trust-float,
  .trust-float.float-1,
  .trust-float.float-2,
  .trust-float.float-3 {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    margin-bottom: 0;
  }

  .glass-card {
    position: relative;
    display: flex;
    width: 100%;
    margin-right: 0;
    box-sizing: border-box;
  }
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

/* =============================
   CONTACT PAGE — body overrides
   ============================= */
.contact-page-body {
  background-color: var(--bg);
  color: var(--text);
}

.contact-page-body .header {
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(17, 17, 17, 0.04);
}

[data-theme="dark"] .contact-page-body .header {
  background: rgba(15, 15, 16, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.contact-page-body .header.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

/* =============================
   CONTACT INNER-PAGE HERO
   ============================= */
.contact-hero {
  position: relative;
  padding: 140px 0 64px;
  /* header offset + breathing room */
  overflow: hidden;
  background: linear-gradient(160deg, #0B0B0D 0%, #121317 55%, #0f0d18 100%);
  /* thin bottom border acts as section divider */
  border-bottom: 1px solid rgba(246, 196, 69, 0.1);
}

/* Stadium atmosphere — very subtle warm glow at top */
.contact-hero::after {
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 320px;
  background: radial-gradient(ellipse, rgba(246, 196, 69, 0.05) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

/* Decorative gradient orbs */
.contact-hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(60px);
}

.contact-hero-orb--left {
  width: 320px;
  height: 320px;
  top: -60px;
  left: -80px;
  background: radial-gradient(circle, rgba(107, 33, 255, 0.18) 0%, transparent 70%);
}

.contact-hero-orb--right {
  width: 240px;
  height: 240px;
  bottom: -40px;
  right: -40px;
  background: radial-gradient(circle, rgba(246, 196, 69, 0.08) 0%, transparent 70%);
}

/* Centered content block */
.contact-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

/* Breadcrumb */
.contact-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 24px;
  letter-spacing: 0.3px;
}

.contact-breadcrumb a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-breadcrumb a:hover {
  color: #F6C445;
}

.contact-breadcrumb-sep {
  opacity: 0.3;
  font-size: 12px;
}

.contact-breadcrumb span:last-child {
  color: rgba(255, 255, 255, 0.7);
}

/* section-label already defined globally — just needs margin tweak here */
.contact-hero-inner .section-label {
  margin-bottom: 20px;
}

/* Main heading */
.contact-hero-heading {
  font-family: 'Clash Display', sans-serif;
  font-size: 52px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -1.5px;
  color: #FFFFFF;
  margin-bottom: 20px;
}

/* Subtitle */
.contact-hero-subtitle {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.55);
  max-width: 520px;
  margin: 0 auto;
}

/* Thin yellow divider line */
.contact-hero-divider {
  width: 48px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, #F6C445, rgba(246, 196, 69, 0.3));
  margin-top: 32px;
}

/* Support badge — top-right corner */
.contact-support-badge {
  position: absolute;
  top: 32px;
  right: 40px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 100px;
  background: rgba(246, 196, 69, 0.08);
  border: 1px solid rgba(246, 196, 69, 0.25);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.8px;
  color: #F6C445;
  z-index: 2;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.contact-support-badge i {
  flex-shrink: 0;
  color: #F6C445;
}

/* Contact Options */
.contact-options-section {
  padding: 80px 0;
  position: relative;
  z-index: 3;
  background: var(--bg-alt);
}

.contact-options-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.contact-card {
  background: var(--card-bg);
  /* border: 1px solid var(--border); */
  border-radius: 24px;
  padding: 40px;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-8px);
  border-color: rgba(139, 92, 246, 0.4);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

[data-theme="dark"] .contact-card:hover {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.contact-icon {
  width: 64px;
  height: 64px;
  background: rgba(107, 33, 255, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: #8B5CF6;
}

.contact-icon i {
  width: 28px;
  height: 28px;
}

.contact-card h3 {
  font-family: 'Clash Display', sans-serif;
  font-size: 24px;
  color: var(--text);
  margin-bottom: 12px;
}

.contact-card p {
  color: var(--text-secondary);
  font-size: 15px;
  margin-bottom: 24px;
}

.contact-detail {
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 24px;
}

.contact-btn {
  display: inline-block;
  padding: 12px 24px;
  background: var(--bg-alt);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 12px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.contact-btn:hover {
  background: var(--primary);
  color: #FFFFFF;
  border-color: var(--primary);
}

/* Contact Form Section */
.contact-form-section {
  padding: 80px 0 120px;
  background: var(--bg);
}

/* ── Equal-height two-column grid ── */
.contact-form-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 32px;
  align-items: stretch;
  /* row height = tallest child */
}

/* Left card: flex column so form fills height */
.form-wrapper.glass-panel {
  display: flex;
  flex-direction: column;
}

.form-wrapper .contact-form {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Push submit button to bottom of form */
.form-wrapper .submit-btn {
  margin-top: auto;
}

/* Right wrapper: full height flex container */
.info-wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
  /* stretch to grid row */
}

/* Info card: flex column, fills wrapper completely */
.info-card.glass-panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
  /* allow flex children to shrink */
}

/* info-list grows to push bottom section down */
.info-card .info-list {
  flex: 1;
  min-height: 0;
}

/* Bottom zone: socials + assist card pinned to bottom */
.info-card-bottom {
  margin-top: auto;
  padding-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ── Shared card style ── */
.glass-panel {
  background: #1B1C22;
  /* border: 1px solid rgba(255, 255, 255, 0.06); */
  border-radius: 32px;
  padding: 40px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

[data-theme="dark"] .glass-panel {
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.form-wrapper h2 {
  font-family: 'Clash Display', sans-serif;
  font-size: 36px;
  color: var(--text);
  margin-bottom: 12px;
}

.form-wrapper p {
  color: var(--text-secondary);
  margin-bottom: 40px;
}

.form-group {
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px 20px;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-secondary);
  opacity: 0.6;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #8B5CF6;
  background: var(--card-bg);
  box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.12);
}

.submit-btn {
  width: 100%;
  height: 60px;
  background: var(--primary);
  color: #FFFFFF;
  border: none;
  border-radius: 16px;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(92, 45, 145, 0.25);
}

.submit-btn:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(92, 45, 145, 0.35);
}

.submit-btn i {
  width: 20px;
  height: 20px;
}

.info-card h3 {
  font-family: 'Clash Display', sans-serif;
  font-size: 28px;
  color: var(--text);
  margin-bottom: 32px;
}

/* Need Assistance card */
.info-assist-card {
  padding: 20px 24px;
  border-radius: 16px;
  background: var(--bg-alt);
  /* border: 1px solid rgba(246, 196, 69, 0.22); */
  box-shadow: 0 0 24px rgba(246, 196, 69, 0.06);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.info-assist-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.info-assist-number {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: -0.3px;
}

.info-assist-number svg {
  flex-shrink: 0;
  stroke: var(--text-muted);
}

.info-assist-note {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

.info-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(107, 33, 255, 0.1);
  border: 1px solid rgba(107, 33, 255, 0.25);
  color: var(--primary);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 32px;
}

[data-theme="dark"] .info-badge {
  color: #A78BFA;
  background: rgba(107, 33, 255, 0.15);
  border-color: rgba(107, 33, 255, 0.35);
}

.info-badge i {
  width: 16px;
  height: 16px;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 0;
  /* spacing now handled by info-card-bottom padding-top */
}

.info-item {
  display: flex;
  gap: 16px;
}

.info-item i {
  color: #8B5CF6;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.info-item strong {
  display: block;
  color: var(--text);
  font-weight: 600;
  margin-bottom: 4px;
}

.info-item span {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
}

.info-socials {
  display: flex;
  align-items: center;
  gap: 16px;
}

.info-social-btn {
  /* Container */
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);

  /* Layout */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: visible;
  opacity: 1;
  text-decoration: none;

  /* Icon color — yellow, always visible on dark */
  color: #F6C445;

  /* Transition */
  transition: background 300ms ease, border-color 300ms ease,
    color 300ms ease, transform 300ms ease,
    box-shadow 300ms ease;
}

.info-social-btn svg {
  width: 18px;
  height: 18px;
  display: block;
  flex-shrink: 0;
  stroke: currentColor;
  fill: none;
  overflow: visible;
}

.info-social-btn:hover {
  background: #F6C445;
  border-color: #F6C445;
  color: #0B0B0D;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(246, 196, 69, 0.3);
}

/* Map Section */
.contact-map-section {
  padding: 80px 0;
  background: var(--bg-alt);
}

.map-wrapper {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  background: var(--card-bg);
  border: 1px solid var(--border);
}

.map-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.map-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}

.map-pin {
  width: 56px;
  height: 56px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  position: relative;
  box-shadow: 0 10px 30px rgba(92, 45, 145, 0.4);
  margin-bottom: 24px;
}

.pin-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: var(--primary);
  border-radius: 50%;
  z-index: -1;
  animation: mapPulse 2s infinite;
}

@keyframes mapPulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }

  100% {
    transform: translate(-50%, -50%) scale(2.5);
    opacity: 0;
  }
}

.map-card {
  background: var(--card-bg);
  backdrop-filter: blur(12px);
  padding: 20px 32px;
  border-radius: 16px;
  border: 1px solid var(--border);
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.map-card h4 {
  color: var(--text);
  margin-bottom: 4px;
  font-size: 18px;
}

.map-card p {
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 0;
}

/* Mini FAQ */
.contact-faq-section {
  padding: 100px 0;
  background: var(--bg-alt);
}

.faq-header-center {
  text-align: center;
  margin-bottom: 64px;
}

.faq-header-center h2 {
  font-family: 'Clash Display', sans-serif;
  font-size: 40px;
  color: var(--text);
  margin-bottom: 16px;
}

.faq-header-center p {
  color: var(--text-secondary);
  font-size: 18px;
}

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

.contact-page-body .faq-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  margin-bottom: 16px;
}

.contact-page-body .faq-header h4 {
  color: var(--text);
  font-size: 18px;
  font-weight: 500;
}

.contact-page-body .faq-body p {
  color: var(--text-secondary);
}

/* CTA Banner */
.contact-cta-banner {
  padding: 120px 0;
  margin-bottom: 64px;
}

.cta-inner {
  background: linear-gradient(135deg, #4c1d95 0%, #1e1b4b 100%);
  border-radius: 32px;
  padding: 80px 40px;
  text-align: center;
  border: 1px solid rgba(139, 92, 246, 0.3);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.cta-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="1" fill="rgba(255,255,255,0.05)"/></svg>') repeat;
  opacity: 0.5;
}

.cta-inner h2 {
  font-family: 'Clash Display', sans-serif;
  font-size: 48px;
  color: #FFFFFF;
  position: relative;
  z-index: 2;
  margin-bottom: 16px;
}

.cta-inner p {
  color: #E5E7EB;
  font-size: 20px;
  position: relative;
  z-index: 2;
  margin-bottom: 40px;
}

.cta-actions {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 16px;
}

.contact-cta-ghost {
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-cta-ghost:hover {
  background: #FFFFFF;
  color: #0F172A;
}

/* =============================
   LANDING CONTACT SECTION
   ============================= */
.landing-contact {
  padding: 40px 0 !important;
}

.landing-contact .section-header {
  margin-bottom: 32px;
}

.landing-contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 24px;
  align-items: stretch;
}

.landing-contact-form-card {
  display: flex;
  flex-direction: column;
}

.landing-contact-form-title {
  font-family: 'Clash Display', sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.landing-contact-form-desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.landing-contact-form .form-group {
  margin-bottom: 14px;
}

.landing-contact-form .form-group:last-of-type {
  margin-bottom: 16px;
}

.landing-contact-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: fit-content;
  min-width: 160px;
  height: 44px;
  padding: 10px 24px;
  border: none;
  border-radius: 16px;
  background: var(--primary);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font);
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(92, 45, 145, 0.25);
  transition: all 0.3s ease;
}

.landing-contact-submit:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(92, 45, 145, 0.35);
}

.landing-contact-submit i {
  width: 18px;
  height: 18px;
}

.landing-contact-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  padding: 8px 0 8px 16px;
}

.landing-contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.landing-contact-info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 12px;
  background: var(--primary-tint);
  border: 1px solid var(--primary-border);
  color: var(--primary);
  box-shadow: 0 8px 24px rgba(92, 45, 145, 0.12);
}

.landing-contact-info-icon i {
  width: 18px;
  height: 18px;
}

[data-theme="dark"] .landing-contact-info-icon {
  color: var(--support-yellow-bright);
  background: rgba(92, 45, 145, 0.2);
  border-color: rgba(92, 45, 145, 0.4);
}

.landing-contact-info-copy h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}

.landing-contact-info-copy p {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 2px;
}

.landing-contact-info-copy span {
  font-size: 12px;
  line-height: 1.4;
  color: var(--text-secondary);
}

[data-theme="dark"] .landing-contact-form-card.glass-panel {
  background: var(--card-bg);
  border: 1px solid var(--border);
}

@media (max-width: 1024px) {
  .landing-contact-grid {
    grid-template-columns: 1fr;
  }

  .landing-contact-info {
    padding: 8px 0 0;
  }
}

@media (max-width: 768px) {
  .landing-contact-form-card.glass-panel {
    padding: 28px 24px;
    border-radius: 24px;
  }

  .landing-contact-form-title {
    font-size: 24px;
  }

  .landing-contact-submit {
    width: 100%;
  }
}

/* =============================
   CHECKOUT PAGE
   ============================= */
.checkout-page {
  background: var(--bg);
  min-height: 100dvh;
  padding: 40px 0 96px;
}

.checkout-header {
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.checkout-back-link {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.25s ease;
}

.checkout-back-link:hover {
  color: var(--text);
}

.checkout-back-link i {
  width: 18px;
  height: 18px;
}

.checkout-header h1 {
  font-family: 'Clash Display', sans-serif;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--text);
  margin-bottom: 8px;
}

.checkout-header p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 680px;
}

.checkout-panel {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.checkout-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.checkout-step {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-radius: 16px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.checkout-step.is-active {
  border-color: var(--primary-border);
  background: var(--primary-tint);
  color: var(--text);
  box-shadow: 0 0 0 1px rgba(92, 45, 145, 0.15);
}

.checkout-step.is-complete {
  border-color: rgba(246, 196, 69, 0.35);
  color: var(--text);
}

.checkout-step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  flex-shrink: 0;
}

.checkout-step.is-active .checkout-step-icon {
  background: rgba(92, 45, 145, 0.25);
  color: var(--support-yellow-bright);
}

.checkout-step.is-complete .checkout-step-icon {
  color: var(--support-yellow-bright);
}

.checkout-step-icon i {
  width: 18px;
  height: 18px;
}

.checkout-step-label {
  font-size: 14px;
  font-weight: 600;
}

.checkout-plans-block {
  margin-bottom: 40px;
}

.checkout-plans-head {
  margin-bottom: 20px;
}

.checkout-plans-head h2 {
  font-family: 'Clash Display', sans-serif;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.3px;
  color: var(--text);
  margin-bottom: 6px;
}

.checkout-plans-head p {
  font-size: 14px;
  color: var(--text-secondary);
}

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

.checkout-plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  width: 100%;
  padding: 24px;
  border-radius: 20px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  color: inherit;
  font: inherit;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  appearance: none;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.checkout-plan-card:hover:not(.is-active) {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.checkout-plan-card.is-active {
  border: 2px solid var(--support-yellow-bright);
  transform: scale(1.02);
  box-shadow:
    0 0 0 1px rgba(246, 196, 69, 0.45),
    0 0 32px rgba(246, 196, 69, 0.12),
    0 24px 60px rgba(0, 0, 0, 0.32);
}

.checkout-plan-card.is-active:hover {
  border-color: var(--support-yellow-bright);
}

.checkout-plan-card:focus-visible {
  outline: none;
  border-color: var(--support-yellow-bright);
  box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.2);
}

.checkout-plans-grid.is-switching .checkout-plan-card {
  pointer-events: none;
}

.checkout-summary-panel.is-updating {
  opacity: 0.72;
  transition: opacity 0.2s ease;
}

.checkout-summary-panel.is-updating #checkoutSummaryContent {
  transition: opacity 0.2s ease;
}

.checkout-plan-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.checkout-plan-selected {
  display: none;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--support-yellow-bright);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.checkout-plan-card.is-active .checkout-plan-selected {
  display: inline-flex;
}

.checkout-plan-selected i {
  width: 14px;
  height: 14px;
}

.checkout-plan-duration {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  padding-right: 72px;
}

.checkout-plan-desc {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-secondary);
  margin-bottom: 16px;
  flex: 1;
}

.checkout-discount-badge-wrap {
  margin-bottom: 8px;
}

.checkout-plan-price {
  font-size: 32px;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
  margin-bottom: 6px;
}

.checkout-plan-price span {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
}

.checkout-plan-price--discounted {
  color: #27ae60;
}

.checkout-plan-price--discounted span {
  color: #27ae60;
  opacity: 0.8;
}

.checkout-plan-old-wrap {
  margin-bottom: 16px;
}

.checkout-plan-old-price {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: line-through;
  opacity: 0.55;
}

.checkout-plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.checkout-plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  line-height: 1.45;
  color: var(--text-secondary);
}

.checkout-plan-features li i {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--support-yellow-bright);
}

.checkout-main {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 28px;
  align-items: start;
}

.checkout-form-panel {
  padding: 32px;
}

.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.checkout-form-section {
  padding-bottom: 28px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.checkout-form-section:last-of-type {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}

.checkout-form-section-head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}

.checkout-form-section-head>i {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--support-yellow-bright);
}

.checkout-form-section-head h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.checkout-form-section-head p {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-secondary);
}

.checkout-form-panel .form-hint {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-secondary);
  margin: -4px 0 8px;
}

.checkout-form-panel .required {
  color: var(--support-yellow);
}

.checkout-form-panel .form-error {
  margin-top: 6px;
  font-size: 13px;
  color: #f87171;
}

.checkout-form-panel input.error,
.checkout-form-panel input[type="file"].error {
  border-color: rgba(248, 113, 113, 0.55);
}

.checkout-file-field {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 4px 4px 4px 16px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.checkout-file-field:focus-within {
  border-color: #8B5CF6;
  background: var(--card-bg);
  box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.12);
}

.checkout-file-field>i {
  width: 20px;
  height: 20px;
  color: var(--text-secondary);
  flex-shrink: 0;
}

.checkout-file-field input[type="file"] {
  flex: 1;
  padding: 12px 0;
  border: none;
  background: transparent;
  color: var(--text);
  font-size: 14px;
}

.checkout-file-field input[type="file"]:focus {
  outline: none;
  box-shadow: none;
}

.checkout-terms {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.checkout-terms input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--primary);
  cursor: pointer;
}

.checkout-terms label {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-secondary);
  cursor: pointer;
}

.checkout-terms.has-error {
  padding: 12px;
  border-radius: 12px;
  background: rgba(220, 38, 38, 0.08);
  border: 1px solid rgba(248, 113, 113, 0.28);
}

.checkout-terms.has-error label {
  color: #fca5a5;
}

#checkoutTermsError {
  margin-top: 8px;
}

.checkout-alert {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
  margin-bottom: 24px;
  border-radius: var(--radius-input);
  font-size: 14px;
  line-height: 1.5;
}

.checkout-alert i {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.checkout-alert--error {
  background: rgba(220, 38, 38, 0.12);
  border: 1px solid rgba(248, 113, 113, 0.28);
  color: #fca5a5;
}

.checkout-submit {
  width: 100%;
  height: 56px;
  margin-top: 12px;
  border: none;
  border-radius: 16px;
  background: var(--primary);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(92, 45, 145, 0.25);
  transition: all 0.3s ease;
}

.checkout-submit:hover:not(:disabled) {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(92, 45, 145, 0.35);
}

.checkout-submit:disabled,
.checkout-submit.is-loading {
  opacity: 0.75;
  cursor: not-allowed;
  transform: none;
}

.checkout-submit i {
  width: 18px;
  height: 18px;
}

.checkout-btn-spinner {
  width: 18px;
  height: 18px;
  animation: checkout-spin 0.8s linear infinite;
}

@keyframes checkout-spin {
  to {
    transform: rotate(360deg);
  }
}

.checkout-security {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 16px;
  padding: 16px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-input);
}

.checkout-security i {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--support-yellow);
  margin-top: 1px;
}

.checkout-security span {
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-secondary);
}

.checkout-summary-panel {
  padding: 0;
  overflow: hidden;
}

.checkout-summary-sticky {
  position: sticky;
  top: 112px;
  padding: 28px;
}

.checkout-summary-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 24px;
}

.checkout-summary-head h3 {
  font-family: 'Clash Display', sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--text);
}

.checkout-summary-badge {
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--primary-tint);
  border: 1px solid var(--primary-border);
  color: var(--support-yellow-bright);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.checkout-summary-plan {
  display: flex;
  gap: 14px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.checkout-summary-plan-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 14px;
  background: var(--primary-tint);
  border: 1px solid var(--primary-border);
  color: var(--support-yellow-bright);
}

.checkout-summary-plan-icon i {
  width: 22px;
  height: 22px;
}

.checkout-summary-plan-name {
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.checkout-summary-plan-desc {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.checkout-summary-plan-meta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-secondary);
}

.checkout-summary-plan-meta i {
  width: 14px;
  height: 14px;
}

.checkout-summary-features-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.checkout-summary-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 22px;
}

.checkout-summary-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  line-height: 1.45;
  color: var(--text-secondary);
}

.checkout-summary-features li i {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--support-yellow-bright);
}

.checkout-summary-pricing {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px 0;
  margin-bottom: 20px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.checkout-summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
  color: var(--text);
}

.checkout-summary-row strong {
  font-weight: 600;
}

.checkout-summary-row.muted {
  color: var(--text-secondary);
}

.checkout-summary-row.total {
  padding-top: 8px;
  font-size: 16px;
}

.checkout-summary-row.total strong {
  font-size: 22px;
  font-weight: 700;
  color: var(--support-yellow-bright);
}

.checkout-summary-cta {
  width: 100%;
  height: 48px;
  margin-top: 8px;
  padding: 0 18px;
  border: none;
  border-radius: 14px;
  background: var(--primary);
  color: #fff;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 10px 24px rgba(92, 45, 145, 0.22);
  transition: all 0.25s ease;
}

.checkout-summary-cta:hover:not(:disabled) {
  background: var(--primary-hover);
  color: #fff;
  transform: translateY(-1px);
}

.checkout-summary-cta i {
  width: 16px;
  height: 16px;
}

.checkout-summary-empty {
  font-size: 14px;
  color: var(--text-secondary);
}

@media (max-width: 1200px) {
  .checkout-plans-grid {
    grid-template-columns: 1fr;
  }

  .checkout-plan-duration {
    padding-right: 0;
  }
}

@media (max-width: 1024px) {
  .checkout-main {
    grid-template-columns: 1fr;
  }

  .checkout-summary-sticky {
    position: static;
  }

  .checkout-steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .checkout-page {
    padding: 28px 0 72px;
  }

  .checkout-header h1 {
    font-size: 28px;
  }

  .checkout-form-panel,
  .checkout-summary-sticky {
    padding: 24px 20px;
  }

  .checkout-plan-card {
    padding: 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

/* =============================
   PRODUCT CONFIRMATION MODAL
   ============================= */
html.modal-open,
body.modal-open {
  overflow: hidden;
  touch-action: none;
}

.product-confirm-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.product-confirm-modal.show {
  opacity: 1;
  visibility: visible;
}

.product-confirm-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.product-confirm-card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 560px;
  padding: 40px;
  background: var(--card-bg);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  font-family: var(--font);
  transform: translateY(20px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-confirm-modal.show .product-confirm-card {
  transform: translateY(0);
}

.product-confirm-close {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: none;
  border-radius: 10px;
  background: transparent;
  font-size: 24px;
  line-height: 1;
  color: var(--text-secondary);
  cursor: pointer;
  transition: color 0.25s ease, background 0.25s ease;
}

.product-confirm-close:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.product-confirm-card .section-eyebrow {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: var(--support-yellow);
  margin-bottom: 12px;
}

.product-confirm-card h3 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.5px;
  color: var(--text);
  margin-bottom: 12px;
  padding-right: 32px;
}

.product-confirm-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 0;
}

.product-confirm-summary {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 24px 0;
  padding: 20px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-input);
  transition: border-color 0.25s ease;
}

.product-confirm-summary:hover {
  border-color: var(--primary-border);
}

.product-confirm-summary strong {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
}

.product-confirm-summary span {
  font-size: 14px;
  color: var(--text-secondary);
}

.product-confirm-actions {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 12px;
  margin-top: 24px;
}

.product-confirm-actions .btn-outline {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  height: 56px;
  padding: 14px 24px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font);
  line-height: 1.2;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.3s ease;
}

.product-confirm-actions .btn-outline:hover {
  background: var(--bg-alt);
  border-color: rgba(255, 255, 255, 0.14);
  transform: translateY(-1px);
}

.product-confirm-card .btn-primary {
  flex: 1 1 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  height: 56px;
  padding: 14px 28px;
  border-radius: 16px;
  border: none;
  background: var(--primary);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font);
  line-height: 1.2;
  white-space: nowrap;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(92, 45, 145, 0.25);
  cursor: pointer;
  transition: all 0.3s ease;
}

.product-confirm-card .btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(92, 45, 145, 0.35);
}

[data-theme="dark"] .product-confirm-card {
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}

[data-theme="dark"] .product-confirm-summary {
  background: rgba(255, 255, 255, 0.03);
}

[data-theme="dark"] .product-confirm-actions .btn-outline:hover {
  background: rgba(255, 255, 255, 0.05);
}

@media (max-width: 768px) {
  .product-confirm-card {
    padding: 32px 24px;
  }

  .product-confirm-card h3 {
    font-size: 24px;
  }

  .product-confirm-actions {
    flex-direction: column;
  }

  .product-confirm-actions .btn-outline,
  .product-confirm-card .btn-primary {
    flex: 1 1 auto;
    width: 100%;
    min-width: 0;
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .contact-support-badge {
    top: 20px;
    right: 20px;
  }

  .contact-options-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    padding: 120px 0 48px;
  }

  .contact-hero-heading {
    font-size: 32px;
    letter-spacing: -0.5px;
  }

  .contact-hero-subtitle {
    font-size: 15px;
  }

  .contact-support-badge {
    display: none;
    /* too cramped on small screens */
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .cta-inner h2 {
    font-size: 36px;
  }

  .cta-actions {
    flex-direction: column;
  }
}

.subheader-strip {
  min-height: 56px;
  height: auto;
  background: #FFFFFF;
  border-bottom: 1px solid #F3F4F6;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 0;
}

.subheader-strip .container {
  flex-wrap: wrap;
  row-gap: 6px;
}

.subheader-strip .attr-text p {
  margin: 0;
  display: inline-block;
  font-size: 14px;
}

[data-theme="dark"] .subheader-strip {
  background: var(--bg-alt);
  border-bottom-color: var(--border);
}

@media (max-width: 480px) {
  .subheader-strip {
    padding: 10px 16px;
  }

  .subheader-strip .container {
    gap: 4px;
  }

  .subheader-strip img {
    height: 16px !important;
  }

  .subheader-strip .attr-text p {
    font-size: 12px;
  }

  .subheader-strip .attr-text strong {
    display: block;
  }
}

/* ==========================================================================
   TABLET RESPONSIVENESS (ADD-ONS)
   ========================================================================== */
@media (max-width: 1024px) {
  .addon-card {
    flex-direction: column;
    height: auto;
    padding: 24px;
  }

  .addon-visual {
    min-height: 220px;
    flex: none;
    width: 100%;
    margin-bottom: 24px;
  }

  .addon-content {
    padding: 0;
    margin-bottom: 24px;
    text-align: center;
  }

  .addon-action {
    border-left: none;
    border-top: 1px solid #ECECF2;
    padding: 24px 0 0;
    width: 100%;
    align-items: center;
    text-align: center;
  }

  .addon-price {
    justify-content: center;
  }

  [data-theme="dark"] .addon-action {
    border-left: none;
    border-top: 1px solid var(--border);
  }
}

/* ==========================================================================
   MOBILE RESPONSIVENESS (GRIDS)
   ========================================================================== */
@media (max-width: 768px) {

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr !important;
  }

  .benefit-card {
    padding: 24px;
  }
}