/* ==========================================================================
   Social Fokus — Base
   ========================================================================== */

:root {
  --bg: #0a0a0c;
  --bg-soft: #101014;
  --bg-card: #16161b;
  --line: rgba(255, 255, 255, 0.08);
  --text: #f5f5f7;
  --text-dim: rgba(245, 245, 247, 0.64);
  --text-faint: rgba(245, 245, 247, 0.4);
  --accent: #ff3d3d;
  --accent-2: #ff8a3d;
  --accent-soft: rgba(255, 61, 61, 0.14);
  --lime: #d4ff3d;
  --font-display: "Bebas Neue", "Manrope", sans-serif;
  --font-body: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

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

::selection {
  background: var(--accent);
  color: #fff;
}

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--accent), var(--accent-2));
  border-radius: 10px;
  border: 2px solid var(--bg);
}

a { color: inherit; text-decoration: none; }
svg { display: block; }

.accent { color: var(--accent); }

.section-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

.tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.6vw, 3.4rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.08;
  text-transform: uppercase;
  margin-bottom: 18px;
  max-width: 900px;
}

.section-sub {
  color: var(--text-dim);
  font-size: 1.05rem;
  max-width: 620px;
  margin-bottom: 48px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 26px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.96rem;
  border: 1px solid transparent;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease), border-color 0.35s var(--ease);
  will-change: transform;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  box-shadow: 0 8px 30px -8px rgba(255, 61, 61, 0.6);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 40px -8px rgba(255, 61, 61, 0.75);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border-color: var(--line);
  backdrop-filter: blur(6px);
}

.btn-ghost:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
}

.btn-lg { padding: 18px 32px; font-size: 1.02rem; }

/* ==========================================================================
   Progress bar / cursor glow / noise
   ========================================================================== */

.progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2), var(--lime));
  z-index: 1000;
  transition: width 0.1s linear;
}

.cursor-glow {
  position: fixed;
  top: 0; left: 0;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 61, 61, 0.10), transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 1;
  transition: opacity 0.4s ease;
  opacity: 0;
}

.noise-layer {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ==========================================================================
   Nav
   ========================================================================== */

.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 32px;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}

.site-nav.scrolled {
  padding: 12px 32px;
  background: rgba(10, 10, 12, 0.75);
  backdrop-filter: blur(16px) saturate(160%);
  border-bottom-color: var(--line);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
}

.logo-mark {
  width: 30px; height: 30px;
  color: var(--text);
  flex-shrink: 0;
}

.logo-play { color: var(--accent); }

.nav-logo-text {
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  font-weight: 400;
}

.nav-logo-text strong { font-weight: 800; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 0.92rem;
  font-weight: 600;
}

.nav-links a:not(.nav-cta) {
  color: var(--text-dim);
  position: relative;
  transition: color 0.3s;
}

.nav-links a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 1.5px;
  background: var(--accent);
  transition: width 0.3s var(--ease);
}

.nav-links a:not(.nav-cta):hover { color: var(--text); }
.nav-links a:not(.nav-cta):hover::after { width: 100%; }

.nav-cta {
  background: var(--text);
  color: var(--bg) !important;
  padding: 10px 20px;
  border-radius: 100px;
  transition: transform 0.3s var(--ease), background 0.3s;
}

.nav-cta:hover {
  transform: translateY(-2px);
  background: var(--accent);
  color: #fff !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 600;
}

.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--text);
  transition: transform 0.3s var(--ease), opacity 0.3s;
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 140px 32px 80px;
  overflow: hidden;
}

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

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
  will-change: transform;
}

.blob-a {
  width: 560px; height: 560px;
  background: radial-gradient(circle, var(--accent), transparent 70%);
  top: -180px; left: -140px;
  animation: float-a 16s ease-in-out infinite;
}

.blob-b {
  width: 480px; height: 480px;
  background: radial-gradient(circle, #6b3dff, transparent 70%);
  bottom: -200px; right: -120px;
  opacity: 0.35;
  animation: float-b 20s ease-in-out infinite;
}

@keyframes float-a {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(60px, 40px) scale(1.1); }
}

@keyframes float-b {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-50px, -30px) scale(1.15); }
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black, transparent);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 880px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  border: 1px solid var(--line);
  padding: 8px 16px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.03);
  margin-bottom: 28px;
}

.live-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(255, 61, 61, 0.6);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 61, 61, 0.55); }
  70% { box-shadow: 0 0 0 9px rgba(255, 61, 61, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 61, 61, 0); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 9vw, 6.4rem);
  line-height: 0.98;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 30px;
}

.reveal-line { display: block; overflow: hidden; padding-bottom: 4px; }

.reveal-word {
  display: inline-block;
  transform: translateY(115%);
  opacity: 0;
}

.hero.in-view .reveal-word {
  animation: word-up 0.9s var(--ease) forwards;
}

.hero.in-view .reveal-line:nth-child(1) .reveal-word { animation-delay: 0.05s; }
.hero.in-view .reveal-line:nth-child(2) .reveal-word { animation-delay: 0.18s; }
.hero.in-view .reveal-line:nth-child(3) .reveal-word { animation-delay: 0.3s; }

@keyframes word-up {
  to { transform: translateY(0); opacity: 1; }
}

.hero-sub {
  font-size: 1.12rem;
  color: var(--text-dim);
  max-width: 620px;
  margin-bottom: 38px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 60px;
}

.hero-stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 36px;
  border-top: 1px solid var(--line);
  width: 100%;
}

.hero-stat { text-align: center; }

.hero-stat .count-up,
.client-stat .count-up,
.client-stat span:first-child {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--text);
  font-weight: 400;
}

.hero-stat small,
.client-stat small {
  color: var(--text-faint);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

/* reveal generic (elements with data-reveal not inside hero title) */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.in-view { opacity: 1; transform: translateY(0); }

.scroll-cue {
  position: absolute;
  bottom: 34px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 26px; height: 42px;
  border: 2px solid var(--text-faint);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.scroll-cue span {
  width: 4px; height: 8px;
  border-radius: 4px;
  background: var(--accent);
  animation: scroll-cue 1.6s infinite;
}

@keyframes scroll-cue {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(12px); opacity: 0; }
  100% { opacity: 0; }
}

/* ==========================================================================
   Platforms
   ========================================================================== */

.platforms {
  padding: 60px 0 70px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-soft);
}

.platforms-label {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 34px;
}

.platform-row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 56px;
  flex-wrap: wrap;
}

.platform-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text-dim);
  transition: transform 0.35s var(--ease);
}

.platform-item:hover { transform: translateY(-5px); }

.platform-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.platform-icon svg { width: 30px; height: 30px; }

.platform-item:hover .platform-icon {
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 14px 30px -12px rgba(0, 0, 0, 0.6);
}

/* ==========================================================================
   Video Section
   ========================================================================== */

.video-section { padding: 130px 0; text-align: center; }
.video-section .section-inner { display: flex; flex-direction: column; align-items: center; }
.video-section h2 { margin-left: auto; margin-right: auto; }
.video-section .section-sub { margin-left: auto; margin-right: auto; text-align: center; }

.video-frame {
  position: relative;
  width: 100%;
  max-width: 920px;
  aspect-ratio: 16 / 9;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, 0.8);
}

.video-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(ellipse at center, rgba(255, 61, 61, 0.25), transparent 65%);
  filter: blur(20px);
  z-index: -1;
}

.video-frame iframe {
  width: 100%; height: 100%;
  border: 0;
  display: block;
}

/* ==========================================================================
   Features
   ========================================================================== */

.features { padding: 100px 0; }

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

.feature-card {
  background: linear-gradient(160deg, var(--bg-card), var(--bg-soft));
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 32px 26px;
  transition: transform 0.45s var(--ease), border-color 0.45s var(--ease), box-shadow 0.45s var(--ease);
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 61, 61, 0.4);
  box-shadow: 0 20px 50px -25px rgba(255, 61, 61, 0.35);
}

.feature-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-icon svg { width: 24px; height: 24px; }

.feature-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.feature-card p {
  color: var(--text-dim);
  font-size: 0.95rem;
}

/* ==========================================================================
   Process / timeline
   ========================================================================== */

.process { padding: 100px 0; background: var(--bg-soft); }

.timeline {
  position: relative;
  margin-top: 50px;
  display: grid;
  gap: 46px;
}

.timeline-line {
  position: absolute;
  top: 8px; bottom: 8px; left: 27px;
  width: 2px;
  background: var(--line);
}

.timeline-fill {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 0%;
  background: linear-gradient(var(--accent), var(--accent-2));
  transition: height 0.2s linear;
}

.timeline-step {
  position: relative;
  padding-left: 74px;
  max-width: 640px;
}

.step-num {
  position: absolute;
  left: 0; top: -6px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--accent);
}

.timeline-step h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  font-weight: 700;
}

.timeline-step p { color: var(--text-dim); font-size: 0.96rem; }

/* ==========================================================================
   Clients / marquee
   ========================================================================== */

.clients { padding: 100px 0 90px; }
.clients .section-inner { text-align: center; }
.clients h2 { margin-left: auto; margin-right: auto; }
.clients .section-sub { margin-left: auto; margin-right: auto; }

.marquee {
  width: 100%;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 30px 0;
  margin: 10px 0 60px;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 60px;
  animation: marquee 28s linear infinite;
}

.marquee-track span {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  text-transform: uppercase;
  color: var(--text-faint);
  white-space: nowrap;
  transition: color 0.3s;
}

.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span:hover { color: var(--accent); }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.client-stats {
  display: flex;
  justify-content: center;
  gap: 70px;
  flex-wrap: wrap;
}

.client-stat { text-align: center; }

/* ==========================================================================
   About
   ========================================================================== */

.about { padding: 110px 0; background: var(--bg-soft); }

.about-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  align-items: center;
}

.about-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 24px;
  background: linear-gradient(160deg, #1a1a20, #000);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255, 61, 61, 0.25), transparent 55%);
}

.about-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 25%;
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}

.about-photo[data-profile-photo="martin"] { object-position: 32% 22%; }

.about[data-active-profile="martin"] .about-photo[data-profile-photo="martin"] { opacity: 1; }
.about[data-active-profile="juha"] .about-photo[data-profile-photo="juha"] { opacity: 1; }

.about-frame-num {
  position: absolute;
  bottom: 20px; right: 20px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: #fff;
  background: rgba(10, 10, 12, 0.55);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 6px 14px;
  border-radius: 100px;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}

.about[data-active-profile="martin"] .about-frame-num[data-profile-badge="martin"] { opacity: 1; }
.about[data-active-profile="juha"] .about-frame-num[data-profile-badge="juha"] { opacity: 1; }

.about-text p:not(.tag) {
  color: var(--text-dim);
  margin-bottom: 20px;
  font-size: 1.02rem;
  max-width: 560px;
}

.profile-panel {
  transition: opacity 0.3s var(--ease);
}

.profile-panel.is-fading { opacity: 0; }

.team-credit {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  padding: 10px 16px 10px 10px;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.03);
  width: fit-content;
  cursor: pointer;
  font: inherit;
  text-align: left;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease), transform 0.3s var(--ease);
}

.team-credit:hover {
  border-color: rgba(255, 61, 61, 0.4);
  background: rgba(255, 61, 61, 0.06);
  transform: translateY(-2px);
}

.team-credit:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

.team-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 44%;
  flex-shrink: 0;
}

.team-credit p {
  margin: 0;
  font-size: 0.86rem;
  color: var(--text-faint);
}

.team-credit strong { color: var(--text-dim); font-weight: 700; }

.about-text .btn { margin-top: 6px; }

/* ==========================================================================
   Final CTA
   ========================================================================== */

.cta-final {
  padding: 130px 0;
  position: relative;
  text-align: center;
  overflow: hidden;
}

.cta-final::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(255, 61, 61, 0.14), transparent 65%);
  transform: translate(-50%, -50%);
  z-index: 0;
}

.cta-inner { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; }
.cta-final h2 { text-align: center; }
.cta-final .section-sub { text-align: center; margin-left: auto; margin-right: auto; }

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  padding: 60px 0 34px;
  border-top: 1px solid var(--line);
  text-align: center;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.footer-tag {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: var(--text-faint);
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text-dim);
  margin: 6px 0;
}

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

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-faint);
  margin-top: 10px;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 900px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .about-frame { max-width: 340px; margin: 0 auto; }
}

@media (max-width: 720px) {
  .nav-links {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(78vw, 320px);
    background: rgba(10, 10, 12, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    transform: translateX(100%);
    transition: transform 0.45s var(--ease);
    border-left: 1px solid var(--line);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-toggle { display: flex; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .feature-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 30px; }
  .client-stats { gap: 40px; }
  .hero-actions .btn, .cta-inner .btn { width: 100%; justify-content: center; }
  .hero-actions, .cta-inner .hero-actions { flex-direction: column; width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
