/* ============================================
   NABBIHNI.COM - Premium Dark Theme
   Built by THEBOLDS
   ============================================ */

:root {
  --bg: #0A0E13;
  --bg-alt: #0F1419;
  --surface: rgba(24, 30, 37, 0.7);
  --surface-solid: #181E25;
  --surface-hover: #1F272F;
  --accent: #D97706;
  --accent-light: #F59E0B;
  --accent-glow: rgba(245, 158, 11, 0.15);
  --accent-glow-strong: rgba(245, 158, 11, 0.3);
  --text: #F5F3F0;
  --text-secondary: #9CA3AF;
  --text-muted: #6B7280;
  --border: rgba(255, 255, 255, 0.06);
  --border-light: rgba(255, 255, 255, 0.1);
  --radius: 20px;
  --radius-sm: 14px;
  --glass: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
  --green: #10B981;
  --red: #EF4444;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, Helvetica, sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
}

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

/* ============================================
   BACKGROUND EFFECTS
   ============================================ */

.bg-effects {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.2), transparent 70%);
  top: -200px;
  right: -200px;
  animation: float-1 20s ease-in-out infinite;
}

.orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.12), transparent 70%);
  bottom: 20%;
  left: -150px;
  animation: float-2 25s ease-in-out infinite;
}

.orb-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(167, 139, 250, 0.1), transparent 70%);
  top: 50%;
  right: -100px;
  animation: float-3 18s ease-in-out infinite;
}

@keyframes float-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-60px, 40px) scale(1.1); }
  66% { transform: translate(30px, -30px) scale(0.95); }
}

@keyframes float-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(80px, -50px) scale(1.15); }
}

@keyframes float-3 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-50px, 40px); }
}

/* Grain texture overlay */
.grain {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* ============================================
   LAYOUT
   ============================================ */

.page-content {
  position: relative;
  z-index: 2;
}

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

section {
  padding: 80px 0;
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.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; }

/* ============================================
   NAVIGATION BAR
   ============================================ */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(10, 14, 19, 0.8);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.2rem;
}

.nav-logo img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--accent-light);
}

.nav-cta {
  padding: 8px 20px !important;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  border-radius: 10px;
  color: #000 !important;
  font-weight: 600 !important;
  transition: transform 0.2s, box-shadow 0.2s !important;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px var(--accent-glow-strong);
  color: #000 !important;
}

/* Mobile menu button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 80px;
  position: relative;
}

.hero-content {
  max-width: 700px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: var(--accent-glow);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 100px;
  font-size: 0.85rem;
  color: var(--accent-light);
  font-weight: 600;
  margin-bottom: 28px;
}

.hero-badge .pulse {
  width: 8px;
  height: 8px;
  background: var(--accent-light);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

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

.app-icon {
  width: 100px;
  height: 100px;
  border-radius: 24px;
  margin-bottom: 28px;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.1),
              0 12px 40px rgba(217, 119, 6, 0.3),
              0 0 80px rgba(217, 119, 6, 0.1);
  animation: icon-glow 4s ease-in-out infinite;
}

@keyframes icon-glow {
  0%, 100% { box-shadow: 0 0 0 1px rgba(255,255,255,0.1), 0 12px 40px rgba(217, 119, 6, 0.3), 0 0 80px rgba(217, 119, 6, 0.1); }
  50% { box-shadow: 0 0 0 1px rgba(255,255,255,0.1), 0 12px 50px rgba(217, 119, 6, 0.4), 0 0 120px rgba(217, 119, 6, 0.15); }
}

.hero h1 {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero h1 .gradient-text {
  background: linear-gradient(135deg, var(--accent), var(--accent-light), #FBBF24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero .subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  border-radius: var(--radius-sm);
  color: #000;
  font-size: 1.05rem;
  font-weight: 700;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--accent-glow-strong);
}

.btn-primary svg { width: 22px; height: 22px; fill: #000; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--glass);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--border-light);
  transform: translateY(-2px);
}

.btn-secondary svg { width: 22px; height: 22px; fill: var(--text); }

/* Social proof under hero */
.social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.proof-item .number {
  color: var(--text);
  font-weight: 700;
}

.proof-divider {
  width: 1px;
  height: 20px;
  background: var(--border);
}

/* ============================================
   EVENTS TICKER
   ============================================ */

.events-ticker {
  padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(15, 20, 25, 0.5);
  overflow: hidden;
  direction: ltr;
}

.ticker-track {
  display: flex;
  gap: 48px;
  animation: ticker 30s linear infinite;
  width: max-content;
  direction: rtl;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.ticker-item .emoji {
  font-size: 1.3rem;
}

.ticker-item .event-name {
  font-weight: 600;
  color: var(--text);
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   FEATURES SECTION
   ============================================ */

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-light);
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
}

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

.feature-card {
  background: var(--surface);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-light), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 158, 11, 0.2);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3),
              0 0 0 1px rgba(245, 158, 11, 0.1);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  font-size: 2.2rem;
  margin-bottom: 18px;
  display: block;
}

.feature-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================
   SHOWCASE / PHONE MOCKUP
   ============================================ */

.showcase {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.showcase-content h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.showcase-content p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.8;
}

.showcase-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.showcase-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 1rem;
  color: var(--text-secondary);
}

.showcase-list .check {
  width: 24px;
  height: 24px;
  min-width: 24px;
  background: rgba(16, 185, 129, 0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 0.8rem;
  margin-top: 2px;
}

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

.phone-frame {
  width: 280px;
  height: 560px;
  background: linear-gradient(145deg, #1a1f2e, #0f0c29);
  border-radius: 40px;
  padding: 12px;
  box-shadow: 0 0 0 2px rgba(255,255,255,0.08),
              0 20px 60px rgba(0, 0, 0, 0.5),
              0 0 100px rgba(217, 119, 6, 0.08);
  position: relative;
  overflow: hidden;
}

.phone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 28px;
  background: #0a0e13;
  border-radius: 0 0 18px 18px;
  z-index: 10;
}

.phone-notch::after {
  content: '';
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
}

.phone-shine {
  position: absolute;
  top: 0;
  left: -40%;
  width: 80%;
  height: 100%;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.03) 45%, rgba(255,255,255,0.06) 50%, rgba(255,255,255,0.03) 55%, transparent 60%);
  pointer-events: none;
  z-index: 5;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #0f172a, #1e293b);
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  gap: 16px;
}

.phone-screen .mock-emoji {
  font-size: 3rem;
}

.phone-screen .mock-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}

.phone-screen .mock-timer {
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.phone-screen .mock-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

/* ============================================
   PRICING / OFFER SECTION
   ============================================ */

.pricing {
  background: var(--bg-alt);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.price-card {
  background: var(--surface);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.price-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent),
              0 8px 40px rgba(217, 119, 6, 0.15),
              0 0 80px rgba(217, 119, 6, 0.05);
  transform: scale(1.04);
}

.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 16px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #000;
  white-space: nowrap;
}

.price-card .plan-name {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

.price-card .price {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 4px;
  line-height: 1.2;
}

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

.price-card .price-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.price-features {
  list-style: none;
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

[dir="ltr"] .price-features {
  text-align: left;
}

.price-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.price-features .icon {
  font-size: 1rem;
  min-width: 20px;
  text-align: center;
}

.price-btn {
  display: block;
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
}

.price-btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: #000;
}

.price-btn-primary:hover {
  box-shadow: 0 4px 20px var(--accent-glow-strong);
  transform: translateY(-2px);
}

.price-btn-secondary {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: var(--text);
}

.price-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.06);
}

/* ============================================
   TRUST SECTION
   ============================================ */

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

.trust-card {
  text-align: center;
  padding: 28px 20px;
  background: var(--surface);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  transition: all 0.3s;
}

.trust-card:hover {
  border-color: rgba(245, 158, 11, 0.2);
  transform: translateY(-2px);
}

.trust-icon {
  font-size: 2rem;
  margin-bottom: 14px;
  display: block;
}

.trust-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.trust-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
  text-align: center;
  padding: 100px 0;
  position: relative;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-glow), transparent 70%);
  pointer-events: none;
}

.cta-section h2 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 16px;
  position: relative;
}

.cta-section p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 36px;
  position: relative;
}

.cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
  border-top: 1px solid var(--border);
  padding: 48px 0 32px;
  background: var(--bg);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-brand .brand-name {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 8px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 280px;
}

.footer-links {
  display: flex;
  gap: 48px;
}

.footer-col h5 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  margin-bottom: 14px;
}

.footer-col a {
  display: block;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 10px;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--accent-light);
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 16px;
}

/* ============================================
   PRIVACY PAGE (Premium Upgrade)
   ============================================ */

.privacy-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 120px 20px 80px;
  position: relative;
  z-index: 2;
}

.privacy-header {
  text-align: center;
  padding: 0 0 36px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 40px;
}

.privacy-header h1 {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 10px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.privacy-header .subtitle {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.lang-toggle {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 24px 0;
}

.lang-btn {
  padding: 10px 24px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface-solid);
  color: var(--text-secondary);
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.25s ease;
}

.lang-btn:hover {
  border-color: var(--accent);
  background: var(--surface-hover);
}

.lang-btn.active {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  border-color: transparent;
  color: #000;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 20px;
  padding: 8px 16px;
  border-radius: 10px;
  transition: all 0.2s;
}

.back-link:hover {
  color: var(--accent-light);
  background: var(--glass);
}

.policy-section {
  background: var(--surface);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius);
  padding: 32px;
  margin-bottom: 20px;
  border: 1px solid var(--glass-border);
  transition: border-color 0.3s;
}

.policy-section:hover {
  border-color: rgba(245, 158, 11, 0.15);
}

.policy-section h2 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--accent-light);
}

.policy-section h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 18px 0 10px;
  color: var(--text);
}

.policy-section p {
  color: var(--text-secondary);
  margin-bottom: 12px;
  line-height: 1.8;
}

.policy-section ul {
  color: var(--text-secondary);
  padding-left: 24px;
  margin-bottom: 12px;
}

[dir="rtl"] .policy-section ul {
  padding-left: 0;
  padding-right: 24px;
}

.policy-section li {
  margin-bottom: 8px;
  line-height: 1.7;
}

.policy-section a {
  color: var(--accent-light);
  transition: opacity 0.2s;
}

.policy-section a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.policy-section code {
  background: rgba(245, 158, 11, 0.1);
  color: var(--accent-light);
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 0.85em;
}

.highlight-box {
  background: rgba(217, 119, 6, 0.08);
  border: 1px solid rgba(217, 119, 6, 0.2);
  border-radius: 14px;
  padding: 18px 22px;
  margin: 18px 0;
}

.highlight-box p {
  color: var(--accent-light) !important;
  margin-bottom: 0 !important;
  font-weight: 600;
}

.contact-box {
  text-align: center;
  padding: 36px;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--glass-border);
  margin-top: 36px;
}

.contact-box p { color: var(--text-secondary); }

.contact-box a {
  color: var(--accent-light);
  font-weight: 700;
  font-size: 1.1rem;
  transition: opacity 0.2s;
}

.contact-box a:hover {
  opacity: 0.8;
}

/* Privacy page footer */
.privacy-footer {
  text-align: center;
  padding: 28px;
  color: var(--text-muted);
  font-size: 0.85rem;
  border-top: 1px solid var(--border);
  margin-top: 48px;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .price-card.featured {
    transform: none;
    order: -1;
  }

  .showcase-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-links {
    gap: 32px;
  }
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 2.6rem;
  }

  .hero .subtitle {
    font-size: 1.05rem;
  }

  section {
    padding: 60px 0;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary, .btn-secondary {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(10, 14, 19, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 16px 24px;
    gap: 16px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-cta {
    text-align: center;
  }

  .social-proof {
    flex-direction: column;
    gap: 12px;
  }

  .proof-divider {
    display: none;
  }

  .cta-section h2 {
    font-size: 2rem;
  }

  .phone-frame {
    width: 220px;
    height: 440px;
  }

  .showcase-content h2 {
    font-size: 1.8rem;
  }

  .footer-grid {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-brand p {
    max-width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .privacy-page {
    padding: 100px 16px 60px;
  }

  .privacy-header h1 {
    font-size: 1.8rem;
  }

  .policy-section {
    padding: 24px 20px;
  }
}

/* ============================================
   UTILITY
   ============================================ */

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}