/* ===================================================================
   FRService — Friends to Friends VPN
   Design System
   =================================================================== */

:root {
  /* Colors from logo */
  --color-blue-deep: #1B3D6E;
  --color-blue-mid: #2E5A8E;
  --color-blue-light: #5B7FAA;
  --color-green: #2E9D78;
  --color-green-dark: #1F7C5C;
  --color-green-light: #6BC4A2;
  --color-orange: #F39A3D;
  --color-orange-dark: #D87E22;

  /* Neutrals */
  --color-bg: #F5F8FB;
  --color-bg-soft: #EDF2F7;
  --color-white: #FFFFFF;
  --color-text: #1A2433;
  --color-text-soft: #4A5468;
  --color-text-muted: #7A8499;
  --color-border: #E2E8F0;
  --color-border-soft: #EDF2F7;

  /* Spacing */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 40px;
  --space-xl: 64px;
  --space-2xl: 96px;
  --space-3xl: 128px;

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(27, 61, 110, 0.06);
  --shadow-md: 0 8px 24px rgba(27, 61, 110, 0.08);
  --shadow-lg: 0 20px 60px rgba(27, 61, 110, 0.12);
  --shadow-glow: 0 0 60px rgba(46, 157, 120, 0.18);

  /* Type */
  --font-display: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  /* Transitions */
  --t-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --t-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --t-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ============ DECORATIVE BACKGROUND ============ */
body::before {
  content: '';
  position: fixed;
  top: -10%;
  right: -10%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(46, 157, 120, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
body::after {
  content: '';
  position: fixed;
  bottom: -10%;
  left: -10%;
  width: 50%;
  height: 50%;
  background: radial-gradient(circle, rgba(27, 61, 110, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ============ TYPOGRAPHY ============ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--color-blue-deep);
  letter-spacing: -0.02em;
  line-height: 1.15;
  font-weight: 800;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(2rem, 3.5vw, 2.8rem); letter-spacing: -0.025em; }
h3 { font-size: clamp(1.4rem, 2.2vw, 1.8rem); }
h4 { font-size: 1.25rem; font-weight: 700; }

p { color: var(--color-text-soft); }

a { color: var(--color-blue-mid); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--color-green); }

.text-accent { color: var(--color-green); }
.text-orange { color: var(--color-orange); }
.text-muted { color: var(--color-text-muted); font-size: 0.95rem; }
.text-center { text-align: center; }

/* ============ LAYOUT ============ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  position: relative;
  z-index: 1;
}

.section {
  padding: var(--space-2xl) 0;
}

.section-narrow {
  padding: var(--space-xl) 0;
}

/* ============ NAVBAR ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 248, 251, 0.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--color-border-soft);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--color-blue-deep);
  letter-spacing: -0.01em;
}
.nav-logo img { height: 40px; width: auto; }
.nav-logo span small {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--color-text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: -2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  list-style: none;
}
.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--color-text-soft);
  padding: 8px 4px;
  position: relative;
}
.nav-links a:hover { color: var(--color-blue-deep); }
.nav-links a.active { color: var(--color-blue-deep); font-weight: 600; }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 4px;
  right: 4px;
  height: 2px;
  background: var(--color-green);
  border-radius: 2px;
}
.nav-cta {
  display: flex;
  gap: 12px;
  align-items: center;
}

/* Mobile nav */
.nav-burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-blue-deep);
  margin: 5px 0;
  border-radius: 2px;
  transition: var(--t-base);
}

/* Скрываем мобильное меню по умолчанию (на десктопе оно НЕ должно показываться) */
.nav-mobile {
  display: none;
}

@media (max-width: 900px) {
  .nav-links, .nav-cta .btn-primary, .nav-cta .btn-ghost { display: none; }
  .nav-burger { display: block; }
  .nav-mobile {
    display: none;
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--color-white);
    box-shadow: var(--shadow-lg);
    padding: var(--space-md);
    z-index: 99;
  }
  .nav-mobile.open { display: block; }
  .nav-mobile a {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid var(--color-border-soft);
    color: var(--color-text);
    font-weight: 500;
  }
  .nav-mobile .btn { margin-top: var(--space-md); width: 100%; }
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.005em;
  cursor: pointer;
  transition: all var(--t-base);
  border: none;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--color-green);
  color: var(--color-white);
  box-shadow: 0 4px 14px rgba(46, 157, 120, 0.3);
}
.btn-primary:hover {
  background: var(--color-green-dark);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(46, 157, 120, 0.4);
}
.btn-secondary {
  background: transparent;
  color: var(--color-blue-deep);
  border: 2px solid var(--color-blue-deep);
}
.btn-secondary:hover {
  background: var(--color-blue-deep);
  color: var(--color-white);
  transform: translateY(-2px);
}
.btn-ghost {
  background: var(--color-white);
  color: var(--color-blue-deep);
  border: 1px solid var(--color-border);
}
.btn-ghost:hover {
  border-color: var(--color-green);
  color: var(--color-green);
}
.btn-tg {
  background: #229ED9;
  color: white;
}
.btn-tg:hover { background: #1d8bbe; color: white; transform: translateY(-2px); }
.btn-lg {
  padding: 18px 36px;
  font-size: 1.05rem;
}
.btn-sm {
  padding: 10px 18px;
  font-size: 0.85rem;
}

/* ============ HERO ============ */
.hero {
  padding: var(--space-2xl) 0 var(--space-2xl);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: var(--space-lg); }
}
.hero h1 {
  margin-bottom: var(--space-md);
}
.hero h1 .highlight {
  background: linear-gradient(120deg, var(--color-green) 0%, var(--color-blue-mid) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(46, 157, 120, 0.1);
  color: var(--color-green-dark);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin-bottom: var(--space-md);
}
.hero-tagline::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-green);
  box-shadow: 0 0 0 4px rgba(46, 157, 120, 0.2);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(46, 157, 120, 0.2); }
  50% { box-shadow: 0 0 0 8px rgba(46, 157, 120, 0.05); }
}
.hero-lead {
  font-size: 1.2rem;
  color: var(--color-text-soft);
  margin-bottom: var(--space-lg);
  max-width: 540px;
}
.hero-cta {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-bottom: var(--space-md);
}
.hero-meta {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}
.hero-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero-meta span::before {
  content: '✓';
  color: var(--color-green);
  font-weight: 800;
}

/* Hero visual (illustration-based) */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
}
.hero-visual-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(46, 157, 120, 0.12) 0%, transparent 65%);
  filter: blur(40px);
  animation: breathe 6s ease-in-out infinite;
}
@keyframes breathe {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.08); opacity: 0.95; }
}
.hero-visual img {
  width: 100%;
  max-width: 520px;
  height: auto;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 20px 60px rgba(27, 61, 110, 0.12));
  animation: gentleFloat 7s ease-in-out infinite;
}
@keyframes gentleFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ============ FEATURES ============ */
.section-title {
  text-align: center;
  margin-bottom: var(--space-lg);
}
.section-title small {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-green);
  margin-bottom: 12px;
}
.section-title h2 {
  margin-bottom: var(--space-sm);
}
.section-title p {
  font-size: 1.15rem;
  max-width: 640px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-xl);
}
.feature {
  background: var(--color-white);
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-soft);
  transition: all var(--t-base);
}
.feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-green-light);
}
.feature-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--color-green) 0%, var(--color-green-dark) 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-sm);
  color: white;
}
.feature-icon svg { width: 24px; height: 24px; }
.feature h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--color-blue-deep);
}
.feature p {
  font-size: 0.95rem;
  line-height: 1.55;
}

/* ============ TARIFFS / PRICING ============ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-xl);
}
.price-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-md) var(--space-md) var(--space-lg);
  border: 1px solid var(--color-border-soft);
  position: relative;
  transition: all var(--t-base);
}
.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.price-card.featured {
  border: 2px solid var(--color-green);
  background: linear-gradient(180deg, rgba(46, 157, 120, 0.04) 0%, white 50%);
  transform: scale(1.03);
}
.price-card.featured:hover { transform: scale(1.03) translateY(-4px); }
.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-orange);
  color: white;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.price-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-blue-deep);
  margin-bottom: 4px;
}
.price-period {
  color: var(--color-text-muted);
  font-size: 0.85rem;
  margin-bottom: var(--space-md);
}
.price-amount {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: var(--space-md);
}
.price-amount strong {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-blue-deep);
  letter-spacing: -0.02em;
}
.price-amount span {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}
.price-old {
  text-decoration: line-through;
  color: var(--color-text-muted);
  font-size: 0.85rem;
  margin-left: 8px;
}
.price-features {
  list-style: none;
  margin: var(--space-md) 0;
}
.price-features li {
  padding: 8px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--color-text-soft);
}
.price-features li::before {
  content: '';
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(46, 157, 120, 0.15) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232E9D78' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/12px no-repeat;
  margin-top: 3px;
}
.price-card .btn { width: 100%; }

/* ============ STEPS ============ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-xl);
  counter-reset: step;
}
.step {
  position: relative;
  padding: var(--space-md);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-soft);
  counter-increment: step;
}
.step::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: -16px;
  left: var(--space-md);
  background: var(--color-blue-deep);
  color: var(--color-white);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  letter-spacing: 0.05em;
}
.step h4 {
  margin: var(--space-xs) 0 8px;
  color: var(--color-blue-deep);
}
.step p {
  font-size: 0.95rem;
  color: var(--color-text-soft);
}

/* ============ FAQ ============ */
.faq-list {
  max-width: 820px;
  margin: var(--space-xl) auto 0;
}
.faq-item {
  background: var(--color-white);
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all var(--t-base);
}
.faq-item:hover { border-color: var(--color-green-light); }
.faq-item summary {
  padding: var(--space-md);
  font-weight: 600;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--color-blue-deep);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.6rem;
  color: var(--color-green);
  font-weight: 400;
  transition: transform var(--t-base);
  flex-shrink: 0;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item .faq-answer {
  padding: 0 var(--space-md) var(--space-md);
  color: var(--color-text-soft);
  line-height: 1.65;
}
.faq-item .faq-answer p { margin-bottom: 12px; }
.faq-item .faq-answer p:last-child { margin-bottom: 0; }

/* ============ CTA BANNER ============ */
.cta-banner {
  background: linear-gradient(135deg, var(--color-blue-deep) 0%, var(--color-blue-mid) 100%);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
  margin: var(--space-2xl) 0;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(46, 157, 120, 0.4) 0%, transparent 60%);
  filter: blur(60px);
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 {
  color: white;
  margin-bottom: var(--space-sm);
}
.cta-banner p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  max-width: 580px;
  margin: 0 auto var(--space-lg);
}
.cta-banner .btn-primary {
  background: white;
  color: var(--color-blue-deep);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}
.cta-banner .btn-primary:hover {
  background: var(--color-bg);
  color: var(--color-blue-deep);
}
.cta-banner .btn-tg {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.cta-banner .btn-tg:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* ============ ARTICLE / CONTENT PAGES ============ */
.article {
  max-width: 760px;
  margin: 0 auto;
  padding: var(--space-xl) 0;
}
.article h1 { margin-bottom: var(--space-md); }
.article h2 { margin-top: var(--space-xl); margin-bottom: var(--space-md); }
.article h3 { margin-top: var(--space-lg); margin-bottom: var(--space-sm); }
.article p { margin-bottom: var(--space-sm); font-size: 1.05rem; line-height: 1.7; }
.article ul, .article ol { margin: var(--space-sm) 0 var(--space-md) var(--space-md); }
.article li { margin-bottom: 8px; color: var(--color-text-soft); line-height: 1.65; }
.article strong { color: var(--color-blue-deep); }
.article blockquote {
  border-left: 4px solid var(--color-green);
  padding: var(--space-sm) var(--space-md);
  background: rgba(46, 157, 120, 0.05);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: var(--space-md) 0;
  font-style: italic;
  color: var(--color-text);
}
.article code {
  background: var(--color-bg-soft);
  padding: 2px 8px;
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 0.9em;
  color: var(--color-blue-deep);
}

/* Article meta */
.article-meta {
  display: flex;
  gap: var(--space-md);
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--color-border-soft);
}

/* ============ BLOG GRID ============ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-xl);
}
.blog-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-soft);
  padding: var(--space-md);
  transition: all var(--t-base);
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-green-light);
}
.blog-card .tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-green);
  margin-bottom: 12px;
}
.blog-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--color-blue-deep);
  line-height: 1.3;
}
.blog-card p {
  font-size: 0.95rem;
  margin-bottom: var(--space-sm);
}
.blog-card .blog-meta {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.blog-card .blog-meta a {
  color: var(--color-green);
  font-weight: 600;
}

/* ============ APP DOWNLOAD CARDS ============ */
.apps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-xl);
}
.app-card {
  background: var(--color-white);
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  text-align: center;
  transition: all var(--t-base);
}
.app-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-green-light);
}
.app-card .app-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}
.app-card h4 {
  color: var(--color-blue-deep);
  margin-bottom: 4px;
}
.app-card p { font-size: 0.85rem; color: var(--color-text-muted); margin-bottom: var(--space-sm); }
.app-card .btn { width: 100%; }

/* ============ FOOTER ============ */
.footer {
  background: var(--color-blue-deep);
  color: rgba(255, 255, 255, 0.92);
  padding: var(--space-xl) 0 var(--space-md);
  margin-top: var(--space-2xl);
  position: relative;
  z-index: 1;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}
@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-brand img {
  height: 48px;
  width: auto;
  margin-bottom: var(--space-sm);
}
.footer-brand p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 280px;
}
.footer h5 {
  color: white;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
  letter-spacing: 0.02em;
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }
.footer ul a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  transition: color var(--t-fast);
}
.footer ul a:hover { color: var(--color-green-light); }
.footer-bottom {
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
}
.footer-bottom .legal-links a {
  color: rgba(255, 255, 255, 0.85);
  margin-left: var(--space-md);
}
.footer-bottom .legal-links a:hover {
  color: var(--color-green-light);
}

/* ============ ANIMATIONS ON SCROLL (lightweight) ============ */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ TRUST BAR ============ */
.trust-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-xl);
  padding: var(--space-lg) 0;
  flex-wrap: wrap;
  text-align: center;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.trust-item strong {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--color-blue-deep);
  letter-spacing: -0.02em;
}
.trust-item span {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

/* ============ COMPARISON TABLE ============ */
.compare {
  margin-top: var(--space-xl);
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-soft);
  overflow: hidden;
}
.compare table { width: 100%; border-collapse: collapse; }
.compare th, .compare td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--color-border-soft);
  font-size: 0.95rem;
}
.compare th {
  background: var(--color-bg-soft);
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-blue-deep);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.compare td:first-child { font-weight: 600; color: var(--color-blue-deep); }
.compare .yes { color: var(--color-green-dark); font-weight: 700; }
.compare .no { color: var(--color-text-muted); }

/* ============ UTILITY ============ */
.divider {
  height: 1px;
  background: var(--color-border-soft);
  margin: var(--space-xl) 0;
}
.hidden { display: none; }

@media (max-width: 600px) {
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
  .price-card.featured { transform: none; }
  .price-card.featured:hover { transform: translateY(-4px); }
}
