/* ============================================================
   ShirazNight.ir — Premium Dark Neon Cyber Stylesheet
   ============================================================ */

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

:root {
  --black:      #050505;
  --dark:       #111111;
  --red:        #ff003c;
  --crimson:    #b3002d;
  --white:      #ffffff;
  --gray-1:     #1a1a1a;
  --gray-2:     #222222;
  --gray-3:     #333333;
  --gray-text:  #999999;
  --glass-bg:   rgba(255,255,255,0.04);
  --glass-border: rgba(255,255,255,0.08);
  --glow-red:   0 0 40px rgba(255,0,60,0.35), 0 0 80px rgba(255,0,60,0.15);
  --glow-sm:    0 0 20px rgba(255,0,60,0.25);
  --font-display: 'Poppins', 'Segoe UI', system-ui, sans-serif;
  --font-body:    'Poppins', 'Segoe UI', system-ui, sans-serif;
  --font-fa:      'Vazirmatn', 'Segoe UI', Tahoma, sans-serif;
  --radius:     12px;
  --radius-lg:  20px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ── Base ────────────────────────────────────────────────────── */
html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.7;
  overflow-x: hidden;
  direction: ltr;
}

.fa { font-family: var(--font-fa); direction: rtl; text-align: right; }

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.fa h1, .fa h2, .fa h3, .fa h4, .fa h5, .fa h6,
h1.fa, h2.fa, h3.fa, h4.fa { font-family: var(--font-fa); letter-spacing: 0; }

p { color: rgba(255,255,255,0.75); }
a { color: var(--red); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--white); }

/* ── Layout ─────────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
section { padding: 100px 0; }

/* ── Scrollbar ───────────────────────────────────────────────── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--crimson); border-radius: 2px; }

/* ── Selection ───────────────────────────────────────────────── */
::selection { background: var(--red); color: var(--white); }

/* ── Focus ───────────────────────────────────────────────────── */
:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; }

/* ============================================================
   NAV
   ============================================================ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: background var(--transition), border-color var(--transition), padding var(--transition);
  border-bottom: 1px solid transparent;
}
#nav.scrolled {
  background: rgba(5,5,5,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-color: var(--glass-border);
  padding: 12px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
}
.nav-logo span { color: var(--red); }
.nav-badge {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--red);
  border: 1px solid var(--red);
  padding: 2px 7px;
  border-radius: 4px;
  margin-right: 10px;
  text-transform: uppercase;
  vertical-align: middle;
}
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: var(--red);
  color: var(--white) !important;
  padding: 8px 20px;
  border-radius: 6px;
  font-weight: 600 !important;
  transition: background var(--transition), box-shadow var(--transition) !important;
}
.nav-cta:hover {
  background: var(--crimson) !important;
  box-shadow: var(--glow-sm) !important;
  color: var(--white) !important;
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform var(--transition), opacity var(--transition);
}

/* ============================================================
   HERO
   ============================================================ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--black);
  z-index: 0;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,0,60,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,0,60,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 1;
  animation: gridPan 20s linear infinite;
}
@keyframes gridPan {
  from { background-position: 0 0; }
  to   { background-position: 60px 60px; }
}
.hero-glow {
  position: absolute;
  width: 700px; height: 700px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(255,0,60,0.18) 0%, transparent 70%);
  z-index: 1;
  animation: glowPulse 4s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.6; transform: translate(-50%,-50%) scale(1); }
  50%       { opacity: 1;   transform: translate(-50%,-50%) scale(1.12); }
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  padding: 120px 24px 80px;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red);
  border: 1px solid rgba(255,0,60,0.4);
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
  animation: fadeSlideDown 0.8s ease both;
}
.hero-title {
  font-size: clamp(3.5rem, 10vw, 8rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 16px;
  animation: fadeSlideDown 0.8s 0.15s ease both;
}
.hero-title .brand { color: var(--white); }
.hero-title .brand-dot { color: var(--red); }
.hero-title .brand-ext {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.3);
}
.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: rgba(255,255,255,0.6);
  max-width: 540px;
  margin: 0 auto 16px;
  font-weight: 300;
  animation: fadeSlideDown 0.8s 0.3s ease both;
}
.hero-sub-fa {
  font-family: var(--font-fa);
  direction: rtl;
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: rgba(255,255,255,0.5);
  margin-bottom: 44px;
  animation: fadeSlideDown 0.8s 0.4s ease both;
}
.hero-acquisition-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,0,60,0.1);
  border: 1px solid rgba(255,0,60,0.5);
  border-radius: 100px;
  padding: 10px 24px;
  margin-bottom: 40px;
  animation: fadeSlideDown 0.8s 0.5s ease both;
  backdrop-filter: blur(12px);
}
.acq-dot {
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
  animation: blink 1.5s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px var(--red); }
  50%       { opacity: 0.4; box-shadow: none; }
}
.acq-text {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
}
.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeSlideDown 0.8s 0.6s ease both;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.btn:hover::before { opacity: 1; }
.btn-primary {
  background: var(--red);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--crimson);
  box-shadow: var(--glow-red);
  transform: translateY(-2px);
  color: var(--white);
}
.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.25);
}
.btn-secondary:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-2px);
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.5;
  animation: fadeIn 1.5s 1.2s ease both;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, var(--red));
  animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown {
  0%, 100% { transform: scaleY(0); transform-origin: top; }
  50%       { transform: scaleY(1); transform-origin: top; }
}
.scroll-label { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gray-text); }

@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 0.5; }
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
  display: block;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 20px;
}
.section-title.fa { font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
.section-desc {
  color: rgba(255,255,255,0.55);
  max-width: 560px;
  font-size: 1rem;
  margin-bottom: 60px;
}
.section-desc.fa { margin-left: auto; font-size: 0.95rem; }
.section-header { margin-bottom: 60px; }
.section-header.center { text-align: center; }
.section-header.center .section-desc { margin: 0 auto 60px; }
.divider {
  width: 48px; height: 3px;
  background: linear-gradient(90deg, var(--red), var(--crimson));
  border-radius: 2px;
  margin-bottom: 20px;
}
.divider.center { margin: 0 auto 20px; }

/* ============================================================
   BRAND INTRO — SECTION 2
   ============================================================ */
#brand-intro { background: var(--black); }
.brand-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.brand-visual {
  position: relative;
}
.brand-card-big {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 48px;
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}
.brand-card-big::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--red), transparent);
}
.brand-name-big {
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 8px;
}
.brand-name-big .red { color: var(--red); }
.brand-tagline {
  font-family: var(--font-fa);
  direction: rtl;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 28px;
}
.brand-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.brand-stat {
  text-align: center;
  padding: 16px;
  background: rgba(255,0,60,0.06);
  border-radius: var(--radius);
  border: 1px solid rgba(255,0,60,0.12);
}
.brand-stat-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--red);
  display: block;
  line-height: 1;
}
.brand-stat-lbl {
  font-family: var(--font-fa);
  direction: rtl;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.45);
  margin-top: 4px;
  display: block;
}
.brand-text-block { direction: rtl; text-align: right; }
.brand-text-block p {
  font-family: var(--font-fa);
  font-size: 1rem;
  line-height: 1.9;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
}
.brand-text-block h2 { margin-bottom: 20px; }

/* ============================================================
   KEYWORD CARDS — SECTION 3
   ============================================================ */
#keywords { background: var(--dark); }
.kw-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.kw-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  cursor: default;
}
.kw-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at var(--mx,50%) var(--my,50%), rgba(255,0,60,0.08), transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}
.kw-card:hover::after { opacity: 1; }
.kw-card:hover {
  border-color: rgba(255,0,60,0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), var(--glow-sm);
}
.kw-card-icon {
  width: 48px; height: 48px;
  background: rgba(255,0,60,0.1);
  border: 1px solid rgba(255,0,60,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.kw-card-icon svg { width: 22px; height: 22px; fill: var(--red); }
.kw-card-title {
  font-family: var(--font-fa);
  direction: rtl;
  text-align: right;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.kw-card-desc {
  font-family: var(--font-fa);
  direction: rtl;
  text-align: right;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
}
.kw-card-tag {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: var(--red);
  text-transform: uppercase;
  border: 1px solid rgba(255,0,60,0.25);
  padding: 3px 10px;
  border-radius: 100px;
}

/* ============================================================
   WHY SHIRAZNIGHT — SECTION 4
   ============================================================ */
#why { background: var(--black); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.why-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  text-align: center;
  transition: all var(--transition);
}
.why-card:hover {
  border-color: rgba(255,0,60,0.3);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4), var(--glow-sm);
}
.why-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, rgba(255,0,60,0.15), rgba(179,0,45,0.08));
  border: 1px solid rgba(255,0,60,0.25);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.why-icon svg { width: 26px; height: 26px; fill: var(--red); }
.why-title {
  font-family: var(--font-fa);
  direction: rtl;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.why-desc {
  font-family: var(--font-fa);
  direction: rtl;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.8;
}

/* ============================================================
   DOMAIN INVESTMENT — SECTION 5
   ============================================================ */
#domain {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
#domain::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,0,60,0.12), transparent 70%);
  z-index: 0;
}
.domain-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.domain-badge-large {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,0,60,0.08);
  border: 1px solid rgba(255,0,60,0.3);
  border-radius: 100px;
  padding: 8px 20px;
  margin-bottom: 24px;
}
.domain-badge-large span {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
}
.domain-title {
  font-family: var(--font-fa);
  direction: rtl;
  text-align: right;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 20px;
}
.domain-title span { color: var(--red); }
.domain-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}
.domain-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-fa);
  direction: rtl;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  flex-direction: row-reverse;
  justify-content: flex-start;
}
.domain-features li svg { width: 18px; height: 18px; fill: var(--red); flex-shrink: 0; }
.domain-price-card {
  background: linear-gradient(135deg, rgba(255,0,60,0.1), rgba(179,0,45,0.05));
  border: 1px solid rgba(255,0,60,0.3);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.domain-price-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--red), var(--crimson));
}
.domain-price-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}
.domain-name-display {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}
.domain-name-display .red { color: var(--red); }
.domain-social-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0;
}
.domain-social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
}
.domain-social-link svg { width: 18px; height: 18px; fill: var(--red); }
.domain-cta-phone {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}

/* ============================================================
   SEO CONTENT — SECTION 6
   ============================================================ */
#seo-content { background: var(--black); }
.seo-wrapper {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 60px;
  align-items: start;
}
.seo-body {
  font-family: var(--font-fa);
  direction: rtl;
  text-align: right;
}
.seo-body h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin: 36px 0 16px;
  padding-right: 16px;
  border-right: 3px solid var(--red);
}
.seo-body h2:first-child { margin-top: 0; }
.seo-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  margin: 24px 0 10px;
}
.seo-body p {
  font-size: 0.9rem;
  line-height: 2;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
}
.seo-body strong { color: rgba(255,255,255,0.85); }
.seo-sidebar {
  position: sticky;
  top: 100px;
}
.seo-sidebar-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 20px;
}
.seo-sidebar-title {
  font-family: var(--font-fa);
  direction: rtl;
  text-align: right;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 16px;
}
.kw-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  flex-direction: row-reverse;
}
.kw-tag {
  font-family: var(--font-fa);
  direction: rtl;
  font-size: 0.7rem;
  padding: 5px 12px;
  background: rgba(255,0,60,0.08);
  border: 1px solid rgba(255,0,60,0.2);
  border-radius: 100px;
  color: rgba(255,255,255,0.6);
}

/* ============================================================
   FAQ — SECTION 7
   ============================================================ */
#faq { background: var(--dark); }
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: rgba(255,0,60,0.3); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: right;
  gap: 16px;
  direction: rtl;
}
.faq-q-text {
  font-family: var(--font-fa);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  text-align: right;
}
.faq-icon {
  width: 28px; height: 28px;
  background: rgba(255,0,60,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition), background var(--transition);
}
.faq-icon svg { width: 14px; height: 14px; fill: var(--red); transition: transform var(--transition); }
.faq-item.open .faq-icon { background: rgba(255,0,60,0.2); }
.faq-item.open .faq-icon svg { transform: rotate(45deg); }
.faq-a {
  font-family: var(--font-fa);
  direction: rtl;
  text-align: right;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.9;
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-a {
  max-height: 300px;
  padding: 0 24px 20px;
}

/* ============================================================
   BRAND ASSETS — SECTION 8
   ============================================================ */
#brand-assets { background: var(--black); }
.assets-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.asset-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition);
}
.asset-card:hover {
  border-color: rgba(255,0,60,0.3);
  transform: translateY(-4px);
}
.asset-icon {
  width: 52px; height: 52px;
  background: rgba(255,0,60,0.1);
  border: 1px solid rgba(255,0,60,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.asset-icon svg { width: 24px; height: 24px; fill: var(--red); }
.asset-label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-text);
  margin-bottom: 6px;
  display: block;
}
.asset-value {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  word-break: break-all;
}
.asset-value a { color: var(--white); }
.asset-value a:hover { color: var(--red); }

/* ============================================================
   FINAL CTA — SECTION 9
   ============================================================ */
#final-cta {
  background: var(--black);
  position: relative;
  overflow: hidden;
  text-align: center;
}
#final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(255,0,60,0.12), transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(179,0,45,0.08), transparent 60%);
}
.final-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}
.final-title {
  font-family: var(--font-fa);
  direction: rtl;
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 20px;
}
.final-sub {
  font-family: var(--font-fa);
  direction: rtl;
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 40px;
  line-height: 1.9;
}
.btn-large {
  padding: 18px 48px;
  font-size: 1.1rem;
  border-radius: 10px;
}
.btn-glow {
  box-shadow: var(--glow-red);
  animation: glowBtnPulse 2.5s ease-in-out infinite;
}
@keyframes glowBtnPulse {
  0%, 100% { box-shadow: 0 0 30px rgba(255,0,60,0.4), 0 0 60px rgba(255,0,60,0.2); }
  50%       { box-shadow: 0 0 50px rgba(255,0,60,0.6), 0 0 100px rgba(255,0,60,0.3); }
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--dark);
  border-top: 1px solid var(--glass-border);
  padding: 40px 0;
  text-align: center;
}
.footer-logo {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}
.footer-logo span { color: var(--red); }
.footer-copy {
  font-family: var(--font-fa);
  direction: rtl;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  margin-bottom: 16px;
}
.footer-links {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}
.footer-links a {
  font-family: var(--font-fa);
  direction: rtl;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--red); }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.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; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .brand-intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .kw-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .domain-inner { grid-template-columns: 1fr; }
  .seo-wrapper { grid-template-columns: 1fr; }
  .seo-sidebar { position: static; }
  .assets-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  section { padding: 70px 0; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(5,5,5,0.97);
    backdrop-filter: blur(20px);
    padding: 20px 24px;
    border-bottom: 1px solid var(--glass-border);
    gap: 20px;
  }
  .nav-hamburger { display: flex; }
  .kw-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-stat-row { grid-template-columns: 1fr 1fr; }
  .assets-grid { grid-template-columns: 1fr 1fr; }
  .hero-title { letter-spacing: -0.02em; }
}

@media (max-width: 480px) {
  .why-grid { grid-template-columns: 1fr; }
  .assets-grid { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 300px; justify-content: center; }
  .brand-stat-row { grid-template-columns: 1fr; }
}

/* ── Reduced Motion ───────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}
