/* ============================================
   SECTIONS.CSS — All Page Sections
   FreedomIA - Violet + Lime, Glassmorphic
   ============================================ */

/* ============================================
   1. NAVIGATION — Glassmorphic Header
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-header);
  background: var(--color-header-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 2px solid #8B919B;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  animation: slideDown 0.5s ease forwards;
}

[data-theme="dark"] .nav {
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: none;
}

.nav--scrolled {
  background: var(--color-header-bg-scroll);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] .nav--scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

@keyframes slideDown {
  from { transform: translateY(-100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1600px;
  padding: 12px 24px;
}

@media (min-width: 1200px) {
  .nav__inner { padding: 16px 48px; }
}

@media (min-width: 1400px) {
  .nav__inner { padding: 16px 64px; }
}

/* Logo */
.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-shrink: 0;
}

.nav__logo-icon {
  display: flex;
  color: var(--color-primary);
}

.nav__logo-text {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: var(--fw-black);
  color: var(--color-ink);
}

.nav__logo-highlight {
  color: var(--color-primary);
}

/* Nav links — Montserrat semibold, underline hover */
.nav__links {
  display: none;
  align-items: center;
  gap: 0;
}

@media (min-width: 1024px) {
  .nav__links {
    display: flex;
  }
}

.nav__link {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: var(--fw-semibold);
  color: var(--color-ink);
  padding: 12px 14px;
  position: relative;
  transition: all 0.2s ease;
  white-space: nowrap;
}

@media (min-width: 1200px) {
  .nav__link { font-size: 15px; padding: 12px 18px; }
}

@media (min-width: 1400px) {
  .nav__link { font-size: 16px; padding: 14px 22px; }
}

/* Underline effect — thick 4px like freedomia.ch */
.nav__link::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 14px;
  right: 14px;
  height: 4px;
  background: var(--color-primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  border-radius: 2px;
}

@media (min-width: 1200px) {
  .nav__link::after { left: 18px; right: 18px; }
}

@media (min-width: 1400px) {
  .nav__link::after { left: 22px; right: 22px; }
}

.nav__link:hover::after,
.nav__link--active::after {
  transform: scaleX(1);
}

/* Nav right group (theme toggle + CTA) */
.nav__right {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

/* CTA button — Violet → Lime on hover */
.nav__cta {
  background: var(--color-primary);
  color: var(--color-ink);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: var(--fw-bold);
  padding: 12px 20px;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  white-space: nowrap;
  display: none;
}

[data-theme="dark"] .nav__cta {
  color: #0A0A0A;
}

@media (min-width: 1024px) {
  .nav__cta { display: inline-flex; }
}

@media (min-width: 1200px) {
  .nav__cta { font-size: 14px; padding: 14px 24px; }
}

@media (min-width: 1400px) {
  .nav__cta { font-size: 15px; padding: 14px 28px; }
}

.nav__cta:hover {
  background: var(--color-accent);
  color: #0A0A0A;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px var(--color-accent-glow);
}

.nav__cta::after {
  display: none;
}

/* Mobile hamburger */
.nav__toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  padding: 6px;
}

@media (min-width: 1024px) {
  .nav__toggle { display: none; }
}

.nav__toggle-bar {
  width: 100%;
  height: 2.5px;
  background: var(--color-ink);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav__toggle--active .nav__toggle-bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle--active .nav__toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav__toggle--active .nav__toggle-bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu */
.nav__mobile {
  display: none;
  background: var(--color-surface);
  border-radius: 0 0 var(--radius-2xl) var(--radius-2xl);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  padding: var(--space-6);
  margin-top: 0;
}

.nav__mobile--open {
  display: block;
}

.nav__mobile-links {
  display: flex;
  flex-direction: column;
}

.nav__mobile-link {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: var(--fw-semibold);
  color: var(--color-ink);
  padding: var(--space-4) var(--space-5);
  border-bottom: 1px solid var(--color-border);
  transition: all 0.2s ease;
}

.nav__mobile-link:hover {
  color: var(--color-primary);
  padding-left: var(--space-8);
  background: var(--color-primary-subtle);
}

.nav__mobile-cta {
  margin-top: var(--space-4);
  text-align: center;
  border-bottom: none;
}

/* ============================================
   2. HERO SECTION
   ============================================ */
.hero {
  padding: calc(100px + var(--space-16)) 0 var(--section-py);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

@media (min-width: 1200px) {
  .hero { padding-top: calc(130px + var(--space-16)); }
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
  align-items: center;
}

@media (min-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
  }
}

.hero__content {
  max-width: 600px;
}

.hero__overline {
  margin-bottom: var(--space-6);
}

.hero__title {
  font-size: var(--text-5xl);
  font-weight: var(--fw-black);
  line-height: 1.1;
  margin-bottom: var(--space-6);
  letter-spacing: -0.02em;
}

.hero__title-highlight {
  color: var(--color-primary);
  position: relative;
}

.hero__subtitle {
  font-size: var(--text-lg);
  color: var(--color-ink-secondary);
  margin-bottom: var(--space-8);
  max-width: 480px;
  line-height: 1.7;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-6);
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--color-ink-muted);
}

.hero__trust-item svg {
  color: var(--color-success);
}

/* Hero animated visual */
.hero__visual {
  display: none;
  position: relative;
}

@media (min-width: 1024px) {
  .hero__visual { display: block; }
}

.hero__graphic {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 500px;
  margin: 0 auto;
}

/* Orbs — Violet/Lime glow */
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
  animation: float 8s ease-in-out infinite;
}

.hero__orb--1 {
  width: 300px;
  height: 300px;
  background: var(--color-primary);
  top: 10%;
  left: 10%;
  animation-duration: 8s;
}

.hero__orb--2 {
  width: 200px;
  height: 200px;
  background: var(--color-accent);
  top: 50%;
  right: 10%;
  animation-duration: 10s;
  animation-delay: -2s;
}

.hero__orb--3 {
  width: 150px;
  height: 150px;
  background: var(--color-primary-light);
  bottom: 15%;
  left: 25%;
  animation-duration: 6s;
  animation-delay: -4s;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-15px) rotate(2deg); }
  66% { transform: translateY(10px) rotate(-1deg); }
}

.hero__grid-pattern {
  position: absolute;
  inset: 10%;
  background-image:
    linear-gradient(rgba(124, 92, 252, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 92, 252, 0.08) 1px, transparent 1px);
  background-size: 40px 40px;
  border-radius: var(--radius-xl);
}

[data-theme="dark"] .hero__grid-pattern {
  background-image:
    linear-gradient(rgba(124, 92, 252, 0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 92, 252, 0.15) 1px, transparent 1px);
}

.hero__center-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background: var(--color-surface);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-2xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-1);
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

.hero__center-icon {
  color: var(--color-primary);
}

.hero__center-label {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: var(--fw-black);
  color: var(--color-primary);
}

/* Hero stagger animations */
.hero__content > *:nth-child(1) { animation: fadeInUp 0.6s var(--ease-out) 0.1s both; }
.hero__content > *:nth-child(2) { animation: fadeInUp 0.6s var(--ease-out) 0.2s both; }
.hero__content > *:nth-child(3) { animation: fadeInUp 0.6s var(--ease-out) 0.3s both; }
.hero__content > *:nth-child(4) { animation: fadeInUp 0.6s var(--ease-out) 0.4s both; }
.hero__content > *:nth-child(5) { animation: fadeInUp 0.6s var(--ease-out) 0.5s both; }

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

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

.hero__visual {
  animation: fadeIn 1s var(--ease-out) 0.6s both;
}

/* ============================================
   3. SOCIAL PROOF BAR
   ============================================ */
.proof {
  padding: var(--space-12) 0;
}

.proof__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--space-8);
}

@media (min-width: 768px) {
  .proof__grid { gap: var(--space-12); }
}

.proof__item {
  text-align: center;
}

.proof__number {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: var(--fw-black);
  color: var(--color-ink);
  line-height: 1;
}

.proof__suffix {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: var(--fw-black);
  color: var(--color-primary);
}

.proof__label {
  display: block;
  font-size: var(--text-sm);
  color: var(--color-ink-muted);
  margin-top: var(--space-2);
}

.proof__divider {
  width: 1px;
  height: 40px;
  background: var(--color-border);
  display: none;
}

@media (min-width: 768px) {
  .proof__divider { display: block; }
}

/* ============================================
   4. SERVICES GRID
   ============================================ */
.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}

@media (min-width: 768px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================
   5. BENEFITS GRID
   ============================================ */
.benefits__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

@media (min-width: 640px) {
  .benefits__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .benefits__grid { grid-template-columns: repeat(3, 1fr); }
}

.benefit {
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  transition: all var(--duration-base) var(--ease-out);
}

.benefit:hover {
  background: var(--color-primary-subtle);
}

.benefit__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--color-primary-subtle);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
}

.benefit__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: var(--fw-bold);
  margin-bottom: var(--space-2);
}

.benefit__text {
  font-size: var(--text-sm);
  color: var(--color-ink-secondary);
  line-height: 1.6;
}

/* ============================================
   6. METHODOLOGY TIMELINE
   ============================================ */
.methodo__timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.methodo__line {
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--color-border);
}

@media (min-width: 768px) {
  .methodo__line {
    left: 50%;
    transform: translateX(-50%);
  }
}

.methodo__step {
  display: flex;
  gap: var(--space-6);
  margin-bottom: var(--space-8);
  position: relative;
}

@media (min-width: 768px) {
  .methodo__step {
    justify-content: flex-start;
    padding-left: calc(50% + var(--space-8));
  }

  .methodo__step:nth-child(even) {
    flex-direction: row-reverse;
    padding-left: 0;
    padding-right: calc(50% + var(--space-8));
    text-align: right;
  }
}

.methodo__marker {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 6px var(--color-surface);
}

@media (min-width: 768px) {
  .methodo__marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
}

.methodo__number {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: var(--fw-black);
  color: #FFFFFF;
}

.methodo__card {
  flex: 1;
}

.methodo__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--fw-bold);
  margin-bottom: var(--space-1);
}

.methodo__subtitle {
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-primary);
  margin-bottom: var(--space-2);
}

.methodo__text {
  font-size: var(--text-sm);
  color: var(--color-ink-secondary);
  line-height: 1.6;
}

/* ============================================
   7. USE CASES GRID
   ============================================ */
.usecases__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}

@media (min-width: 640px) {
  .usecases__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .usecases__grid { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================
   8. COMPARISON SECTION
   ============================================ */
.comparison__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  max-width: 800px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .comparison__grid { grid-template-columns: repeat(2, 1fr); }
}

.comparison__col {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  background: var(--color-surface-elevated);
  transition: all var(--duration-base) var(--ease-out);
}

.comparison__col--with {
  border: 2px solid var(--color-primary);
  position: relative;
}

.comparison__recommended {
  position: absolute;
  top: calc(-1 * var(--space-3));
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary);
  color: #FFFFFF;
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  padding: var(--space-1) var(--space-5);
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.comparison__header {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}

.comparison__header--without svg {
  color: var(--color-ink-muted);
}

.comparison__header--with svg {
  color: var(--color-primary);
}

.comparison__header h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--fw-bold);
}

.comparison__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.comparison__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-ink-secondary);
  line-height: 1.5;
}

.comparison__item svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.comparison__cta {
  margin-top: var(--space-8);
  width: 100%;
}

/* ============================================
   9. TESTIMONIALS CAROUSEL
   ============================================ */
.carousel {
  position: relative;
  overflow: hidden;
}

.carousel__track {
  display: flex;
  gap: var(--space-6);
  transition: transform 0.5s var(--ease-out);
  cursor: grab;
}

.carousel__track:active {
  cursor: grabbing;
}

.carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-6);
  margin-top: var(--space-8);
}

.carousel__btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: var(--color-surface-elevated);
  color: var(--color-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--duration-base) var(--ease-out);
}

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

.carousel__dots {
  display: flex;
  gap: var(--space-2);
}

.carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-border);
  border: none;
  cursor: pointer;
  transition: all var(--duration-base) var(--ease-out);
}

.carousel__dot--active {
  background: var(--color-primary);
  width: 24px;
  border-radius: var(--radius-full);
}

/* ============================================
   10. URGENCY SECTION (Dark)
   ============================================ */
.urgency__timeline {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-8);
  position: relative;
  margin-bottom: var(--space-12);
}

@media (min-width: 768px) {
  .urgency__timeline {
    flex-direction: row;
    justify-content: center;
    gap: var(--space-16);
  }
}

.urgency__line {
  position: absolute;
  background: rgba(255, 255, 255, 0.15);
  z-index: 0;
}

/* Vertical line mobile */
.urgency__line {
  width: 2px;
  height: 100%;
  left: 50%;
  transform: translateX(-50%);
}

@media (min-width: 768px) {
  .urgency__line {
    width: 100%;
    height: 2px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }
}

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

.urgency__marker {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  margin: 0 auto var(--space-3);
}

.urgency__marker--active {
  width: 24px;
  height: 24px;
  background: var(--color-accent);
  box-shadow: 0 0 20px var(--color-accent-glow);
}

.urgency__year {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: var(--fw-bold);
  color: rgba(255, 255, 255, 0.6);
}

.urgency__point--current .urgency__year {
  color: var(--color-accent);
  font-size: var(--text-lg);
}

.urgency__rate {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: var(--fw-black);
  color: #FFFFFF;
}

.urgency__desc {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
}

.urgency__stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

@media (min-width: 768px) {
  .urgency__stats { grid-template-columns: repeat(3, 1fr); }
}

.urgency__stat {
  text-align: center;
  padding: var(--space-6);
}

.urgency__stat-icon {
  margin-bottom: var(--space-3);
  display: flex;
  justify-content: center;
}

.urgency__stat-icon svg {
  color: var(--color-accent);
}

.urgency__stat-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: var(--fw-bold);
  color: #FFFFFF;
  margin-bottom: var(--space-2);
}

.urgency__stat-text {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

/* ============================================
   11. FAQ SECTION
   ============================================ */
.faq__list {
  max-width: 700px;
  margin: 0 auto;
}

/* ============================================
   12. FINAL CTA
   ============================================ */
.cta-final {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: #FFFFFF;
  text-align: center;
}

.cta-final__content {
  max-width: 600px;
  margin: 0 auto;
}

.cta-final__title {
  font-size: var(--text-3xl);
  font-weight: var(--fw-black);
  color: #FFFFFF;
  margin-bottom: var(--space-4);
}

.cta-final__subtitle {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--space-8);
}

.cta-final__actions {
  margin-bottom: var(--space-8);
}

.cta-final .btn--primary {
  background: var(--color-accent);
  color: #0A0A0A;
}

.cta-final .btn--primary:hover {
  background: #CCFF00;
  box-shadow: 0 10px 30px var(--color-accent-glow);
}

.cta-final__contact {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
}

.cta-final__contact a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cta-final__contact a:hover {
  color: #FFFFFF;
}

.cta-final__separator {
  color: rgba(255, 255, 255, 0.4);
}

/* ============================================
   13. FOOTER
   ============================================ */
.footer {
  background: var(--color-footer-bg);
  color: var(--color-footer-text);
  padding: var(--space-16) 0 var(--space-8);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
  margin-bottom: var(--space-12);
}

@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: var(--space-12);
  }
}

.footer__brand {
  max-width: 280px;
}

.footer__logo {
  display: inline-block;
  margin-bottom: var(--space-4);
}

.footer__logo-text {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: var(--fw-black);
  color: #FFFFFF;
}

.footer__logo-highlight {
  color: var(--color-primary);
}

.footer__tagline {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin-bottom: var(--space-6);
}

.footer__social {
  display: flex;
  gap: var(--space-3);
}

.footer__social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  transition: all var(--duration-base) var(--ease-out);
}

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

.footer__social a svg {
  width: 18px;
  height: 18px;
}

.footer__heading {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: var(--space-5);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer__links li {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.6);
}

.footer__links a {
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--duration-fast);
}

.footer__links a:hover {
  color: var(--color-accent);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-8);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
}

.footer__bottom p {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.4);
}

.footer__legal {
  display: flex;
  gap: var(--space-6);
}

.footer__legal a {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.4);
  transition: color var(--duration-fast);
}

.footer__legal a:hover {
  color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   14. MOBILE STICKY CTA
   ============================================ */
.mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-4);
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  z-index: var(--z-sticky);
  transform: translateY(100%);
  transition: transform var(--duration-base) var(--ease-out);
}

.mobile-cta--visible {
  transform: translateY(0);
}

@media (min-width: 1024px) {
  .mobile-cta { display: none; }
}

.mobile-cta__btn {
  width: 100%;
}
