/* --- Global Styles & Variables --- */
:root {
  --bg: #ffffff;
  --fg: #0b0d13;
  --muted: #5c6775;
  --pri: #EB3F3F;
  --pri2: #c53030;
  --card: #ffffff;
  --bd: #e5e7eb;
  --trend: #28a745;
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}
html,
body,
#root {
  margin: 0;
  padding: 0;
  height: 100%;
}
body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Satoshi', Inter, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  line-height: 1.5;
}
a,
button {
  touch-action: manipulation;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
h1,
h2,
.card-tt {
  font-family: 'Clash Display', sans-serif;
  font-weight: 600;
}

/* --- Dark Theme --- */
.dark-theme {
  --bg: #0b0d13;
  --fg: #ffffff;
  --muted: #9aa3af;
  --card: #0f121a;
  --bd: #1f2430;
  background: linear-gradient(180deg, #0b0d13, #0f121a);
  color: var(--fg);
}
.dark-theme p {
  color: #cbd5e1;
}
.dark-theme .stat {
  background: #0c1018;
  border: 1px solid var(--bd);
}

/* --- Unified Header / Navigation --- */
.nav {
  position: sticky;
  top: 0;
  border-bottom: 1px solid var(--bd);
  /* BEST PRACTICES UPDATE: Using variable for theme consistency */
  background: var(--bg);
  z-index: 30;
}
.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 72px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 100;
  text-decoration: none;
  color: inherit;
}
.brand .mark {
  height: 55px;
  display: block;
}
.menu-btn {
  display: block;
  z-index: 100;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}
.menu-btn .bar {
  display: block;
  width: 24px;
  height: 3px;
  background: #0b0d13;
  margin: 5px 0;
  transition: all 0.3s ease;
}
.menu-btn.is-open .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.menu-btn.is-open .bar:nth-child(2) {
  opacity: 0;
}
.menu-btn.is-open .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
.links {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  gap: 32px;
  padding: 0;
  margin: 0;
}
.links.is-open {
  transform: translateX(0);
}
.links a,
.links .blog-link {
  position: relative;
  color: #0b0d13;
  text-decoration: none;
  font-weight: 600;
  font-size: 24px;
  transition: color 0.2s ease;
}
.links a:hover {
  color: var(--pri);
}
.links a::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: -4px;
  left: 0;
  background: var(--pri);
  transform-origin: bottom right;
  transition: transform 0.25s;
}
.links a:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}
.soon-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffe5e5;
  color: var(--pri);
  padding: 1px 6px;
  font-size: 10px;
  font-weight: 700;
  border-radius: 99px;
  border: 1px solid var(--pri);
  line-height: 1.4;
}
.nav-cta {
  display: none;
}
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--pri);
  color: #fff;
  padding: 8px;
  z-index: 100;
  transition: top 0.3s;
}
.skip-link:focus {
  top: 10px;
}
.breadcrumbs {
  font-size: 14px;
  padding: 16px 24px;
  color: var(--muted);
  border-top: 1px solid var(--bd);
  max-width: 1200px;
  margin: 0 auto;
}
.breadcrumbs a {
  color: inherit;
  text-decoration: none;
}
.breadcrumbs a:hover {
  text-decoration: underline;
}

@media (min-width: 860px) {
  .menu-btn {
    display: none;
  }
  .links {
    position: static;
    transform: none;
    flex-direction: row;
    height: auto;
    width: auto;
    background: none;
    backdrop-filter: none;
    gap: 22px;
  }
  .links a,
  .links .blog-link {
    font-size: inherit;
  }
  .links .contact-mobile-link {
    display: none;
  }
  .nav-cta {
    display: block;
  }
}

/* --- Common Components (Buttons, Cards, etc.) --- */
.btn {
  box-sizing: border-box;
  display: inline-block;
  padding: 12px 18px;
  border-radius: 12px;
  background: linear-gradient(90deg, var(--pri), var(--pri2));
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  box-shadow: 0 8px 28px rgba(235, 63, 63, 0.22);
  transition: all 0.2s ease;
  cursor: pointer;
  margin: 4px;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(235, 63, 63, 0.25);
  filter: brightness(95%);
}
.btn.ghost {
  background: transparent;
  border: 1px solid var(--bd);
  color: var(--pri);
  box-shadow: none;
  font-weight: 500;
}
.btn.ghost:hover {
  background: var(--pri);
  border-color: var(--pri);
  color: #fff;
  filter: brightness(100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(235, 63, 63, 0.25);
}
.dark-theme .btn.ghost {
  color: #fff;
  border-color: var(--bd);
}
.dark-theme .btn.ghost:hover {
  background: var(--pri);
  border-color: var(--pri);
  color: #fff;
}
.btn.outline {
  background: transparent;
  border: 1px solid var(--pri);
  color: var(--pri);
  box-shadow: none;
}
.btn.outline:hover {
  background: var(--pri);
  color: #fff;
}
.btn.full {
  display: block;
  text-align: center;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}
.badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--pri);
  color: #fff;
  font-size: 12px;
  border: 1px solid rgba(235, 63, 63, 0.35);
  font-weight: 700;
  letter-spacing: 0.02em;
}
.hero .badge {
  font-size: 16px;
  padding: 8px 16px;
}
.card {
  background: var(--card);
  border: 1px solid var(--bd);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  transition: all 0.2s ease;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-color: rgba(235, 63, 63, 0.25);
}
.card.focus {
  border-color: rgba(235, 63, 63, 0.55);
  box-shadow: 0 12px 40px rgba(235, 63, 63, 0.1);
}
.card .spacer {
  flex: 1;
}
.card .btn {
  margin-top: auto;
}
.card-hd {
  margin-bottom: 12px;
}
.card-tt {
  font-family: 'Clash Display', sans-serif;
}
.card-ds {
  color: var(--muted);
}
ul.bul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 15px;
  color: var(--muted);
}
ul.bul li {
  margin-bottom: 8px;
  line-height: 1.4;
}
.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 6px;
  font-size: 14px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid var(--bd);
  background: var(--bg);
  color: var(--fg);
  box-sizing: border-box;
  transition: border-color 0.2s ease;
}
.form-group input.invalid {
  border-color: var(--pri);
}
.thank-you-message {
  text-align: center;
  padding: 40px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--pri);
  outline-offset: 2px;
  border-radius: 8px;
}

@media (prefers-reduced-motion: reduce) {
  .hero-img img,
  .card,
  .btn,
  .reveal,
  .scroller[data-animated="true"] .scroller__inner {
    transition: none;
    transform: none;
    animation: none;
  }
}

/* --- INDEX PAGE: Hero Section --- */
.hero {
  position: relative;
  padding: 64px 0 72px;
}
.hero-split {
  display: grid;
  gap: 48px;
  align-items: center;
  grid-template-columns: 1fr;
  text-align: center;
}
.hero .left {
  max-width: 80ch;
  margin: 0 auto;
}
.hero .row.gap {
  justify-content: center;
}
.hero h1 {
  font-size: 54px;
  line-height: 1.05;
  margin: 10px 0 14px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.hero p {
  font-size: 1rem;
}
.hero-img {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}
.hero-img img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 21/9;
  object-fit: cover;
  object-position: 50% 38%;
  transform: scale(var(--z, 1)) translateY(var(--ty, 0px));
  transition: transform 0.15s ease;
  will-change: transform;
}
@media (max-width: 960px) {
  .hero-img img {
    aspect-ratio: 16/9;
  }
}
.hero-fallback {
  position: absolute;
  inset: 0;
  background: radial-gradient(1200px 500px at 40% -10%, rgba(235, 63, 63, 0.55), transparent 60%), linear-gradient(120deg, #1f2330, #101218 60%);
}
.hl {
  background: linear-gradient(90deg, var(--pri), var(--pri2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}
.stat {
  flex: 1 1 150px;
  min-width: 150px;
  text-align: center;
  border-radius: 14px;
  padding: 14px;
}
.stat-v {
  font-size: 24px;
  font-weight: 700;
}
.stat-l {
  font-size: 12px;
  opacity: 0.9;
}
h2 {
  font-size: 38px;
  margin: 0;
  transition: all 0.22s ease;
  font-weight: 600;
  opacity: 0.85;
}
h2:hover {
  opacity: 1;
}
.section-title {
  margin-bottom: 32px;
}
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}
.muted {
  color: var(--muted);
}
.tiny {
  font-size: 12px;
}
.small {
  font-size: 14px;
}
.pad {
  padding: 80px 0;
}
.soft {
  background: linear-gradient(180deg, #f8f9fa, #ffffff00);
}
.grid-auto-fit {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.grid2 {
  display: grid;
  gap: 24px;
}
@media (min-width: 900px) {
  .grid2 {
    grid-template-columns: 1fr 1fr;
  }
}
.grid3 {
  display: grid;
  gap: 20px;
}
@media (min-width: 980px) {
  .grid3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
.grid4 {
  display: grid;
  gap: 20px;
}
@media (min-width: 640px) {
  .grid4 {
    grid-template-columns: 1fr 1fr;
  }
}
.row {
  display: flex;
}
.row.center {
  justify-content: center;
}
.row.gap {
  gap: 12px;
}
.row.end {
  justify-content: flex-end;
}
.platforms {
  padding: 40px 0;
}
.platforms-title {
  text-align: center;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 24px;
}
.scroller {
  max-width: 100%;
}
.scroller__inner {
  padding: 1rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}
.scroller[data-animated="true"] {
  overflow: hidden;
  -webkit-mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
  mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
}
.scroller[data-animated="true"] .scroller__inner {
  width: max-content;
  flex-wrap: nowrap;
  animation: scroll 40s linear infinite;
}
@keyframes scroll {
  to {
    transform: translate(calc(-50% - 0.5rem));
  }
}
.platform-logo {
  height: 40px;
  width: auto;
  max-width: 140px;
  filter: grayscale(100%) opacity(0.6);
  transition: all 0.3s ease;
  margin: 0 32px;
}
.platform-logo:hover {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.1);
}

/* --- ABOUT PAGE: Specific Styles --- */
.about-section {
  padding: 64px 0;
}
.about-section .container {
  max-width: 1000px;
}
.main-title {
  font-size: 4rem;
  text-align: left;
  margin-bottom: 40px;
  line-height: 1.1;
}
.magazine-content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
.main-story p {
  font-size: 1.1rem;
  line-height: 1.7;
  text-align: justify;
}
.dropcap {
  font-size: 6em;
  float: left;
  line-height: 0.8;
  margin: 0.1em 0.1em 0 0;
}
.story-image {
  width: 100%;
  height: auto;
  filter: grayscale(100%);
  display: block;
  border-radius: 16px;
}
.detailed-services {
  margin-top: 40px;
}
.detailed-services h2,
.sidebar-content h2 {
  font-size: 2rem;
  margin-bottom: 24px;
  border-bottom: 2px solid var(--pri);
  padding-bottom: 12px;
}
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.service-item {
  padding-left: 24px;
  position: relative;
}
.service-item::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--pri);
  font-weight: 700;
}
.sidebar-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sidebar-list li {
  margin-bottom: 16px;
  font-size: 1.1rem;
}
.cta-content {
  background: #f9f9f9;
  padding: 40px;
  text-align: center;
  margin-top: 60px;
  border-top: 2px solid var(--pri);
  border-radius: 16px;
}
.cta-content h2 {
  font-size: 2.5rem;
  margin-top: 0;
}
.growth-chart {
  margin-top: 40px;
  height: 200px;
  width: 100%;
}
.growth-chart svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}
.growth-chart .grid-line {
  stroke: var(--bd);
  stroke-width: 1;
}
.growth-chart .label {
  font-size: 12px;
  fill: var(--muted);
  text-anchor: middle;
}
.growth-chart .main-line,
.growth-chart .trend-line {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
}
.growth-chart .trend-line {
  stroke-dasharray: 10;
}
.growth-chart.is-visible .main-line,
.growth-chart.is-visible .trend-line {
  animation: draw-line 2s ease-out forwards;
}
.growth-chart.is-visible .trend-line {
  animation-delay: 0.5s;
}
.growth-chart .fill-area {
  stroke: none;
  opacity: 0;
}
.growth-chart.is-visible .fill-area {
  animation: fade-in 1s ease-out 1s forwards;
}
@keyframes draw-line {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes fade-in {
  to {
    opacity: 1;
  }
}
@media (min-width: 900px) {
  .magazine-content-grid {
    grid-template-columns: 1.3fr 1fr;
    gap: 60px;
  }
}
@media (min-width: 700px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 899px) {
  .main-title {
    font-size: 3rem;
  }
}

/* --- FAQ PAGE: Specific Styles --- */
.faq-section {
  padding: 80px 0;
  background: #f8f9fa;
}
.faq-container {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 24px;
}
.faq-header {
  text-align: center;
  margin-bottom: 56px;
}
.faq-header h1 {
  font-size: 48px;
  margin: 0 0 12px;
}
.faq-header p {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 65ch;
  margin: 0 auto;
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.faq details {
  border: 1px solid var(--bd);
  border-radius: 16px;
  background: #ffffff;
  margin-bottom: 16px;
  transition: box-shadow 0.2s ease;
}
.faq details:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.faq summary {
  position: relative;
  padding: 20px 50px 20px 24px;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.1rem;
  list-style: none;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary::after {
  content: '›';
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  font-size: 24px;
  color: var(--pri);
  transition: transform 0.2s ease;
}
.faq details[open] > summary::after {
  transform: translateY(-50%) rotate(-90deg);
}
.faq details div {
  padding: 0 24px 20px;
  color: var(--muted);
}
.faq summary:focus-visible {
  outline: 2px solid var(--pri);
  outline-offset: 2px;
  border-radius: 14px;
}
.cta-section {
  padding: 60px 24px;
  text-align: center;
  background: #ffffff;
  border-top: 1px solid var(--bd);
}
.cta-section h2 {
  font-size: 32px;
  margin: 0 0 12px;
}
@media (min-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}

/* --- LEGAL PAGE: Specific Styles --- */
.legal-content-section {
  padding: 80px 0;
}
.legal-container {
  max-width: 80ch;
  margin: 0 auto;
  padding: 0 24px;
}
.legal-container h1 {
  font-size: 42px;
  margin-bottom: 24px;
  text-align: center;
}
.legal-container h2 {
  font-size: 32px;
  margin-top: 64px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--bd);
  opacity: 0.85;
}
.legal-container h3 {
  font-size: 22px;
  margin-top: 24px;
  margin-bottom: 8px;
  opacity: 0.85;
}
.legal-container p,
.legal-container ul {
  margin-bottom: 1.25rem;
  color: var(--muted);
}
.legal-container a {
  color: var(--pri);
  text-decoration: none;
  font-weight: 500;
}
.legal-container a:hover {
  text-decoration: underline;
}
.legal-container ul {
  list-style: disc;
  padding-left: 20px;
}
.toc {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 48px;
  padding: 16px;
  background-color: #fff5f5;
  border: 1px solid #fed7d7;
  border-radius: 12px;
}
.toc a {
  text-decoration: none;
  font-weight: 600;
  color: var(--muted);
  padding: 8px 12px;
  border-radius: 8px;
  transition: all 0.2s ease;
}
.toc a:hover {
  background-color: var(--pri);
  color: #fff;
}

/* --- THANK YOU PAGE: Specific Styles --- */
.thank-you-wrap {
  min-height: calc(100vh - 200px);
  display: grid;
  place-items: center;
  padding: 24px;
  background: #f8f9fa;
}
.thank-you-card {
  background: #ffffff;
  border: 1px solid var(--bd);
  border-radius: 16px;
  padding: 44px 36px;
  max-width: 560px;
  width: 100%;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.thank-you-card h1 {
  font-size: 38px;
  margin: 0 0 12px;
  color: var(--pri);
}
.thank-you-card p {
  margin: 0 0 22px;
  color: var(--muted);
}
.thank-you-card .links {
  all: unset;
  margin-top: 14px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.thank-you-card .btn {
  color: #fff;
}
.thank-you-card .btn:hover {
  color: #fff;
}

/* --- Unified Footer --- */
.footer {
  border-top: 1px solid var(--bd);
  padding: 36px 0;
  background: var(--bg);
}
.foot {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
  color: var(--fg);
}
.footer .bold {
  font-weight: 700;
}
.footer .tiny {
  font-size: 12px;
}
.footer .small {
  font-size: 14px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 12px;
}
.footer-links a {
  position: relative;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-links a:hover {
  color: var(--pri);
}
.footer-links a::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--pri);
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}
.footer-links a:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}
.social-links {
  display: flex;
  gap: 16px;
  justify-content: center;
}
.social-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--muted);
  transition: fill 0.2s ease;
}
.social-icon.tiktok:hover svg {
  fill: #000000;
}
.social-icon.whatsapp:hover svg {
  fill: #25D366;
}
.social-icon.instagram:hover svg {
  fill: #d6249f;
}
.social-icon.linkedin:hover svg {
  fill: #0A66C2;
}
@media (min-width: 900px) {
  .foot {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    text-align: left;
    gap: 12px;
  }
  .foot > div:nth-child(2) {
    text-align: center;
  }
  .foot > div:nth-child(3) {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
  }
  .footer-links {
    justify-content: flex-end;
  }
  .social-links {
    justify-content: flex-end;
  }
}

/* --- Utilities --- */
.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--pri);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transform: translateY(100px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 100;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 899px) {
  .back-to-top {
    width: 40px;
    height: 40px;
    font-size: 20px;
    right: 15px;
    bottom: 80px;
  }
}

/* --- 404 PAGE: Specific Styles --- */
.error-wrap {
  min-height: calc(100vh - 200px);
  display: grid;
  place-items: center;
  padding: 24px;
  background: #f8f9fa;
}
.error-card {
  background: #ffffff;
  border: 1px solid var(--bd);
  border-radius: 16px;
  padding: 44px 36px;
  max-width: 560px;
  width: 100%;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.error-code {
  font-size: 6rem;
  font-weight: 600;
  line-height: 1;
  margin: 0 0 12px;
  color: var(--pri);
  font-family: 'Clash Display', sans-serif;
}
.error-message {
  font-size: 2rem;
  margin: 0 0 12px;
  font-family: 'Clash Display', sans-serif;
}
.error-card p {
  margin: 0 0 22px;
  color: var(--muted);
}
.error-card .links {
  all: unset;
  margin-top: 14px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Section eyebrow: light red fill + corporate red border for selected sections */
#services .section-title .badge,
#playbook .section-title .badge,
#case-studies .section-title .badge,
#engagement .section-title .badge,
#home-faq .section-title .badge {
  background: #FFF3F3;
  color: var(--pri);
  border: 1px solid var(--pri);
}


/* Contact form: soft light red inner background; keep section and cards white */
#contact .form {
  background: #FFF5F5;
  border-radius: 14px;
  padding: 16px;
}


/* === Boutique Service Icons === */
.ico { width:24px; height:24px; margin-right:8px; color:#0b0d13; vertical-align:-4px; }
.card:hover .ico { filter: brightness(1.02); }

/* Auto-rotate globe when card is revealed on scroll */
@keyframes spin-slow { from { transform: rotate(0deg);} to { transform: rotate(360deg);} }
.reveal-visible .ico-globe { animation: spin-slow 12s linear infinite; transform-origin:50% 50%; }

/* Funnel hover lift */
.card:hover .ico-funnel { transform: translateY(-1px); transition: transform .2s ease; }

/* Mini chart bars rise slightly */
.ico-chart .bar { transition: transform .18s ease; }
.card:hover .ico-chart .bar.b1 { transform: translateY(-1px); }
.card:hover .ico-chart .bar.b2 { transform: translateY(-2px); }
.card:hover .ico-chart .bar.b3 { transform: translateY(-3px); }



/* ====== Icon Animations (Services icons only) ====== */
.ico { width:24px; height:24px; margin-right:8px; color:var(--fg); vertical-align:-4px; }

/* Radar pulse (sequenced) */
.ico-radar .radar-wave { opacity:0; transform:scale(0.5); transform-origin:center; stroke-width:1.8; }
.reveal-visible .ico-radar .wave-1 { animation: radarPulse 2s infinite; }
.reveal-visible .ico-radar .wave-2 { animation: radarPulse 2s infinite 0.4s; }
.reveal-visible .ico-radar .wave-3 { animation: radarPulse 2s infinite 0.8s; }

@keyframes radarPulse {
  0% { opacity:0; transform:scale(0.5); }
  30% { opacity:1; transform:scale(1); }
  80% { opacity:0; transform:scale(1.35); }
  100% { opacity:0; }
}

/* Globe gentle sway while visible */
.reveal-visible .ico-globe { animation: globeSway 3s ease-in-out infinite alternate; }
@keyframes globeSway { 0% { transform: translateX(-1px) rotate(-5deg); } 100% { transform: translateX(1px) rotate(5deg); } }

/* Chart bar dance (staggered) */
.reveal-visible .ico-chart .line-1 { animation: barDance1 2.2s ease-in-out infinite; }
.reveal-visible .ico-chart .line-2 { animation: barDance2 2.2s ease-in-out infinite; }
.reveal-visible .ico-chart .line-3 { animation: barDance3 2.2s ease-in-out infinite; }

@keyframes barDance1 { 0%,100% { height:8px; y:14; } 50% { height:12px; y:10; } }
@keyframes barDance2 { 0%,100% { height:12px; y:10; } 50% { height:16px; y:6; } }
@keyframes barDance3 { 0%,100% { height:16px; y:6; } 50% { height:10px; y:12; } }
