/* ========================================
   OSCAR TV — MAIN STYLESHEET
   Brand: Deep red, gold, dark background
   ======================================== */

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:      #c0392b;
  --red-dark: #8b0000;
  --red-light:#e74c3c;
  --gold:     #d4a017;
  --gold-light: #f0c040;
  --gold-bright: #ffd700;
  --bg:       #0d0d0d;
  --bg2:      #141414;
  --bg3:      #1a1a1a;
  --bg4:      #222222;
  --border:   rgba(255,255,255,0.07);
  --text:     #f0f0f0;
  --text-muted: #999;
  --white:    #ffffff;
  --shadow-red: 0 0 40px rgba(192,57,43,0.3);
  --shadow-gold: 0 0 30px rgba(212,160,23,0.3);
  --radius:   16px;
  --radius-sm: 8px;
  --font: 'IBM Plex Sans Arabic', 'Cairo', sans-serif;
  --font-heading: 'Noto Kufi Arabic', 'IBM Plex Sans Arabic', sans-serif;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.8;
  direction: rtl;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-size: 16px;
  letter-spacing: 0.01em;
  word-spacing: 0.02em;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 100px 0; }

/* === GRADIENT TEXT === */
.gradient-text {
  background: linear-gradient(135deg, var(--red-light), var(--gold-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gold { color: var(--gold-bright); }

/* ========================================
   HEADER / NAV
   ======================================== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: background var(--transition), box-shadow var(--transition);
}
.header.scrolled {
  background: rgba(13,13,13,0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border), 0 4px 30px rgba(0,0,0,0.5);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 10px;
}
.nav-logo-text {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links li a {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color var(--transition), background var(--transition);
}
.nav-links li a:hover { color: var(--white); background: var(--border); }

.btn-nav {
  background: linear-gradient(135deg, var(--red), var(--red-dark)) !important;
  color: var(--white) !important;
  padding: 10px 22px !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  font-size: 0.88rem !important;
  box-shadow: 0 4px 15px rgba(192,57,43,0.4);
  transition: transform var(--transition), box-shadow var(--transition) !important;
}
.btn-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(192,57,43,0.6) !important;
  background: var(--border) !important;
  background: linear-gradient(135deg, var(--red-light), var(--red)) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ========================================
   HERO
   ======================================== */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 72px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 80% 40%, rgba(139,0,0,0.25) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 10% 80%, rgba(212,160,23,0.12) 0%, transparent 55%),
    #0d0d0d;
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
  padding-top: 40px;
  padding-bottom: 80px;
}

.hero-text { display: block; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(192,57,43,0.15);
  border: 1px solid rgba(192,57,43,0.3);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--red-light);
  margin-bottom: 24px;
}
.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--red-light);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  font-family: var(--font);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 600;
  line-height: 1.5;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: 0;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 500px;
  line-height: 1.85;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: var(--white);
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 8px 30px rgba(192,57,43,0.4);
  transition: transform var(--transition), box-shadow var(--transition);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(192,57,43,0.6);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.07);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 15px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--gold-bright);
}
.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(192,57,43,0.3) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.hero-img {
  width: 100%;
  max-width: 580px;
  border-radius: 20px;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.8));
  animation: float 6s ease-in-out infinite;
  position: relative;
  z-index: 1;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  line-height: 0;
}
.hero-wave svg { width: 100%; height: 60px; }

/* ========================================
   SECTION HEADERS
   ======================================== */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, rgba(192,57,43,0.2), rgba(212,160,23,0.2));
  border: 1px solid rgba(192,57,43,0.3);
  color: var(--gold-light);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.section-desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 550px;
  margin: 0 auto;
  line-height: 1.8;
  font-weight: 400;
}

/* ========================================
   FEATURES
   ======================================== */
.features { background: var(--bg); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  opacity: 0;
  transition: opacity var(--transition);
}
.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(192,57,43,0.3);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 30px rgba(192,57,43,0.15);
}
.feature-card:hover::before { opacity: 1; }

.feature-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(192,57,43,0.2), rgba(212,160,23,0.1));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 1px solid rgba(192,57,43,0.2);
}
.feature-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--gold-light);
}
.feature-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.feature-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
  font-weight: 400;
}

/* ========================================
   CONTENT CATEGORIES
   ======================================== */
.content-section { background: var(--bg2); }

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

.content-card {
  position: relative;
  border-radius: var(--radius);
  padding: 32px 24px;
  overflow: hidden;
  cursor: default;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid rgba(255,255,255,0.06);
}
.content-card:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.content-card-bg {
  position: absolute;
  inset: 0;
  opacity: 0.8;
  transition: opacity var(--transition);
}
.content-card:hover .content-card-bg { opacity: 1; }
.content-card-icon {
  font-size: 2.8rem;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.content-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}
.content-card p {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.75);
  position: relative;
  z-index: 1;
  line-height: 1.7;
  font-weight: 400;
}

/* ========================================
   DOWNLOAD SECTION
   ======================================== */
.download-section {
  background: var(--bg);
  position: relative;
}
.download-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(192,57,43,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.download-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
}
.tab-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  border: 1px solid var(--border);
  background: var(--bg3);
  color: var(--text-muted);
  font-family: var(--font);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}
.tab-btn:hover {
  border-color: rgba(192,57,43,0.3);
  color: var(--text);
}
.tab-btn.active {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(192,57,43,0.4);
}

.tab-content { display: none; }
.tab-content.active { display: block; }

.download-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto 32px;
}

.download-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  text-align: center;
  position: relative;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.download-card:hover {
  transform: translateY(-5px);
  border-color: rgba(192,57,43,0.3);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.download-card.primary-card {
  border-color: rgba(192,57,43,0.3);
  background: linear-gradient(135deg, rgba(139,0,0,0.2), rgba(13,13,13,0.8));
}

.dl-card-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--red), var(--gold));
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 50px;
  white-space: nowrap;
}

.dl-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(192,57,43,0.25), rgba(212,160,23,0.1));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(192,57,43,0.25);
}
.dl-icon svg {
  width: 36px;
  height: 36px;
  stroke: var(--gold-light);
}

.download-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}
.download-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.7;
  font-weight: 400;
}

.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: var(--white);
  padding: 13px 26px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 6px 20px rgba(192,57,43,0.35);
  transition: transform var(--transition), box-shadow var(--transition);
}
.btn-download:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(192,57,43,0.55);
}
.btn-download.outline {
  background: transparent;
  border: 1px solid rgba(192,57,43,0.5);
  color: var(--red-light);
  box-shadow: none;
}
.btn-download.outline:hover {
  background: rgba(192,57,43,0.1);
  border-color: var(--red-light);
}

/* Downloader Box */
.downloader-box {
  max-width: 800px;
  margin: 0 auto;
  background: var(--bg3);
  border: 1px solid rgba(212,160,23,0.25);
  border-radius: var(--radius);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.downloader-info {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.downloader-info svg { stroke: var(--gold-light); flex-shrink: 0; margin-top: 3px; }
.downloader-info h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.downloader-info p {
  font-size: 0.84rem;
  color: var(--text-muted);
  max-width: 380px;
}
.downloader-code-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.downloader-code {
  background: linear-gradient(135deg, rgba(212,160,23,0.15), rgba(255,215,0,0.08));
  border: 2px solid var(--gold);
  border-radius: 12px;
  padding: 12px 24px;
}
.code-value {
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold-bright);
  letter-spacing: 6px;
  font-feature-settings: "tnum";
}
.btn-copy {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #0d0d0d;
  border: none;
  padding: 12px 20px;
  border-radius: 10px;
  font-family: var(--font);
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}
.btn-copy:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212,160,23,0.4);
}

/* ========================================
   HOW TO INSTALL
   ======================================== */
.how-section { background: var(--bg2); }

.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.step-card {
  text-align: center;
  padding: 36px 24px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform var(--transition), border-color var(--transition);
}
.step-card:hover {
  transform: translateY(-5px);
  border-color: rgba(192,57,43,0.3);
}
.step-num {
  font-size: 3rem;
  font-weight: 900;
  color: rgba(192,57,43,0.25);
  line-height: 1;
  margin-bottom: 12px;
}
.step-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, rgba(192,57,43,0.2), rgba(212,160,23,0.1));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(192,57,43,0.2);
}
.step-icon svg { width: 28px; height: 28px; stroke: var(--gold-light); }
.step-card h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}
.step-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 400;
}
.step-connector {
  height: 2px;
  width: 60px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  border-radius: 2px;
  opacity: 0.5;
}

/* ========================================
   FOOTER
   ======================================== */
.footer { background: #080808; }

.footer-top { padding: 72px 0 48px; border-top: 1px solid var(--border); }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
}
.footer-logo img { border-radius: 10px; }

.footer-tagline {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: var(--text-muted);
}
.footer-legal-note {
  font-size: 0.78rem !important;
  opacity: 0.6;
}

/* ========================================
   TOAST
   ======================================== */
.toast {
  position: fixed;
  bottom: 32px;
  right: 32px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #0d0d0d;
  padding: 14px 24px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 8px 30px rgba(212,160,23,0.4);
  transform: translateY(100px);
  opacity: 0;
  transition: transform var(--transition), opacity var(--transition);
  z-index: 9999;
  pointer-events: none;
}
.toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* ========================================
   LEGAL PAGES
   ======================================== */
.legal-hero {
  padding: 140px 0 60px;
  background: linear-gradient(180deg, rgba(139,0,0,0.1) 0%, transparent 100%);
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.legal-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.legal-hero p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.8; }

.legal-content {
  padding: 60px 0 100px;
  max-width: 800px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}
.legal-content h2 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  margin: 36px 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.legal-content p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 16px;
  font-weight: 400;
}
.legal-content ul {
  list-style: disc;
  padding-right: 24px;
  margin-bottom: 16px;
}
.legal-content ul li {
  font-size: 0.93rem;
  color: var(--text-muted);
  margin-bottom: 8px;
  line-height: 1.6;
}

/* Contact Form */
.contact-section { padding: 60px 0 100px; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: start;
}
.contact-info h2 {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
}
.contact-info p {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.contact-item svg { stroke: var(--gold-light); width: 20px; height: 20px; flex-shrink: 0; }
.contact-item span { font-size: 0.9rem; color: var(--text-muted); }

.contact-form {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--bg4);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  color: var(--text);
  font-family: var(--font);
  font-size: 0.93rem;
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: rgba(192,57,43,0.5);
}
.form-group textarea {
  min-height: 130px;
  resize: vertical;
}
.form-group select option { background: var(--bg4); }
.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: var(--white);
  border: none;
  padding: 15px;
  border-radius: 50px;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(192,57,43,0.35);
  transition: transform var(--transition), box-shadow var(--transition);
}
.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(192,57,43,0.55);
}

/* ========================================
   ANIMATIONS
   ======================================== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .content-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 860px) {
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
  .hero-img { max-width: 420px; margin: 0 auto; }
  .hero-text { text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-desc { margin: 0 auto 36px; }
  .hero-badge { display: inline-flex; }
  .steps-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
  .step-connector { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 72px 0 0 0;
    background: rgba(13,13,13,0.98);
    backdrop-filter: blur(20px);
    padding: 32px 24px;
    gap: 8px;
    z-index: 999;
  }
  .nav-links.open li a { font-size: 1.1rem; padding: 14px 16px; display: block; }
  .nav-toggle { display: flex; }
  .features-grid { grid-template-columns: 1fr; }
  .content-grid { grid-template-columns: 1fr; }
  .download-cards { grid-template-columns: 1fr; }
  .downloader-box { flex-direction: column; text-align: center; }
  .downloader-info { flex-direction: column; align-items: center; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .toast { left: 16px; right: 16px; bottom: 16px; text-align: center; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
  .downloader-code-wrap { flex-direction: column; width: 100%; }
  .btn-copy { width: 100%; justify-content: center; }
  .code-value { font-size: 2.5rem; letter-spacing: 10px; }
  .download-tabs { flex-direction: column; align-items: center; }
}
