/* Sir TV — Premium Dark Design System */
:root {
  --primary: #7C3AED;
  --accent: #A855F7;
  --bg: #09090B;
  --card: #18181B;
  --card-hover: #1f1f23;
  --text: #fafafa;
  --text-muted: #a1a1aa;
  --border: rgba(255, 255, 255, 0.08);
  --glass: rgba(24, 24, 27, 0.72);
  --radius: 24px;
  --radius-sm: 16px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --glow: 0 0 60px rgba(124, 58, 237, 0.35);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --transition: 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  --navbar-height: 80px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--navbar-height) + 20px);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: var(--navbar-height);
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(124, 58, 237, 0.18), transparent),
    radial-gradient(ellipse 60% 40% at 100% 50%, rgba(168, 85, 247, 0.08), transparent),
    radial-gradient(ellipse 50% 30% at 0% 80%, rgba(124, 58, 237, 0.06), transparent);
  pointer-events: none;
  z-index: -1;
}

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

a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover { color: #c084fc; }

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.display-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #fff 0%, #e4e4e7 50%, #a1a1aa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: 0.75rem;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.125rem;
  max-width: 640px;
}

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

/* Navbar */
.navbar-sir {
  background: rgba(9, 9, 11, 0.82) !important;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  padding: 0.85rem 0;
  min-height: var(--navbar-height);
  transition: background var(--transition), box-shadow var(--transition);
  z-index: 1030;
}

.navbar-sir .container {
  position: relative;
}

.navbar-sir.scrolled {
  background: rgba(9, 9, 11, 0.95) !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.navbar-brand {
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--text) !important;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.brand-logo {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}

.footer-brand .brand-logo {
  width: 28px;
  height: 28px;
}

.hero-logo {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: var(--glow);
  margin-bottom: 1rem;
}

.brand-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.nav-link {
  color: var(--text-muted) !important;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 1rem !important;
  border-radius: 10px;
  transition: color var(--transition), background var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--text) !important;
  background: rgba(124, 58, 237, 0.12);
}

.navbar-toggler {
  border-color: var(--border);
  padding: 0.5rem 0.75rem;
}

.navbar-toggler-icon {
  filter: invert(1);
}

/* Buttons */
.btn-primary-sir {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border: none;
  color: #fff;
  font-weight: 600;
  padding: 0.85rem 1.75rem;
  border-radius: 14px;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 8px 32px rgba(124, 58, 237, 0.35);
}

.btn-primary-sir:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(124, 58, 237, 0.45);
  color: #fff;
}

.btn-outline-sir {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  font-weight: 600;
  padding: 0.85rem 1.75rem;
  border-radius: 14px;
  transition: all var(--transition);
}

.btn-outline-sir:hover {
  border-color: var(--primary);
  background: rgba(124, 58, 237, 0.1);
  color: var(--text);
}

/* Glass Cards */
.glass-card {
  background: var(--glass);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.glass-card:hover {
  transform: translateY(-4px);
  border-color: rgba(124, 58, 237, 0.25);
  box-shadow: var(--glow);
}

.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  height: 100%;
  transition: all var(--transition);
}

.feature-card:hover {
  background: var(--card-hover);
  border-color: rgba(124, 58, 237, 0.3);
  transform: translateY(-6px);
  box-shadow: var(--glow);
}

.feature-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(168, 85, 247, 0.15));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}

/* Hero */
.hero {
  padding: 3rem 0 6rem;
  min-height: calc(90vh - var(--navbar-height));
  display: flex;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(124, 58, 237, 0.15);
  border: 1px solid rgba(124, 58, 237, 0.3);
  border-radius: 100px;
  padding: 0.4rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.2); }
}

/* Hero visual + phone simulator */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 560px;
}

.hero-fx {
  position: absolute;
  inset: -8% -12% -8% -8%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-fx-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.7;
  animation: orbDrift 10s ease-in-out infinite;
}

.hero-fx-orb--1 {
  width: 280px;
  height: 280px;
  top: 8%;
  right: 6%;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.55), transparent 70%);
}

.hero-fx-orb--2 {
  width: 220px;
  height: 220px;
  bottom: 12%;
  left: 8%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.35), transparent 70%);
  animation-delay: -3s;
  animation-duration: 12s;
}

.hero-fx-orb--3 {
  width: 160px;
  height: 160px;
  top: 42%;
  left: 28%;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.22), transparent 70%);
  animation-delay: -6s;
  animation-duration: 9s;
}

.hero-fx-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(168, 85, 247, 0.25);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: ringPulse 7s ease-out infinite;
}

.hero-fx-ring--1 {
  width: 340px;
  height: 340px;
}

.hero-fx-ring--2 {
  width: 460px;
  height: 460px;
  animation-delay: 1.8s;
  border-color: rgba(124, 58, 237, 0.18);
}

.hero-fx-pitch {
  position: absolute;
  inset: 12% 8%;
  background:
    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: 28px 28px;
  mask-image: radial-gradient(ellipse 70% 65% at 55% 50%, #000 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 65% at 55% 50%, #000 20%, transparent 75%);
  opacity: 0.55;
  transform: perspective(600px) rotateX(48deg) scale(1.15);
  transform-origin: center 60%;
}

.hero-fx-beam {
  position: absolute;
  top: -10%;
  right: 10%;
  width: 180px;
  height: 120%;
  background: linear-gradient(180deg, rgba(168, 85, 247, 0.18), transparent 70%);
  filter: blur(28px);
  transform: rotate(18deg);
  animation: beamSweep 8s ease-in-out infinite;
}

@keyframes orbDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-18px, 14px) scale(1.08); }
}

@keyframes ringPulse {
  0% { opacity: 0.55; transform: translate(-50%, -50%) scale(0.92); }
  70% { opacity: 0; transform: translate(-50%, -50%) scale(1.12); }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(1.12); }
}

@keyframes beamSweep {
  0%, 100% { opacity: 0.45; transform: rotate(18deg) translateX(0); }
  50% { opacity: 0.85; transform: rotate(18deg) translateX(-24px); }
}

.phone-mockup {
  position: relative;
  z-index: 1;
  max-width: 300px;
  width: 100%;
  margin: 0 auto;
}

.phone-frame {
  background: linear-gradient(145deg, #3f3f46, #18181b 45%, #09090b);
  border-radius: 44px;
  padding: 11px;
  box-shadow:
    var(--shadow),
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 0 80px rgba(124, 58, 237, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.phone-screen {
  background: linear-gradient(180deg, #0c0c0f 0%, #09090b 100%);
  border-radius: 34px;
  overflow: hidden;
  aspect-ratio: 9 / 19.2;
  position: relative;
}

.phone-notch {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 96px;
  height: 26px;
  background: #000;
  border-radius: 20px;
  z-index: 10;
}

.app-preview {
  padding: 36px 12px 14px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
}

.sim-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--text-muted);
  padding: 0 6px;
  margin-bottom: 2px;
}

.sim-status-icons {
  letter-spacing: 0.04em;
  opacity: 0.7;
}

.app-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 0.95rem;
}

.app-header img {
  border-radius: 6px;
}

.sim-chip {
  margin-left: auto;
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #ef4444;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.35);
  border-radius: 100px;
  padding: 3px 8px;
  animation: pulse 2s infinite;
}

.sim-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 3px;
}

.sim-tabs span {
  text-align: center;
  font-size: 0.58rem;
  font-weight: 700;
  color: var(--text-muted);
  padding: 6px 2px;
  border-radius: 9px;
}

.sim-tabs .is-active {
  color: #fff;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.85), rgba(168, 85, 247, 0.75));
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.35);
}

.sim-card {
  background: rgba(24, 24, 27, 0.92);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 10px;
}

.sim-card--live {
  border-color: rgba(239, 68, 68, 0.28);
  box-shadow: 0 8px 24px rgba(239, 68, 68, 0.08);
}

.sim-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.sim-comp,
.sim-upcoming,
.sim-ft,
.sim-minute,
.sim-kickoff {
  font-size: 0.55rem;
  font-weight: 700;
  color: var(--text-muted);
}

.sim-upcoming {
  color: #60a5fa;
  background: rgba(96, 165, 250, 0.12);
  border-radius: 100px;
  padding: 2px 7px;
}

.sim-ft {
  color: #a1a1aa;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 100px;
  padding: 2px 7px;
}

.sim-match {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 6px;
}

.sim-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}

.sim-side strong {
  font-size: 0.58rem;
  font-weight: 700;
  line-height: 1.2;
}

.sim-scoreboard {
  text-align: center;
  min-width: 56px;
}

.app-score {
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}

.sim-kickoff {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--accent);
}

.crest {
  width: 36px;
  height: 36px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.45));
}

.sim-events {
  list-style: none;
  margin: 8px 0 0;
  padding: 8px 0 0;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.sim-events li {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.55rem;
  font-weight: 600;
  color: #d4d4d8;
}

.sim-events em {
  font-style: normal;
  color: var(--text-muted);
  font-weight: 700;
}

.sim-events--away {
  justify-content: flex-end;
}

.sim-goal {
  font-size: 0.55rem;
}

.sim-stats {
  margin-top: 8px;
}

.sim-stat {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 6px;
  align-items: center;
  font-size: 0.52rem;
  font-weight: 700;
  color: var(--text-muted);
}

.sim-bar {
  height: 4px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.sim-bar i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.sim-stat-label {
  text-align: center;
  font-size: 0.5rem;
  color: var(--text-muted);
  margin-top: 3px;
}

.sim-players {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid var(--border);
}

.sim-player {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
}

.sim-player strong {
  display: block;
  font-size: 0.52rem;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sim-player span {
  font-size: 0.48rem;
  color: var(--text-muted);
}

.sim-player--away {
  justify-content: flex-end;
  text-align: right;
}

.sim-avatar {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.55rem;
  font-weight: 800;
  flex-shrink: 0;
  color: #fff;
}

.sim-avatar--bar { background: linear-gradient(135deg, #a855f7, #1d4ed8); }
.sim-avatar--rma { background: linear-gradient(135deg, #e2e8f0, #64748b); color: #0f172a; }
.sim-avatar--mci { background: linear-gradient(135deg, #67e8f9, #0284c7); color: #0c4a6e; }

.sim-motm {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  padding: 7px 8px;
  border-radius: 10px;
  background: rgba(124, 58, 237, 0.12);
  border: 1px solid rgba(124, 58, 237, 0.25);
}

.sim-motm span {
  display: block;
  font-size: 0.48rem;
  color: var(--text-muted);
}

.sim-motm strong {
  font-size: 0.55rem;
  font-weight: 700;
}

.sim-rating {
  margin-left: auto !important;
  font-size: 0.72rem !important;
  font-weight: 800 !important;
  color: #fbbf24 !important;
}

.app-live {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
  font-size: 0.55rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 100px;
}

.app-live i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #ef4444;
  animation: pulse 1.4s infinite;
}

.phone-glow {
  position: absolute;
  inset: -18%;
  background:
    radial-gradient(circle at 50% 40%, rgba(168, 85, 247, 0.35), transparent 55%),
    radial-gradient(circle at 70% 70%, rgba(59, 130, 246, 0.18), transparent 50%);
  z-index: -1;
  animation: glowFloat 6s ease-in-out infinite;
}

@keyframes glowFloat {
  0%, 100% { transform: scale(1); opacity: 0.65; }
  50% { transform: scale(1.08); opacity: 1; }
}

/* Legacy match card helpers (unused but safe) */
.app-match-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px;
}

.app-match-teams {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.app-team {
  text-align: center;
  flex: 1;
  font-size: 0.65rem;
  font-weight: 600;
}

.app-team-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  margin: 0 auto 4px;
  opacity: 0.8;
}

/* Store badges */
.store-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 0.85rem;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  border-radius: 8px;
  transition: transform var(--transition), filter var(--transition), opacity var(--transition);
}

.store-badge img {
  height: 48px;
  width: auto;
  display: block;
  object-fit: contain;
}

.store-badge:hover {
  transform: translateY(-2px) scale(1.03);
  filter: brightness(1.08);
}

.store-badge:active {
  transform: scale(0.98);
}

.store-badges--sm .store-badge img {
  height: 40px;
}

.store-badges--lg .store-badge img {
  height: 52px;
}

/* Legacy alias */
.app-store-btn img {
  height: 48px;
  width: auto;
  transition: transform var(--transition);
}

.app-store-btn:hover img {
  transform: scale(1.05);
}

/* Sections */
section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

/* Screenshots */
.screenshot-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition);
}

.screenshot-card:hover {
  transform: scale(1.02);
}

.screenshot-placeholder {
  aspect-ratio: 9/16;
  background: linear-gradient(180deg, var(--card) 0%, var(--bg) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
}

.screenshot-placeholder .icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  opacity: 0.6;
}

/* Premium */
.premium-card {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.15), rgba(168, 85, 247, 0.08));
  border: 1px solid rgba(124, 58, 237, 0.3);
  border-radius: var(--radius);
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

.premium-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.2), transparent);
  pointer-events: none;
}

/* FAQ Accordion */
.accordion-sir .accordion-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm) !important;
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.accordion-sir .accordion-button {
  background: transparent;
  color: var(--text);
  font-weight: 600;
  padding: 1.25rem 1.5rem;
  box-shadow: none !important;
}

.accordion-sir .accordion-button:not(.collapsed) {
  background: rgba(124, 58, 237, 0.1);
  color: var(--accent);
}

.accordion-sir .accordion-button::after {
  filter: invert(1);
}

.accordion-sir .accordion-body {
  color: var(--text-muted);
  padding: 0 1.5rem 1.25rem;
}

/* Newsletter */
.newsletter-form {
  display: flex;
  gap: 0.75rem;
  max-width: 480px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0.85rem 1.25rem;
  color: var(--text);
  font-size: 1rem;
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.2);
}

/* Footer */
.footer {
  background: var(--card);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
  margin-top: 4rem;
}

.footer-brand {
  font-weight: 800;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li { margin-bottom: 0.5rem; }

.footer-links a {
  color: var(--text-muted);
  font-size: 0.95rem;
}

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

.footer-legal {
  font-size: 0.85rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  margin-top: 2rem;
}

/* Page Hero (inner pages) */
.page-hero {
  padding: 2.5rem 0 3rem;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
}

/* Content Pages */
.content-page {
  padding: 2rem 0 5rem;
}

.content-page .glass-card {
  max-width: 800px;
  margin: 0 auto 2rem;
}

.content-page h2 {
  font-size: 1.35rem;
  margin: 2rem 0 1rem;
  color: var(--text);
}

.content-page h3 {
  font-size: 1.1rem;
  margin: 1.5rem 0 0.75rem;
  color: var(--text-muted);
}

.content-page p,
.content-page li {
  color: var(--text-muted);
}

.content-page ul {
  padding-left: 1.25rem;
}

.content-page li { margin-bottom: 0.5rem; }

/* Contact Form */
.form-sir .form-control,
.form-sir .form-select {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  color: var(--text);
  padding: 0.85rem 1.25rem;
}

.form-sir .form-control:focus,
.form-sir .form-select:focus {
  background: var(--card);
  border-color: var(--primary);
  color: var(--text);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.2);
}

.form-sir .form-label {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.form-sir textarea.form-control {
  min-height: 140px;
  resize: vertical;
}

.contact-info-card {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.12), rgba(168, 85, 247, 0.06));
  border: 1px solid rgba(124, 58, 237, 0.25);
  border-radius: var(--radius);
  padding: 2rem;
  height: 100%;
}

/* Support Cards */
.support-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  height: 100%;
  text-align: center;
  transition: all var(--transition);
}

.support-card:hover {
  border-color: rgba(124, 58, 237, 0.3);
  transform: translateY(-4px);
}

.support-card .icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--transition), transform 0.7s var(--transition);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* Disclaimer banner */
.disclaimer-banner {
  background: rgba(124, 58, 237, 0.08);
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: var(--radius-sm);
  padding: 1rem 1.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Breadcrumb */
.breadcrumb-sir {
  background: transparent;
  padding: 0;
  margin-bottom: 1rem;
  justify-content: center;
}

.breadcrumb-sir .breadcrumb-item a {
  color: var(--text-muted);
}

.breadcrumb-sir .breadcrumb-item.active {
  color: var(--accent);
}

/* Responsive */
@media (max-width: 991.98px) {
  :root {
    --navbar-height: 72px;
  }

  .hero {
    padding: 2rem 0 4rem;
    min-height: auto;
  }

  .navbar-sir .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(9, 9, 11, 0.98);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border);
    padding: 0.75rem 1rem 1.25rem;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
  }

  .navbar-sir .navbar-collapse .nav-link {
    padding: 0.75rem 1rem !important;
  }

  .newsletter-form { flex-direction: column; }
  .hero-visual { min-height: 0; margin-top: 1rem; }
  .phone-mockup { margin-top: 1.5rem; max-width: 280px; }
  .hero-fx { opacity: 0.85; }
}

@media (max-width: 575.98px) {
  section { padding: 3.5rem 0; }
  .glass-card { padding: 1.5rem; }
  .premium-card { padding: 2rem; }
}

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