/* ============================================
   ACPoin Premium White-Background Website
   Version: 1.0
   ============================================ */

/* CSS Variables - Color System */
:root {
  /* Core Palette */
  --white: #FFFFFF;
  --soft-white: #F8FAFC;
  --light-silver: #F1F5F9;
  --border-silver: #E2E8F0;
  --border-normal: #CBD5E1;
  --rich-charcoal: #0F172A;
  --graphite-blue: #1E293B;
  --steel-ink: #334155;
  --muted-slate: #475569;
  --quiet-grey: #94A3B8;
  --soft-divider: #E5E7EB;
  
  /* Accent Palette */
  --bright-blue: #2563EB;
  --action-blue: #1D4ED8;
  --primary-active: #1E40AF;
  --primary-soft: #DBEAFE;
  --primary-extra-soft: #EFF6FF;
  --blue-emphasis-border: #BFDBFE;
  --primary-disabled: #93C5FD;
  --primary-disabled-text: #EAF2FF;
  --premium-amber: #F59E0B;
  --success-green: #22C55E;
  --success-hover: #16A34A;
  --success-tint: #DCFCE7;
  --success-text: #166534;
  
  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Manrope', var(--font-primary);
  
  /* Spacing */
  --section-padding: 6rem;
  --container-max: 1280px;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 8px 20px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 16px 32px rgba(15, 23, 42, 0.08);
  --shadow-xl: 0 20px 40px rgba(15, 23, 42, 0.1);
  --shadow-premium: 0 24px 48px rgba(15, 23, 42, 0.12);
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 350ms ease;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.6;
  color: var(--steel-ink);
  background-color: var(--white);
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul, ol {
  list-style: none;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--rich-charcoal);
  line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

p {
  color: var(--muted-slate);
  max-width: 65ch;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Top Strip */
.top-strip {
  background: var(--rich-charcoal);
  padding: 0.5rem 0;
  position: relative;
  z-index: 1001;
}

.top-strip-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.top-strip-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--light-silver);
  font-size: 0.8125rem;
  font-weight: 500;
}

.top-strip-item svg {
  width: 16px;
  height: 16px;
  color: var(--bright-blue);
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border-silver);
  z-index: 1000;
  padding: 0;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--rich-charcoal);
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--bright-blue), var(--action-blue));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 1rem;
  color: var(--steel-ink);
  font-size: 0.9375rem;
  font-weight: 500;
  border-radius: 6px;
  transition: all var(--transition-fast);
}

.nav-link:hover {
  color: var(--rich-charcoal);
  background: var(--primary-extra-soft);
}

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

/* Dropdown */
.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.dropdown-toggle svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-fast);
}

.dropdown:hover .dropdown-toggle svg {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 280px;
  background: var(--white);
  border: 1px solid var(--border-silver);
  border-radius: 12px;
  box-shadow: var(--shadow-xl);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-base);
}

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

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  color: var(--steel-ink);
  font-size: 0.9375rem;
  font-weight: 500;
  border-radius: 8px;
  transition: all var(--transition-fast);
}

.dropdown-item:hover {
  background: var(--primary-extra-soft);
  color: var(--rich-charcoal);
}

.dropdown-item svg {
  width: 20px;
  height: 20px;
  color: var(--quiet-grey);
}

.dropdown-item:hover svg {
  color: var(--bright-blue);
}

/* Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all var(--transition-fast);
}

.btn-primary {
  background: var(--bright-blue);
  border: 1px solid var(--bright-blue);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background: var(--action-blue);
  border-color: var(--action-blue);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-primary:active {
  background: var(--primary-active);
  border-color: var(--primary-active);
}

.btn-primary:disabled {
  background: var(--primary-disabled);
  border-color: var(--primary-disabled);
  color: var(--primary-disabled-text);
  box-shadow: none;
}

.btn-secondary {
  background: var(--white);
  color: var(--bright-blue);
  border: 1px solid var(--blue-emphasis-border);
}

.btn-secondary:hover {
  background: var(--primary-extra-soft);
  border-color: var(--primary-disabled);
}

.btn-outline {
  background: var(--white);
  color: var(--bright-blue);
  border: 1px solid var(--blue-emphasis-border);
}

.btn-outline:hover {
  background: var(--primary-extra-soft);
  border-color: var(--primary-disabled);
}

.btn-large {
  padding: 0.875rem 2rem;
  font-size: 1rem;
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--rich-charcoal);
  transition: all var(--transition-fast);
}

/* Hero Section */
.hero {
  padding: 5rem 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(37, 99, 235, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--primary-extra-soft);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--action-blue);
  margin-bottom: 1.5rem;
}

.hero-badge svg {
  width: 16px;
  height: 16px;
}

.hero-title {
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-title span {
  color: var(--bright-blue);
}

.hero-description {
  font-size: 1.125rem;
  color: var(--muted-slate);
  margin-bottom: 2rem;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--steel-ink);
}

.trust-item svg {
  width: 20px;
  height: 20px;
  color: var(--bright-blue);
}

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

.hero-mockup {
  width: 100%;
  max-width: 560px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow-premium);
  padding: 1.5rem;
  border: 1px solid var(--border-silver);
}

.mockup-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-silver);
}

.mockup-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.mockup-dot.red { background: #EF4444; }
.mockup-dot.yellow { background: #F59E0B; }
.mockup-dot.green { background: var(--success-green); }

.mockup-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.mockup-tab {
  padding: 0.5rem 1rem;
  background: var(--light-silver);
  border-radius: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--steel-ink);
}

.mockup-tab.active {
  background: var(--bright-blue);
  color: var(--white);
}

.mockup-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.mockup-card {
  padding: 1rem;
  background: var(--primary-extra-soft);
  border-radius: 12px;
  border: 1px solid var(--border-silver);
}

.mockup-card-icon {
  width: 40px;
  height: 40px;
  background: var(--primary-soft);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.mockup-card-icon svg {
  width: 20px;
  height: 20px;
  color: var(--bright-blue);
}

.mockup-card-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--rich-charcoal);
  margin-bottom: 0.25rem;
}

.mockup-card-price {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--bright-blue);
}

/* Special IP Threads Section */
.ip-threads-section {
  background: var(--soft-white);
}

.ip-country-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.ip-country-card {
  background: var(--white);
  border: 1px solid var(--border-silver);
  border-radius: 18px;
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.ip-country-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-emphasis-border);
}

.ip-country-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.ip-country-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.375rem 0.875rem;
  background: var(--primary-soft);
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--action-blue);
}

.ip-country-rate {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--bright-blue);
}

.ip-country-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.ip-country-text {
  font-size: 0.9375rem;
  margin-bottom: 1.25rem;
}

.ip-country-packages {
  margin-bottom: 1.5rem;
}

.ip-country-packages li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-silver);
  font-size: 0.9375rem;
  color: var(--steel-ink);
}

.ip-country-packages li:last-child {
  border-bottom: none;
}

.ip-country-packages strong {
  color: var(--rich-charcoal);
}

/* Section Styles */
.section {
  padding: var(--section-padding) 0;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  background: var(--primary-extra-soft);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--action-blue);
  margin-bottom: 1rem;
}

.section-title {
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1.125rem;
  color: var(--muted-slate);
}

/* Package Clarity Section */
.package-clarity {
  background: var(--soft-white);
}

.clarity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.clarity-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid var(--border-silver);
  transition: all var(--transition-base);
}

.clarity-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-emphasis-border);
}

.clarity-card-icon {
  width: 56px;
  height: 56px;
  background: var(--primary-soft);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.clarity-card-icon svg {
  width: 28px;
  height: 28px;
  color: var(--bright-blue);
}

.clarity-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--rich-charcoal);
  margin-bottom: 0.75rem;
}

.clarity-card-text {
  font-size: 0.9375rem;
  color: var(--muted-slate);
  line-height: 1.6;
}

/* Service Universe */
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid var(--border-silver);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--bright-blue);
  transform: scaleX(0);
  transition: transform var(--transition-base);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-emphasis-border);
}

.service-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.service-card-icon.instagram { background: linear-gradient(135deg, #E4405F, #C13584); }
.service-card-icon.gmail { background: linear-gradient(135deg, #EA4335, #FBBC05); }
.service-card-icon.twitter { background: linear-gradient(135deg, #1DA1F2, #0D8BD9); }
.service-card-icon.tiktok { background: linear-gradient(135deg, #000000, #25F4EE); }
.service-card-icon.youtube { background: linear-gradient(135deg, #FF0000, #CC0000); }
.service-card-icon.threads { background: linear-gradient(135deg, var(--rich-charcoal), var(--graphite-blue)); }
.service-card-icon.snapchat { background: linear-gradient(135deg, #FFFC00, #E6E300); }
.service-card-icon.capcut { background: linear-gradient(135deg, var(--bright-blue), var(--action-blue)); }

.service-card-icon svg {
  width: 28px;
  height: 28px;
  color: var(--white);
}

.service-card-icon.snapchat svg {
  color: var(--rich-charcoal);
}

.service-card-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--rich-charcoal);
  margin-bottom: 0.5rem;
}

.service-card-desc {
  font-size: 0.875rem;
  color: var(--muted-slate);
  margin-bottom: 1rem;
}

.service-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-card-price {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--bright-blue);
}

.service-card-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--bright-blue);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.service-card-link svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-fast);
}

.service-card:hover .service-card-link svg {
  transform: translateX(4px);
}

/* Service Finder */
.service-finder {
  background: var(--soft-white);
}

.finder-search {
  max-width: 640px;
  margin: 0 auto 2rem;
  position: relative;
}

.finder-search input {
  width: 100%;
  padding: 1rem 1.5rem 1rem 3rem;
  background: var(--white);
  border: 1px solid var(--border-silver);
  border-radius: 12px;
  font-size: 1rem;
  color: var(--rich-charcoal);
  transition: all var(--transition-fast);
}

.finder-search input:focus {
  outline: none;
  border-color: var(--bright-blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.16);
}

.finder-search svg {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: var(--quiet-grey);
}

.finder-chips {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.finder-chip {
  padding: 0.5rem 1rem;
  background: var(--white);
  border: 1px solid var(--border-silver);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--steel-ink);
  transition: all var(--transition-fast);
}

.finder-chip:hover,
.finder-chip.active {
  background: var(--bright-blue);
  border-color: var(--bright-blue);
  color: var(--white);
}

/* Featured Destinations */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.featured-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-silver);
  transition: all var(--transition-base);
}

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

.featured-card-header {
  padding: 1.5rem;
  background: var(--primary-extra-soft);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.featured-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.featured-card-icon svg {
  width: 24px;
  height: 24px;
  color: var(--white);
}

.featured-card-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--rich-charcoal);
}

.featured-card-body {
  padding: 1.5rem;
}

.featured-card-desc {
  font-size: 0.875rem;
  color: var(--muted-slate);
  margin-bottom: 1rem;
}

.featured-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.featured-card-tag {
  padding: 0.25rem 0.75rem;
  background: var(--success-tint);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--success-text);
}

/* How It Works */
.how-it-works {
  background: var(--soft-white);
}

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

.step-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid var(--border-silver);
  position: relative;
}

.step-number {
  position: absolute;
  top: -16px;
  left: 2rem;
  width: 32px;
  height: 32px;
  background: var(--bright-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 700;
}

.step-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--rich-charcoal);
  margin-bottom: 0.75rem;
  margin-top: 0.5rem;
}

.step-text {
  font-size: 0.9375rem;
  color: var(--muted-slate);
  line-height: 1.6;
}

/* Why ACPoin */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.why-card {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--border-silver);
  transition: all var(--transition-base);
}

.why-card:hover {
  border-color: var(--blue-emphasis-border);
  box-shadow: var(--shadow-md);
}

.why-card-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-extra-soft);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-card-icon svg {
  width: 24px;
  height: 24px;
  color: var(--bright-blue);
}

.why-card-content h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--rich-charcoal);
  margin-bottom: 0.5rem;
}

.why-card-content p {
  font-size: 0.9375rem;
  color: var(--muted-slate);
}

/* Advantage Board */
.advantage {
  background: var(--soft-white);
}

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.advantage-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid var(--border-silver);
  text-align: center;
  transition: all var(--transition-base);
}

.advantage-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-emphasis-border);
}

.advantage-card-icon {
  width: 64px;
  height: 64px;
  background: var(--primary-soft);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.advantage-card-icon svg {
  width: 32px;
  height: 32px;
  color: var(--bright-blue);
}

.advantage-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--rich-charcoal);
  margin-bottom: 0.75rem;
}

.advantage-card-text {
  font-size: 0.9375rem;
  color: var(--muted-slate);
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid var(--border-silver);
  transition: all var(--transition-base);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.testimonial-stars svg {
  width: 20px;
  height: 20px;
  color: var(--premium-amber);
  fill: var(--premium-amber);
}

.testimonial-text {
  font-size: 1rem;
  color: var(--steel-ink);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  background: var(--bright-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
}

.testimonial-info h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--rich-charcoal);
}

.testimonial-info span {
  font-size: 0.875rem;
  color: var(--muted-slate);
}

/* FAQ */
.faq {
  background: var(--soft-white);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--border-silver);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--rich-charcoal);
  transition: all var(--transition-fast);
}

.faq-question:hover {
  background: var(--primary-extra-soft);
}

.faq-question svg {
  width: 20px;
  height: 20px;
  color: var(--quiet-grey);
  transition: transform var(--transition-fast);
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
  color: var(--bright-blue);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base);
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding: 0 1.25rem 1.25rem;
  font-size: 0.9375rem;
  color: var(--muted-slate);
  line-height: 1.6;
}

/* Final CTA */
.final-cta {
  padding: 5rem 0;
  background: var(--rich-charcoal);
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at top right, rgba(37, 99, 235, 0.16) 0%, transparent 50%);
}

.final-cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.final-cta-title {
  color: var(--white);
  margin-bottom: 1rem;
}

.final-cta-text {
  color: var(--border-normal);
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.final-cta-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  background: var(--white);
  border-radius: 10px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--rich-charcoal);
  transition: all var(--transition-fast);
}

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

.btn-cta svg {
  width: 20px;
  height: 20px;
}

.btn-cta.whatsapp {
  background: #25D366;
  color: var(--white);
}

.btn-cta.telegram {
  background: #0088CC;
  color: var(--white);
}

.btn-cta.email {
  background: var(--bright-blue);
  color: var(--white);
}

/* Floating Contact */
.floating-contact {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 999;
}

.floating-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-fast);
}

.floating-btn:hover {
  transform: scale(1.1);
}

.floating-btn svg {
  width: 28px;
  height: 28px;
  color: var(--white);
}

.floating-btn.whatsapp { background: #25D366; }
.floating-btn.telegram { background: #0088CC; }
.floating-btn.email { background: var(--bright-blue); }

/* Order Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--white);
  border-radius: 20px;
  width: 90%;
  max-width: 480px;
  padding: 2rem;
  box-shadow: var(--shadow-premium);
  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: 1.5rem;
}

.modal-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--rich-charcoal);
}

.modal-close {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-extra-soft);
  transition: all var(--transition-fast);
}

.modal-close:hover {
  background: var(--light-silver);
}

.modal-close svg {
  width: 20px;
  height: 20px;
  color: var(--steel-ink);
}

.modal-text {
  font-size: 1rem;
  color: var(--muted-slate);
  margin-bottom: 1.5rem;
}

.modal-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.modal-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--soft-white);
  border: 1px solid var(--border-silver);
  border-radius: 12px;
  transition: all var(--transition-fast);
}

.modal-option:hover {
  border-color: var(--blue-emphasis-border);
  background: var(--primary-extra-soft);
}

.modal-option-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-option-icon.whatsapp { background: #25D366; }
.modal-option-icon.telegram { background: #0088CC; }
.modal-option-icon.email { background: var(--bright-blue); }

.modal-option-icon svg {
  width: 24px;
  height: 24px;
  color: var(--white);
}

.modal-option-info h5 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--rich-charcoal);
}

.modal-option-info span {
  font-size: 0.875rem;
  color: var(--muted-slate);
}

.modal-note {
  text-align: center;
  padding: 1rem;
  background: var(--success-tint);
  border-radius: 10px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--success-text);
}

/* Footer */
.footer {
  background: var(--rich-charcoal);
  border-top: 1px solid var(--graphite-blue);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  font-size: 0.9375rem;
  color: var(--border-normal);
  margin-top: 1rem;
  line-height: 1.7;
}

.footer-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  font-size: 0.9375rem;
  color: var(--border-normal);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid var(--graphite-blue);
}

.footer-copyright {
  font-size: 0.875rem;
  color: var(--quiet-grey);
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: var(--graphite-blue);
  border: 1px solid var(--graphite-blue);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  background: var(--bright-blue);
  border-color: var(--bright-blue);
}

.footer-social a:hover svg {
  color: var(--white);
}

.footer-social svg {
  width: 20px;
  height: 20px;
  color: var(--border-silver);
}

/* Service Page Styles */
.page-hero {
  padding: 4rem 0;
  background: linear-gradient(180deg, var(--white) 0%, var(--soft-white) 100%);
}

.page-hero-inner {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.page-hero-icon {
  width: 100px;
  height: 100px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.page-hero-icon svg {
  width: 50px;
  height: 50px;
  color: var(--white);
}

.page-hero-content h1 {
  margin-bottom: 1rem;
}

.page-hero-content p {
  font-size: 1.125rem;
  max-width: 600px;
}

/* Value Strip */
.value-strip {
  background: var(--rich-charcoal);
  padding: 1.5rem 0;
}

.value-strip-content {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.value-strip-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--light-silver);
  font-size: 0.9375rem;
  font-weight: 500;
}

.value-strip-item svg {
  width: 20px;
  height: 20px;
  color: var(--bright-blue);
}

/* Pricing Section */
.pricing-section {
  padding: 4rem 0;
}

.pricing-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

.pricing-tab {
  padding: 0.75rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--border-silver);
  border-radius: 10px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--steel-ink);
  transition: all var(--transition-fast);
}

.pricing-tab:hover {
  border-color: var(--blue-emphasis-border);
}

.pricing-tab.active {
  background: var(--bright-blue);
  border-color: var(--bright-blue);
  color: var(--white);
}

.pricing-subtabs {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.pricing-subtab {
  padding: 0.625rem 1.25rem;
  background: var(--soft-white);
  border: 1px solid var(--border-silver);
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--steel-ink);
  transition: all var(--transition-fast);
}

.pricing-subtab:hover {
  border-color: var(--blue-emphasis-border);
  color: var(--bright-blue);
}

.pricing-subtab.active {
  background: var(--bright-blue);
  border-color: var(--bright-blue);
  color: var(--white);
}

.aged-tab-panels {
  width: 100%;
}

.aged-tab-panel {
  display: none;
}

.aged-tab-panel.active {
  display: block;
}

.country-tab-panels {
  width: 100%;
}

.country-tab-panel {
  display: none;
}

.country-tab-panel.active {
  display: block;
}

.country-panel-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2rem;
}

.country-panel-intro h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.pricing-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid var(--border-silver);
  text-align: center;
  transition: all var(--transition-base);
}

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

.pricing-card.featured {
  border-color: var(--bright-blue);
  box-shadow: var(--shadow-lg);
  position: relative;
}

.pricing-card-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.25rem 1rem;
  background: var(--primary-soft);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--action-blue);
  text-transform: uppercase;
}

.pricing-card-quantity {
  font-size: 1rem;
  font-weight: 600;
  color: var(--muted-slate);
  margin-bottom: 0.5rem;
}

.pricing-card-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--rich-charcoal);
  margin-bottom: 1.5rem;
}

.pricing-card-price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--muted-slate);
}

.pricing-card-features {
  margin-bottom: 1.5rem;
}

.pricing-card-features li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
  font-size: 0.875rem;
  color: var(--steel-ink);
  border-bottom: 1px solid var(--border-silver);
}

.pricing-card-features li:last-child {
  border-bottom: none;
}

.pricing-card-features svg {
  width: 16px;
  height: 16px;
  color: var(--success-green);
}

/* Aged Pricing */
.aged-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.aged-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-silver);
}

.aged-card-header {
  padding: 1.25rem;
  background: var(--rich-charcoal);
  text-align: center;
}

.aged-card-header h4 {
  color: var(--white);
  font-size: 1.125rem;
}

.aged-card-header span {
  color: var(--quiet-grey);
  font-size: 0.875rem;
}

.aged-card-body {
  padding: 1.5rem;
}

.aged-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-silver);
}

.aged-option:last-child {
  border-bottom: none;
}

.aged-option-quantity {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--steel-ink);
}

.aged-option-price {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--bright-blue);
}

/* Priority Note */
.priority-note {
  max-width: 800px;
  margin: 2rem auto 0;
  padding: 1.5rem;
  background: var(--primary-extra-soft);
  border-radius: 16px;
  border: 1px solid var(--blue-emphasis-border);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.priority-note-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-soft);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.priority-note-icon svg {
  width: 24px;
  height: 24px;
  color: var(--bright-blue);
}

.priority-note-content h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--rich-charcoal);
  margin-bottom: 0.25rem;
}

.priority-note-content p {
  font-size: 0.9375rem;
  color: var(--muted-slate);
}

/* Service Explainer */
.explainer-section {
  background: var(--soft-white);
  padding: 4rem 0;
}

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

.explainer-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid var(--border-silver);
}

.explainer-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.explainer-card p {
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.explainer-card ul {
  list-style: disc;
  padding-left: 1.5rem;
}

.explainer-card li {
  font-size: 0.9375rem;
  color: var(--muted-slate);
  margin-bottom: 0.5rem;
}

/* Related Services */
.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.related-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--white);
  border: 1px solid var(--border-silver);
  border-radius: 12px;
  transition: all var(--transition-fast);
}

.related-card:hover {
  border-color: var(--blue-emphasis-border);
  box-shadow: var(--shadow-md);
}

.related-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.related-card-icon svg {
  width: 20px;
  height: 20px;
  color: var(--white);
}

.related-card-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--rich-charcoal);
}

/* CapCut Pro Specific */
.capcut-hero {
  background: linear-gradient(135deg, var(--bright-blue), var(--action-blue));
  padding: 5rem 0;
  text-align: center;
}

.capcut-hero-content {
  max-width: 640px;
  margin: 0 auto;
}

.capcut-hero-icon {
  width: 100px;
  height: 100px;
  background: var(--white);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.capcut-hero-icon svg {
  width: 50px;
  height: 50px;
  color: var(--bright-blue);
}

.capcut-hero h1 {
  color: var(--white);
  margin-bottom: 1rem;
}

.capcut-hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.capcut-plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.capcut-plan {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-xl);
}

.capcut-plan.featured {
  transform: scale(1.05);
  border: 2px solid var(--bright-blue);
}

.capcut-plan-badge {
  display: inline-block;
  padding: 0.25rem 1rem;
  background: var(--primary-soft);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--action-blue);
  margin-bottom: 1rem;
}

.capcut-plan h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.capcut-plan-price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--rich-charcoal);
  margin-bottom: 1.5rem;
}

.capcut-plan-price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--muted-slate);
}

.capcut-plan-features {
  text-align: left;
  margin-bottom: 1.5rem;
}

.capcut-plan-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
  font-size: 0.875rem;
  color: var(--steel-ink);
}

.capcut-plan-features svg {
  width: 16px;
  height: 16px;
  color: var(--success-green);
}

/* Contact Page */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.contact-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid var(--border-silver);
  text-align: center;
  transition: all var(--transition-base);
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-emphasis-border);
}

.contact-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.contact-card-icon.whatsapp { background: #25D366; }
.contact-card-icon.telegram { background: #0088CC; }
.contact-card-icon.email { background: var(--bright-blue); }

.contact-card-icon svg {
  width: 32px;
  height: 32px;
  color: var(--white);
}

.contact-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.contact-card p {
  font-size: 0.9375rem;
  margin-bottom: 1.25rem;
}

/* Form Styles */
.form-section {
  background: var(--soft-white);
  padding: 4rem 0;
}

.form-container {
  max-width: 600px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem;
  border: 1px solid var(--border-silver);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--rich-charcoal);
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.875rem 1rem;
  background: var(--white);
  border: 1px solid var(--border-silver);
  border-radius: 10px;
  font-size: 0.9375rem;
  color: var(--rich-charcoal);
  transition: all var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--bright-blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.16);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

/* Blog Page */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.blog-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-silver);
  transition: all var(--transition-base);
}

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

.blog-card-image {
  height: 180px;
  background: linear-gradient(135deg, var(--light-silver), var(--soft-white));
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-card-image svg {
  width: 48px;
  height: 48px;
  color: var(--quiet-grey);
}

.blog-card-content {
  padding: 1.5rem;
}

.blog-card-category {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--primary-extra-soft);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--action-blue);
  margin-bottom: 0.75rem;
}

.blog-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.blog-card p {
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.8125rem;
  color: var(--quiet-grey);
}

/* Privacy Policy */
.privacy-content {
  max-width: 800px;
  margin: 0 auto;
}

.privacy-section {
  margin-bottom: 2.5rem;
}

.privacy-section h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.privacy-section p {
  font-size: 0.9375rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.privacy-section ul {
  list-style: disc;
  padding-left: 1.5rem;
}

.privacy-section li {
  font-size: 0.9375rem;
  color: var(--muted-slate);
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .service-grid,
  .ip-country-grid,
  .featured-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .pricing-grid,
  .aged-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .clarity-grid,
  .advantage-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .capcut-plans {
    grid-template-columns: 1fr;
  }
  
  .capcut-plan.featured {
    transform: none;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 4rem;
  }
  
  .top-strip-content {
    gap: 1rem;
  }
  
  .top-strip-item span {
    display: none;
  }
  
  .mobile-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border-silver);
    flex-direction: column;
    padding: 1rem;
    gap: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-base);
  }
  
  .nav-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  .nav-item {
    width: 100%;
  }
  
  .nav-link {
    width: 100%;
    justify-content: space-between;
  }
  
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0.5rem 0 0.5rem 1rem;
    display: none;
  }
  
  .dropdown.active .dropdown-menu {
    display: block;
  }
  
  .service-grid,
  .ip-country-grid,
  .featured-grid,
  .clarity-grid,
  .steps-grid,
  .why-grid,
  .advantage-grid,
  .testimonials-grid,
  .faq-grid,
  .pricing-grid,
  .aged-grid,
  .explainer-grid,
  .related-grid,
  .contact-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .floating-contact {
    bottom: 1rem;
    left: 1rem;
  }
  
  .floating-btn {
    width: 48px;
    height: 48px;
  }
  
  .floating-btn svg {
    width: 24px;
    height: 24px;
  }
  
  .page-hero-inner {
    flex-direction: column;
    text-align: center;
  }
  
  .value-strip-content {
    gap: 1rem;
  }
  
  .hero-actions {
    flex-direction: column;
  }
  
  .final-cta-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-cta {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 3rem 0;
  }
  
  .hero-trust {
    flex-direction: column;
    gap: 1rem;
  }
  
  .mockup-cards {
    grid-template-columns: 1fr;
  }
  
  .modal {
    padding: 1.5rem;
  }
  
  .modal-option {
    padding: 0.875rem;
  }
  
  .form-container {
    padding: 1.5rem;
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.animate-fade-in {
  animation: fadeIn 0.6s ease forwards;
}

.animate-slide-in {
  animation: slideIn 0.6s ease forwards;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.hidden { display: none; }
.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;
}
