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

body {
  font-family: 'Vazirmatn', sans-serif;
  background: #0a0e17;
  color: #e8eaed;
  overflow-x: hidden;
  direction: rtl;
}

body.loading {
  overflow: hidden;
  pointer-events: none;
}

:root {
  --bg-deep: #0a0e17;
  --bg-card: rgba(20, 28, 45, 0.6);
  --border-card: rgba(255, 255, 255, 0.06);
  --border-glow: rgba(232, 85, 46, 0.3);
  --text-primary: #ffffff;
  --text-secondary: #9aa3b2;
  --text-muted: #5a6270;
  --red-1: #B91C1C;
  --red-2: #E8552E;
  --red-3: #EF4444;
  --orange-1: #F05A28;
  --orange-2: #F78C3F;
  --orange-3: #F5A623;
}

/* ===== PARTICLE CANVAS ===== */
#particle-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* ===== FLOATING ORBS ===== */
.floating-orb {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(60px);
  opacity: 0.5;
}

.orb-1 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(19, 32, 56, 0.6) 0%, transparent 70%);
  top: 10%; left: -100px;
  animation: orbFloat1 20s ease-in-out infinite;
}

.orb-2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(232, 85, 46, 0.25) 0%, transparent 70%);
  bottom: 20%; right: -50px;
  animation: orbFloat2 25s ease-in-out infinite;
}

.orb-3 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.2) 0%, transparent 70%);
  top: 50%; left: 50%;
  animation: orbFloat3 18s ease-in-out infinite;
}

@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(50px, 80px) scale(1.1); }
  66% { transform: translate(-30px, 40px) scale(0.9); }
}

@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-60px, -100px) scale(1.2); }
}

@keyframes orbFloat3 {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-40%, -60%) scale(1.3); }
}

/* ===== GRID LINES ===== */
.grid-lines {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.03;
  background-image: 
    linear-gradient(rgba(30, 58, 95, 0.4) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 58, 95, 0.4) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridMove 30s linear infinite;
}

@keyframes gridMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(60px, 60px); }
}

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

@keyframes logoFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-15px) rotate(2deg); }
  75% { transform: translateY(10px) rotate(-2deg); }
}

@keyframes orbitRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ===== LOADING SCREEN ===== */
.loading-screen {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: var(--bg-deep);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  transition: opacity 0.8s, visibility 0.8s;
}

.loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
}

.loading-spinner {
  width: 60px; height: 60px;
  border: 3px solid rgba(237,76,12,0.2);
  border-top-color: var(--orange-2);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

.loading-text {
  font-size: 18px;
  color: var(--orange-2);
  font-weight: 600;
  animation: loadingPulse 1.5s ease-in-out infinite;
}

@keyframes loadingPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(10, 14, 23, 0.75);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  animation: navSlideDown 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  transform: translateY(-100%);
  will-change: transform;
}

@keyframes navSlideDown {
  to { transform: translateY(0); }
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 20px;
  color: var(--text-primary);
}

.logo-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--red-2), var(--orange-2));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(232, 85, 46, 0.5), 0 0 40px rgba(232, 85, 46, 0.2);
  animation: logoPulse 3s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}

.logo-icon::before {
  content: '';
  position: absolute;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.3) 50%, transparent 60%);
  animation: logoShine 3s ease-in-out infinite;
}

@keyframes logoPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(232, 85, 46, 0.5), 0 0 40px rgba(232, 85, 46, 0.2); }
  50% { box-shadow: 0 0 30px rgba(232, 85, 46, 0.8), 0 0 60px rgba(232, 85, 46, 0.4); }
}

@keyframes logoShine {
  0% { transform: translateX(-100%) rotate(45deg); }
  100% { transform: translateX(100%) rotate(45deg); }
}

.tagline {
  font-size: 13px;
  color: var(--orange-2);
  font-weight: 600;
  margin-right: 8px;
  animation: taglineGlow 2s ease-in-out infinite;
}

@keyframes taglineGlow {
  0%, 100% { text-shadow: 0 0 5px rgba(247, 140, 63, 0.3); }
  50% { text-shadow: 0 0 15px rgba(247, 140, 63, 0.6), 0 0 30px rgba(247, 140, 63, 0.3); }
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  align-items: center;
}

.nav-links li {
  position: relative;
  opacity: 0;
  animation: navLinkFade 0.5s ease forwards;
}

.nav-links li:nth-child(1) { animation-delay: 0.3s; }
.nav-links li:nth-child(2) { animation-delay: 0.4s; }
.nav-links li:nth-child(3) { animation-delay: 0.5s; }
.nav-links li:nth-child(4) { animation-delay: 0.6s; }
.nav-links li:nth-child(5) { animation-delay: 0.7s; }

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

.nav-links a {
  color: #b0b8c8;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s;
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a:hover {
  color: var(--text-primary);
  transform: translateY(-2px);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 50%;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--red-2), var(--orange-2));
  border-radius: 2px;
  transition: all 0.3s;
  transform: translateX(-50%);
}

.nav-links a:hover::after { width: 100%; }

.dropdown-arrow {
  font-size: 10px;
  transition: transform 0.3s;
}

.nav-links li:hover .dropdown-arrow { transform: rotate(180deg); }

.nav-cta {
  padding: 10px 24px;
  background: linear-gradient(135deg, var(--red-2), var(--orange-2));
  border: none;
  border-radius: 8px;
  color: white;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(232, 85, 46, 0.3);
  font-family: 'Vazirmatn', sans-serif;
  position: relative;
  overflow: hidden;
  animation: ctaAppear 0.6s ease 0.8s forwards;
  opacity: 0;
  transform: scale(0.8);
}

@keyframes ctaAppear {
  to { opacity: 1; transform: scale(1); }
}

.nav-cta::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.nav-cta:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 30px rgba(232, 85, 46, 0.5), 0 0 60px rgba(232, 85, 46, 0.2);
}

.nav-cta:hover::before { left: 100%; }

/* ===== HERO ===== */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 48px 80px;
  gap: 60px;
  overflow: hidden;
}

.hero-content {
  flex: 1;
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(232, 85, 46, 0.1);
  border: 1px solid rgba(232, 85, 46, 0.2);
  border-radius: 100px;
  font-size: 13px;
  color: var(--orange-2);
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
  animation: badgeSlide 0.8s ease 0.5s forwards;
  opacity: 0;
  transform: translateX(30px);
}

@keyframes badgeSlide {
  to { opacity: 1; transform: translateX(0); }
}

.hero-badge .dot {
  width: 8px; height: 8px;
  background: var(--red-2);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--red-2), 0 0 20px var(--red-2);
  animation: dotPulse 2s infinite;
}

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

.hero h1 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #fff 0%, #c8cdd5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: titleReveal 1s ease 0.7s forwards;
  opacity: 0;
  transform: translateY(30px);
}

.hero h1 span {
  background: linear-gradient(135deg, var(--red-2), var(--orange-3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.hero h1 span::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--red-2), var(--orange-3));
  border-radius: 2px;
  animation: underlineGrow 1s ease 1.5s forwards;
  transform: scaleX(0);
  transform-origin: right;
}

@keyframes underlineGrow {
  to { transform: scaleX(1); }
}

@keyframes titleReveal {
  to { opacity: 1; transform: translateY(0); }
}

.hero p {
  font-size: 18px;
  color: #b0b8c8;
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 520px;
  animation: textFade 1s ease 0.9s forwards;
  opacity: 0;
  transform: translateY(20px);
}

@keyframes textFade {
  to { opacity: 1; transform: translateY(0); }
}

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

.btn-primary {
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--red-2), var(--orange-2));
  border: none;
  border-radius: 12px;
  color: white;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 25px rgba(232, 85, 46, 0.35);
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Vazirmatn', sans-serif;
  position: relative;
  overflow: hidden;
  animation: btnPop 0.6s ease 1.1s forwards;
  opacity: 0;
  transform: scale(0.8);
}

@keyframes btnPop {
  to { opacity: 1; transform: scale(1); }
}

.btn-primary::before {
  content: '';
  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.6s;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 35px rgba(232, 85, 46, 0.5), 0 0 50px rgba(232, 85, 46, 0.2);
}

.btn-primary:hover::before { left: 100%; }

.btn-secondary {
  padding: 14px 32px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Vazirmatn', sans-serif;
  position: relative;
  overflow: hidden;
  animation: btnPop 0.6s ease 1.2s forwards;
  opacity: 0;
  transform: scale(0.8);
}

.btn-secondary:hover {
  border-color: rgba(232, 85, 46, 0.4);
  background: rgba(232, 85, 46, 0.05);
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(232, 85, 46, 0.1);
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* ===== SECTIONS ===== */
.partners {
  position: relative;
  z-index: 1;
  padding: 100px 48px;
  text-align: center;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.section-header h2 {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #fff, #a0a8b8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header .emoji {
  color: var(--orange-2);
  -webkit-text-fill-color: var(--orange-2);
  background: none;
  display: inline-block;
  animation: emojiBounce 2s ease-in-out infinite;
}

@keyframes emojiBounce {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-10px) rotate(10deg); }
  75% { transform: translateY(-5px) rotate(-5deg); }
}

.section-header p {
  font-size: 17px;
  color: #b0b8c8;
  line-height: 1.6;
}

.about-text {
  max-width: 800px;
  margin: 0 auto 60px;
  font-size: 16px;
  color: #b0b8c8;
  line-height: 2;
  text-align: center;
}

.about-text strong {
  color: var(--orange-2);
  font-weight: 700;
}

.partner-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.partner-logo {
  width: 140px; height: 90px;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 12px;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.45s ease, box-shadow 0.45s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.partner-logo img {
  max-width: 70%;
  max-height: 65%;
  object-fit: contain;
  filter: grayscale(45%) brightness(1.05);
  transition: filter 0.45s ease, transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}

.partner-logo::before {
  content: '';
  position: absolute;
  top: 0; left: -150%;
  width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(232, 85, 46, 0.55), rgba(245, 166, 35, 0.65), rgba(232, 85, 46, 0.55), transparent);
  filter: blur(6px);
  transform: skewX(-20deg);
  transition: left 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
  pointer-events: none;
}

.partner-logo:hover {
  border-color: rgba(232, 85, 46, 0.4);
  transform: translateY(-8px) scale(1.12);
  box-shadow: 0 14px 34px rgba(232, 85, 46, 0.22);
}

.partner-logo:hover img {
  filter: grayscale(0%) brightness(1);
  transform: scale(1.08);
}

.partner-logo:hover::before { left: 150%; }

.partner-logo.sweep-diag-1::before {
  top: -50%; left: -150%;
  width: 60%; height: 200%;
}
.partner-logo.sweep-diag-1:hover::before { left: 150%; top: 50%; }

.partner-logo.sweep-vert::before {
  top: -150%; left: 20%;
  width: 60%; height: 60%;
  transform: skewY(-20deg);
}
.partner-logo.sweep-vert:hover::before { top: 150%; left: 20%; }

.partner-logo.sweep-rtl::before {
  top: 0; right: -150%; left: auto;
}
.partner-logo.sweep-rtl:hover::before { right: 150%; left: auto; }

.partner-logo.bakhshi-logo img {
  max-width: 88%;
  max-height: 82%;
}

/* ===== COMPARISON CARDS ===== */
.why-orderino {
  position: relative;
  z-index: 1;
  padding: 100px 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.comparison-card {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-card);
  border-radius: 20px;
  padding: 32px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.comparison-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(232, 85, 46, 0.3), transparent);
  transform: scaleX(0);
  transition: transform 0.5s;
}

.comparison-card:hover::before {
  transform: scaleX(1);
}

.comparison-card:hover {
  border-color: rgba(232, 85, 46, 0.3);
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 40px rgba(232, 85, 46, 0.1);
}

.comparison-card .emoji {
  font-size: 40px;
  margin-bottom: 16px;
  display: block;
  animation: emojiFloat 3s ease-in-out infinite;
}

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

.comparison-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.comparison-card .without {
  background: rgba(239, 68, 68, 0.08);
  border-right: 3px solid var(--red-3);
  padding: 14px 16px;
  border-radius: 10px;
  margin-bottom: 12px;
  transition: all 0.3s;
}

.comparison-card .without:hover {
  background: rgba(239, 68, 68, 0.12);
  transform: translateX(-5px);
}

.comparison-card .without-label {
  font-size: 12px;
  color: var(--red-3);
  font-weight: 700;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.comparison-card .with {
  background: rgba(232, 85, 46, 0.08);
  border-right: 3px solid var(--red-2);
  padding: 14px 16px;
  border-radius: 10px;
  transition: all 0.3s;
  position: relative;
}

.comparison-card .with::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 0; height: 100%;
  background: rgba(232, 85, 46, 0.05);
  border-radius: 10px;
  transition: width 0.4s;
  z-index: 0;
}

.comparison-card .with:hover::before {
  width: 100%;
}

.comparison-card .with:hover {
  transform: translateX(5px);
}

.comparison-card .with-label {
  font-size: 12px;
  color: var(--red-2);
  font-weight: 700;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
  position: relative;
  z-index: 1;
}

.comparison-card p {
  font-size: 14px;
  color: #b0b8c8;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* ===== FEATURE CARDS ===== */
.features-section {
  position: relative;
  z-index: 1;
  padding: 100px 48px;
  max-width: 1200px;
  margin: 0 auto;
}

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

.feature-card-large {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-card);
  border-radius: 20px;
  padding: 40px 32px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.feature-card-large::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(232, 85, 46, 0.3), transparent);
  transform: scaleX(0);
  transition: transform 0.5s;
}

.feature-card-large:hover::before {
  transform: scaleX(1);
}

.feature-card-large::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(237,76,12,0.1) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}

.feature-card-large:hover::after {
  opacity: 1;
}

.feature-card-large:hover {
  border-color: rgba(232, 85, 46, 0.3);
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 25px 70px rgba(0,0,0,0.4), 0 0 50px rgba(232, 85, 46, 0.12);
}

.feature-card-large .emoji {
  font-size: 48px;
  margin-bottom: 20px;
  display: block;
  animation: emojiFloat 3s ease-in-out infinite;
  animation-delay: calc(var(--i, 0) * 0.5s);
}

.feature-card-large h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  transition: color 0.3s;
}

.feature-card-large:hover h3 {
  color: var(--orange-2);
}

.feature-card-large p {
  font-size: 15px;
  color: #b0b8c8;
  line-height: 1.7;
}

.connected-note {
  text-align: center;
  margin-top: 50px;
  padding: 28px;
  background: linear-gradient(135deg, rgba(232, 85, 46, 0.1), rgba(245, 166, 35, 0.05));
  border: 1px solid rgba(232, 85, 46, 0.2);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}

.connected-note::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(245, 166, 35, 0.05), transparent);
  animation: noteShine 4s ease-in-out infinite;
}

@keyframes noteShine {
  0%, 100% { left: -100%; }
  50% { left: 100%; }
}

.connected-note p {
  font-size: 16px;
  color: var(--text-primary);
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

.connected-note strong {
  color: var(--orange-2);
}

/* ===== CTA SECTIONS ===== */
.cta-section {
  position: relative;
  z-index: 1;
  padding: 100px 48px;
  text-align: center;
}

.cta-card {
  max-width: 700px;
  margin: 0 auto;
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-card);
  border-radius: 32px;
  padding: 64px 48px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s;
}

.cta-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(232, 85, 46, 0.5), transparent);
  animation: ctaLinePulse 3s ease-in-out infinite;
}

@keyframes ctaLinePulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.cta-card::after {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.15) 0%, transparent 60%);
  top: -150px; left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  animation: ctaGlow 4s ease-in-out infinite;
}

@keyframes ctaGlow {
  0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.5; }
  50% { transform: translateX(-50%) scale(1.2); opacity: 0.8; }
}

.cta-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.4), 0 0 60px rgba(232, 85, 46, 0.1);
}

.cta-card h2 {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.cta-card p {
  font-size: 17px;
  color: #b0b8c8;
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}

.brand-section {
  position: relative;
  z-index: 1;
  padding: 80px 48px;
  text-align: center;
}

.brand-section h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 12px;
  animation: brandPulse 3s ease-in-out infinite;
}

@keyframes brandPulse {
  0%, 100% { text-shadow: 0 0 0 transparent; }
  50% { text-shadow: 0 0 20px rgba(232, 85, 46, 0.3); }
}

.brand-section p {
  font-size: 18px;
  color: #b0b8c8;
}

.final-cta {
  position: relative;
  z-index: 1;
  padding: 100px 48px;
  text-align: center;
  background: linear-gradient(180deg, transparent, rgba(232, 85, 46, 0.08));
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232, 85, 46, 0.3), transparent);
  animation: lineGlow 3s ease-in-out infinite;
}

@keyframes lineGlow {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

.final-cta h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 16px;
}

.final-cta p {
  font-size: 17px;
  color: #b0b8c8;
  margin-bottom: 32px;
}

/* ===== FOOTER ===== */
.footer {
  position: relative;
  z-index: 1;
  padding: 40px 48px;
  border-top: 1px solid rgba(30, 58, 95, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 18px;
  color: var(--text-primary);
}

.footer-right {
  display: flex;
  gap: 24px;
}

.footer-right a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s;
  position: relative;
}

.footer-right a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--orange-2);
  transition: width 0.3s;
}

.footer-right a:hover {
  color: var(--orange-2);
}

.footer-right a:hover::after {
  width: 100%;
}

/* ===== PARTICLE BUTTON ===== */
.particle-btn {
  position: relative;
  overflow: visible;
}

.particle-btn .particle {
  position: absolute;
  width: 4px; height: 4px;
  background: var(--orange-2);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero { flex-direction: column; padding-top: 120px; text-align: center; }
  .hero-content { max-width: 100%; }
  .hero p { margin: 0 auto 36px; }
  .hero-buttons { justify-content: center; }
  .hero-visual { order: -1; margin-bottom: 40px; }
  .hero-visual img { width: 200px !important; height: 200px !important; }
  .hero-visual > div { width: 250px !important; height: 250px !important; }
  .hero { flex-direction: column-reverse !important; }
  .comparison-grid { grid-template-columns: 1fr; }
  .features-grid-3 { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .navbar { padding: 16px 24px; }
  .nav-links { display: none; }
  .hero { padding: 120px 24px 60px; }
  .hero h1 { font-size: 32px; }
  .partners, .why-orderino, .features-section, .cta-section, .brand-section, .final-cta { padding: 60px 24px; }
  .footer { flex-direction: column; gap: 20px; text-align: center; }
  .cta-card { padding: 40px 24px; }
}

/* ===== THEME TOGGLE BUTTON ===== */
.theme-toggle {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 9999;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border-card);
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.theme-toggle:hover { transform: scale(1.1) rotate(15deg); box-shadow: 0 6px 24px rgba(232,85,46,0.35); }
.theme-toggle .icon-sun { display: none; }
.theme-toggle .icon-moon { display: block; }

/* ===== LIGHT THEME ===== */
html[data-theme="light"] {
  --bg-deep: #EEF4FC;
  --bg-card: #F8FBFF;
  --border-card: rgba(0, 0, 0, 0.08);
  --border-glow: rgba(232, 85, 46, 0.4);
  --text-primary: #050a14;
  --text-secondary: #1f2937;
  --text-muted: #4b5563;
}

html[data-theme="light"] body { background: #EEF4FC; color: #050a14; }

html[data-theme="light"] .theme-toggle .icon-sun { display: block; }
html[data-theme="light"] .theme-toggle .icon-moon { display: none; }

/* Background effects: much softer in light mode so text stands out */
html[data-theme="light"] .orb-1,
html[data-theme="light"] .orb-2,
html[data-theme="light"] .orb-3 { opacity: 0.12; }

html[data-theme="light"] #particle-canvas { opacity: 0.2; }

html[data-theme="light"] .grid-lines {
  opacity: 0.12;
  filter: invert(0);
  background-image:
    linear-gradient(rgba(80, 120, 170, 0.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(80, 120, 170, 0.2) 1px, transparent 1px);
}

html[data-theme="light"] .loading-screen { background: #EEF4FC; }

html[data-theme="light"] .navbar {
  background: rgba(255, 255, 255, 0.75);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

html[data-theme="light"] .nav-links a { color: #374151; }
html[data-theme="light"] .nav-links a:hover { color: #050a14; }

/* Gradient text: switch to dark, high-contrast tones */
html[data-theme="light"] .hero h1 {
  background: linear-gradient(135deg, #050a14 0%, #1f2937 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

html[data-theme="light"] .section-header h2 {
  background: none;
  -webkit-text-fill-color: #050a14;
  color: #050a14;
}

/* Hardcoded grey text: darken so it does not disappear on the light background */
html[data-theme="light"] .hero p,
html[data-theme="light"] .section-header p,
html[data-theme="light"] .about-text,
html[data-theme="light"] .comparison-card p,
html[data-theme="light"] .feature-card-large p,
html[data-theme="light"] .cta-card p,
html[data-theme="light"] .brand-section p,
html[data-theme="light"] .final-cta p { color: #374151; }

html[data-theme="light"] .hero-badge {
  background: rgba(232, 85, 46, 0.08);
  border-color: rgba(232, 85, 46, 0.18);
}

html[data-theme="light"] .connected-note {
  background: linear-gradient(135deg, rgba(232, 85, 46, 0.08), rgba(245, 166, 35, 0.04));
  border-color: rgba(232, 85, 46, 0.15);
}

html[data-theme="light"] .final-cta {
  background: linear-gradient(180deg, transparent, rgba(232, 85, 46, 0.04));
}

html[data-theme="light"] .comparison-card:hover,
html[data-theme="light"] .feature-card-large:hover,
html[data-theme="light"] .cta-card:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12), 0 0 40px rgba(232, 85, 46, 0.08);
}

html[data-theme="light"] .footer {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

/* Card / section surface overrides for light mode */
html[data-theme="light"] [class*="card"],
html[data-theme="light"] .glass,
html[data-theme="light"] section {
  color: #050a14;
}

html[data-theme="light"] [style*="background:#0a0e17"],
html[data-theme="light"] [style*="background: #0a0e17"] { background: #EEF4FC !important; }
