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

/* =========================================================
   THEME VARIABLES
   ========================================================= */
:root.dark,
:root:not(.light):not(.dark) {
  --sutu-teal: #1ABFC4;
  --sutu-teal-light: #2DD4DA;
  --sutu-teal-glow: rgba(26, 191, 196, 0.15);
  --sutu-blue-purple: #5B6EC9;
  --sutu-blue: #2B7CC9;
  --sutu-orange: #F5A623;
  --bg-primary: #050508;
  --bg-elevated: #0A0A0F;
  --surface: #111118;
  --text-primary: #FFFFFF;
  --text-secondary: rgba(255, 255, 255, 0.7);
  --text-tertiary: rgba(255, 255, 255, 0.45);
  --text-muted: rgba(255, 255, 255, 0.25);
  --text-faint: rgba(255, 255, 255, 0.15);
  --glass-bg: linear-gradient(135deg, rgba(17, 17, 24, 0.85), rgba(10, 10, 15, 0.9));
  --glass-border: rgba(255, 255, 255, 0.04);
  --glass-border-hover: rgba(26, 191, 196, 0.12);
  --glass-shadow: 0 8px 40px rgba(0, 0, 0, 0.3), 0 0 60px rgba(26, 191, 196, 0.04);
  --nav-bg: rgba(5, 5, 8, 0.8);
  --divider-color: rgba(26, 191, 196, 0.08);
  --divider-color-alt: rgba(91, 110, 201, 0.08);
  --btn-outline-border: rgba(255, 255, 255, 0.1);
  --btn-outline-text: rgba(255, 255, 255, 0.7);
  --btn-outline-hover-border: rgba(26, 191, 196, 0.35);
  --btn-outline-hover-bg: linear-gradient(135deg, rgba(26, 191, 196, 0.08), rgba(91, 110, 201, 0.04));
  --tag-border: rgba(255, 255, 255, 0.06);
  --tag-bg: rgba(255, 255, 255, 0.02);
  --tag-text: rgba(255, 255, 255, 0.5);
  --tag-hover-border: rgba(26, 191, 196, 0.2);
  --tag-hover-bg: rgba(26, 191, 196, 0.04);
  --tag-hover-text: rgba(255, 255, 255, 0.75);
  --footer-border: rgba(255, 255, 255, 0.03);
}

:root.light {
  --sutu-teal: #0DA8AD;
  --sutu-teal-light: #1ABFC4;
  --sutu-teal-glow: rgba(26, 191, 196, 0.2);
  --sutu-blue-purple: #4A5EB5;
  --sutu-blue: #1E6BB5;
  --sutu-orange: #E09400;
  --bg-primary: #F8F9FA;
  --bg-elevated: #FFFFFF;
  --surface: #FFFFFF;
  --text-primary: #1A1D29;
  --text-secondary: rgba(26, 29, 41, 0.7);
  --text-tertiary: rgba(26, 29, 41, 0.5);
  --text-muted: rgba(26, 29, 41, 0.35);
  --text-faint: rgba(26, 29, 41, 0.2);
  --glass-bg: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 249, 250, 0.98));
  --glass-border: rgba(0, 0, 0, 0.06);
  --glass-border-hover: rgba(26, 191, 196, 0.3);
  --glass-shadow: 0 8px 40px rgba(0, 0, 0, 0.08), 0 0 60px rgba(26, 191, 196, 0.06);
  --nav-bg: rgba(248, 249, 250, 0.85);
  --divider-color: rgba(26, 191, 196, 0.12);
  --divider-color-alt: rgba(91, 110, 201, 0.12);
  --btn-outline-border: rgba(0, 0, 0, 0.1);
  --btn-outline-text: rgba(26, 29, 41, 0.7);
  --btn-outline-hover-border: rgba(26, 191, 196, 0.5);
  --btn-outline-hover-bg: linear-gradient(135deg, rgba(26, 191, 196, 0.08), rgba(91, 110, 201, 0.04));
  --tag-border: rgba(0, 0, 0, 0.06);
  --tag-bg: rgba(0, 0, 0, 0.02);
  --tag-text: rgba(26, 29, 41, 0.55);
  --tag-hover-border: rgba(26, 191, 196, 0.25);
  --tag-hover-bg: rgba(26, 191, 196, 0.06);
  --tag-hover-text: rgba(26, 29, 41, 0.8);
  --footer-border: rgba(0, 0, 0, 0.06);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Noto Sans Arabic', 'Inter', system-ui, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  transition: background 0.3s ease, color 0.3s ease;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* Typography */
.text-gradient-brand {
  background: linear-gradient(135deg, #5B6EC9 0%, #1ABFC4 50%, #2B7CC9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-teal {
  background: linear-gradient(135deg, var(--sutu-teal), var(--sutu-teal-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-gradient-teal {
  background: linear-gradient(135deg, var(--sutu-teal), var(--sutu-teal-light));
}

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  color: var(--sutu-teal);
  background: rgba(26, 191, 196, 0.06);
  border: 1px solid rgba(26, 191, 196, 0.1);
}

.section-label--center { display: table; margin-left: auto; margin-right: auto; }

.max-content {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

@media (min-width: 640px) {
  .max-content { padding-left: 2rem; padding-right: 2rem; }
}

@media (min-width: 1024px) {
  .max-content { padding-left: 3rem; padding-right: 3rem; }
}

/* Layout helpers */
.section { padding: 8rem 0; position: relative; background: var(--bg-primary); }

@media (min-width: 1024px) {
  .section { padding: 10rem 0; }
}

.section__header { text-align: center; margin-bottom: 5rem; }

.section__title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin: 0;
}

.section__desc {
  font-size: 1rem;
  margin-top: 1.25rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.75;
  color: var(--text-tertiary);
}

.grid-2 {
  display: grid;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
}

.grid-cards-2 {
  display: grid;
  gap: 1rem;
}

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

.grid-cards-3 {
  display: grid;
  gap: 1rem;
}

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

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

.grid-cards-4 {
  display: grid;
  gap: 1rem;
}

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

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

/* Glass card */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 1.5rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-card:hover {
  border-color: var(--glass-border-hover);
  box-shadow: var(--glass-shadow);
  transform: translateY(-2px);
}

/* Buttons */
.btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  font-weight: 700;
  border-radius: 9999px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--sutu-teal), var(--sutu-teal-light));
  color: #050508;
  padding: 1rem 2.25rem;
  font-size: 15px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 20px var(--sutu-teal-glow);
}

.btn-primary--sm { padding: 0.625rem 1.25rem; font-size: 13px; }

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(26, 191, 196, 0.3);
}

.btn-outline {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  border-radius: 9999px;
  border: 1.5px solid var(--btn-outline-border);
  color: var(--btn-outline-text);
  padding: 1rem 2.25rem;
  font-size: 15px;
  background: transparent;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-outline:hover {
  border-color: var(--btn-outline-hover-border);
  color: var(--text-primary);
  background: var(--btn-outline-hover-bg);
}

.btn-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

@media (min-width: 640px) {
  .btn-row { flex-direction: row; }
}

html[dir="rtl"] .btn-row { justify-content: center; }
html[dir="rtl"] @media (min-width: 1024px) { .btn-row--start-lg { justify-content: flex-start; } }
html[dir="ltr"] @media (min-width: 1024px) { .btn-row--start-lg { justify-content: flex-start; } }

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  color: var(--tag-text);
  border: 1px solid var(--tag-border);
  background: var(--tag-bg);
  transition: all 0.3s;
}

.tag:hover {
  border-color: var(--tag-hover-border);
  color: var(--tag-hover-text);
  background: var(--tag-hover-bg);
}

.tag-list { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.toggle-btn {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  color: var(--text-tertiary);
  transition: all 0.3s;
}

.toggle-btn:hover {
  border-color: var(--sutu-teal);
  color: var(--sutu-teal);
}

.toggle-btn--lang { width: auto; padding: 0 0.75rem; gap: 0.375rem; font-size: 0.75rem; font-weight: 700; }

.divider-gradient {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--divider-color) 20%, var(--divider-color-alt) 80%, transparent);
}

/* Phone mockup */
.phone-mockup {
  width: 280px;
  height: 580px;
  border-radius: 42px;
  border: 10px solid #151520;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.03), 0 25px 80px rgba(0, 0, 0, 0.5), 0 0 80px rgba(26, 191, 196, 0.06);
  overflow: hidden;
  position: relative;
}

:root.light .phone-mockup {
  border-color: #E2E4E9;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05), 0 25px 80px rgba(0, 0, 0, 0.12), 0 0 80px rgba(26, 191, 196, 0.08);
}

.phone-mockup::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 130px;
  height: 30px;
  background: #151520;
  border-radius: 0 0 24px 24px;
  z-index: 10;
}

:root.light .phone-mockup::before { background: #E2E4E9; }

.phone-mockup img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 640px) {
  .phone-mockup { width: 300px; height: 620px; }
}

.phone-wrap { display: flex; justify-content: center; position: relative; }

@media (min-width: 1024px) {
  html[dir="rtl"] .phone-wrap { justify-content: flex-start; }
  html[dir="ltr"] .phone-wrap { justify-content: flex-start; }
}

.float-card {
  position: absolute;
  padding: 0.75rem 1rem;
  animation: float 6s ease-in-out infinite;
}

.float-card--pulse { animation: pulseGlow 3s ease-in-out infinite; top: -1.5rem; inset-inline-end: -2rem; }

.float-card--bottom { bottom: -1rem; inset-inline-start: -1.5rem; animation-delay: 1.5s; }

.float-card--side { top: 50%; inset-inline-end: -3rem; animation-delay: 0.5s; animation-duration: 5s; }

/* Nav */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  transition: all 0.5s;
}

.site-nav.is-scrolled {
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  background: var(--nav-bg);
  border-color: var(--glass-border);
}

.site-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.site-nav__links {
  display: none;
  align-items: center;
  gap: 2rem;
}

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

.site-nav__link {
  position: relative;
  font-size: 0.875rem;
  color: var(--text-muted);
  background: none;
  border: none;
  padding: 0.25rem 0;
  transition: color 0.3s;
}

.site-nav__link:hover { color: var(--text-primary); }

.site-nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  inset-inline-end: 0;
  width: 0;
  height: 1.5px;
  background: var(--sutu-teal);
  transition: width 0.3s;
}

.site-nav__link:hover::after { width: 100%; }

.site-nav__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.site-nav__toggles {
  display: none;
  align-items: center;
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .site-nav__toggles { display: flex; }
}

.site-nav__business {
  display: none;
  font-size: 0.75rem;
  color: var(--text-muted);
  border: 1px solid var(--glass-border);
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  transition: color 0.3s;
}

@media (min-width: 640px) {
  .site-nav__business { display: inline-block; }
}

.site-nav__business:hover { color: var(--text-primary); }

.site-nav__menu-btn { display: flex; }

@media (min-width: 768px) {
  .site-nav__menu-btn { display: none; }
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo__icon { height: 2.5rem; width: auto; }
.brand-logo__wordmark { height: 1.5rem; width: auto; }

:root.dark .brand-logo__wordmark--light,
:root:not(.light):not(.dark) .brand-logo__wordmark--light { display: none !important; }

:root.light .brand-logo__wordmark--dark { display: none !important; }

:root.light .brand-logo__wordmark--light { display: block !important; }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  background: var(--bg-primary);
  transition: opacity 0.3s, visibility 0.3s;
}

.mobile-menu.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.mobile-menu__link {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
}

.mobile-menu__close {
  position: absolute;
  top: 1.25rem;
  inset-inline-end: 1.25rem;
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 6rem;
  padding-bottom: 5rem;
  position: relative;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(40px);
  animation: breatheOrb 8s ease-in-out infinite;
}

.hero__orb--1 { width: 500px; height: 500px; top: 10%; left: 60%; background: radial-gradient(circle, #1ABFC4 0%, transparent 70%); opacity: 0.06; }
.hero__orb--2 { width: 400px; height: 400px; top: 60%; left: -5%; background: radial-gradient(circle, #5B6EC9 0%, transparent 70%); opacity: 0.06; animation-delay: 2s; }
.hero__orb--3 { width: 300px; height: 300px; top: 30%; left: 40%; background: radial-gradient(circle, #F5A623 0%, transparent 70%); opacity: 0.06; animation-delay: 4s; }

.hero__content { text-align: center; }

@media (min-width: 1024px) {
  html[dir="rtl"] .hero__content { text-align: right; }
  html[dir="ltr"] .hero__content { text-align: left; }
}

.hero__dots {
  display: flex;
  gap: 0.625rem;
  margin-bottom: 2rem;
  justify-content: center;
}

@media (min-width: 1024px) {
  html[dir="rtl"] .hero__dots { justify-content: flex-start; }
  html[dir="ltr"] .hero__dots { justify-content: flex-start; }
}

.hero__dot { width: 0.75rem; height: 0.75rem; border-radius: 50%; }

.hero__title {
  font-size: clamp(3.2rem, 8vw, 6rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
}

.hero__subtitle {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  margin-top: 1.25rem;
  font-weight: 300;
  color: var(--text-muted);
}

.hero__desc {
  margin-top: 2rem;
  font-size: clamp(1rem, 2vw, 1.125rem);
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.75;
  color: var(--text-tertiary);
}

@media (min-width: 1024px) {
  html[dir="rtl"] .hero__desc { margin-right: 0; margin-left: 0; }
  html[dir="ltr"] .hero__desc { margin-left: 0; margin-right: 0; }
}

.hero__desc strong { color: var(--sutu-teal); font-weight: 600; }

.hero__stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3.5rem;
  justify-content: center;
}

@media (min-width: 1024px) {
  html[dir="rtl"] .hero__stats { justify-content: flex-start; }
  html[dir="ltr"] .hero__stats { justify-content: flex-start; }
}

.hero__stat-num {
  font-size: 1.875rem;
  font-weight: 900;
}

.hero__stat-label {
  font-size: 11px;
  margin-top: 0.375rem;
  color: var(--text-faint);
}

.hero__scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.3;
}

/* Feature cards */
.feature-card { padding: 1.5rem; }

.feature-card__icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: transform 0.3s;
}

.feature-card:hover .feature-card__icon { transform: scale(1.1); }

.feature-card__title {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: var(--text-primary);
}

.feature-card__desc {
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
  color: var(--text-tertiary);
}

.feature-card--center { text-align: center; }

.feature-card--center .feature-card__icon {
  width: 3.5rem;
  height: 3.5rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.25rem;
}

/* Step cards */
.step-card {
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.step-card__icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-card__num {
  font-size: 10px;
  font-weight: 700;
  color: var(--text-faint);
}

.step-card__title {
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
  color: var(--text-primary);
}

.step-card__desc {
  font-size: 13px;
  margin: 0.125rem 0 0;
  color: var(--text-tertiary);
}

.badge-float {
  position: absolute;
  top: -0.75rem;
  right: 1.5rem;
  font-size: 10px;
  font-weight: 700;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  color: #050508;
  box-shadow: 0 4px 20px rgba(26, 191, 196, 0.2);
}

/* Loyalty card visual */
.loyalty-visual {
  margin-top: 5rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.loyalty-visual__inner {
  padding: 2rem 2.5rem;
  position: relative;
  overflow: hidden;
}

.loyalty-visual__row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

@media (min-width: 640px) {
  .loyalty-visual__row { flex-direction: row; }
  html[dir="rtl"] .loyalty-visual__row { text-align: right; }
  html[dir="ltr"] .loyalty-visual__row { text-align: left; }
}

.loyalty-visual__stats {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

@media (min-width: 640px) {
  html[dir="rtl"] .loyalty-visual__stats { justify-content: flex-start; }
  html[dir="ltr"] .loyalty-visual__stats { justify-content: flex-start; }
}

/* Place category cards */
.place-card {
  min-height: 220px;
  overflow: hidden;
  position: relative;
  cursor: default;
}

.place-card__bg {
  position: absolute;
  inset: 0;
}

.place-card__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  transition: opacity 0.5s;
}

.place-card:hover .place-card__bg img { opacity: 0.5; }

.place-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg-primary) 20%, transparent 80%);
}

.place-card__body {
  position: relative;
  z-index: 1;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 220px;
}

.place-card__title {
  font-size: 1.125rem;
  font-weight: 900;
  margin: 0.75rem 0 0;
}

/* Download */
.download-box {
  padding: 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

@media (min-width: 640px) {
  .download-box { padding: 4rem; }
}

.store-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: #fff;
  color: #050508;
  font-weight: 700;
  border-radius: 1rem;
  padding: 1rem 2rem;
  transition: all 0.3s;
}

.store-btn:hover {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.store-btn__small { font-size: 10px; opacity: 0.5; display: block; }
.store-btn__label { font-size: 0.875rem; display: block; }

/* FAQ */
.faq-list {
  max-width: 42rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.faq-item { border-radius: 1rem; overflow: hidden; }

.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem;
  text-align: inherit;
  transition: background 0.2s;
}

.faq-item__question:hover { background: rgba(255, 255, 255, 0.015); }

.faq-item__question-text {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.faq-item__chevron {
  flex-shrink: 0;
  margin-inline-start: 0.75rem;
  color: rgba(26, 191, 196, 0.5);
  transition: transform 0.3s;
}

.faq-item.is-open .faq-item__chevron { transform: rotate(180deg); }

.faq-item__answer {
  display: none;
  padding: 0 1.25rem 1.25rem;
  font-size: 13px;
  line-height: 1.8;
  color: var(--text-tertiary);
  border-top: 1px solid var(--glass-border);
  padding-top: 1rem;
}

.faq-item.is-open .faq-item__answer { display: block; }

/* Footer */
.site-footer {
  border-top: 1px solid var(--footer-border);
  padding: 3.5rem 0;
  background: var(--bg-primary);
}

.site-footer__grid {
  display: grid;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

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

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

.site-footer__heading {
  font-weight: 700;
  font-size: 0.875rem;
  margin: 0 0 1.25rem;
}

.site-footer__link {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  transition: color 0.3s;
}

.site-footer__link:hover { color: var(--sutu-teal); }

.site-footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  font-size: 11px;
  color: var(--text-faint);
}

@media (min-width: 640px) {
  .site-footer__bottom { flex-direction: row; justify-content: space-between; }
}

.site-footer__legal { display: flex; gap: 1.5rem; }

/* Ambient background */
.ambient-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.ambient-bg__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.04;
}

.ambient-bg__orb--teal { width: 600px; height: 600px; top: -10%; right: -10%; background: #1ABFC4; }
.ambient-bg__orb--purple { width: 500px; height: 500px; bottom: 20%; left: -15%; background: #5B6EC9; }
.ambient-bg__orb--orange { width: 400px; height: 400px; top: 40%; right: 30%; background: #F5A623; }

main { position: relative; z-index: 1; }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

/* Icon sizing */
.icon { width: 1.25rem; height: 1.25rem; flex-shrink: 0; }
.icon--sm { width: 1rem; height: 1rem; }
.icon--lg { width: 1.75rem; height: 1.75rem; }

.avatar-stack {
  display: flex;
}

.avatar-stack span {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 2px solid var(--surface);
  margin-inline-start: -0.5rem;
}

.avatar-stack span:first-child { margin-inline-start: 0; }

.pulse-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #10B981;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes breatheOrb {
  0%, 100% { transform: scale(1) translate(0, 0); opacity: 0.035; }
  33% { transform: scale(1.15) translate(-20px, 10px); opacity: 0.055; }
  66% { transform: scale(0.95) translate(15px, -15px); opacity: 0.025; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(26, 191, 196, 0.1); }
  50% { box-shadow: 0 0 40px rgba(26, 191, 196, 0.2), 0 0 80px rgba(91, 110, 201, 0.08); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(26, 191, 196, 0.2); border-radius: 4px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
}
