@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;600;700;800;900;1000&family=IBM+Plex+Sans+Arabic:wght@300;400;500;600;700&family=Tajawal:wght@400;500;700;900&display=swap');

:root {
  --bg-deep: #090a0d;
  --bg-card: #13151b;
  --bg-card-hover: #191c24;
  --bg-surface: #1d202b;
  --bg-elevated: #242836;
  
  --accent-red: #d93829;
  --accent-red-glow: rgba(217, 56, 41, 0.35);
  --accent-gold: #f59e0b;
  --accent-gold-glow: rgba(245, 158, 11, 0.25);
  --accent-green: #166534;
  --accent-green-bright: #22c55e;
  
  --text-main: #fbf8f2;
  --text-sub: #b6bac7;
  --text-muted: #74798c;
  
  --border-light: rgba(255, 255, 255, 0.08);
  --border-active: rgba(245, 158, 11, 0.4);
  --border-red: rgba(217, 56, 41, 0.3);
  
  --font-display: 'Cairo', system-ui, -apple-system, sans-serif;
  --font-body: 'IBM Plex Sans Arabic', system-ui, -apple-system, sans-serif;
  --font-accent: 'Tajawal', sans-serif;
  
  --shadow-card: 0 16px 36px -8px rgba(0, 0, 0, 0.6);
  --shadow-glow-red: 0 0 40px -10px rgba(217, 56, 41, 0.45);
  --shadow-glow-gold: 0 0 40px -10px rgba(245, 158, 11, 0.35);
  
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
  direction: rtl;
  text-align: right;
  background-color: var(--bg-deep);
  color: var(--text-main);
  overflow-x: hidden;
}

body {
  background-color: var(--bg-deep);
  color: var(--text-main);
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
  font-feature-settings: "ss01", "ss02";
  -webkit-font-smoothing: antialiased;
}

/* Cinematic film grain & ambient gradient */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-deep);
}
::-webkit-scrollbar-thumb {
  background: #2a2e3d;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-red);
}

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.25;
  color: var(--text-main);
}

p {
  color: var(--text-sub);
  font-size: 1.05rem;
}

.text-gold { color: var(--accent-gold); }
.text-red { color: var(--accent-red); }
.text-green { color: var(--accent-green-bright); }
.text-white { color: #fff; }

.gradient-text-gold {
  background: linear-gradient(135deg, #fff 0%, var(--accent-gold) 60%, #e67e22 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-text-red {
  background: linear-gradient(135deg, #fff 0%, #ff6b6b 40%, var(--accent-red) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Container */
.container {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-spacing {
  padding: 120px 0;
  position: relative;
}

@media (max-width: 768px) {
  .section-spacing {
    padding: 70px 0;
  }
}

/* Badge & Section Labels */
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.35);
  color: var(--accent-gold);
  padding: 6px 18px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.badge-pill.red {
  background: rgba(217, 56, 41, 0.12);
  border-color: rgba(217, 56, 41, 0.35);
  color: #ff6b6b;
}

.badge-pill.green {
  background: rgba(34, 197, 94, 0.12);
  border-color: rgba(34, 197, 94, 0.35);
  color: #4ade80;
}

.section-header {
  margin-bottom: 50px;
}

.section-header.center {
  text-align: center;
}

.section-title {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 900;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--text-sub);
  max-width: 780px;
  line-height: 1.8;
}

.section-header.center .section-subtitle {
  margin: 0 auto;
}

/* Floating Navigation Header */
.site-nav {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  max-width: 1280px;
  z-index: 1000;
  background: rgba(19, 21, 27, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  padding: 8px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo-img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent-gold);
}

.nav-brand-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 900;
  color: #fff;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-brand-text span {
  font-size: 0.72rem;
  color: var(--accent-gold);
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}

.nav-link {
  color: var(--text-sub);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 100px;
  transition: all 0.2s ease;
}

.nav-link:hover, .nav-link.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

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

.nav-cta-btn {
  background: linear-gradient(135deg, var(--accent-red) 0%, #b82719 100%);
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 100px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.25s ease;
  box-shadow: 0 4px 15px rgba(217, 56, 41, 0.4);
  text-decoration: none;
}

.nav-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(217, 56, 41, 0.6);
}

.audio-toggle-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-light);
  color: var(--accent-gold);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.2s ease;
}

.audio-toggle-btn:hover {
  background: rgba(245, 158, 11, 0.15);
  border-color: var(--accent-gold);
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
  display: none;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }
  .mobile-nav-toggle {
    display: block;
  }
}

/* Mobile Menu Drawer */
.mobile-drawer {
  position: fixed;
  top: 75px;
  right: 16px;
  left: 16px;
  background: rgba(19, 21, 27, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 24px;
  z-index: 999;
  display: none;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.8);
}

.mobile-drawer.open {
  display: flex;
}

.mobile-drawer .nav-link {
  font-size: 1.1rem;
  padding: 12px 16px;
  text-align: right;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Reading Progress Bar */
.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--accent-red) 0%, var(--accent-gold) 100%);
  z-index: 1001;
  transition: width 0.1s linear;
}

/* SECTION 01 — HERO */
.hero-section {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 0 80px 0;
  overflow: hidden;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(0.35) contrast(1.15);
  transform: scale(1.04);
  transition: transform 10s ease-out;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(12, 13, 17, 0.4) 0%, rgba(9, 10, 13, 0.92) 80%),
              linear-gradient(180deg, rgba(9, 10, 13, 0.7) 0%, transparent 40%, rgba(9, 10, 13, 1) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 960px;
  margin: 0 auto;
}

.hero-brand-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(19, 21, 27, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(245, 158, 11, 0.3);
  padding: 8px 24px;
  border-radius: 100px;
  margin-bottom: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.hero-logo-mini {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
}

.hero-headline {
  font-size: clamp(2.8rem, 6.2vw, 5.2rem);
  font-weight: 1000;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.hero-subheadline {
  font-size: clamp(1.2rem, 2.4vw, 1.7rem);
  color: var(--text-sub);
  font-weight: 500;
  max-width: 780px;
  margin: 0 auto 36px auto;
  line-height: 1.6;
}

.hero-proposal-memo {
  background: rgba(255, 255, 255, 0.04);
  border: 1px dashed rgba(245, 158, 11, 0.4);
  border-radius: var(--radius-md);
  padding: 16px 28px;
  max-width: 680px;
  margin: 0 auto 40px auto;
  font-size: 1.05rem;
  color: #fce7b2;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-red) 0%, #b82719 100%);
  color: #fff;
  border: none;
  padding: 16px 36px;
  border-radius: 100px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-glow-red);
  text-decoration: none;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 30px rgba(217, 56, 41, 0.7);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  padding: 16px 32px;
  border-radius: 100px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

/* Steam particles CSS */
.steam-container {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 200px;
  pointer-events: none;
  z-index: 1;
}

.steam-particle {
  position: absolute;
  bottom: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0) 70%);
  filter: blur(12px);
  animation: riseSteam 4s infinite ease-out;
}

@keyframes riseSteam {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0;
  }
  20% {
    opacity: 0.6;
  }
  80% {
    opacity: 0.2;
  }
  100% {
    transform: translateY(-180px) scale(2.5);
    opacity: 0;
  }
}

/* SECTION 02 — THE BRAND STORY */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 992px) {
  .story-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.story-visual-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-light);
}

.story-visual-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.story-visual-wrap:hover .story-visual-img {
  transform: scale(1.04);
}

.story-visual-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  left: 24px;
  background: rgba(19, 21, 27, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(245, 158, 11, 0.3);
  padding: 18px 24px;
  border-radius: var(--radius-md);
}

.timeline-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}

.timeline-cards::before {
  content: "";
  position: absolute;
  top: 20px;
  bottom: 20px;
  right: 24px;
  width: 2px;
  background: linear-gradient(180deg, var(--accent-red) 0%, var(--accent-gold) 60%, var(--accent-green-bright) 100%);
}

.timeline-item {
  position: relative;
  padding-right: 64px;
}

.timeline-dot {
  position: absolute;
  top: 14px;
  right: 15px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--bg-deep);
  border: 3px solid var(--accent-gold);
  z-index: 2;
  box-shadow: 0 0 12px var(--accent-gold);
}

.timeline-item.active .timeline-dot {
  border-color: var(--accent-red);
  box-shadow: 0 0 15px var(--accent-red);
}

.timeline-box {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all 0.3s ease;
}

.timeline-box:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-active);
  transform: translateX(-4px);
}

.timeline-year {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--accent-gold);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.timeline-box h4 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.timeline-box p {
  font-size: 0.98rem;
  color: var(--text-sub);
  line-height: 1.6;
}

.story-quote-banner {
  margin-top: 60px;
  background: linear-gradient(135deg, rgba(217, 56, 41, 0.12) 0%, rgba(245, 158, 11, 0.08) 100%);
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: var(--radius-xl);
  padding: 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.story-quote-text {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.3;
}

/* SECTION 03 — THE MARKETING OPPORTUNITY */
.opportunity-statement {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 48px;
  margin-bottom: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

@media (max-width: 900px) {
  .opportunity-statement {
    grid-template-columns: 1fr;
    padding: 30px;
  }
}

.opportunity-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 30px;
}

.opportunity-box.current {
  border-color: rgba(255, 255, 255, 0.15);
}

.opportunity-box.future {
  background: linear-gradient(135deg, rgba(217, 56, 41, 0.15) 0%, rgba(245, 158, 11, 0.1) 100%);
  border-color: rgba(245, 158, 11, 0.4);
  box-shadow: 0 10px 30px rgba(217, 56, 41, 0.15);
}

.personas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.persona-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.persona-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 4px;
  height: 100%;
  background: var(--accent-gold);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.persona-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-active);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}

.persona-card:hover::after {
  opacity: 1;
}

.persona-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(245, 158, 11, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.persona-card h4 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.persona-card .quote-text {
  font-style: italic;
  color: #fce7b2;
  font-size: 0.95rem;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed rgba(255, 255, 255, 0.08);
}

/* SECTION 04 — THE BIG CAMPAIGN IDEA */
.big-idea-section {
  position: relative;
  background: radial-gradient(circle at center, #1b1e28 0%, var(--bg-deep) 70%);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.big-idea-hero-box {
  background: linear-gradient(135deg, rgba(20, 22, 30, 0.9) 0%, rgba(35, 16, 16, 0.7) 100%);
  border: 1px solid rgba(217, 56, 41, 0.35);
  border-radius: var(--radius-xl);
  padding: 80px 48px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .big-idea-hero-box {
    padding: 40px 20px;
  }
}

.big-idea-hero-box::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(217, 56, 41, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.big-idea-main-title {
  font-size: clamp(2.5rem, 5.5vw, 4.4rem);
  font-weight: 1000;
  line-height: 1.25;
  margin-bottom: 24px;
}

.big-idea-subtitle {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  color: var(--accent-gold);
  font-weight: 700;
  margin-bottom: 40px;
}

.positioning-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 50px;
}

.positioning-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 24px 16px;
  text-align: center;
  transition: all 0.3s ease;
}

.positioning-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent-gold);
  transform: translateY(-4px);
}

.positioning-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.positioning-item h5 {
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.positioning-item p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* SECTION 05 — CONTENT PILLARS */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

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

@media (max-width: 640px) {
  .pillars-grid {
    grid-template-columns: 1fr;
  }
}

.pillar-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.pillar-card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-8px);
  box-shadow: var(--shadow-card);
  border-color: var(--border-active);
}

.pillar-percent-badge {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 1000;
  line-height: 1;
  margin-bottom: 20px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.pillar-percent-badge span {
  font-size: 1.5rem;
  font-weight: 700;
}

.pillar-progress-track {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  margin-bottom: 24px;
  overflow: hidden;
}

.pillar-progress-fill {
  height: 100%;
  border-radius: 100px;
  transition: width 1.2s ease-out;
}

.pillar-card h3 {
  font-size: 1.5rem;
  margin-bottom: 14px;
}

.pillar-card p {
  font-size: 0.98rem;
  line-height: 1.7;
}

/* SECTION 06 — CONTENT ENGINE */
.engine-stats-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 50px;
}

@media (max-width: 860px) {
  .engine-stats-container {
    grid-template-columns: 1fr;
  }
}

.engine-stat-box {
  background: linear-gradient(180deg, var(--bg-card) 0%, rgba(19, 21, 27, 0.6) 100%);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 40px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.engine-stat-box:hover {
  border-color: var(--accent-gold);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.engine-stat-number {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 5vw, 4.5rem);
  font-weight: 1000;
  line-height: 1;
  margin-bottom: 12px;
}

.engine-stat-label {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.engine-stat-desc {
  font-size: 0.95rem;
  color: var(--text-sub);
}

.monthly-navigator-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.tab-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  color: var(--text-sub);
  padding: 14px 32px;
  border-radius: 100px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.25s ease;
}

.tab-btn:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}

.tab-btn.active {
  background: linear-gradient(135deg, var(--accent-red) 0%, #b82719 100%);
  color: #fff;
  border-color: var(--accent-red);
  box-shadow: var(--shadow-glow-red);
}

/* SECTION 07, 08, 09 — MONTHLY CAMPAIGNS */
.campaign-month-block {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 50px;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .campaign-month-block {
    padding: 30px 20px;
  }
}

.month-badge-tag {
  display: inline-block;
  background: var(--accent-red);
  color: #fff;
  padding: 6px 16px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.month-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

@media (max-width: 992px) {
  .month-details-grid {
    grid-template-columns: 1fr;
  }
}

.month-media-preview {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.month-media-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

.month-deliverables-pills {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 20px 0;
}

.deliverable-pill {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--accent-gold);
}

/* Interactive Before/After / Toggle for October 1985 */
.vintage-compare-container {
  position: relative;
  width: 100%;
  height: 380px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.vintage-compare-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: filter 0.5s ease;
}

.vintage-filter-toggle {
  position: absolute;
  bottom: 16px;
  left: 16px;
  z-index: 5;
  background: rgba(0, 0, 0, 0.8);
  border: 1px solid var(--accent-gold);
  color: #fff;
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
}

/* SECTION 10 — HERO CAMPAIGNS CARDS */
.hero-campaigns-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

@media (max-width: 992px) {
  .hero-campaigns-grid {
    grid-template-columns: 1fr;
  }
}

.hero-camp-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
}

.hero-camp-card:hover {
  border-color: var(--border-active);
  transform: translateY(-8px);
  box-shadow: var(--shadow-card);
}

.camp-card-media {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.camp-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hero-camp-card:hover .camp-card-img {
  transform: scale(1.06);
}

.camp-card-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(9, 10, 13, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 700;
}

.camp-card-content {
  padding: 32px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.camp-card-content h3 {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.camp-card-field {
  margin-bottom: 16px;
}

.camp-card-label {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 4px;
}

.camp-card-text {
  font-size: 0.98rem;
  color: var(--text-sub);
  line-height: 1.6;
}

/* SECTION 11 — VIRAL REELS LAB */
.reels-lab-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 48px;
}

@media (max-width: 768px) {
  .reels-lab-wrapper {
    padding: 24px 16px;
  }
}

.reels-carousel {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 24px;
}

.reel-phone-mockup {
  background: #0f1117;
  border: 2px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  padding: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 480px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
  transition: all 0.3s ease;
  overflow: hidden;
}

.reel-phone-mockup:hover {
  border-color: var(--accent-red);
  transform: translateY(-6px);
  box-shadow: 0 25px 50px rgba(217, 56, 41, 0.25);
}

.reel-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 10px;
  margin-bottom: 14px;
}

.reel-tag {
  background: rgba(217, 56, 41, 0.2);
  color: #ff7675;
  padding: 4px 10px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.78rem;
}

.reel-body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: right;
}

.reel-title {
  font-size: 1.35rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.3;
}

.reel-synopsis {
  font-size: 0.92rem;
  color: var(--text-sub);
  line-height: 1.6;
  background: rgba(255, 255, 255, 0.03);
  padding: 14px;
  border-radius: 12px;
  border-right: 3px solid var(--accent-gold);
}

.reel-stats-bar {
  display: flex;
  align-items: center;
  justify-content: space-around;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 12px;
  margin-top: 14px;
}

.reel-stat-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--text-sub);
  cursor: pointer;
  transition: color 0.2s ease;
}

.reel-stat-item:hover {
  color: var(--accent-red);
}

/* SECTION 12 — SOCIAL MEDIA FEED EXPERIENCE */
.feed-simulator-container {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 40px;
}

@media (max-width: 768px) {
  .feed-simulator-container {
    padding: 20px 14px;
  }
}

.feed-header-profile {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 20px;
}

.feed-profile-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.feed-profile-pic {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent-gold);
}

.feed-filters-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.feed-filter-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-sub);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.feed-filter-btn:hover, .feed-filter-btn.active {
  background: var(--accent-gold);
  color: #000;
  border-color: var(--accent-gold);
  font-weight: 700;
}

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

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

@media (max-width: 600px) {
  .feed-grid {
    grid-template-columns: 1fr;
  }
}

.feed-item-card {
  background: #101218;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.3s ease;
}

.feed-item-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-active);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.feed-item-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.feed-item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feed-item-type-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
}

.feed-item-caption {
  padding: 18px;
}

.feed-item-caption h5 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.feed-item-caption p {
  font-size: 0.9rem;
  color: var(--text-sub);
  line-height: 1.5;
}

/* SECTION 13 — PAID MEDIA */
.paid-media-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

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

.budget-split-visual {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-card);
}

.split-bar-visual {
  display: flex;
  height: 48px;
  border-radius: 100px;
  overflow: hidden;
  margin: 30px 0;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.split-part-60 {
  width: 60%;
  background: linear-gradient(90deg, #d93829 0%, #ff5252 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.1rem;
  transition: width 0.5s ease;
}

.split-part-40 {
  width: 40%;
  background: linear-gradient(90deg, #f59e0b 0%, #fbbf24 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.1rem;
  transition: width 0.5s ease;
}

.split-legend {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.legend-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 20px;
}

.geo-target-chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.geo-chip {
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: var(--accent-gold);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 700;
}

/* Interactive Budget Calculator Widget */
.budget-calc-interactive {
  margin-top: 30px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.budget-slider-control {
  width: 100%;
  height: 8px;
  background: #2a2e3d;
  border-radius: 100px;
  outline: none;
  margin: 16px 0;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
}

.budget-slider-control::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent-gold);
  box-shadow: 0 0 10px var(--accent-gold);
  cursor: pointer;
}

.calc-projections-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 14px;
  font-weight: 700;
}

/* SECTION 14 — GROUND MARKETING / BTL */
.btl-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

@media (max-width: 900px) {
  .btl-cards-grid {
    grid-template-columns: 1fr;
  }
}

.btl-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 36px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btl-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-active);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}

/* Microbus Ticket Styling */
.ticket-mockup {
  background: #fdfaf3;
  color: #1a1a1a;
  border-radius: 14px;
  padding: 20px 24px;
  margin-top: 24px;
  position: relative;
  border: 2px dashed #b5a484;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
  font-family: var(--font-body);
}

.ticket-mockup::before, .ticket-mockup::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--bg-card);
}

.ticket-mockup::before { right: -13px; }
.ticket-mockup::after { left: -13px; }

.ticket-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px dashed #d5c8b2;
  padding-bottom: 12px;
  margin-bottom: 12px;
  font-weight: 800;
  font-size: 1.1rem;
}

.ticket-barcode {
  font-family: monospace;
  font-size: 1.4rem;
  letter-spacing: 4px;
  text-align: center;
  margin-top: 10px;
  color: #555;
}

/* VIP Card Mockup */
.vip-card-mockup {
  background: linear-gradient(135deg, #1f2430 0%, #0d0f14 100%);
  border: 2px solid var(--accent-gold);
  border-radius: 18px;
  padding: 24px;
  margin-top: 24px;
  color: #fff;
  position: relative;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.7);
}

.vip-card-chip {
  width: 44px;
  height: 32px;
  border-radius: 6px;
  background: linear-gradient(135deg, #ffd700 0%, #b8860b 100%);
  margin-bottom: 16px;
}

/* SECTION 15 — CUSTOMER JOURNEY FUNNEL */
.funnel-steps-container {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  position: relative;
}

@media (max-width: 1200px) {
  .funnel-steps-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

@media (max-width: 640px) {
  .funnel-steps-container {
    grid-template-columns: 1fr;
  }
}

.funnel-step-box {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px 18px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.funnel-step-box:hover {
  background: var(--bg-card-hover);
  border-color: var(--accent-gold);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}

.funnel-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 1000;
  color: var(--accent-red);
  margin-bottom: 8px;
}

.funnel-step-box h4 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.funnel-step-box p {
  font-size: 0.88rem;
  color: var(--text-sub);
}

/* SECTION 16 — WHAT SUCCESS LOOKS LIKE */
.kpis-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

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

@media (max-width: 640px) {
  .kpis-grid {
    grid-template-columns: 1fr;
  }
}

.kpi-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.kpi-card:hover {
  border-color: var(--border-active);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}

.kpi-icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: rgba(217, 56, 41, 0.12);
  color: var(--accent-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.kpi-card h4 {
  font-size: 1.35rem;
  margin-bottom: 10px;
}

.kpi-card p {
  font-size: 0.96rem;
  color: var(--text-sub);
  line-height: 1.6;
}

/* SECTION 17 — 90-DAY ROADMAP */
.roadmap-interactive-container {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 48px;
}

@media (max-width: 768px) {
  .roadmap-interactive-container {
    padding: 24px 16px;
  }
}

.roadmap-months-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 30px;
}

@media (max-width: 992px) {
  .roadmap-months-row {
    grid-template-columns: 1fr;
  }
}

.roadmap-col {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
}

.roadmap-col.current {
  border-color: var(--accent-red);
  box-shadow: 0 10px 30px rgba(217, 56, 41, 0.15);
}

.roadmap-month-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 16px;
  margin-bottom: 20px;
}

.roadmap-month-header h3 {
  font-size: 1.4rem;
  color: var(--accent-gold);
}

.roadmap-subgoal {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-top: 4px;
}

.roadmap-tasks-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.roadmap-task-item {
  background: rgba(255, 255, 255, 0.03);
  padding: 14px;
  border-radius: var(--radius-sm);
  border-right: 3px solid var(--accent-gold);
}

.roadmap-task-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 4px;
}

.roadmap-task-title {
  font-size: 0.95rem;
  color: #fff;
  font-weight: 600;
}

/* SECTION 18 — FINAL REVEAL & CTA */
.final-reveal-section {
  min-height: 90vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 0;
  background: radial-gradient(circle at center, #171a24 0%, #060709 85%);
  overflow: hidden;
}

.final-reveal-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.final-logo-wrap {
  width: 130px;
  height: 130px;
  margin: 0 auto 36px auto;
  border-radius: 50%;
  border: 3px solid var(--accent-gold);
  box-shadow: 0 0 50px rgba(245, 158, 11, 0.4);
  overflow: hidden;
  animation: pulseLogo 3s infinite ease-in-out;
}

@keyframes pulseLogo {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 40px rgba(245, 158, 11, 0.3);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 65px rgba(245, 158, 11, 0.6);
  }
}

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

.final-logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.final-quote-one {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 900;
  color: var(--text-sub);
  margin-bottom: 16px;
  line-height: 1.25;
}

.final-quote-two {
  font-size: clamp(2.4rem, 5.8vw, 4.6rem);
  font-weight: 1000;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 24px;
}

.final-tagline {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  color: var(--accent-gold);
  font-weight: 700;
  margin-bottom: 48px;
}

/* Proposal Approval Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.open {
  display: flex;
}

.modal-card {
  background: var(--bg-card);
  border: 1px solid var(--border-active);
  border-radius: var(--radius-xl);
  max-width: 640px;
  width: 100%;
  padding: 48px;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
  text-align: center;
}

@media (max-width: 600px) {
  .modal-card {
    padding: 30px 20px;
  }
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  left: 20px;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.6rem;
  cursor: pointer;
  transition: color 0.2s ease;
}

.modal-close-btn:hover {
  color: #fff;
}

/* Footer Note */
.site-footer {
  background: #060709;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 40px 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.footer-logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin-bottom: 14px;
}
