/* ========================================
   PVANEXUS.COM - Premium White-Background Website
   Global Stylesheet
   ======================================== */

/* CSS Variables - Color System */
:root {
  /* Main Background Palette */
  --white-pure: #FFFFFF;
  --white-silk: #FAFAF8;
  --white-stone: #F3F4F2;
  --white-concrete: #E7E9E5;
  --white-divider: #D7DBD4;

  /* Typography / Contrast Palette */
  --text-obsidian: #121212;
  --text-ink: #1E293B;
  --text-steel: #334155;
  --text-graphite: #64748B;

  /* Accent Palette */
  --accent-sapphire: #2563EB;
  --accent-sky: #0EA5E9;
  --accent-copper: #B45309;
  --accent-ember: #EA580C;

  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(18, 18, 18, 0.04);
  --shadow-md: 0 4px 12px rgba(18, 18, 18, 0.06);
  --shadow-lg: 0 8px 24px rgba(18, 18, 18, 0.08);
  --shadow-xl: 0 16px 48px rgba(18, 18, 18, 0.1);

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-base: 0.25s ease;
  --transition-slow: 0.4s ease;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  background-color: var(--white-pure);
  color: var(--text-obsidian);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-obsidian);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 600;
}

h4 {
  font-size: 1.125rem;
  font-weight: 600;
}

p {
  color: var(--text-steel);
  line-height: 1.7;
}

.text-small {
  font-size: 0.875rem;
}

.text-large {
  font-size: 1.125rem;
}

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.container-narrow {
  max-width: 960px;
}

/* ========================================
   ANNOUNCEMENT BAR
   ======================================== */
.announcement-bar {
  background: var(--white-silk);
  border-bottom: 1px solid var(--white-divider);
  padding: 0.625rem 0;
  position: relative;
  z-index: 1001;
}

.announcement-bar__content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.announcement-bar__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--text-steel);
  font-weight: 500;
}

.announcement-bar__item svg {
  width: 14px;
  height: 14px;
  color: var(--accent-sapphire);
}

.announcement-bar__divider {
  width: 1px;
  height: 14px;
  background: var(--white-divider);
}

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
  position: sticky;
  top: 0;
  background: var(--white-pure);
  border-bottom: 1px solid var(--white-divider);
  z-index: 1000;
  transition: box-shadow var(--transition-base);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
}

.navbar__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.navbar__logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-obsidian);
  letter-spacing: -0.02em;
}

.navbar__logo span {
  color: var(--accent-sapphire);
}

.navbar__menu {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.navbar__link {
  padding: 0.5rem 1rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-steel);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.navbar__link:hover {
  color: var(--text-obsidian);
  background: var(--white-silk);
}

.navbar__link.active {
  color: var(--accent-sapphire);
  background: rgba(37, 99, 235, 0.06);
}

.navbar__dropdown-toggle.active {
  color: var(--accent-sapphire);
  background: rgba(37, 99, 235, 0.06);
}

/* Dropdown */
.navbar__dropdown {
  position: relative;
}

.navbar__dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 1rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-steel);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.navbar__dropdown-toggle:hover {
  color: var(--text-obsidian);
  background: var(--white-silk);
}

.navbar__dropdown-toggle svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-fast);
}

.navbar__dropdown:hover .navbar__dropdown-toggle svg {
  transform: rotate(180deg);
}

.navbar__dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 280px;
  background: var(--white-pure);
  border: 1px solid var(--white-divider);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition-base);
  max-height: 70vh;
  overflow-y: auto;
}

.navbar__dropdown:hover .navbar__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.navbar__dropdown-item {
  display: block;
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  color: var(--text-steel);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.navbar__dropdown-item:hover {
  background: var(--white-silk);
  color: var(--text-obsidian);
}

.navbar__dropdown-item.active {
  color: var(--accent-sapphire);
  background: rgba(37, 99, 235, 0.06);
}

.navbar__dropdown-category {
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-graphite);
  margin-top: 0.5rem;
}

/* CTA Button */
.navbar__cta {
  padding: 0.625rem 1.5rem;
  background: var(--accent-sapphire);
  color: var(--white-pure);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.navbar__cta:hover {
  background: #1d4ed8;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* Mobile Menu */
.navbar__mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
}

.navbar__mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-obsidian);
  transition: all var(--transition-fast);
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  cursor: pointer;
}

.btn--primary {
  background: var(--accent-sapphire);
  color: var(--white-pure);
}

.btn--primary:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--secondary {
  background: var(--white-silk);
  color: var(--text-obsidian);
  border: 1px solid var(--white-divider);
}

.btn--secondary:hover {
  background: var(--white-stone);
  border-color: var(--white-concrete);
}

.btn--outline {
  background: transparent;
  color: var(--text-obsidian);
  border: 1.5px solid var(--white-divider);
}

.btn--outline:hover {
  border-color: var(--text-steel);
  background: var(--white-silk);
}

.btn--large {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn--small {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
}

/* ========================================
   SECTIONS
   ======================================== */
.section {
  padding: var(--space-3xl) 0;
}

.section--light {
  background: var(--white-silk);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--space-2xl);
}

.section-header__label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-sapphire);
  margin-bottom: var(--space-sm);
}

.section-header__title {
  margin-bottom: var(--space-md);
}

.section-header__desc {
  color: var(--text-steel);
  font-size: 1.0625rem;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  padding: var(--space-3xl) 0;
  background: var(--white-pure);
  position: relative;
  overflow: hidden;
}

.hero__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.hero__content {
  max-width: 560px;
}

.hero__label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-sapphire);
  margin-bottom: var(--space-md);
}

.hero__title {
  margin-bottom: var(--space-md);
  line-height: 1.1;
}

.hero__desc {
  font-size: 1.125rem;
  color: var(--text-steel);
  margin-bottom: var(--space-xl);
}

.hero__actions {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-steel);
}

.hero__trust-item svg {
  width: 18px;
  height: 18px;
  color: var(--accent-sapphire);
}

.hero__visual {
  position: relative;
}

.hero__visual-frame {
  background: var(--white-pure);
  border: 1px solid var(--white-divider);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  box-shadow: var(--shadow-xl);
}

.hero__visual-header {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--white-divider);
}

.hero__visual-dots {
  display: flex;
  gap: 6px;
}

.hero__visual-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--white-divider);
}

.hero__visual-dots span:first-child { background: #ef4444; }
.hero__visual-dots span:nth-child(2) { background: #f59e0b; }
.hero__visual-dots span:nth-child(3) { background: #22c55e; }

.hero__visual-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-steel);
}

.hero__platforms {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
}

.hero__platform-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: var(--space-md);
  background: var(--white-silk);
  border-radius: var(--radius-md);
  border: 1px solid var(--white-divider);
  transition: all var(--transition-fast);
}

.hero__platform-item:hover {
  border-color: var(--accent-sapphire);
  transform: translateY(-2px);
}

.hero__platform-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white-pure);
  border-radius: var(--radius-sm);
  font-size: 1.25rem;
}

.hero__platform-name {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-steel);
}

/* ========================================
   PLATFORM RAIL
   ======================================== */
.platform-rail {
  padding: var(--space-xl) 0;
  background: var(--white-silk);
  border-top: 1px solid var(--white-divider);
  border-bottom: 1px solid var(--white-divider);
  overflow: hidden;
}

.platform-rail__track {
  display: flex;
  gap: var(--space-lg);
  animation: scroll 30s linear infinite;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.platform-rail__item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background: var(--white-pure);
  border: 1px solid var(--white-divider);
  border-radius: var(--radius-lg);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-steel);
  white-space: nowrap;
}

.platform-rail__item svg {
  width: 20px;
  height: 20px;
  color: var(--accent-sapphire);
}

/* ========================================
   PACKAGE VISIBILITY
   ======================================== */
.package-visibility__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.package-visibility__card {
  background: var(--white-pure);
  border: 1px solid var(--white-divider);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
  transition: all var(--transition-base);
}

.package-visibility__card:hover {
  border-color: var(--accent-sapphire);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.package-visibility__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(37, 99, 235, 0.08);
  border-radius: var(--radius-md);
}

.package-visibility__icon svg {
  width: 28px;
  height: 28px;
  color: var(--accent-sapphire);
}

.package-visibility__title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.package-visibility__desc {
  font-size: 0.875rem;
  color: var(--text-graphite);
}

/* ========================================
   SERVICES DIRECTORY
   ======================================== */
.services-directory__search {
  max-width: 600px;
  margin: 0 auto var(--space-xl);
  position: relative;
}

.services-directory__input {
  width: 100%;
  padding: 1rem 1.5rem 1rem 3rem;
  font-size: 1rem;
  border: 1.5px solid var(--white-divider);
  border-radius: var(--radius-lg);
  background: var(--white-pure);
  transition: all var(--transition-fast);
}

.services-directory__input:focus {
  outline: none;
  border-color: var(--accent-sapphire);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.services-directory__input-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-graphite);
}

.services-directory__filters {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
}

.services-directory__filter {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-steel);
  background: var(--white-silk);
  border: 1px solid var(--white-divider);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  cursor: pointer;
}

.services-directory__filter:hover,
.services-directory__filter.active {
  background: var(--accent-sapphire);
  color: var(--white-pure);
  border-color: var(--accent-sapphire);
}

.services-directory__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-lg);
}

.service-card {
  background: var(--white-pure);
  border: 1px solid var(--white-divider);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: all var(--transition-base);
}

.service-card:hover {
  border-color: var(--accent-sapphire);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.service-card__header {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.service-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white-silk);
  border-radius: var(--radius-md);
  font-size: 1.5rem;
}

.service-card__title {
  font-size: 1.125rem;
  font-weight: 600;
}

.service-card__desc {
  font-size: 0.875rem;
  color: var(--text-graphite);
  margin-bottom: var(--space-md);
}

.service-card__footer {
  display: flex;
  gap: var(--space-sm);
}

.service-card__btn {
  flex: 1;
  padding: 0.625rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-align: center;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.service-card__btn--primary {
  background: var(--accent-sapphire);
  color: var(--white-pure);
}

.service-card__btn--primary:hover {
  background: #1d4ed8;
}

.service-card__btn--secondary {
  background: var(--white-silk);
  color: var(--text-steel);
  border: 1px solid var(--white-divider);
}

.service-card__btn--secondary:hover {
  background: var(--white-stone);
}

/* ========================================
   SIGNATURE COLLECTION
   ======================================== */
.signature-collection__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-md);
}

.signature-card {
  background: var(--white-pure);
  border: 1px solid var(--white-divider);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  text-align: center;
  transition: all var(--transition-base);
}

.signature-card:hover {
  border-color: var(--accent-sapphire);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.signature-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--space-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white-silk);
  border-radius: var(--radius-md);
  font-size: 1.75rem;
}

.signature-card__title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.signature-card__tagline {
  font-size: 0.75rem;
  color: var(--text-graphite);
  margin-bottom: var(--space-sm);
}

.signature-card__price {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--accent-sapphire);
  margin-bottom: var(--space-sm);
}

.signature-card__actions {
  display: flex;
  gap: 0.5rem;
}

.signature-card__btn {
  flex: 1;
  padding: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.signature-card__btn--primary {
  background: var(--accent-sapphire);
  color: var(--white-pure);
}

.signature-card__btn--secondary {
  background: var(--white-silk);
  color: var(--text-steel);
  border: 1px solid var(--white-divider);
}

/* ========================================
   ACCOUNT AGE GUIDE
   ======================================== */
.age-guide__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.age-guide__card {
  background: var(--white-pure);
  border: 1px solid var(--white-divider);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: all var(--transition-base);
}

.age-guide__card:hover {
  border-color: var(--accent-sapphire);
  box-shadow: var(--shadow-md);
}

.age-guide__card--featured {
  border-color: var(--accent-sapphire);
  background: rgba(37, 99, 235, 0.02);
}

.age-guide__badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--accent-sapphire);
  color: var(--white-pure);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-md);
}

.age-guide__title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.age-guide__desc {
  font-size: 0.9375rem;
  color: var(--text-steel);
  margin-bottom: var(--space-md);
}

.age-guide__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.age-guide__list-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-steel);
}

.age-guide__list-item svg {
  width: 16px;
  height: 16px;
  color: var(--accent-sapphire);
}

/* ========================================
   HOW IT WORKS
   ======================================== */
.how-it-works__steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--space-md);
  position: relative;
}

.how-it-works__steps::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--white-divider);
  z-index: 0;
}

.step-card {
  position: relative;
  z-index: 1;
  text-align: center;
}

.step-card__number {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-sapphire);
  color: var(--white-pure);
  font-size: 1.125rem;
  font-weight: 700;
  border-radius: 50%;
  border: 4px solid var(--white-pure);
}

.step-card__title {
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.step-card__desc {
  font-size: 0.8125rem;
  color: var(--text-graphite);
}

/* ========================================
   VALUE SECTIONS
   ======================================== */
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.value-card {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: var(--white-pure);
  border: 1px solid var(--white-divider);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.value-card:hover {
  border-color: var(--accent-sapphire);
  box-shadow: var(--shadow-md);
}

.value-card__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(37, 99, 235, 0.08);
  border-radius: var(--radius-md);
}

.value-card__icon svg {
  width: 24px;
  height: 24px;
  color: var(--accent-sapphire);
}

.value-card__content {
  flex: 1;
}

.value-card__title {
  font-size: 1.0625rem;
  font-weight: 600;
  margin-bottom: 0.375rem;
}

.value-card__desc {
  font-size: 0.875rem;
  color: var(--text-graphite);
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.testimonial-card {
  background: var(--white-pure);
  border: 1px solid var(--white-divider);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: all var(--transition-base);
}

.testimonial-card:hover {
  border-color: var(--accent-sapphire);
  box-shadow: var(--shadow-md);
}

.testimonial-card__quote {
  font-size: 1rem;
  color: var(--text-steel);
  font-style: italic;
  margin-bottom: var(--space-md);
  line-height: 1.6;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-sapphire);
  color: var(--white-pure);
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50%;
}

.testimonial-card__info {
  flex: 1;
}

.testimonial-card__name {
  font-size: 0.9375rem;
  font-weight: 600;
}

.testimonial-card__meta {
  font-size: 0.8125rem;
  color: var(--text-graphite);
}

/* ========================================
   FAQ
   ======================================== */
.faq__list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--white-divider);
}

.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-obsidian);
  text-align: left;
  transition: color var(--transition-fast);
}

.faq-item__question:hover {
  color: var(--accent-sapphire);
}

.faq-item__icon {
  width: 24px;
  height: 24px;
  color: var(--text-graphite);
  transition: transform var(--transition-fast);
}

.faq-item.active .faq-item__icon {
  transform: rotate(180deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base), padding var(--transition-base);
}

.faq-item.active .faq-item__answer {
  max-height: 500px;
  padding-bottom: var(--space-md);
}

.faq-item__answer p {
  font-size: 0.9375rem;
  color: var(--text-steel);
}

/* ========================================
   CTA PANEL
   ======================================== */
.cta-panel {
  padding: var(--space-3xl) 0;
  background: var(--white-silk);
  border-top: 1px solid var(--white-divider);
  border-bottom: 1px solid var(--white-divider);
}

.cta-panel__content {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.cta-panel__title {
  margin-bottom: var(--space-md);
}

.cta-panel__desc {
  font-size: 1.0625rem;
  color: var(--text-steel);
  margin-bottom: var(--space-xl);
}

.cta-panel__actions {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
}

/* ========================================
   FLOATING CONTACTS
   ======================================== */
.floating-contacts {
  position: fixed;
  bottom: var(--space-lg);
  left: var(--space-lg);
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.floating-contact {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 0.875rem 1.25rem;
  background: var(--white-pure);
  border: 1px solid var(--white-divider);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-base);
}

.floating-contact:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
  border-color: var(--accent-sapphire);
}

.floating-contact__icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(37, 99, 235, 0.08);
  border-radius: var(--radius-md);
}

.floating-contact__icon svg {
  width: 18px;
  height: 18px;
  color: var(--accent-sapphire);
}

.floating-contact__info {
  display: flex;
  flex-direction: column;
}

.floating-contact__label {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-graphite);
}

.floating-contact__value {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-obsidian);
}

/* ========================================
   ORDER MODAL
   ======================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(18, 18, 18, 0.5);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--white-pure);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  width: 90%;
  max-width: 480px;
  padding: var(--space-xl);
  transform: scale(0.95);
  transition: transform var(--transition-base);
}

.modal-overlay.active .modal {
  transform: scale(1);
}

.modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-md);
}

.modal__title {
  font-size: 1.5rem;
  font-weight: 600;
}

.modal__close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white-silk);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.modal__close:hover {
  background: var(--white-stone);
}

.modal__close svg {
  width: 20px;
  height: 20px;
  color: var(--text-steel);
}

.modal__desc {
  font-size: 1rem;
  color: var(--text-steel);
  margin-bottom: var(--space-lg);
}

.modal__options {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.modal__option {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md);
  background: var(--white-silk);
  border: 1.5px solid var(--white-divider);
  border-radius: var(--radius-lg);
  transition: all var(--transition-fast);
}

.modal__option:hover {
  border-color: var(--accent-sapphire);
  background: rgba(37, 99, 235, 0.04);
}

.modal__option-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white-pure);
  border-radius: var(--radius-md);
}

.modal__option-icon svg {
  width: 24px;
  height: 24px;
  color: var(--accent-sapphire);
}

.modal__option-info {
  flex: 1;
}

.modal__option-label {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-graphite);
  margin-bottom: 0.25rem;
}

.modal__option-value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-obsidian);
}

.modal__note {
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-graphite);
  padding-top: var(--space-md);
  border-top: 1px solid var(--white-divider);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  padding: var(--space-3xl) 0 var(--space-xl);
  background: var(--white-silk);
  border-top: 1px solid var(--white-divider);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.footer__brand {
  max-width: 280px;
}

.footer__logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-obsidian);
  margin-bottom: var(--space-md);
}

.footer__logo span {
  color: var(--accent-sapphire);
}

.footer__desc {
  font-size: 0.9375rem;
  color: var(--text-steel);
  margin-bottom: var(--space-md);
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-steel);
}

.footer__contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--accent-sapphire);
}

.footer__column-title {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-obsidian);
  margin-bottom: var(--space-md);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer__link {
  font-size: 0.875rem;
  color: var(--text-steel);
  transition: color var(--transition-fast);
}

.footer__link:hover {
  color: var(--accent-sapphire);
}

.footer__bottom {
  padding-top: var(--space-xl);
  border-top: 1px solid var(--white-divider);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__copyright {
  font-size: 0.875rem;
  color: var(--text-graphite);
}

.footer__legal {
  display: flex;
  gap: var(--space-lg);
}

.footer__legal-link {
  font-size: 0.875rem;
  color: var(--text-steel);
  transition: color var(--transition-fast);
}

.footer__legal-link:hover {
  color: var(--accent-sapphire);
}

/* ========================================
   SERVICE PAGE STYLES
   ======================================== */
.service-hero {
  padding: var(--space-2xl) 0;
  background: var(--white-silk);
  border-bottom: 1px solid var(--white-divider);
}

.service-hero__container {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.service-hero__icon {
  width: 96px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white-pure);
  border: 2px solid var(--white-divider);
  border-radius: var(--radius-xl);
  font-size: 3rem;
  flex-shrink: 0;
}

.service-hero__content {
  flex: 1;
}

.service-hero__title {
  margin-bottom: var(--space-sm);
}

.service-hero__desc {
  font-size: 1.0625rem;
  color: var(--text-steel);
  max-width: 600px;
}

/* Quick Info Band */
.quick-info {
  padding: var(--space-md) 0;
  background: var(--white-pure);
  border-bottom: 1px solid var(--white-divider);
}

.quick-info__grid {
  display: flex;
  justify-content: center;
  gap: var(--space-xl);
  flex-wrap: wrap;
}

.quick-info__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-steel);
}

.quick-info__item svg {
  width: 18px;
  height: 18px;
  color: var(--accent-sapphire);
}

/* Package Tabs */
.package-section {
  padding: var(--space-2xl) 0;
}

.package-tabs {
  display: flex;
  gap: var(--space-xs);
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
  justify-content: center;
}

.package-tab {
  padding: 0.875rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-steel);
  background: var(--white-silk);
  border: 1.5px solid var(--white-divider);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  cursor: pointer;
}

.package-tab:hover {
  border-color: var(--white-concrete);
}

.package-tab.active {
  background: var(--accent-sapphire);
  color: var(--white-pure);
  border-color: var(--accent-sapphire);
}

.package-panel {
  display: none;
}

.package-panel.active {
  display: block;
}

/* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.pricing-card {
  background: var(--white-pure);
  border: 1.5px solid var(--white-divider);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
  transition: all var(--transition-base);
}

.pricing-card:hover {
  border-color: var(--accent-sapphire);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.pricing-card--featured {
  border-color: var(--accent-sapphire);
  background: rgba(37, 99, 235, 0.02);
}

.pricing-card__quantity {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-graphite);
  margin-bottom: var(--space-sm);
}

.pricing-card__price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-obsidian);
  margin-bottom: 0.25rem;
}

.pricing-card__unit {
  font-size: 0.875rem;
  color: var(--text-graphite);
  margin-bottom: var(--space-md);
}

.pricing-card__btn {
  width: 100%;
  padding: 0.875rem;
  background: var(--accent-sapphire);
  color: var(--white-pure);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.pricing-card__btn:hover {
  background: #1d4ed8;
}

/* Pricing Card Features */
.pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin: 0 0 var(--space-lg);
  text-align: left;
}

.pricing-card__feature {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.875rem;
  color: var(--text-steel);
  line-height: 1.5;
}

.pricing-card__feature::before {
  content: '\2713';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-sapphire);
  font-weight: 700;
}

.ai-monthly__features {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin: 0 0 var(--space-lg);
  text-align: left;
}

.ai-monthly__feature {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.875rem;
  color: var(--text-steel);
  line-height: 1.5;
}

.ai-monthly__feature::before {
  content: '\2713';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-sapphire);
  font-weight: 700;
}

/* AI Monthly Cards */
.ai-monthly__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  max-width: 800px;
  margin: 0 auto;
}

.ai-monthly__card {
  background: var(--white-pure);
  border: 1.5px solid var(--white-divider);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
  transition: all var(--transition-base);
}

.ai-monthly__card:hover {
  border-color: var(--accent-sapphire);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.ai-monthly__card--featured {
  border-color: var(--accent-sapphire);
  background: rgba(37, 99, 235, 0.02);
}

.ai-monthly__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white-silk);
  border-radius: var(--radius-md);
  font-size: 2rem;
}

.ai-monthly__name {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.ai-monthly__price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-sapphire);
  margin-bottom: 0.25rem;
}

.ai-monthly__period {
  font-size: 0.875rem;
  color: var(--text-graphite);
  margin-bottom: var(--space-lg);
}

.ai-monthly__btn {
  width: 100%;
  padding: 0.875rem;
  background: var(--accent-sapphire);
  color: var(--white-pure);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.ai-monthly__btn:hover {
  background: #1d4ed8;
}

/* Package Guidance */
.package-guidance {
  margin-top: var(--space-xl);
  padding: var(--space-lg);
  background: var(--white-silk);
  border: 1px solid var(--white-divider);
  border-radius: var(--radius-lg);
  text-align: center;
}

.package-guidance__text {
  font-size: 0.9375rem;
  color: var(--text-steel);
}

/* Content Block */
.content-block {
  padding: var(--space-2xl) 0;
}

.content-block__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

.content-block__title {
  margin-bottom: var(--space-md);
}

.content-block__text {
  font-size: 1rem;
  color: var(--text-steel);
  margin-bottom: var(--space-md);
}

.content-block__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.content-block__list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--text-steel);
}

.content-block__list-item svg {
  width: 20px;
  height: 20px;
  color: var(--accent-sapphire);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Related Links */
.related-links {
  padding: var(--space-xl) 0;
  background: var(--white-silk);
  border-top: 1px solid var(--white-divider);
}

.related-links__title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: var(--space-md);
  text-align: center;
}

.related-links__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm);
}

.related-links__item {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-steel);
  background: var(--white-pure);
  border: 1px solid var(--white-divider);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.related-links__item:hover {
  border-color: var(--accent-sapphire);
  color: var(--accent-sapphire);
}

/* ========================================
   NETFLIX PAGE STYLES
   ======================================== */
.netflix-plans__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.netflix-plan {
  background: var(--white-pure);
  border: 1.5px solid var(--white-divider);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: all var(--transition-base);
}

.netflix-plan:hover {
  border-color: var(--accent-sapphire);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.netflix-plan--featured {
  border-color: var(--accent-sapphire);
  background: rgba(37, 99, 235, 0.02);
}

.netflix-plan__name {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.netflix-plan__price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-sapphire);
  margin-bottom: 0.25rem;
}

.netflix-plan__period {
  font-size: 0.875rem;
  color: var(--text-graphite);
  margin-bottom: var(--space-md);
}

.netflix-plan__features {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-bottom: var(--space-lg);
}

.netflix-plan__feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-steel);
}

.netflix-plan__feature svg {
  width: 16px;
  height: 16px;
  color: var(--accent-sapphire);
}

.netflix-plan__btn {
  width: 100%;
  padding: 0.875rem;
  background: var(--accent-sapphire);
  color: var(--white-pure);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.netflix-plan__btn:hover {
  background: #1d4ed8;
}

/* ========================================
   FORM STYLES
   ======================================== */
.form-group {
  margin-bottom: var(--space-md);
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-obsidian);
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.875rem 1rem;
  font-size: 0.9375rem;
  border: 1.5px solid var(--white-divider);
  border-radius: var(--radius-md);
  background: var(--white-pure);
  transition: all var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--accent-sapphire);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

/* ========================================
   BLOG STYLES
   ======================================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.blog-card {
  background: var(--white-pure);
  border: 1px solid var(--white-divider);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
}

.blog-card:hover {
  border-color: var(--accent-sapphire);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.blog-card__image {
  height: 180px;
  background: var(--white-silk);
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-card__image svg {
  width: 48px;
  height: 48px;
  color: var(--text-graphite);
}

.blog-card__content {
  padding: var(--space-lg);
}

.blog-card__category {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(37, 99, 235, 0.08);
  color: var(--accent-sapphire);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-sm);
}

.blog-card__title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.blog-card__excerpt {
  font-size: 0.875rem;
  color: var(--text-graphite);
  margin-bottom: var(--space-md);
}

.blog-card__link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent-sapphire);
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.blog-card__link svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-fast);
}

.blog-card__link:hover svg {
  transform: translateX(4px);
}

/* ========================================
   CONTACT PAGE
   ======================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
}

.contact-card {
  background: var(--white-pure);
  border: 1px solid var(--white-divider);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
  transition: all var(--transition-base);
}

.contact-card:hover {
  border-color: var(--accent-sapphire);
  box-shadow: var(--shadow-md);
}

.contact-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(37, 99, 235, 0.08);
  border-radius: var(--radius-md);
}

.contact-card__icon svg {
  width: 28px;
  height: 28px;
  color: var(--accent-sapphire);
}

.contact-card__title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.contact-card__value {
  font-size: 1rem;
  color: var(--text-steel);
  margin-bottom: var(--space-md);
}

.contact-card__btn {
  padding: 0.75rem 1.5rem;
  background: var(--accent-sapphire);
  color: var(--white-pure);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.contact-card__btn:hover {
  background: #1d4ed8;
}

/* ========================================
   ABOUT PAGE
   ======================================== */
.about-hero {
  padding: var(--space-3xl) 0;
  background: var(--white-silk);
  text-align: center;
}

.about-hero__title {
  margin-bottom: var(--space-md);
}

.about-hero__desc {
  font-size: 1.125rem;
  color: var(--text-steel);
  max-width: 700px;
  margin: 0 auto;
}

.about-values__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.about-value {
  text-align: center;
  padding: var(--space-lg);
}

.about-value__number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent-sapphire);
  margin-bottom: 0.5rem;
}

.about-value__label {
  font-size: 0.9375rem;
  color: var(--text-steel);
}

/* ========================================
   RESPONSIVE STYLES
   ======================================== */
@media (max-width: 1024px) {
  .hero__container {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .hero__content {
    max-width: 100%;
    text-align: center;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__trust {
    justify-content: center;
  }

  .package-visibility__grid,
  .pricing-grid,
  .netflix-plans__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .signature-collection__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .how-it-works__steps {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
  }

  .how-it-works__steps::before {
    display: none;
  }

  .value-grid,
  .age-guide__grid,
  .testimonials__grid,
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .content-block__grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-values__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .navbar__menu,
  .navbar__cta {
    display: none;
  }

  .navbar__mobile-toggle {
    display: flex;
  }

  .navbar__menu.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white-pure);
    border-bottom: 1px solid var(--white-divider);
    padding: var(--space-md);
    box-shadow: var(--shadow-lg);
  }

  .navbar__dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    max-height: 50vh;
    overflow-y: auto;
    padding-left: var(--space-md);
  }

  .announcement-bar__content {
    gap: var(--space-sm);
  }

  .announcement-bar__divider {
    display: none;
  }

  .package-visibility__grid,
  .pricing-grid,
  .netflix-plans__grid,
  .signature-collection__grid,
  .value-grid,
  .age-guide__grid,
  .testimonials__grid,
  .blog-grid,
  .ai-monthly__grid {
    grid-template-columns: 1fr;
  }

  .how-it-works__steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .footer__bottom {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }

  .floating-contacts {
    bottom: var(--space-sm);
    left: var(--space-sm);
  }

  .floating-contact {
    padding: 0.625rem 1rem;
  }

  .floating-contact__info {
    display: none;
  }

  .hero__platforms {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-hero__container {
    flex-direction: column;
    text-align: center;
  }

  .package-tabs {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: var(--space-sm);
  }

  .about-values__grid {
    grid-template-columns: 1fr;
  }

  .cta-panel__actions {
    flex-direction: column;
  }

  .hero__actions {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-md);
  }

  .section {
    padding: var(--space-2xl) 0;
  }

  .how-it-works__steps {
    grid-template-columns: 1fr;
  }

  .modal {
    padding: var(--space-lg);
  }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--space-sm); }
.mt-2 { margin-top: var(--space-md); }
.mt-3 { margin-top: var(--space-lg); }
.mt-4 { margin-top: var(--space-xl); }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--space-sm); }
.mb-2 { margin-bottom: var(--space-md); }
.mb-3 { margin-bottom: var(--space-lg); }
.mb-4 { margin-bottom: var(--space-xl); }

.hidden { display: none !important; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
