/* ============================================
   PURPLE DIRECT - Design System & Styles
   ============================================ */

:root {
  --purple-50: #f5f0ff;
  --purple-100: #ede5ff;
  --purple-200: #d4c4ff;
  --purple-300: #b495ff;
  --purple-400: #8b5cf6;
  --purple-500: #7c3aed;
  --purple-600: #6d28d9;
  --purple-700: #7e3ff2;
  --purple-800: #7e3ff2;
  --purple-900: #7e3ff2;

  --gold-400: #fbbf24;
  --gold-500: #f59e0b;

  --green-500: #22c55e;

  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;

  --white: #ffffff;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.04);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.08), 0 8px 10px -6px rgba(0,0,0,0.04);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

/* ============================================
   Layout
   ============================================ */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 520px;
  margin: 0 auto;
}

/* ============================================
   Buttons
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  gap: 8px;
  white-space: nowrap;
}

.btn-sm {
  padding: 8px 20px;
  font-size: 0.875rem;
  border-radius: var(--radius-full);
}

.btn-md {
  padding: 12px 28px;
  font-size: 0.95rem;
  border-radius: var(--radius-full);
}

.btn-lg {
  padding: 14px 36px;
  font-size: 1rem;
  border-radius: var(--radius-full);
}

.btn-primary {
  background: linear-gradient(135deg, var(--purple-500), var(--purple-700));
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(124, 58, 237, 0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--purple-600), var(--purple-800));
  box-shadow: 0 6px 20px rgba(124, 58, 237, 0.45);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--purple-600);
  border-color: var(--purple-300);
}

.btn-outline:hover {
  background: var(--purple-50);
  border-color: var(--purple-500);
}

.btn-white {
  background: var(--white);
  color: var(--purple-700);
  border-color: transparent;
  box-shadow: var(--shadow-md);
}

.btn-white:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}

.btn-block {
  width: 100%;
  padding: 12px 24px;
  font-size: 0.95rem;
  border-radius: var(--radius-full);
}

/* ============================================
   Header
   ============================================ */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--gray-100);
  overflow: visible;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-icon {
  font-size: 1.4rem;
}

.logo-text {
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--gray-700);
}

.logo-bold {
  font-weight: 800;
  color: var(--purple-600);
}

.nav {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-link {
  font-size: 0.925rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: color 0.2s;
}

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

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: all 0.3s;
}

body.mobile-menu-open .mobile-menu-btn span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

body.mobile-menu-open .mobile-menu-btn span:nth-child(2) {
  opacity: 0;
}

body.mobile-menu-open .mobile-menu-btn span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   Mobile Menu
   ============================================ */

.mobile-menu {
  display: none;
}

body.mobile-menu-open {
  overflow: hidden;
}

body.mobile-menu-open .mobile-menu {
  display: block;
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 998;
  animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.mobile-menu-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 320px;
  max-width: 85vw;
  background: var(--white);
  z-index: 999;
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 30px rgba(0, 0, 0, 0.1);
  animation: slideIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
}

@keyframes slideIn {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--gray-100);
}

.mobile-menu-close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: var(--gray-50);
  color: var(--gray-600);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}

.mobile-menu-close:hover {
  background: var(--gray-100);
  color: var(--gray-800);
}

.mobile-menu-nav {
  flex: 1;
  padding: 16px 0;
}

.mobile-menu-section {
  padding: 0 0 8px;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--gray-100);
}

.mobile-menu-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-400);
  padding: 8px 24px;
}

.mobile-menu-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: all 0.15s;
}

.mobile-menu-link:hover {
  background: var(--purple-50);
  color: var(--purple-700);
}

.mobile-menu-link svg {
  color: var(--gray-400);
  flex-shrink: 0;
}

.mobile-menu-link:hover svg {
  color: var(--purple-500);
}

.mobile-menu-actions {
  padding: 20px 24px;
  border-top: 1px solid var(--gray-100);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.header-actions {
  display: flex;
  gap: 10px;
}

/* ============================================
   Nav Dropdown & Mega Menu
   ============================================ */

.nav-dropdown {
  position: relative;
}

.nav-link-trigger {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: 1px solid var(--purple-200);
  border-radius: var(--radius-full);
  padding: 6px 16px;
  font-family: inherit;
  font-size: 0.925rem;
  font-weight: 600;
  color: var(--purple-600);
  cursor: pointer;
  transition: all 0.2s;
}

.nav-link-trigger:hover {
  background: var(--purple-50);
  border-color: var(--purple-400);
}

.nav-dropdown.open .nav-link-trigger {
  background: var(--purple-50);
  border-color: var(--purple-500);
}

.nav-chevron {
  transition: transform 0.25s ease;
}

.nav-dropdown.open .nav-chevron {
  transform: rotate(180deg);
}

.mega-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: 680px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.12), 0 0 0 1px rgba(0,0,0,0.03);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1), transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.25s;
  z-index: 200;
  overflow: hidden;
}

.nav-dropdown.open .mega-dropdown {
  display: block;
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

/* Help dropdown (Contact Us, FAQs) */
.help-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 180px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  z-index: 200;
}

.nav-dropdown.open .help-dropdown {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.help-dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: background 0.15s, color 0.15s;
}

.help-dropdown a:hover {
  background: var(--purple-50);
  color: var(--purple-600);
}

.mega-dropdown-inner {
  display: grid;
  grid-template-columns: 180px 1fr;
}

/* Sidebar */
.mega-sidebar {
  background: var(--gray-50);
  border-right: 1px solid var(--gray-100);
  padding: 20px 0;
}

.mega-sidebar-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-400);
  padding: 0 20px;
  margin-bottom: 12px;
}

.mega-sidebar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 12px 20px;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-600);
  cursor: pointer;
  transition: all 0.15s;
  position: relative;
}

.mega-sidebar-item:hover {
  background: var(--gray-100);
  color: var(--gray-800);
}

.mega-sidebar-item.active {
  background: var(--white);
  color: var(--purple-700);
  font-weight: 600;
  box-shadow: inset 3px 0 0 var(--purple-500);
}

.mega-sidebar-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--gray-100);
  color: var(--gray-500);
  flex-shrink: 0;
}

.mega-sidebar-item.active .mega-sidebar-icon {
  background: var(--purple-100);
  color: var(--purple-600);
}

/* Plan Cards */
.mega-content {
  padding: 24px 28px;
  position: relative;
  min-height: 380px;
}

.mega-plan-card {
  display: none;
  animation: fadeInCard 0.3s ease;
}

.mega-plan-card.visible {
  display: block;
}

@keyframes fadeInCard {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.mega-plan-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gray-100);
}

.mega-plan-badge {
  display: inline-block;
  padding: 5px 16px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.badge-purple {
  background: var(--purple-100);
  color: var(--purple-700);
}

.badge-green {
  background: #dcfce7;
  color: #15803d;
}

.badge-amber {
  background: #fef3c7;
  color: #b45309;
}

.mega-plan-pricing {
  flex: 1;
}

.mega-plan-data-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--gray-900);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
}

.mega-plan-price-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 2px;
}

.mega-plan-was {
  font-size: 0.85rem;
  color: var(--gray-400);
  text-decoration: line-through;
}

.mega-plan-save {
  font-size: 0.7rem;
  font-weight: 700;
  color: #dc2626;
  background: #fef2f2;
  padding: 2px 10px;
  border-radius: var(--radius-full);
}

.mega-plan-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.02em;
}

.mega-plan-price span {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gray-400);
}

.mega-plan-term {
  font-size: 0.8rem;
  color: var(--gray-400);
}

/* Feature Grid */
.mega-plan-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.mega-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding: 14px 8px;
  background: var(--gray-50);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-100);
  transition: all 0.2s;
}

.mega-feature:hover {
  background: var(--purple-50);
  border-color: var(--purple-200);
}

.mega-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  color: var(--purple-500);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

.mega-feature span {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--gray-600);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.mega-plan-cta {
  margin-top: 4px;
}

/* ============================================
   Hero
   ============================================ */

.hero {
  position: relative;
  padding: 140px 0 80px;
  overflow: hidden;
  background: var(--purple-100) url('images/hero-family3.png') no-repeat center right;
  background-size: cover;
  min-height: 520px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.856) 0%, rgba(255, 255, 255, 0.671) 45%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 420px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 520px;
}

.hero-badge {
  display: inline-block;
  width: fit-content;
  padding: 6px 16px;
  background: var(--purple-100);
  color: var(--purple-700);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
  border: 1px solid rgba(124, 58, 237, 0.35);
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.9);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--gray-900);
  margin-bottom: 20px;
}

.text-gradient {
  background: linear-gradient(135deg, var(--purple-500), var(--purple-700));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 460px;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.9), 0 1px 4px rgba(0, 0, 0, 0.05);
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
}

.hero-actions .btn-outline {
  background: rgba(255, 255, 255, 0.85);
  color: var(--purple-700);
  border: 2px solid var(--purple-500);
  box-shadow: 0 2px 8px rgba(124, 58, 237, 0.15);
}

.hero-actions .btn-outline:hover {
  background: var(--white);
  border-color: var(--purple-600);
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.25);
}

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

.hero-trust-avatars {
  display: flex;
}

.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--purple-200);
  color: var(--purple-700);
  font-weight: 700;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--white);
  margin-left: -8px;
}

.avatar:first-child {
  margin-left: 0;
}

.hero-stars {
  color: var(--gold-500);
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.hero-trust-text span {
  font-size: 0.825rem;
  color: var(--gray-600);
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.9);
}

/* Hero Visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-phone-img {
  width: 100%;
  max-width: 800px;
  height: auto;
  filter: drop-shadow(0 40px 80px rgba(124, 58, 237, 0.25)) drop-shadow(0 15px 30px rgba(0,0,0,0.1));
  animation: hero-float 5s ease-in-out infinite;
  position: relative;
  z-index: 1;
  border-radius: 50px;
}

@keyframes hero-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}


.hero-bg-blur {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.1) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  z-index: -1;
}

/* ============================================
   Pricing
   ============================================ */

.pricing {
  padding: 100px 0;
  background: var(--purple-50);
  position: relative;
  overflow: hidden;
}

.pricing::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.06) 0%, transparent 70%);
  top: -200px;
  right: -200px;
  z-index: 0;
}

.pricing::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.08) 0%, transparent 70%);
  bottom: -100px;
  left: -100px;
  z-index: 0;
}

.pricing > .container {
  position: relative;
  z-index: 1;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.pricing-card-featured {
  border: 2px solid var(--purple-400);
  box-shadow: 0 12px 40px -8px rgba(124, 58, 237, 0.18), 0 0 0 1px rgba(139, 92, 246, 0.2);
  padding: 36px 28px;
  z-index: 2;
  background: linear-gradient(180deg, var(--purple-50) 0%, var(--white) 100%);
}

.pricing-card-featured:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px -12px rgba(124, 58, 237, 0.22), 0 0 0 1px rgba(139, 92, 246, 0.25);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--purple-400), var(--purple-600));
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  letter-spacing: 0.05em;
}

.pricing-card .plan-network-strip {
  margin-top: auto;
}

.pricing-card-header {
  text-align: center;
  margin-bottom: 28px;
}

.plan-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gray-700);
  margin-bottom: 8px;
}

.plan-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  margin-bottom: 4px;
}

.price-currency {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--purple-600);
}

.pricing-card-featured .price-currency,
.pricing-card-featured .price-amount {
  color: var(--purple-600);
}

.price-amount {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--purple-600);
  line-height: 1;
  letter-spacing: -0.02em;
}

.price-period {
  font-size: 0.95rem;
  color: var(--gray-400);
  font-weight: 500;
}

.plan-desc {
  font-size: 0.85rem;
  color: var(--gray-400);
}

.plan-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 4px;
}

.stars {
  color: var(--gold-500);
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.pricing-card-featured .stars {
  color: var(--purple-500);
}

.rating-value {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-600);
}

.plan-features {
  list-style: none;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.925rem;
  font-weight: 500;
  color: var(--gray-700);
}

.check {
  color: var(--green-500);
  font-weight: 700;
  font-size: 1rem;
}

/* Network Branding */
.network-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--gray-500);
  margin-bottom: 16px;
}

.network-badge strong {
  color: var(--gray-700);
}

.network-logo-img {
  height: 28px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
  object-fit: contain;
}

.network-badge-featured {
  justify-content: center;
}

.network-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2); }
  50% { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.08); }
}

.plan-network-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-400);
  padding: 10px 0;
  margin-bottom: 16px;
  border-top: 1px solid var(--gray-100);
}

.plan-network-strip svg {
  color: var(--purple-400);
}

/* Mega Dropdown Network */
.mega-plan-network {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--gray-500);
  padding: 12px 0;
  margin-bottom: 4px;
  border-top: 1px solid var(--gray-100);
}

.mega-plan-network strong {
  color: var(--gray-700);
}

.mega-plan-network .network-logo-img {
  height: 24px;
}

/* ============================================
   Stats Bar
   ============================================ */

.stats-bar {
  padding: 48px 0;
  background: linear-gradient(135deg, var(--purple-700), var(--purple-900));
  border-bottom: none;
}

.stat-number {
  color: var(--white);
}

.stat-label {
  color: rgba(255,255,255,0.55);
}

.stat-divider {
  background: rgba(255,255,255,0.15);
}

.stats-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 0 48px;
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

/* ============================================
   Why Purple Direct
   ============================================ */

.why-section {
  padding: 100px 0;
  background: var(--gray-50);
  position: relative;
  overflow: hidden;
}

.why-section::before,
.why-section::after {
  display: none;
}

.why-section .section-eyebrow {
  color: var(--purple-500);
}

.why-section .section-title {
  color: var(--gray-900);
}

.why-section .section-subtitle {
  color: var(--gray-500);
}

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

.why-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-sm);
}

.why-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--gray-300);
}

.why-card-featured {
  background: var(--white);
  border-color: var(--purple-300);
  box-shadow: 0 12px 40px -8px rgba(124, 58, 237, 0.12);
}

.why-card-featured:hover {
  border-color: var(--purple-400);
  background: var(--white);
  box-shadow: 0 20px 50px -12px rgba(124, 58, 237, 0.15);
}

.why-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--purple-50);
  color: var(--purple-500);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.why-card-featured .why-card-icon {
  background: var(--purple-100);
  color: var(--purple-600);
}

/* GBP icon from images/british-pound-svgrepo-com.svg – mask so colour inherits */
.why-card-icon-pound {
  position: relative;
  background: transparent;
}

.why-card-icon-pound::before {
  content: '';
  position: absolute;
  inset: 0;
  background: currentColor;
  mask: url('images/british-pound-svgrepo-com.svg') center / 28px 28px no-repeat;
  -webkit-mask: url('images/british-pound-svgrepo-com.svg') center / 28px 28px no-repeat;
}

.why-card-featured .why-card-icon-pound {
  background: var(--purple-100);
  color: var(--purple-600);
}

.why-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 10px;
}

.why-card-featured .why-card-title {
  color: var(--gray-900);
}

.why-card-desc {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.65;
  margin-bottom: 20px;
  flex: 1;
}

.why-card-featured .why-card-desc {
  color: var(--gray-600);
}

.why-card-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--green-500);
  padding: 8px 14px;
  background: rgba(34, 197, 94, 0.1);
  border-radius: var(--radius-full);
  width: fit-content;
}

.why-card-featured .why-card-tag {
  background: var(--purple-50);
  color: var(--purple-600);
}

.why-card-tag svg {
  flex-shrink: 0;
}

/* ============================================
   Marquee (homepage)
   ============================================ */

.marquee-dot {
  color: var(--purple-300);
  margin: 0 8px;
}

/* ============================================
   Reviews
   ============================================ */

.reviews-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--purple-50) 0%, var(--white) 100%);
}

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

.review-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.review-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--purple-200);
}

.review-stars {
  color: var(--gold-500);
  font-size: 0.95rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.review-text {
  font-size: 0.95rem;
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

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

/* ============================================
   How It Works
   ============================================ */

.how-it-works {
  padding: 100px 0;
  background: var(--white);
}

.how-it-works .section-title {
  text-align: center;
  margin-bottom: 52px;
}

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

.step-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  border: 1px solid var(--gray-100);
  border-top: 3px solid var(--purple-400);
}

.step-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-top-color: var(--purple-600);
}

.step-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--purple-100);
  color: var(--purple-600);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.step-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 8px;
}

.step-desc {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.6;
}

.steps-cta {
  text-align: center;
  margin-top: 44px;
}

/* ============================================
   Testimonial
   ============================================ */

.testimonial {
  padding: 80px 0;
  background: var(--white);
}

.testimonial-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.testimonial-content {
  position: relative;
}

.testimonial-quote {
  font-size: 4rem;
  font-weight: 800;
  color: var(--purple-200);
  line-height: 1;
  font-family: Georgia, serif;
}

.testimonial-quote-end {
  text-align: right;
}

.testimonial-text {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--gray-700);
  margin: -16px 0 0;
  padding: 0 8px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--purple-100);
  color: var(--purple-600);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.author-name {
  font-weight: 700;
  color: var(--gray-800);
}

.author-location {
  font-size: 0.85rem;
  color: var(--gray-400);
}

/* Sim stack visual */
.testimonial-visual {
  display: flex;
  justify-content: center;
}

.sim-stack {
  position: relative;
  width: 280px;
  height: 220px;
}

.sim {
  position: absolute;
  width: 110px;
  height: 75px;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

.sim-orange {
  background: linear-gradient(135deg, #f97316, #fb923c);
  top: 10px;
  left: 20px;
  transform: rotate(-8deg);
}

.sim-purple {
  background: linear-gradient(135deg, var(--purple-500), var(--purple-700));
  top: 30px;
  left: 80px;
  transform: rotate(5deg);
  z-index: 2;
}

.sim-green {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  top: 70px;
  left: 40px;
  transform: rotate(-3deg);
}

.sim-yellow {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  top: 90px;
  left: 130px;
  transform: rotate(10deg);
}

.sim-blue {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  top: 50px;
  left: 160px;
  transform: rotate(-5deg);
  z-index: 1;
}

/* ============================================
   Networks
   ============================================ */

.networks {
  padding: 48px 0;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}

.networks-label {
  text-align: center;
  font-size: 0.85rem;
  color: var(--gray-400);
  margin-bottom: 20px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.networks-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
}

.network-logo {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gray-500);
  display: flex;
  align-items: center;
  gap: 6px;
}

.network-icon {
  font-weight: 800;
}

/* ============================================
   FAQ
   ============================================ */

.faq {
  padding: 100px 0;
  background: var(--gray-50);
}

.faq .section-title {
  text-align: center;
  margin-bottom: 48px;
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.2s ease;
}

.faq-item[open] {
  background: var(--white);
  border-color: var(--purple-300);
  box-shadow: var(--shadow-md);
}

.faq-question {
  padding: 20px 24px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--gray-800);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--purple-500);
  transition: transform 0.2s;
}

.faq-item[open] .faq-question::after {
  content: '−';
}

.faq-answer {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ============================================
   CTA
   ============================================ */

.cta {
  padding: 80px 0;
  background: white
}

.cta-inner {
  text-align: center;
}

.cta-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 12px;
}

.cta-subtitle {
  font-size: 1.1rem;
  color: var(--black);
  margin-bottom: 32px;
}

.cta-subtitle strong {
  color: var(--black);
}

/* ============================================
   Footer
   ============================================ */

.footer {
  padding: 64px 0 0;
  background: linear-gradient(180deg, var(--purple-600), var(--purple-700));
  color: var(--white);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.1fr 1.2fr 1.2fr;
  gap: 48px 32px;
  padding-bottom: 48px;
  align-items: start;
}

/* Left: Brand */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--white);
}

.footer-logo-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.footer-logo-text {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
}

.footer-logo-bold {
  font-weight: 800;
}

.footer-tagline {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--white);
  margin: 0;
  max-width: 260px;
}

.btn-footer-cta {
  align-self: flex-start;
  padding: 12px 24px;
  background: transparent;
  border: 2px solid var(--purple-200);
  color: var(--white);
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9rem;
}

.btn-footer-cta:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--purple-100);
  color: var(--white);
}

/* Middle: Nav + Social */
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-left: 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-heading {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0;
  color: var(--purple-200);
}

.footer-heading-white {
  color: var(--white);
  text-transform: none;
  letter-spacing: 0;
}

.footer-links-inline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 0;
  font-size: 0.9rem;
}

.footer-links-inline a {
  color: var(--white);
  text-decoration: none;
  transition: opacity 0.2s;
}

.footer-links-inline a:hover {
  opacity: 0.9;
}

.footer-sep {
  color: rgba(255, 255, 255, 0.5);
  margin: 0 8px;
  font-weight: 300;
  user-select: none;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.6);
  background: transparent;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.footer-social-link:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
  color: var(--white);
}

/* Right: Legal + Contact */
.footer-legal-contact {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-left: 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-legal {
  font-size: 0.85rem;
  line-height: 1.8;
}

.footer-legal a {
  color: var(--white);
  text-decoration: none;
  transition: opacity 0.2s;
}

.footer-legal a:hover {
  opacity: 0.9;
}

.footer-legal .footer-sep {
  margin: 0 6px;
}

.footer-contact .footer-heading {
  margin-bottom: 4px;
}

.footer-contact .footer-links-inline {
  margin-top: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 20px 0;
  text-align: right;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.85);
}

.footer-bottom p {
  margin: 0;
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.8rem;
  }

  .stat-item {
    padding: 0 32px;
  }

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

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

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

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

@media (max-width: 768px) {
  .nav,
  .header-actions {
    display: none;
  }

  .stats-grid {
    flex-wrap: wrap;
    gap: 24px;
  }

  .stat-item {
    padding: 0 20px;
    min-width: 140px;
  }

  .stat-divider {
    display: none;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .hero {
    padding: 120px 0 60px;
    min-height: 480px;
    background-position: 60% center;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.6) 35%, transparent 100%);
  }

  .hero-inner {
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
    margin: 0 auto;
  }

  .hero-title {
    font-size: 2.4rem;
  }

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

  .hero-actions {
    justify-content: center;
  }

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

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .pricing-card-featured {
    order: -1;
  }

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

  .testimonial-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .testimonial-author {
    justify-content: center;
  }

  .testimonial-visual {
    order: -1;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-nav,
  .footer-legal-contact {
    padding-left: 0;
    border-left: none;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

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

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

  .networks-logos {
    gap: 24px;
    flex-wrap: wrap;
  }
}

/* ============================================
   ABOUT US PAGE
   ============================================ */

.nav-link-active {
  color: var(--purple-600) !important;
  font-weight: 600;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--purple-500);
  margin-bottom: 12px;
}

/* About Hero */
.about-hero {
  padding: 160px 0 100px;
  background: linear-gradient(180deg, var(--purple-50) 0%, var(--white) 100%);
  text-align: center;
}

.about-hero-inner {
  max-width: 720px;
  margin: 0 auto;
}

.about-hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--gray-900);
  margin-bottom: 20px;
}

.about-hero-subtitle {
  font-size: 1.15rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.about-hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.about-hero-rating {
  display: flex;
  align-items: center;
  gap: 8px;
}

.about-rating-text {
  font-size: 0.85rem;
  color: var(--gray-500);
  font-weight: 500;
}

/* Values Grid */
.about-values {
  padding: 100px 0;
  background: var(--purple-50);
}

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

.value-card {
  padding: 32px 24px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.value-card:hover {
  border-color: var(--purple-200);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.value-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--purple-100);
  color: var(--purple-600);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.value-card:hover .value-icon {
  background: linear-gradient(135deg, var(--purple-500), var(--purple-700));
  color: var(--white);
}

.value-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 8px;
}

.value-desc {
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* Benefits Section */
.about-benefits {
  padding: 100px 0;
  background: var(--gray-50);
}

.about-benefits-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-benefits-content .section-title {
  text-align: left;
  margin-bottom: 32px;
}

.benefits-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.benefits-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray-700);
}

.benefit-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #dcfce7;
  color: #16a34a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* Phone Mockup */
.about-phone-img {
  width: 200%;
  max-width: 800px;
  height: auto;
  filter: drop-shadow(0 40px 80px rgba(124, 58, 237, 0.2)) drop-shadow(0 15px 30px rgba(0,0,0,0.08));
  display: block;
  margin: 0 auto;
}

/* Perfect Plan Section */
.about-perfect-plan {
  padding: 100px 0;
  background: var(--gray-100);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-perfect-plan::before {
  display: none;
}

.about-perfect-plan .section-eyebrow {
  color: var(--purple-500);
}

.about-perfect-plan .section-title {
  color: var(--gray-900);
}

.about-perfect-plan .section-subtitle {
  color: var(--gray-500);
}

.perfect-plan-inner {
  max-width: 700px;
  margin: 0 auto;
}

.perfect-plan-inner .section-title {
  margin-bottom: 16px;
}

.perfect-plan-inner .section-subtitle {
  margin-bottom: 32px;
}

.perfect-plan-actions {
  margin-bottom: 32px;
}

.perfect-plan-badges {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-700);
  padding: 8px 16px;
  background: var(--white);
  border-radius: var(--radius-full);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.trust-badge svg {
  color: var(--green-500);
}

/* Marquee */
.marquee-section {
  padding: 24px 0;
  background: var(--purple-600);
  overflow: hidden;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.marquee-content {
  display: flex;
  gap: 48px;
  padding: 0 24px;
}

.marquee-content span {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  white-space: nowrap;
  letter-spacing: 0.02em;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Differentiators */
.about-differentiators {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--purple-50) 0%, var(--white) 100%);
}

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

.diff-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all 0.3s ease;
}

.diff-card:hover {
  border-color: var(--purple-200);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.diff-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--purple-100);
  color: var(--purple-600);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.diff-card:hover .diff-icon {
  background: linear-gradient(135deg, var(--purple-500), var(--purple-700));
  color: var(--white);
}

.diff-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 8px;
}

.diff-desc {
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.65;
}

/* About Responsive */
@media (max-width: 1024px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 768px) {
  .about-hero {
    padding: 130px 0 70px;
  }

  .about-hero-title {
    font-size: 2.5rem;
  }

  .about-benefits-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-benefits-content .section-title {
    text-align: center;
  }

  .about-benefits-content {
    text-align: center;
  }

  .benefits-list li {
    justify-content: center;
  }

  .about-benefits-content .btn {
    margin: 0 auto;
  }

  .about-benefits-visual {
    order: -1;
  }

  .about-phone-img {
    max-width: 360px;
  }

  .values-grid {
    grid-template-columns: 1fr 1fr;
  }

  .diff-grid {
    grid-template-columns: 1fr;
  }

  .perfect-plan-badges {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .about-hero-title {
    font-size: 2rem;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .about-hero-actions {
    flex-direction: column;
  }
}

/* ============================================
   LOGIN PAGE
   ============================================ */

.login-page {
  padding-top: 72px;
  min-height: 100vh;
}

.login-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 72px);
}

/* Left Brand Panel */
.login-brand-panel {
  background: linear-gradient(160deg, var(--purple-700), var(--purple-900));
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.login-brand-content {
  position: relative;
  z-index: 2;
}

.login-brand-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.8);
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  margin-bottom: 28px;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.1);
}

.login-brand-title {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 16px;
}

.login-brand-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  max-width: 380px;
  margin-bottom: 48px;
}

.login-brand-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.login-brand-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.login-brand-feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.08);
}

.login-brand-feature-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2px;
}

.login-brand-feature-desc {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

.login-brand-footer {
  position: relative;
  z-index: 2;
  margin-top: 56px;
}

.login-brand-trust {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

.login-brand-trust .hero-stars {
  color: var(--gold-400);
  font-size: 0.8rem;
}

/* Decorative blurs */
.login-brand-blur {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
}

.login-brand-blur-1 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, transparent 70%);
  bottom: -80px;
  right: -60px;
}

.login-brand-blur-2 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.12) 0%, transparent 70%);
  top: 40px;
  right: 60px;
}

/* Right Form Panel */
.login-form-panel {
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px 56px;
}

.login-form-wrapper {
  width: 100%;
  max-width: 420px;
}

.login-form-header {
  text-align: center;
  margin-bottom: 36px;
}

.login-form-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--purple-50);
  color: var(--purple-500);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border: 2px solid var(--purple-100);
}

.login-form-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.login-form-subtitle {
  font-size: 0.92rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* Form Elements */
.login-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-700);
}

.required {
  color: #ef4444;
}

.form-input-wrapper {
  position: relative;
}

.form-input-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-400);
  pointer-events: none;
}

.form-input {
  width: 100%;
  padding: 14px 16px 14px 46px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--gray-800);
  background: var(--gray-50);
  transition: all 0.2s;
  outline: none;
}

.form-input::placeholder {
  color: var(--gray-400);
}

.form-input:focus {
  border-color: var(--purple-400);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.login-submit {
  margin-top: 4px;
}

/* Verification Code Inputs */
.verify-sent-msg {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  color: #15803d;
}

.verify-sent-msg strong {
  color: #166534;
}

.code-inputs {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}

.code-input {
  width: 48px;
  height: 56px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  text-align: center;
  font-family: inherit;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gray-900);
  background: var(--gray-50);
  outline: none;
  transition: all 0.2s;
}

.code-input:focus {
  border-color: var(--purple-400);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.code-dash {
  color: var(--gray-300);
  font-size: 1.2rem;
  margin: 0 2px;
}

.login-resend {
  text-align: center;
  font-size: 0.85rem;
  color: var(--gray-500);
}

.login-resend-link {
  color: var(--purple-600);
  font-weight: 600;
  transition: color 0.2s;
}

.login-resend-link:hover {
  color: var(--purple-700);
}

/* Form Footer */
.login-form-footer {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-100);
  text-align: center;
  font-size: 0.88rem;
  color: var(--gray-500);
}

.form-link {
  color: var(--purple-600);
  font-weight: 600;
  transition: color 0.2s;
}

.form-link:hover {
  color: var(--purple-700);
}

/* Login Responsive */
@media (max-width: 1024px) {
  .login-brand-panel {
    padding: 48px 40px;
  }

  .login-form-panel {
    padding: 48px 40px;
  }

  .login-brand-title {
    font-size: 2.6rem;
  }
}

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

  .login-brand-panel {
    padding: 40px 24px 32px;
    min-height: auto;
  }

  .login-brand-title {
    font-size: 2.2rem;
  }

  .login-brand-subtitle {
    margin-bottom: 32px;
  }

  .login-brand-features {
    display: none;
  }

  .login-brand-footer {
    margin-top: 24px;
  }

  .login-form-panel {
    padding: 40px 24px 60px;
  }

  .code-input {
    width: 42px;
    height: 50px;
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .login-brand-title {
    font-size: 1.8rem;
  }

  .code-input {
    width: 38px;
    height: 46px;
  }

  .code-inputs {
    gap: 5px;
  }
}

/* ============================================
   CHECKOUT PAGE
   ============================================ */

.checkout-page {
  padding: 108px 0 80px;
  background: linear-gradient(180deg, var(--purple-50) 0%, var(--gray-50) 30%);
  min-height: 100vh;
}

/* Progress Steps */
.checkout-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 40px;
}

.progress-step {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  transition: all 0.2s;
}

.progress-step:hover {
  background: var(--white);
}

.progress-step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gray-200);
  color: var(--gray-500);
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.progress-step.active .progress-step-num {
  background: linear-gradient(135deg, var(--purple-500), var(--purple-700));
  color: var(--white);
  box-shadow: 0 2px 8px rgba(124, 58, 237, 0.3);
}

.progress-step span {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-400);
}

.progress-step.active span {
  color: var(--gray-800);
  font-weight: 600;
}

.progress-line {
  width: 48px;
  height: 2px;
  background: var(--gray-200);
  margin: 0 8px;
  border-radius: 1px;
}

.progress-line.active {
  background: var(--purple-300);
}

/* Layout */
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  align-items: start;
}

.checkout-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}

/* Form Sections */
.checkout-section {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 20px;
}

.checkout-section-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gray-100);
}

.checkout-section-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--purple-100);
  color: var(--purple-600);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.checkout-section-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 4px;
}

.checkout-section-desc {
  font-size: 0.85rem;
  color: var(--gray-400);
}

/* Checkout Form */
.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-input-icon-pad {
  padding-left: 46px !important;
}

.form-input:not(.form-input-icon-pad) {
  padding: 14px 16px;
}

.form-hint {
  font-size: 0.78rem;
  color: var(--gray-400);
  margin-top: 4px;
  display: block;
}

/* Toggle Buttons */
.toggle-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.toggle-btn {
  padding: 12px 16px;
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-600);
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}

.toggle-btn:hover {
  border-color: var(--purple-300);
  background: var(--purple-50);
}

.toggle-btn.active {
  border-color: var(--purple-500);
  background: var(--purple-50);
  color: var(--purple-700);
  font-weight: 600;
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.08);
}

.port-fields {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 24px;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
}

.port-fields-header {
  margin-bottom: 4px;
}

.port-fields-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 4px;
}

.port-fields-desc {
  font-size: 0.83rem;
  color: var(--gray-400);
}

.port-validate-btn {
  align-self: flex-start;
}

/* Select Dropdown */
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2.5' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

/* SIM Type Selection */
.sim-type-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.sim-type-option {
  cursor: pointer;
}

.sim-type-option input {
  display: none;
}

.sim-type-card {
  padding: 20px 16px;
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  text-align: center;
  transition: all 0.2s;
}

.sim-type-option:hover .sim-type-card {
  border-color: var(--purple-300);
}

.sim-type-option.active .sim-type-card {
  border-color: var(--purple-500);
  background: var(--purple-50);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.08);
}

.sim-type-icon {
  color: var(--gray-400);
  margin-bottom: 8px;
  display: flex;
  justify-content: center;
}

.sim-type-option.active .sim-type-icon {
  color: var(--purple-600);
}

.sim-type-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 2px;
}

.sim-type-option.active .sim-type-label {
  color: var(--purple-700);
}

.sim-type-desc {
  font-size: 0.75rem;
  color: var(--gray-400);
}

/* Checkboxes */
.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  transition: background 0.15s;
}

.checkbox-row:hover {
  background: var(--gray-50);
}

.checkbox-input {
  display: none;
}

.checkbox-custom {
  width: 20px;
  height: 20px;
  border: 2px solid var(--gray-300);
  border-radius: 6px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
  margin-top: 1px;
}

.checkbox-input:checked + .checkbox-custom {
  background: var(--purple-600);
  border-color: var(--purple-600);
}

.checkbox-input:checked + .checkbox-custom::after {
  content: '✓';
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
}

.checkbox-label {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.5;
}

/* Submit / Actions */
.checkout-submit-btn {
  margin-top: 8px;
}

.checkout-actions-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
}

.checkout-back-btn {
  flex-shrink: 0;
}

.checkout-confirm-btn {
  flex: 1;
  max-width: 280px;
}

/* Direct Debit Guarantee */
.dd-guarantee {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.dd-guarantee-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.dd-guarantee-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gray-800);
}

.dd-logo {
  flex-shrink: 0;
}

.dd-guarantee-list {
  list-style: disc;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dd-guarantee-list li {
  font-size: 0.82rem;
  color: var(--gray-500);
  line-height: 1.65;
}

.checkout-secure-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--gray-400);
  margin-top: 12px;
}

/* Order Summary Sidebar */
.checkout-sidebar {
  position: sticky;
  top: 104px;
}

.order-summary-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 16px;
}

.order-summary-header {
  margin-bottom: 20px;
}

.order-summary-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-800);
}

.order-plan-info {
  padding: 20px;
  background: var(--gray-50);
  border-radius: var(--radius-md);
  margin-bottom: 20px;
}

.order-plan-badge {
  margin-bottom: 8px;
}

.order-plan-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 4px;
}

.order-plan-price {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 2px;
}

.order-price-amount {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gray-900);
}

.order-price-period {
  font-size: 0.85rem;
  color: var(--gray-400);
  font-weight: 500;
}

.order-plan-term {
  font-size: 0.8rem;
  color: var(--gray-400);
}

.order-plan-network {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--gray-500);
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--gray-200);
}

.order-plan-network strong {
  color: var(--gray-700);
}

.order-plan-network .network-logo-img {
  height: 24px;
}

.order-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.order-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-600);
}

.order-feature svg {
  color: var(--purple-500);
  flex-shrink: 0;
}

.order-divider {
  height: 1px;
  background: var(--gray-100);
  margin: 16px 0;
}

.order-cost-breakdown {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.order-cost-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
  color: var(--gray-600);
}

.order-cost-row span:last-child {
  font-weight: 600;
  color: var(--gray-800);
}

.order-free {
  color: var(--green-500) !important;
  font-weight: 700 !important;
}

.order-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.order-total-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray-800);
}

.order-total-amount {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gray-900);
}

.order-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  padding: 12px;
  background: #f0fdf4;
  border-radius: var(--radius-md);
  font-size: 0.8rem;
  font-weight: 500;
  color: #15803d;
}

.order-guarantee svg {
  color: #16a34a;
  flex-shrink: 0;
}

/* Help Card */
.checkout-help-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.checkout-help-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 4px;
}

.checkout-help-desc {
  font-size: 0.82rem;
  color: var(--gray-400);
  margin-bottom: 16px;
}

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

.checkout-help-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--purple-600);
  padding: 10px 14px;
  background: var(--gray-50);
  border-radius: var(--radius-sm);
  transition: all 0.2s;
}

.checkout-help-link:hover {
  background: var(--purple-50);
}

.checkout-help-link svg {
  color: var(--purple-400);
  flex-shrink: 0;
}

/* Checkout Responsive */
@media (max-width: 1024px) {
  .checkout-layout {
    grid-template-columns: 1fr 340px;
    gap: 24px;
  }
}

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

  .checkout-sidebar {
    position: static;
    order: -1;
  }

  .checkout-section {
    padding: 24px 20px;
  }

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

  .checkout-progress {
    gap: 0;
  }

  .progress-step span {
    display: none;
  }

  .progress-step {
    padding: 8px;
  }

  .checkout-title {
    font-size: 1.4rem;
  }

  .toggle-group {
    grid-template-columns: 1fr;
  }

  .sim-type-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .checkout-page {
    padding: 96px 0 60px;
  }
}

/* ============================================
   Order Complete (Completed Order) Page
   ============================================ */

.order-complete-page {
  padding: 108px 0 80px;
  background: linear-gradient(180deg, var(--purple-50) 0%, var(--gray-50) 30%);
  min-height: 100vh;
}

.order-complete-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.02em;
  margin-bottom: 32px;
  text-align: center;
}

.order-complete-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  align-items: start;
}

.order-complete-main {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.order-complete-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

.order-complete-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gray-100);
}

.order-complete-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.order-complete-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.9rem;
  color: var(--gray-700);
}

.order-complete-step-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #dcfce7;
  color: var(--green-500);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
}

.order-complete-step-text {
  flex: 1;
  font-weight: 500;
  line-height: 1.5;
}

.order-complete-step-status {
  flex-shrink: 0;
  font-size: 0.8rem;
  font-weight: 600;
  color: #15803d;
  background: #dcfce7;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.order-complete-success-box {
  background: linear-gradient(180deg, #f0fdf4 0%, #dcfce7 100%);
  border: 1px solid #bbf7d0;
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
}

.order-complete-success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--green-500);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.order-complete-success-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--gray-900);
  text-align: center;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.order-complete-success-desc {
  font-size: 0.95rem;
  color: var(--gray-600);
  text-align: center;
  margin-bottom: 28px;
  line-height: 1.5;
}

.order-complete-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 32px;
  margin-bottom: 28px;
}

.order-complete-detail-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.order-complete-detail-row {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.order-complete-detail-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.order-complete-detail-value {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--gray-800);
}

.order-complete-status-badge {
  display: inline-block;
  width: fit-content;
  font-size: 0.75rem !important;
  font-weight: 700;
  color: #15803d !important;
  background: #dcfce7;
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.03em;
}

.order-complete-actions {
  text-align: center;
}

.order-complete-actions .btn-primary {
  min-width: 220px;
}

.order-complete-back-wrap {
  margin-top: 8px;
}

/* Sidebar */
.order-complete-sidebar {
  position: sticky;
  top: 104px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.order-complete-plan-card {
  background: var(--white);
  border: 2px dashed var(--purple-300);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.order-complete-plan-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gray-800);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}

.order-complete-plan-pricing {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.order-complete-plan-was {
  font-size: 0.85rem;
  color: var(--gray-400);
  text-decoration: line-through;
}

.order-complete-plan-save {
  font-size: 0.7rem;
  font-weight: 700;
  color: #dc2626;
  background: #fef2f2;
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

.order-complete-plan-price {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.02em;
  margin-bottom: 2px;
}

.order-complete-plan-price span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-400);
}

.order-complete-plan-term {
  font-size: 0.8rem;
  color: var(--gray-400);
  margin-bottom: 20px;
}

.order-complete-plan-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 16px;
  margin-bottom: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
}

.order-complete-plan-feature {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 0.82rem;
}

.order-complete-plan-feature-label {
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.order-complete-plan-feature-value {
  font-weight: 600;
  color: var(--gray-800);
}

.order-complete-plan-upfront {
  font-size: 0.85rem;
  color: var(--gray-600);
  padding-top: 12px;
  border-top: 1px solid var(--gray-100);
}

.order-complete-plan-upfront strong {
  color: var(--gray-900);
}

.order-complete-customer-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.order-complete-customer-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gray-800);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}

.order-complete-customer-email {
  font-size: 0.88rem;
  color: var(--gray-600);
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gray-100);
}

.order-complete-customer-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.order-complete-customer-row {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.order-complete-customer-row .order-complete-detail-label {
  font-size: 0.75rem;
}

.order-complete-customer-row .order-complete-detail-value {
  font-size: 0.88rem;
  font-weight: 500;
}

/* Order Complete Responsive */
@media (max-width: 1024px) {
  .order-complete-layout {
    grid-template-columns: 1fr 340px;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .order-complete-page {
    padding: 96px 0 60px;
  }

  .order-complete-layout {
    grid-template-columns: 1fr;
  }

  .order-complete-sidebar {
    position: static;
    order: -1;
  }

  .order-complete-title {
    font-size: 1.4rem;
    text-align: left;
  }

  .order-complete-details-grid {
    grid-template-columns: 1fr;
  }

  .order-complete-card,
  .order-complete-success-box {
    padding: 24px 20px;
  }

  .order-complete-plan-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .order-complete-page {
    padding: 88px 0 48px;
  }

  .order-complete-title {
    font-size: 1.25rem;
  }
}

/* ============================================
   Dashboard (My Dashboard / Order History)
   ============================================ */

.dashboard-logout-link {
  font-size: 0.925rem;
  font-weight: 500;
  color: var(--gray-800);
  transition: color 0.2s;
}

.dashboard-logout-link:hover {
  color: var(--purple-600);
}

.dashboard-page {
  padding: 108px 0 80px;
  background: linear-gradient(180deg, var(--purple-50) 0%, var(--gray-50) 40%);
  min-height: 100vh;
}

.dashboard-header-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.dashboard-title-block {
  flex: 1;
  min-width: 0;
}

.dashboard-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--purple-600);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
  line-height: 1.2;
}

.dashboard-welcome {
  font-size: 0.95rem;
  color: var(--gray-600);
  margin: 0;
}

.dashboard-actions-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.dashboard-profile-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--purple-600);
  transition: color 0.2s;
}

.dashboard-profile-link:hover {
  color: var(--purple-700);
}

.dashboard-profile-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--purple-100);
  color: var(--purple-600);
}

.dashboard-support-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--purple-600);
  transition: color 0.2s;
}

.dashboard-support-link:hover {
  color: var(--purple-700);
}

.dashboard-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--gray-200);
}

.dashboard-tab {
  padding: 12px 24px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-500);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-bottom: none;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  margin-bottom: -1px;
  transition: all 0.2s;
}

.dashboard-tab:hover {
  color: var(--gray-700);
}

.dashboard-tab-active {
  color: var(--gray-800);
  background: var(--gray-50);
  border-color: var(--gray-200);
  border-bottom: 1px solid var(--gray-50);
  color: #15803d;
  border-color: #bbf7d0;
  background: #f0fdf4;
  border-bottom-color: #f0fdf4;
}

.dashboard-content {
  margin-top: 0;
}

.dashboard-order-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.dashboard-order-card {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s;
}

.dashboard-order-card:hover {
  border-color: var(--purple-200);
  box-shadow: var(--shadow-md);
}

.dashboard-order-main {
  flex: 1;
  min-width: 0;
}

.dashboard-order-product {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
  line-height: 1.3;
}

.dashboard-order-meta {
  font-size: 0.88rem;
  color: var(--gray-500);
  margin-bottom: 10px;
}

.dashboard-order-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
}

.dashboard-order-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--purple-600);
  transition: color 0.2s;
}

.dashboard-order-link:hover {
  color: var(--purple-700);
}

.dashboard-order-status {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  text-align: right;
}

.dashboard-status-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
}

.dashboard-status-completed {
  color: #15803d;
  background: #dcfce7;
}

.dashboard-order-id-line {
  font-size: 0.82rem;
  color: var(--gray-600);
  font-weight: 500;
}

/* Dashboard Responsive */
@media (max-width: 768px) {
  .dashboard-page {
    padding: 96px 0 60px;
  }

  .dashboard-header-row {
    flex-direction: column;
    align-items: stretch;
  }

  .dashboard-actions-block {
    align-items: stretch;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
  }

  .dashboard-title {
    font-size: 1.6rem;
  }

  .dashboard-order-card {
    flex-direction: column;
    padding: 20px;
  }

  .dashboard-order-status {
    align-items: flex-start;
    text-align: left;
  }

  .dashboard-tabs {
    flex-wrap: wrap;
  }

  .dashboard-tab {
    padding: 10px 16px;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .dashboard-page {
    padding: 88px 0 48px;
  }

  .dashboard-title {
    font-size: 1.35rem;
  }

  .dashboard-actions-block {
    flex-direction: column;
  }
}

/* ============================================
   Contact Page
   ============================================ */

.contact-hero {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, var(--purple-600), var(--purple-700));
  text-align: center;
  position: relative;
}

.contact-hero-inner {
  max-width: 640px;
  margin: 0 auto;
}

.contact-hero-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.contact-hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
}

.contact-tiles-section {
  padding: 48px 0 64px;
  margin-top: -40px;
  position: relative;
  z-index: 1;
}

.contact-tiles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.contact-tile {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  transition: all 0.2s ease;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.contact-tile:hover {
  border-color: var(--purple-300);
  box-shadow: 0 12px 24px -8px rgba(124, 58, 237, 0.15);
  transform: translateY(-2px);
}

.contact-tile-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-500), var(--purple-600));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
}

.contact-tile:hover .contact-tile-icon {
  background: linear-gradient(135deg, var(--purple-600), var(--purple-700));
}

.contact-tile-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 6px;
}

.contact-tile-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 4px;
}

.contact-tile-link {
  color: var(--purple-600);
}

.contact-tile:hover .contact-tile-link {
  color: var(--purple-700);
}

.contact-tile-desc {
  font-size: 0.8rem;
  color: var(--gray-500);
  margin: 0;
}

.contact-form-section {
  padding: 0 0 100px;
  background: var(--gray-50);
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-form-block {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
}

.contact-form-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.contact-form-desc {
  font-size: 0.95rem;
  color: var(--gray-500);
  margin-bottom: 28px;
  line-height: 1.6;
}

.contact-form .form-group {
  margin-bottom: 0;
}

.contact-form .form-row {
  margin-bottom: 0;
}

.contact-form .form-group + .form-group,
.contact-form .form-row + .form-group,
.contact-form .form-group + .form-row {
  margin-top: 20px;
}

.contact-form .checkbox-row {
  margin-top: 20px;
  margin-bottom: 0;
}

.contact-submit {
  margin-top: 24px;
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
  padding: 14px 16px !important;
}

.contact-map-block {
  position: sticky;
  top: 100px;
}

.contact-map-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
  background: var(--gray-100);
  aspect-ratio: 4 / 3;
  min-height: 320px;
}

.contact-map-wrapper iframe {
  display: block;
}

.contact-map-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  color: var(--white);
}

.contact-map-label {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.contact-map-text {
  font-size: 0.8rem;
  opacity: 0.9;
  margin: 0;
}

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

  .contact-form-grid {
    gap: 32px;
  }
}

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

  .contact-hero-title {
    font-size: 1.85rem;
  }

  .contact-tiles-section {
    margin-top: -32px;
    padding: 32px 0 48px;
  }

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

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

  .contact-map-block {
    position: static;
  }

  .contact-map-wrapper {
    min-height: 280px;
    aspect-ratio: 16 / 10;
  }
}
