/* ============================================================
   Smart Media — Landing Page Styles
   Brand: golden amber #FFB800 · deep purple #5B2A86 · magenta #C724B1
   Mobile-first · RTL-aware (logical properties) · reduced-motion safe
   ============================================================ */

:root {
  /* Brand palette */
  --amber: #ffb800;
  --amber-soft: #ffd35c;
  --purple: #5b2a86;
  --purple-deep: #3d1660;
  --purple-ink: #2b0a4a;
  --magenta: #c724b1;
  --magenta-bright: #e844d0;

  /* Neutrals */
  --bg: #fdfbff;
  --surface: #ffffff;
  --ink: #241335;
  --ink-soft: #5d5170;
  --line: rgba(91, 42, 134, 0.12);

  /* Effects */
  --grad-brand: linear-gradient(100deg, var(--amber) 0%, var(--magenta) 52%, var(--purple) 100%);
  --grad-soft: linear-gradient(135deg, rgba(255, 184, 0, 0.14), rgba(199, 36, 177, 0.12), rgba(91, 42, 134, 0.14));
  --shadow-card: 0 18px 50px -18px rgba(61, 22, 96, 0.25);
  --shadow-glow: 0 10px 40px -8px rgba(199, 36, 177, 0.45);
  --glass: rgba(255, 255, 255, 0.66);
  --glass-border: rgba(255, 255, 255, 0.75);

  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 12px;

  --font-en: "Inter", "Segoe UI", system-ui, sans-serif;
  --font-ar: "Tajawal", "Inter", system-ui, sans-serif;

  --nav-h: 72px;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 12px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-en);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
  min-width: 320px;
}

[dir="rtl"] body { font-family: var(--font-ar); }

img, video, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
input { font: inherit; }

::selection { background: rgba(199, 36, 177, 0.25); }

/* Skip link */
.skip-link {
  position: absolute;
  inset-inline-start: -999px;
  top: 8px;
  background: var(--purple);
  color: #fff;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  z-index: 999;
}
.skip-link:focus { inset-inline-start: 8px; }

/* ---------- Background ambience ---------- */
.bg-ambience {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}
.bg-ambience::before {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(38% 32% at 12% 8%, rgba(255, 184, 0, 0.16), transparent 70%),
    radial-gradient(42% 38% at 88% 18%, rgba(199, 36, 177, 0.14), transparent 70%),
    radial-gradient(46% 42% at 55% 95%, rgba(91, 42, 134, 0.16), transparent 70%);
}
.bg-grain { display: none; }

.ribbon {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
  will-change: transform;
}
.ribbon-1 {
  width: 46vw; height: 46vw; min-width: 300px; min-height: 300px;
  top: -12%; inset-inline-end: -10%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 184, 0, 0.5), transparent 65%);
  animation: drift 22s ease-in-out infinite alternate;
}
.ribbon-2 {
  width: 40vw; height: 40vw; min-width: 260px; min-height: 260px;
  top: 30%; inset-inline-start: -14%;
  background: radial-gradient(circle at 60% 40%, rgba(199, 36, 177, 0.4), transparent 65%);
  animation: drift 26s ease-in-out infinite alternate-reverse;
}
.ribbon-3 {
  width: 34vw; height: 34vw; min-width: 240px; min-height: 240px;
  bottom: 4%; inset-inline-end: 18%;
  background: radial-gradient(circle at 50% 50%, rgba(91, 42, 134, 0.42), transparent 65%);
  animation: drift 30s ease-in-out infinite alternate;
}

@keyframes drift {
  from { transform: translate3d(0, 0, 0) rotate(0deg) scale(1); }
  to   { transform: translate3d(4%, -5%, 0) rotate(12deg) scale(1.08); }
}

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: 1140px;
  margin-inline: auto;
  padding-inline: 20px;
}

section { padding-block: clamp(64px, 9vw, 110px); position: relative; }

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--purple);
  background: rgba(91, 42, 134, 0.08);
  border: 1px solid rgba(91, 42, 134, 0.16);
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 18px;
}
[dir="rtl"] .section-badge { letter-spacing: 0; }

.section-title {
  font-size: clamp(1.7rem, 4.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--purple-ink);
  margin-bottom: 14px;
}
.section-sub {
  color: var(--ink-soft);
  font-size: clamp(1rem, 2.4vw, 1.12rem);
  max-width: 640px;
}
.section-head { text-align: center; margin-bottom: clamp(36px, 6vw, 56px); }
.section-head .section-sub { margin-inline: auto; }

.grad-text {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1rem;
  padding: 15px 30px;
  border-radius: 100px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  min-height: 52px;
  text-align: center;
}
.btn-primary {
  background: var(--grad-brand);
  color: #fff;
  box-shadow: var(--shadow-glow);
}
.btn-primary:hover,
.btn-primary:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 16px 46px -10px rgba(199, 36, 177, 0.55);
}
.btn-ghost {
  background: var(--glass);
  color: var(--purple-deep);
  border: 1.5px solid rgba(91, 42, 134, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.btn-ghost:hover,
.btn-ghost:focus-visible {
  transform: translateY(-3px);
  border-color: var(--magenta);
  color: var(--magenta);
}
.btn:active { transform: translateY(0) scale(0.98); }
.btn:focus-visible,
a:focus-visible,
input:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(255, 184, 0, 0.65);
  outline-offset: 2px;
}

/* ---------- Sticky nav ---------- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(253, 251, 255, 0.78);
  backdrop-filter: blur(18px) saturate(1.5);
  -webkit-backdrop-filter: blur(18px) saturate(1.5);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.site-nav.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 10px 34px -18px rgba(61, 22, 96, 0.3);
}
.nav-inner {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 18px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-logo img { height: 44px; width: auto; border-radius: 10px; }
.nav-logo span {
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--purple-ink);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.nav-links {
  display: none;
  align-items: center;
  gap: 26px;
  margin-inline-start: auto;
}
.nav-links a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink-soft);
  transition: color 0.2s ease;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  bottom: -6px;
  width: 0;
  height: 3px;
  border-radius: 3px;
  background: var(--grad-brand);
  transition: width 0.25s ease;
}
.nav-links a:hover { color: var(--purple-deep); }
.nav-links a:hover::after { width: 100%; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-inline-start: auto;
}
.nav-links ~ .nav-actions { margin-inline-start: 0; }

.lang-toggle {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--purple-deep);
  border: 1.5px solid rgba(91, 42, 134, 0.3);
  padding: 8px 16px;
  border-radius: 100px;
  transition: all 0.25s ease;
  background: rgba(255, 255, 255, 0.6);
  min-height: 40px;
}
.lang-toggle:hover {
  background: var(--purple);
  border-color: var(--purple);
  color: #fff;
}

.nav-cta {
  padding: 10px 22px;
  min-height: 42px;
  font-size: 0.92rem;
}

.menu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  color: var(--purple-deep);
  border: 1.5px solid rgba(91, 42, 134, 0.3);
  background: rgba(255, 255, 255, 0.6);
}
.menu-btn svg { width: 22px; height: 22px; }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 14px 20px 22px;
  background: rgba(253, 251, 255, 0.97);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: var(--nav-h);
  z-index: 99;
}
.mobile-menu.is-open { display: flex; }
.mobile-menu a {
  padding: 13px 14px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  color: var(--ink);
}
.mobile-menu a:hover { background: rgba(91, 42, 134, 0.07); color: var(--purple-deep); }
.mobile-menu .btn { margin-top: 10px; }

/* ---------- Hero ---------- */
.hero { padding-top: clamp(40px, 7vw, 84px); }
.hero-grid {
  display: grid;
  gap: 44px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 6px 24px -10px rgba(61, 22, 96, 0.25);
  padding: 9px 18px;
  border-radius: 100px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--purple-deep);
  margin-bottom: 22px;
}
.hero-badge .dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--grad-brand);
  box-shadow: 0 0 12px rgba(232, 68, 208, 0.8);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.35); opacity: 0.7; }
}

.hero-title {
  font-size: clamp(2.4rem, 8vw, 4.3rem);
  font-weight: 800;
  line-height: 1.12;
  color: var(--purple-ink);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
[dir="rtl"] .hero-title { letter-spacing: 0; }

.hero-sub {
  font-size: clamp(1.02rem, 2.6vw, 1.2rem);
  color: var(--ink-soft);
  max-width: 540px;
  margin-bottom: 32px;
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }

.hero-stats {
  display: flex;
  gap: clamp(20px, 5vw, 44px);
  flex-wrap: wrap;
}
.stat-value {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 800;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat-label { font-size: 0.85rem; color: var(--ink-soft); font-weight: 500; }

/* Hero visual — abstract 3D ribbons echoing the logo mark */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 340px;
}
.orbital {
  position: relative;
  width: min(78vw, 420px);
  aspect-ratio: 1;
  transform-style: preserve-3d;
  perspective: 900px;
}
.orbital-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid transparent;
  background:
    linear-gradient(var(--bg), var(--bg)) padding-box,
    var(--grad-brand) border-box;
  opacity: 0.55;
  animation: spin 18s linear infinite;
}
.orbital-ring.r2 { inset: 11%; animation-duration: 26s; animation-direction: reverse; opacity: 0.4; }
.orbital-ring.r3 { inset: 23%; animation-duration: 34s; opacity: 0.3; }
@keyframes spin { to { transform: rotate(360deg); } }

.orbital-core {
  position: absolute;
  inset: 32%;
  border-radius: 32%;
  background: var(--grad-brand);
  box-shadow: var(--shadow-glow), inset 0 0 40px rgba(255, 255, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: floaty 6s ease-in-out infinite;
}
.orbital-core img {
  width: 72%;
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}
@keyframes floaty {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50% { transform: translateY(-14px) rotate(3deg); }
}

.float-shape {
  position: absolute;
  border-radius: 30% 70% 60% 40% / 50% 40% 60% 50%;
  filter: blur(1px);
  opacity: 0.9;
  animation: floaty 7s ease-in-out infinite;
}
.fs-1 {
  width: 58px; height: 58px;
  top: 6%; inset-inline-start: 8%;
  background: linear-gradient(135deg, var(--amber), var(--amber-soft));
  box-shadow: 0 10px 30px -8px rgba(255, 184, 0, 0.7);
}
.fs-2 {
  width: 42px; height: 42px;
  bottom: 12%; inset-inline-end: 6%;
  background: linear-gradient(135deg, var(--magenta), var(--magenta-bright));
  box-shadow: 0 10px 30px -8px rgba(199, 36, 177, 0.7);
  animation-delay: 1.4s;
}
.fs-3 {
  width: 34px; height: 34px;
  top: 20%; inset-inline-end: 14%;
  background: linear-gradient(135deg, var(--purple), #8a4bc4);
  box-shadow: 0 10px 30px -8px rgba(91, 42, 134, 0.7);
  animation-delay: 2.6s;
}

/* ---------- Cards (services / why) ---------- */
.cards-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}

.card {
  position: relative;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0;
  width: 100%;
  height: 5px;
  background: var(--grad-brand);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.card:hover { transform: translateY(-8px); box-shadow: 0 26px 60px -20px rgba(61, 22, 96, 0.35); }
.card:hover::before { opacity: 1; }

.card-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  background: var(--grad-soft);
  border: 1px solid rgba(91, 42, 134, 0.12);
  color: var(--purple);
}
.card-icon svg { width: 28px; height: 28px; }
.card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--purple-ink);
  margin-bottom: 8px;
  line-height: 1.35;
}
.card p { font-size: 0.94rem; color: var(--ink-soft); }

/* Why cards */
.why-grid .card { text-align: start; }
.why-num {
  position: absolute;
  top: 18px;
  inset-inline-end: 22px;
  font-size: 2.6rem;
  font-weight: 800;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0.35;
  line-height: 1;
}

/* ---------- Lead form ---------- */
.lead-section .lead-panel {
  max-width: 620px;
  margin-inline: auto;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: clamp(28px, 5vw, 46px);
  position: relative;
  overflow: hidden;
}
.lead-panel::before {
  content: "";
  position: absolute;
  top: -70px;
  inset-inline-end: -70px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 184, 0, 0.28), transparent 70%);
  pointer-events: none;
}

.form-field { margin-bottom: 18px; text-align: start; }
.form-field label {
  display: block;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--purple-ink);
  margin-bottom: 7px;
}
.form-field input {
  width: 100%;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  min-height: 52px;
}
.form-field input::placeholder { color: #a79cb8; }
.form-field input:focus {
  outline: none;
  border-color: var(--magenta);
  box-shadow: 0 0 0 4px rgba(199, 36, 177, 0.14);
}
.form-field.has-error input { border-color: #e03e5a; box-shadow: 0 0 0 4px rgba(224, 62, 90, 0.12); }
.field-error {
  display: none;
  font-size: 0.82rem;
  color: #c22a48;
  margin-top: 6px;
  font-weight: 500;
}
.form-field.has-error .field-error { display: block; }

/* Honeypot — invisible to humans */
.hp-field {
  position: absolute !important;
  inset-inline-start: -9999px !important;
  width: 1px; height: 1px;
  opacity: 0;
  overflow: hidden;
  tab-index: -1;
}

.form-privacy {
  font-size: 0.8rem;
  color: var(--ink-soft);
  margin-top: 14px;
  text-align: center;
}
.form-submit { width: 100%; font-size: 1.06rem; }
.form-submit[disabled] { opacity: 0.65; cursor: not-allowed; transform: none; }

.form-status { margin-top: 18px; display: none; }
.form-status.is-visible { display: block; }
.status-box {
  padding: 18px 20px;
  border-radius: var(--radius-md);
  font-weight: 600;
  text-align: center;
  animation: fadeUp 0.45s ease both;
}
.status-success {
  background: rgba(23, 163, 106, 0.12);
  border: 1.5px solid rgba(23, 163, 106, 0.4);
  color: #0e7a4e;
}
.status-error {
  background: rgba(224, 62, 90, 0.1);
  border: 1.5px solid rgba(224, 62, 90, 0.4);
  color: #b32442;
}
.status-box .status-title { font-size: 1.05rem; display: block; margin-bottom: 4px; }
.status-box p { font-weight: 500; font-size: 0.92rem; }

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

/* ---------- Contact / footer ---------- */
.contact-section { padding-bottom: 40px; }
.contact-cards {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
  max-width: 720px;
  margin-inline: auto;
}
.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease;
  font-weight: 600;
  color: var(--purple-ink);
}
.contact-card:hover { transform: translateY(-4px); }
.contact-card .card-icon { margin: 0; width: 48px; height: 48px; flex-shrink: 0; }
.contact-card small { display: block; font-weight: 500; color: var(--ink-soft); font-size: 0.82rem; }
.contact-card strong { font-size: 1rem; direction: ltr; unicode-bidi: plaintext; }

.site-footer {
  background: linear-gradient(160deg, var(--purple-ink), var(--purple-deep));
  color: rgba(255, 255, 255, 0.85);
  padding: 52px 0 30px;
  margin-top: 40px;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: -120px;
  inset-inline-start: 50%;
  transform: translateX(-50%);
  width: 480px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 68, 208, 0.25), transparent 70%);
  pointer-events: none;
}
.footer-inner { text-align: center; position: relative; }
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.footer-logo img { height: 52px; width: auto; border-radius: 12px; background: #fff; padding: 4px; }
.footer-logo span { font-weight: 800; font-size: 1.2rem; color: #fff; }
.footer-tagline { color: rgba(255, 255, 255, 0.6); font-size: 0.94rem; margin-bottom: 26px; }

.social-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.social-link {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  transition: all 0.3s ease;
}
.social-link svg { width: 22px; height: 22px; }
.social-link:hover {
  background: var(--grad-brand);
  border-color: transparent;
  transform: translateY(-4px);
  box-shadow: 0 12px 28px -8px rgba(232, 68, 208, 0.5);
}
.footer-rights { font-size: 0.84rem; color: rgba(255, 255, 255, 0.5); }

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Turnstile mount ---------- */
.turnstile-mount { margin: 4px 0 16px; min-height: 0; }
.turnstile-mount iframe { max-width: 100%; }

/* ============================================================
   Breakpoints
   ============================================================ */

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

@media (min-width: 860px) {
  .nav-links { display: flex; }
  .menu-btn { display: none; }
  .mobile-menu { display: none !important; }
  .hero-grid { grid-template-columns: 1.1fr 0.9fr; gap: 40px; }
  .cards-grid.services-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 1100px) {
  .cards-grid.services-grid { gap: 24px; }
}

/* Small phones (<360px) */
@media (max-width: 359px) {
  .hero-ctas .btn { width: 100%; }
  .nav-logo span { display: none; }
  .nav-cta { padding: 9px 14px; font-size: 0.85rem; }
}

/* ============================================================
   Reduced motion — everything static & instant
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .ribbon { animation: none; }
}
