:root {
  --primary-orange: #ff6b35;
  --orange-dark: #e55a2b;
  --orange-light: #ff8c5a;
  --orange-glow: rgba(255, 107, 53, 0.4);
  --dark-bg: #0f172a;
  --dark-surface: #1e293b;
  --light-bg: #f8fafc;
  --text-primary: #1e293b;
  --text-secondary: #64748b;
  --text-light: #94a3b8;
  --white: #ffffff;
  --success: #10b981;
  --error: #ef4444;
  --warning: #f59e0b;
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(255, 255, 255, 0.3);
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
  --shadow-glow: 0 0 40px -10px var(--orange-glow);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Space Grotesk', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--light-bg);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  top: 100px;
  right: 20px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
  max-width: calc(100vw - 40px);
}

.toast {
  background: white;
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 300px;
  max-width: 450px;
  transform: translateX(120%);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: all;
  position: relative;
  overflow: hidden;
}

.toast.show {
  transform: translateX(0);
}

.toast-error {
  border-left: 4px solid var(--error);
}

.toast-success {
  border-left: 4px solid var(--success);
}

.toast-icon {
  font-size: 24px;
  color: var(--error);
  flex-shrink: 0;
}

.toast-success .toast-icon {
  color: var(--success);
}

.toast-content {
  flex: 1;
  min-width: 0;
}

.toast-message {
  font-size: 0.95rem;
  color: var(--text-primary);
  font-weight: 500;
  word-wrap: break-word;
}

.toast-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-secondary);
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s;
  flex-shrink: 0;
}

.toast-close:hover {
  background: var(--light-bg);
  color: var(--text-primary);
}

.toast-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(0,0,0,0.05);
}

.toast-progress-bar {
  height: 100%;
  background: var(--error);
  width: 100%;
  animation: toastProgress 5s linear forwards;
}

.toast-success .toast-progress-bar {
  background: var(--success);
}

@keyframes toastProgress {
  to {
    width: 0%;
  }
}

/* AI Loading Overlay */
.ai-loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.95);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  z-index: 9999;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 20px;
}

.ai-loading-overlay.active {
  display: flex;
}

.ai-orb {
  position: relative;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orb-core {
  width: 40px;
  height: 40px;
  background: var(--primary-orange);
  border-radius: 50%;
  box-shadow: 0 0 60px var(--orange-glow);
  animation: pulseCore 2s ease-in-out infinite;
}

.orb-ring {
  position: absolute;
  border: 2px solid var(--primary-orange);
  border-radius: 50%;
  opacity: 0.3;
  will-change: transform;
}

.ring-1 {
  width: 80px;
  height: 80px;
  animation: orbit 3s linear infinite;
}

.ring-2 {
  width: 120px;
  height: 120px;
  border-color: var(--orange-light);
  animation: orbit 4s linear infinite reverse;
}

.ring-3 {
  width: 160px;
  height: 160px;
  opacity: 0.1;
  animation: orbit 5s linear infinite;
}

@keyframes pulseCore {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

@keyframes orbit {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.ai-status-text {
  color: white;
  font-size: 1.3rem;
  font-weight: 600;
  text-align: center;
  min-height: 2rem;
  animation: textPulse 2s ease-in-out infinite;
  padding: 0 20px;
}

@keyframes textPulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

.ai-progress-container {
  width: 100%;
  max-width: 300px;
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.ai-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--primary-orange), var(--orange-light));
  border-radius: 2px;
  transition: width 0.3s ease;
  position: relative;
  overflow: hidden;
}

.ai-progress-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  animation: shimmer 1.5s infinite;
}

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

/* Navigation */
.glass-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
}

.brand-text {
  background: var(--primary-orange);
  color: white;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: 5px;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 10px rgba(255, 107, 53, 0.3);
}

.nav-cta {
  background: var(--primary-orange);
  color: white;
  border: none;
  padding: 10px 24px;
  border-radius: 50px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 15px var(--orange-glow);
  white-space: nowrap;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--orange-glow);
}

.nav-cta:focus-visible {
  outline: 2px solid var(--primary-orange);
  outline-offset: 2px;
}

/* --- Desktop Links & Actions --- */
.desktop-links {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto; /* لدفع الروابط ناحية اليمين بجوار الزر */
  margin-right: 24px;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-orange);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* --- Mobile Menu Button (Hidden on Desktop) --- */
.mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
  padding: 4px;
  transition: color 0.3s;
}

.mobile-menu-btn:hover {
  color: var(--primary-orange);
}

.mobile-menu-btn .material-icons {
  font-size: 28px;
}

/* --- Mobile Dropdown Menu --- */
.mobile-dropdown {
  position: fixed;
  top: 70px; /* تظهر أسفل النافبار مباشرة */
  left: 0;
  right: 0;
  background: var(--glass-bg);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--glass-border);
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transform: translateY(-150%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
  box-shadow: var(--shadow-md);
  visibility: hidden; /* لمنع التفاعل معها وهي مخفية */
}

.mobile-dropdown.active {
  transform: translateY(0);
  visibility: visible;
}

.mobile-link {
  color: var(--text-primary);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: color 0.3s;
}

.mobile-link:hover {
  color: var(--primary-orange);
}

/* Hero Section */
.hero-cinematic {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 24px 80px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--dark-bg) 0%, #1e1b4b 50%, var(--dark-surface) 100%);
}

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

.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
  pointer-events: none;
  will-change: transform;
  contain: strict;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: var(--primary-orange);
  top: -200px;
  right: -100px;
  animation: float 20s infinite ease-in-out;
}

.orb-2 {
  width: 350px;
  height: 350px;
  background: #8b5cf6;
  bottom: -100px;
  left: -100px;
  animation: float 15s infinite ease-in-out reverse;
}

.orb-3 {
  display: none;
  /* ثالث orb مش ضروري */
}

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

@media (prefers-reduced-motion: reduce) {
  .gradient-orb {
    animation: none;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 16px;
  border-radius: 50px;
  color: white;
  font-size: 0.9rem;
  margin-bottom: 32px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

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

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

.hero-headline {
  font-size: 4rem;
  font-weight: 800;
  color: white;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary-orange) 0%, #ffb347 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.hero-subline {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-orange);
  color: white;
  border: none;
  padding: 18px 36px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

.glow-effect {
  box-shadow: 0 0 40px rgba(255, 107, 53, 0.4);
}

.glow-effect:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 60px rgba(255, 107, 53, 0.6);
}

.btn-primary:focus-visible,
.btn-secondary:focus-visible,
.nav-cta:focus-visible,
.tab-btn:focus-visible {
  outline: 3px solid rgba(255, 107, 53, 0.5);
  outline-offset: 2px;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  padding: 16px 34px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.3s;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  -webkit-tap-highlight-color: transparent;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
}

.trust-indicators {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.trust-item .material-icons {
  font-size: 20px;
  color: var(--primary-orange);
  flex-shrink: 0;
}

/* Hero Visual Elements */
.hero-visual {
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
  width: 400px;
  height: 400px;
  display: none;
  pointer-events: none;
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  animation: floatCard 6s ease-in-out infinite;
}

.card-1 {
  top: 20%;
  left: 0;
  width: 220px;
  animation-delay: 0s;
}

.card-2 {
  top: 50%;
  right: 0;
  width: 200px;
  animation-delay: 1s;
  background: linear-gradient(135deg, #fff 0%, #fff7ed 100%);
  border: 2px solid var(--primary-orange);
}

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

.card-header {
  display: flex;
  gap: 6px;
  margin-bottom: 12px;
}

.card-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.card-dot.red {
  background: #ef4444;
}
.card-dot.yellow {
  background: #f59e0b;
}
.card-dot.green {
  background: #10b981;
}

.skeleton-line {
  height: 8px;
  background: #e2e8f0;
  border-radius: 4px;
  margin-bottom: 8px;
  width: 100%;
}

.skeleton-line.short {
  width: 60%;
}
.skeleton-line.medium {
  width: 80%;
}

.visual-note-preview {
  text-align: left;
}

.vn-header {
  font-weight: 700;
  color: var(--primary-orange);
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.vn-item {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 8px;
  padding-left: 12px;
  border-left: 2px solid var(--orange-light);
}

.connector-line {
  position: absolute;
  top: 40%;
  left: 30%;
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-orange), transparent);
  transform: rotate(-30deg);
  opacity: 0.5;
}

/* How It Works */
.how-it-works {
  padding: 100px 24px;
  background: white;
}

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

.section-header h2 {
  font-size: 2.5rem;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.2;
}

.section-header p {
  font-size: 1.2rem;
  color: var(--text-secondary);
}

.section-header.dark h2 {
  color: white;
}

.section-header.dark p {
  color: rgba(255,255,255,0.7);
}

.steps-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.step-card {
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  text-align: center;
  position: relative;
  transition: all 0.3s;
  box-shadow: var(--shadow-md);
}

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  border-color: var(--orange-light);
}

.step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-orange);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 4px 15px var(--orange-glow);
}

.step-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 107, 53, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: transform 0.3s;
}

.step-card:hover .step-icon {
  transform: scale(1.1);
}

.step-icon .material-icons {
  font-size: 40px;
  color: var(--primary-orange);
}

.step-card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.step-card p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
}

.step-connector {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--orange-light), var(--primary-orange));
  position: relative;
  flex-shrink: 0;
}

.step-connector::after {
  content: '';
  position: absolute;
  right: 0;
  top: -4px;
  width: 0;
  height: 0;
  border-left: 10px solid var(--primary-orange);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

/* Main Tool Section */
.main-tool-section {
  padding: 80px 24px;
  background: linear-gradient(180deg, #f1f5f9 0%, var(--light-bg) 100%);
}

.tool-container {
  max-width: 900px;
  margin: 0 auto;
}

.glass-card {
  background: var(--glass-bg);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: 0 20px 60px -20px rgba(0,0,0,0.1), var(--shadow-glow);
}

.tool-header {
  text-align: center;
  margin-bottom: 32px;
}

.tool-header h2 {
  font-size: 2.2rem;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.2;
}

/* Modern Tabs */
.modern-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
  background: #f1f5f9;
  padding: 6px;
  border-radius: 16px;
}

.tab-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border: none;
  background: transparent;
  color: var(--text-secondary);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border-radius: 12px;
  transition: all 0.3s;
  -webkit-tap-highlight-color: transparent;
}

.tab-btn:hover {
  color: var(--text-primary);
  background: rgba(255,255,255,0.5);
}

.tab-btn.active {
  background: white;
  color: var(--primary-orange);
  box-shadow: var(--shadow-sm);
}

.tab-btn .material-icons {
  font-size: 20px;
  flex-shrink: 0;
}

/* Input Panels */
.input-panel {
  display: none;
  animation: fadeIn 0.3s ease;
}

.input-panel.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.textarea-wrapper {
  position: relative;
}

textarea {
  width: 100%;
  min-height: 280px;
  padding: 20px;
  border: 2px solid #e2e8f0;
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 1.05rem;
  line-height: 1.6;
  resize: vertical;
  transition: all 0.3s;
  background: white;
  -webkit-appearance: none;
  appearance: none;
}

textarea:focus {
  outline: none;
  border-color: var(--primary-orange);
  box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
}

.textarea-stats {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  padding: 0 4px;
  flex-wrap: wrap;
}

.textarea-stats span {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.char-progress {
  flex: 1;
  height: 4px;
  background: #e2e8f0;
  border-radius: 2px;
  overflow: hidden;
  min-width: 100px;
}

.char-progress-fill {
  height: 100%;
  background: var(--primary-orange);
  width: 0%;
  transition: width 0.3s;
  border-radius: 2px;
}

.char-progress-fill.limit-reached {
  background: var(--error);
}

.limit-hint {
  color: #10b981;
  font-size: 0.85rem;
  font-weight: 600;
  background: rgba(16, 185, 129, 0.1);
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
}

/* Upload Zone */
.upload-zone {
  border: 2px dashed #cbd5e1;
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  text-align: center;
  transition: all 0.3s;
  cursor: pointer;
  position: relative;
  background: white;
  overflow: hidden;
}

.upload-zone:hover {
  border-color: var(--primary-orange);
  background: rgba(255, 107, 53, 0.02);
}

.upload-zone.drag-over {
  border-color: var(--primary-orange);
  background: rgba(255, 107, 53, 0.05);
  transform: scale(1.02);
}

.upload-zone.drag-over .upload-content {
  opacity: 0;
}

.upload-zone.drag-over .upload-active-state {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.upload-content {
  transition: opacity 0.3s;
  pointer-events: none;
}

.upload-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 107, 53, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: transform 0.3s;
}

.upload-zone:hover .upload-icon {
  transform: scale(1.1);
}

.upload-icon .material-icons {
  font-size: 40px;
  color: var(--primary-orange);
}

.upload-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.upload-subtitle {
  font-size: 1rem;
  font-weight: bold;
  color: var(--text-secondary);
  margin-bottom: 20px;
  display: block;
}

.file-types {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}

.file-badge {
  padding: 4px 12px;
  background: #f1f5f9;
  color: var(--text-secondary);
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
}

.upload-active-state {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  opacity: 0;
  transition: all 0.3s;
  color: var(--primary-orange);
  pointer-events: none;
}

.upload-active-state .material-icons {
  font-size: 48px;
  margin-bottom: 8px;
}

.upload-active-state p {
  font-weight: 700;
  font-size: 1.2rem;
}

.file-list {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.file-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  animation: slideIn 0.3s ease;
  gap: 12px;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.file-info {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  flex: 1;
}

.file-icon {
  color: var(--primary-orange);
  flex-shrink: 0;
}

.file-name-text {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.95rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.file-remove {
  background: none;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  transition: all 0.2s;
  flex-shrink: 0;
}

.file-remove:hover {
  background: rgba(239, 68, 68, 0.1);
  color: var(--error);
}

/* Generate Button */
.btn-generate-ai {
  width: 100%;
  margin-top: 32px;
  padding: 20px;
  background: linear-gradient(135deg, var(--primary-orange) 0%, var(--orange-dark) 100%);
  color: white;
  border: none;
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
  box-shadow: 0 10px 30px var(--orange-glow);
  -webkit-tap-highlight-color: transparent;
}

.btn-generate-ai:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(255, 107, 53, 0.5);
}

.btn-generate-ai:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  background: linear-gradient(135deg, #b0b0b0 0%, #909090 100%);
  box-shadow: none;
  transform: none !important;
}

.btn-spinner {
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255,255,255,0.35);
  border-top-color: white;
  border-radius: 50%;
  animation: spinnerRotate 0.75s linear infinite;
  flex-shrink: 0;
}

@keyframes spinnerRotate {
  to {
    transform: rotate(360deg);
  }
}

.btn-generate-ai:focus-visible {
  outline: 3px solid rgba(255, 107, 53, 0.5);
  outline-offset: 2px;
}

.btn-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
  z-index: 2;
}

.btn-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s;
}

.btn-generate-ai:hover .btn-shine {
  left: 100%;
}

/* Result Section */
.result-section {
  max-width: 1200px;
  margin: 60px auto 0;
}

.result-container {
  animation: fadeIn 0.5s ease;
}

.result-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 16px;
}

.result-header h3 {
  font-size: 1.5rem;
  color: var(--text-primary);
}

.result-frame-wrapper {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid #e2e8f0;
  position: relative;
  width: 100%;
}

/* Inline Loader inside Result Area */
.inline-loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 60px 20px;
  min-height: 400px;
  background: linear-gradient(135deg, var(--dark-bg) 0%, #1e1b4b 50%, var(--dark-surface) 100%);
  border-radius: var(--radius-lg);
}

.inline-orb {
  position: relative;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.inline-status-text {
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
  min-height: 1.8rem;
  animation: textPulse 2s ease-in-out infinite;
  padding: 0 20px;
}

#resultFrame {
  width: 100%;
  height: 700px;
  border: none;
  display: block;
}

.btn-open-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--dark-surface);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  -webkit-tap-highlight-color: transparent;
}

.btn-open-tab:hover {
  background: var(--dark-bg);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-open-tab:focus-visible {
  outline: 2px solid var(--dark-surface);
  outline-offset: 2px;
}

/* ===== SHOWCASE / EXAMPLES SECTION ===== */

#samples-studio {
  padding: 80px 0 60px;
  overflow: hidden;
  background: linear-gradient(180deg, #0f172a 0%, #1a1035 100%);
}

#samples-studio .section-header {
  padding: 0 24px;
  margin-bottom: 48px;
}

/* Container - needed for absolute-positioned arrows */
.showcase-container {
  position: relative;
  width: 100%;
}

/* Horizontal scroll track */
.showcase-scroll {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 12px 32px 16px;
  cursor: grab;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.showcase-scroll::-webkit-scrollbar {
  display: none;
}

.showcase-scroll:active {
  cursor: grabbing;
}

/* Each slide */
.showcase-item {
  flex: 0 0 auto;
  scroll-snap-align: center;
  width: clamp(400px, 78vw, 1000px);
}

/* Card */
.showcase-card {
  background: #1e293b;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5),
              0 0 0 1px rgba(255, 255, 255, 0.05);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.35s ease;
  will-change: transform;
}

.showcase-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6),
              0 0 0 1px rgba(255, 107, 53, 0.4),
              0 0 40px rgba(255, 107, 53, 0.12);
}

/* Image wrapper — full image, no cropping */
.showcase-image-wrapper {
  width: 100%;
  background: #f8fafc;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
  max-height: 80vh;
}

.showcase-image-wrapper img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  vertical-align: top;
  transition: transform 0.5s ease;
}

.showcase-card:hover .showcase-image-wrapper img {
  transform: scale(1.02);
}

/* Label below image */
.showcase-label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.showcase-label .material-icons {
  font-size: 18px;
  color: var(--primary-orange);
  flex-shrink: 0;
}

/* ── Navigation Arrows ── */
.showcase-arrow {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.showcase-arrow:hover {
  background: var(--primary-orange);
  border-color: var(--primary-orange);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 0 20px rgba(255, 107, 53, 0.4);
}

.showcase-arrow:disabled {
  opacity: 0.2;
  cursor: default;
  pointer-events: none;
}

.showcase-prev { left: 14px; }
.showcase-next { right: 14px; }

.showcase-arrow .material-icons {
  font-size: 28px;
}

/* ── Dot Indicators ── */
.showcase-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  padding: 0 24px;
}

.showcase-dot {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.25);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.showcase-dot.active {
  width: 28px;
  border-radius: 4px;
  background: var(--primary-orange);
}

.showcase-dot:hover:not(.active) {
  background: rgba(255, 255, 255, 0.5);
  transform: scale(1.2);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  #samples-studio {
    padding: 60px 0 48px;
  }

  .showcase-scroll {
    padding: 12px 28px 16px;
    gap: 16px;
  }

  .showcase-item {
    width: 88vw;
    max-width: 520px;
  }

  .showcase-image-wrapper {
    max-height: 62vh;
  }

  .showcase-arrow {
    width: 40px;
    height: 40px;
  }

  .showcase-prev { left: 6px; }
  .showcase-next { right: 6px; }

  .showcase-arrow .material-icons {
    font-size: 22px;
  }

  /* Hide desktop links, show hamburger */
  .desktop-links {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
    align-items: center;
  }

  .mobile-dropdown {
    top: 62px;
  }
}

@media (max-width: 480px) {
  .showcase-item {
    width: 85vw;
  }

  .showcase-arrow {
    display: none;
  }

  .showcase-dots {
    margin-top: 20px;
  }
}




/* Transparency Section */
.transparency-section {
  padding: 80px 24px;
  background: linear-gradient(180deg, var(--light-bg) 0%, white 100%);
}

.transparency-card {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: var(--radius-xl);
  padding: 48px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.transparency-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 107, 53, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.transparency-icon .material-icons {
  font-size: 40px;
  color: var(--primary-orange);
}

.transparency-card h2 {
  font-size: 2rem;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.transparency-card > p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 40px;
}

.limits-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.limit-item {
  text-align: center;
}

.limit-value {
  display: block;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--primary-orange);
  line-height: 1;
  margin-bottom: 8px;
}

.limit-label {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.limit-divider {
  width: 1px;
  height: 60px;
  background: #e2e8f0;
  flex-shrink: 0;
}

.transparency-note {
  color: var(--text-secondary);
  font-size: 1rem;
  font-style: italic;
}

/* Features Detailed */
.features-detailed {
  padding: 100px 24px;
  background: white;
}

.features-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-block {
  text-align: center;
  padding: 40px 24px;
  border-radius: var(--radius-lg);
  transition: all 0.3s;
}

.feature-block:hover {
  background: rgba(255, 107, 53, 0.03);
  transform: translateY(-4px);
}

.feature-icon-wrap {
  width: 70px;
  height: 70px;
  background: rgba(255, 107, 53, 0.1);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.3s;
}

.feature-block:hover .feature-icon-wrap {
  background: var(--primary-orange);
  transform: scale(1.1) rotate(5deg);
}

.feature-icon-wrap .material-icons {
  font-size: 32px;
  color: var(--primary-orange);
  transition: color 0.3s;
}

.feature-block:hover .feature-icon-wrap .material-icons {
  color: white;
}

.feature-block h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.feature-block p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Footer */
.modern-footer {
  background: var(--dark-bg);
  color: white;
  padding: 60px 24px 40px;
  text-align: center;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 12px;
}

/* ===== COMPREHENSIVE RESPONSIVE STYLES ===== */

/* --- Tablet: 768px - 1024px --- */
@media (max-width: 1024px) {
  .hero-cinematic {
    padding: 100px 24px 60px;
  }

  .hero-headline {
    font-size: 3rem;
  }

  .glass-card {
    padding: 36px 32px;
  }

  .tool-header h2 {
    font-size: 1.9rem;
  }

  .transparency-card {
    padding: 40px 32px;
  }

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

/* --- Mobile: max 768px --- */
@media (max-width: 768px) {

  /* Navigation */
  .glass-nav {
    padding: 12px 16px;
  }

  .brand-text {
    font-size: 1.1rem;
    padding: 5px 12px;
  }

  .nav-cta {
    padding: 8px 16px;
    font-size: 0.9rem;
  }

  /* Hero */
  .hero-cinematic {
    padding: 90px 20px 60px;
    min-height: auto;
  }

  .hero-headline {
    font-size: 2.2rem;
    letter-spacing: -0.01em;
  }

  .hero-subline {
    font-size: 1rem;
    margin-bottom: 28px;
  }

  .hero-badge {
    font-size: 0.8rem;
    padding: 6px 12px;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 320px;
    justify-content: center;
    padding: 16px 28px;
    font-size: 1rem;
  }

  .trust-indicators {
    gap: 16px;
    flex-direction: column;
    align-items: center;
  }

  .trust-item {
    font-size: 0.88rem;
  }

  /* How It Works */
  .how-it-works {
    padding: 60px 20px;
  }

  .section-header {
    margin-bottom: 40px;
  }

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

  .section-header p {
    font-size: 1rem;
  }

  .steps-container {
    gap: 32px;
  }

  .step-card {
    min-width: unset;
    width: 100%;
    max-width: 100%;
    padding: 36px 24px 28px;
  }

  /* Main Tool Section */
  .main-tool-section {
    padding: 48px 16px;
  }

  .glass-card {
    padding: 24px 20px;
    border-radius: var(--radius-lg);
  }

  .tool-header h2 {
    font-size: 1.6rem;
  }

  /* Tabs */
  .modern-tabs {
    gap: 6px;
    padding: 5px;
  }

  .tab-btn {
    padding: 10px 8px;
    font-size: 0.85rem;
    gap: 4px;
    flex-direction: column;
  }

  .tab-btn .material-icons {
    font-size: 18px;
  }

  /* Upload Zone */
  .upload-zone {
    padding: 40px 20px;
  }

  .upload-icon {
    width: 60px;
    height: 60px;
  }

  .upload-icon .material-icons {
    font-size: 30px;
  }

  .upload-title {
    font-size: 1.1rem;
  }

  .upload-subtitle {
    font-size: 0.9rem;
  }

  /* Result Frame */
  #resultFrame {
    height: 500px;
  }

  .result-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .result-header h3 {
    font-size: 1.2rem;
  }

  .btn-open-tab {
    width: 100%;
    justify-content: center;
    padding: 10px 20px;
    font-size: 0.95rem;
  }

  /* Generate Button */
  .btn-generate-ai {
    padding: 16px;
    font-size: 1.05rem;
    margin-top: 24px;
  }

  /* Transparency Section */
  .transparency-section {
    padding: 56px 16px;
  }

  .transparency-card {
    padding: 32px 20px;
    border-radius: var(--radius-lg);
  }

  .transparency-card h2 {
    font-size: 1.6rem;
  }

  .transparency-card > p {
    font-size: 1rem;
    margin-bottom: 28px;
  }

  .limits-grid {
    gap: 24px;
    flex-direction: column;
  }

  .limit-divider {
    width: 60px;
    height: 1px;
  }

  .limit-value {
    font-size: 2.8rem;
  }

  /* Features */
  .features-detailed {
    padding: 60px 20px;
  }

  .features-grid-modern {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .feature-block {
    padding: 28px 20px;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-md);
  }

  /* Showcase */
  #samples-studio {
    padding: 48px 0;
  }

  #samples-studio .section-header {
    padding: 0 20px;
  }

  .showcase-item {
    width: 88vw;
  }

  /* Footer */
  .modern-footer {
    padding: 40px 20px 32px;
  }

  .footer-brand {
    font-size: 1.4rem;
  }

  /* Toast */
  .toast-container {
    top: 80px;
    right: 12px;
    left: 12px;
    max-width: 100%;
  }

  .toast {
    min-width: unset;
    width: 100%;
    max-width: 100%;
  }
}

/* --- Small phones: max 480px --- */
@media (max-width: 480px) {
  .hero-headline {
    font-size: 1.9rem;
  }

  .hero-subline {
    font-size: 0.95rem;
  }

  .glass-card {
    padding: 20px 16px;
  }

  .tab-btn {
    font-size: 0.78rem;
    padding: 8px 4px;
  }

  .upload-zone {
    padding: 32px 16px;
  }

  .transparency-card {
    padding: 24px 16px;
  }

  .limit-value {
    font-size: 2.4rem;
  }

  #resultFrame {
    height: 420px;
  }

  .btn-primary,
  .btn-secondary {
    font-size: 0.95rem;
    padding: 14px 20px;
  }

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

/* --- Prevent horizontal overflow on all sizes --- */
@media (max-width: 768px) {
  .hero-visual {
    display: none !important;
  }

  .limit-divider:not(:last-child) {
    display: block;
  }
}


/* ================================================
   TRUST PAGES — add this block to the END of style.css
   Used by: about.html, contact.html, privacy-policy.html
   ================================================ */

/* Page Hero (mini) */
.page-hero {
  background: linear-gradient(135deg, var(--dark-bg) 0%, #1e1b4b 50%, var(--dark-surface) 100%);
  padding: 130px 24px 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: var(--primary-orange);
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  top: -200px; right: -100px;
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  width: 350px; height: 350px;
  background: #8b5cf6;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.12;
  bottom: -100px; left: -100px;
  pointer-events: none;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.page-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 107, 53, 0.15);
  border: 1px solid rgba(255, 107, 53, 0.3);
  color: var(--orange-light);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.page-badge .material-icons { font-size: 16px; }

.page-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  color: white;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.page-hero h1 span {
  background: linear-gradient(135deg, var(--primary-orange), var(--orange-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-hero p {
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto;
}

/* Page Content */
.page-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 70px 24px 100px;
}

.last-updated {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--light-bg);
  border: 1px solid #e2e8f0;
  color: var(--text-secondary);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 48px;
}

.last-updated .material-icons { font-size: 15px; }

.content-section {
  margin-bottom: 56px;
}

.content-section:last-child { margin-bottom: 0; }

.content-section h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(255, 107, 53, 0.15);
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-icon {
  width: 36px; height: 36px;
  background: rgba(255, 107, 53, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.section-icon .material-icons {
  font-size: 18px;
  color: var(--primary-orange);
}

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

.content-section p:last-child { margin-bottom: 0; }

.content-section ul,
.content-section ol {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  padding-left: 24px;
  margin-top: 12px;
}

.content-section li { margin-bottom: 8px; }

.content-section a {
  color: var(--primary-orange);
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.2s;
}

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

/* Info / highlight box */
.info-box {
  background: rgba(255, 107, 53, 0.06);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-left: 4px solid var(--primary-orange);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin: 24px 0;
}

.info-box p {
  color: var(--text-primary);
  margin-bottom: 0;
  font-weight: 500;
}

/* Footer additions */
.footer-disclaimer {
  color: var(--text-light);
  font-size: 0.82rem;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 28px;
  padding-top: 20px;
  border-top: 1px solid #1e293b;
}

/* Active nav link state */
.nav-link.active,
.mobile-link.active {
  color: var(--primary-orange);
}

/* Responsive — trust pages */
@media (max-width: 768px) {
  .page-hero { padding: 100px 20px 52px; }
  .page-hero h1 { font-size: 2rem; }
  .page-hero p { font-size: 1rem; }
  .page-content { padding: 48px 20px 80px; }
  .content-section h2 { font-size: 1.25rem; }
  .content-section p { font-size: 1rem; }
}

@media (max-width: 480px) {
  .page-hero h1 { font-size: 1.75rem; }
  }
  
