/* ========================================
   ARAB VA — Global Styles
   Dark theme + Green-Blue gradient brand
   RTL Arabic layout
======================================== */

@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;600;700;800;900&family=Tajawal:wght@300;400;500;700;800;900&display=swap');

/* --- CSS Variables --- */
:root {
  --brand-green: #2ecc40;
  --brand-blue: #1a6aff;
  --brand-gradient: linear-gradient(135deg, #2ecc40 0%, #1a9aff 50%, #1a6aff 100%);
  --brand-gradient-hover: linear-gradient(135deg, #3ddb4f 0%, #2da8ff 50%, #2b78ff 100%);
  --bg-primary: #0a0e17;
  --bg-secondary: #0f1520;
  --bg-card: #111927;
  --bg-card-hover: #162030;
  --bg-card-border: rgba(46, 204, 64, 0.12);
  --bg-card-border-hover: rgba(26, 106, 255, 0.3);
  --bg-overlay: rgba(10, 14, 23, 0.92);
  --text-primary: #eaf0f6;
  --text-secondary: #8a9bb5;
  --text-muted: #5a6a80;
  --border-subtle: rgba(255,255,255,0.06);
  --border-light: rgba(255,255,255,0.1);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.3);
  --shadow-card-hover: 0 8px 40px rgba(26,106,255,0.15);
  --shadow-glow-green: 0 0 30px rgba(46,204,64,0.15);
  --shadow-glow-blue: 0 0 30px rgba(26,106,255,0.15);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition-fast: 0.2s ease;
  --transition-base: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Cairo', sans-serif;
  --font-body: 'Tajawal', sans-serif;
  --container-max: 1200px;
  --container-narrow: 900px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  direction: rtl;
  text-align: right;
  line-height: 1.8;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(46,204,64,0.04) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(26,106,255,0.04) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.4;
}

/* --- Utility --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.container--narrow {
  max-width: var(--container-narrow);
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  margin: -1px; padding: 0; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brand-green);
  letter-spacing: 0.03em;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 16px;
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
}

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

.text-gradient {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 36px;
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--brand-gradient);
  color: #fff;
  box-shadow: 0 4px 20px rgba(46,204,64,0.2);
}

.btn--primary:hover {
  background: var(--brand-gradient-hover);
  box-shadow: 0 6px 30px rgba(46,204,64,0.3);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--border-light);
}

.btn--outline:hover {
  border-color: var(--brand-green);
  color: var(--brand-green);
  background: rgba(46,204,64,0.05);
}

.btn--whatsapp {
  background: #25D366;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,0.25);
}

.btn--whatsapp:hover {
  background: #20bd5a;
  box-shadow: 0 6px 30px rgba(37,211,102,0.35);
  transform: translateY(-2px);
}

.btn--large {
  padding: 18px 48px;
  font-size: 1.1rem;
  border-radius: var(--radius-lg);
}

.btn--block { width: 100%; }

/* --- Navbar --- */
.navbar {
  position: fixed;
  top: 0; right: 0; left: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all var(--transition-base);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(10, 14, 23, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 10px 0;
}

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

.navbar__logo img {
  height: 40px;
  width: auto;
}

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

.navbar__links a {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
  position: relative;
}

.navbar__links a::after {
  content: '';
  position: absolute;
  bottom: -4px; right: 0;
  width: 0; height: 2px;
  background: var(--brand-gradient);
  transition: width var(--transition-base);
  border-radius: 2px;
}

.navbar__links a:hover { color: var(--text-primary); }
.navbar__links a:hover::after { width: 100%; }

.navbar__cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.navbar__mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
}

/* --- Hero --- */
.hero {
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(46,204,64,0.08) 0%, rgba(26,106,255,0.05) 40%, transparent 70%);
  pointer-events: none;
}

.hero__content {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(46,204,64,0.08);
  border: 1px solid rgba(46,204,64,0.2);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brand-green);
  margin-bottom: 28px;
}

.hero__title {
  font-size: clamp(2rem, 5.5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 24px;
}

.hero__title span {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 2;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* --- Pack Cards Grid --- */
.packs-section { padding: 100px 0; }

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

.pack-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.pack-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0; left: 0;
  height: 3px;
  background: var(--brand-gradient);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.pack-card:hover {
  border-color: var(--bg-card-border-hover);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

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

.pack-card__icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.pack-card__icon--green {
  background: rgba(46,204,64,0.08);
  color: var(--brand-green);
  border: 1px solid rgba(46,204,64,0.15);
}

.pack-card__icon--blue {
  background: rgba(26,106,255,0.08);
  color: var(--brand-blue);
  border: 1px solid rgba(26,106,255,0.15);
}

.pack-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.pack-card__desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
  flex-grow: 1;
}

.pack-card__price {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--brand-green);
}

.pack-card__price small {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
}

.pack-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--brand-blue);
  transition: all var(--transition-fast);
}

.pack-card__link i {
  transition: transform var(--transition-fast);
}

.pack-card__link:hover { color: var(--brand-green); }
.pack-card__link:hover i { transform: translateX(-4px); }

/* --- About Section --- */
.about-section {
  padding: 100px 0;
  border-top: 1px solid var(--border-subtle);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-content h3 {
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.about-content p {
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-size: 1.02rem;
  line-height: 2;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature-item__icon {
  width: 44px; height: 44px; min-width: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26,106,255,0.08);
  color: var(--brand-blue);
  border: 1px solid rgba(26,106,255,0.15);
  font-size: 1rem;
}

.feature-item__text h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.feature-item__text p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.7;
}

/* --- Steps --- */
.steps-section {
  padding: 100px 0;
  border-top: 1px solid var(--border-subtle);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.step-card {
  text-align: center;
  padding: 32px 20px;
}

.step-card__number {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--brand-gradient);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.step-card h4 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}

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

/* --- CTA --- */
.cta-section { padding: 80px 0; }

.cta-box {
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius-xl);
  padding: 60px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--brand-gradient);
}

.cta-box h2 {
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  margin-bottom: 16px;
}

.cta-box p {
  color: var(--text-secondary);
  margin-bottom: 32px;
  font-size: 1.05rem;
}

/* --- Footer --- */
.footer {
  padding: 48px 0 24px;
  border-top: 1px solid var(--border-subtle);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__logo img { height: 32px; }

.footer__copy {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer__links {
  display: flex;
  gap: 24px;
}

.footer__links a {
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.footer__links a:hover { color: var(--brand-green); }

/* --- WhatsApp Float --- */
.whatsapp-float {
  position: fixed;
  bottom: 28px; left: 28px;
  z-index: 999;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 4px 24px rgba(37,211,102,0.4);
  transition: all var(--transition-base);
  border: none;
  cursor: pointer;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 32px rgba(37,211,102,0.5);
}

/* ==================================
   LANDING PAGE STYLES
================================== */

.pack-hero {
  padding: 140px 0 60px;
  text-align: center;
  position: relative;
}

.pack-hero::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(46,204,64,0.06) 0%, rgba(26,106,255,0.04) 40%, transparent 70%);
  pointer-events: none;
}

.pack-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(46,204,64,0.08);
  border: 1px solid rgba(46,204,64,0.2);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brand-green);
  margin-bottom: 20px;
}

.pack-hero__title {
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  font-weight: 900;
  margin-bottom: 16px;
}

.pack-hero__subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
  line-height: 2;
}

/* --- Pack Blocks --- */
.pack-section { padding: 48px 0; }

.pack-block {
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  margin-bottom: 28px;
}

.pack-block__title {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pack-block__title i { color: var(--brand-green); }

.pack-block ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pack-block ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.pack-block ul li i {
  color: var(--brand-green);
  margin-top: 6px;
  font-size: 0.7rem;
  min-width: 14px;
}

.pack-block p {
  color: var(--text-secondary);
  line-height: 1.9;
  font-size: 0.95rem;
}

/* --- Pricing Box --- */
.pricing-section { padding: 60px 0; }

.pricing-box {
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pricing-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--brand-gradient);
}

.pricing-box__label {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.pricing-box__price {
  font-size: 3rem;
  font-weight: 900;
  font-family: var(--font-heading);
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 16px 0 8px;
}

.pricing-box__period {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}

/* --- Upsell --- */
.upsell-wrapper {
  margin: 32px 0;
  text-align: right;
}

.upsell-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.95rem;
  margin-bottom: 8px;
  user-select: none;
}

.upsell-toggle input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 22px; height: 22px;
  border: 2px solid var(--border-light);
  border-radius: 6px;
  cursor: pointer;
  position: relative;
  transition: all var(--transition-fast);
  flex-shrink: 0;
}

.upsell-toggle input[type="checkbox"]:checked {
  background: var(--brand-green);
  border-color: var(--brand-green);
}

.upsell-toggle input[type="checkbox"]:checked::after {
  content: '✓';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 900;
}

.upsell-details {
  display: none;
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-top: 16px;
}

.upsell-details.active {
  display: block;
  animation: fadeSlideDown 0.3s ease;
}

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

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

.upsell-row label {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.upsell-row input[type="number"] {
  width: 80px;
  padding: 10px 12px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  text-align: center;
  direction: ltr;
}

.upsell-row input[type="number"]:focus {
  outline: none;
  border-color: var(--brand-green);
}

.upsell-price-info {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.price-summary {
  border-top: 1px solid var(--border-subtle);
  padding-top: 20px;
  margin-top: 20px;
}

.price-summary__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.price-summary__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid var(--border-light);
  font-size: 1.2rem;
  font-weight: 800;
}

.price-summary__total span:last-child {
  color: var(--brand-green);
}

/* Warning */
.warning-box {
  background: rgba(255, 59, 48, 0.08);
  border: 1px solid rgba(255, 59, 48, 0.2);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 24px 0;
  font-size: 0.9rem;
  color: #ff6b6b;
}

/* --- Modal --- */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--bg-overlay);
  z-index: 2000;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.modal-overlay.active {
  display: flex;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal {
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  width: 100%;
  max-width: 500px;
  position: relative;
  animation: modalSlideUp 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.modal__close {
  position: absolute;
  top: 16px; left: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

.modal__close:hover {
  background: rgba(255,59,48,0.1);
  color: #ff6b6b;
  border-color: rgba(255,59,48,0.3);
}

.modal__title {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 24px;
  text-align: center;
}

.form-group { margin-bottom: 18px; }

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition-fast);
  direction: rtl;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--brand-green);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-summary {
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  padding: 16px;
  margin-bottom: 20px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* --- Animations --- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .packs-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .navbar__links { display: none; }
  .navbar__cta .btn--outline { display: none; }
  .navbar__mobile-toggle { display: block; }

  .navbar__links.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: 280px;
    background: var(--bg-secondary);
    padding: 80px 32px 32px;
    gap: 24px;
    border-left: 1px solid var(--border-subtle);
    z-index: 1001;
    animation: slideInRight 0.3s ease;
  }

  @keyframes slideInRight {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
  }

  .packs-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .hero { padding: 130px 0 60px; }
  .pack-block { padding: 28px 20px; }
  .pricing-box { padding: 36px 24px; }
  .modal { padding: 32px 24px; margin: 16px; }
  .cta-box { padding: 40px 24px; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; width: 100%; }
  .hero__actions .btn { width: 100%; }
  .pricing-box__price { font-size: 2.4rem; }
}



/* ========================================
   V2.0 ADDITIONS — Order Tunnel + SEO
   Append to end of existing style.css
======================================== */

/* --- Breadcrumb --- */
.breadcrumb {
  margin-bottom: 24px;
}

.breadcrumb__list {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.84rem;
  color: var(--text-muted);
  flex-wrap: wrap;
}

.breadcrumb__list li {
  display: flex;
  align-items: center;
  gap: 6px;
}

.breadcrumb__list li + li::before {
  content: '/';
  color: var(--text-muted);
  opacity: 0.5;
}

.breadcrumb__list a {
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.breadcrumb__list a:hover {
  color: var(--brand-green);
}

/* --- FAQ Section --- */
.faq-section {
  padding: 60px 0;
  border-top: 1px solid var(--border-subtle);
}

.faq-section__title {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 32px;
  text-align: center;
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  margin-bottom: 16px;
}

.faq-item__q {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-primary);
}

.faq-item__q i {
  color: var(--brand-blue);
  font-size: 0.9rem;
}

.faq-item__a {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.8;
  padding-right: 30px;
}

/* --- Field Errors --- */
.field-error {
  display: none;
  font-size: 0.82rem;
  color: #ff6b6b;
  margin-top: 6px;
}

.field-error.visible {
  display: block;
}

.form-group.has-error input,
.form-group.has-error textarea,
.form-group.has-error select {
  border-color: #ff6b6b !important;
}

/* --- Order Tunnel --- */
.order-page {
  padding: 40px 0 80px;
}

.order-form-container {
  max-width: 760px;
  margin: 0 auto;
}

.order-section {
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  margin-bottom: 24px;
}

.order-section__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-primary);
}

.order-section__title i {
  color: var(--brand-green);
}

.order-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.order-full {
  grid-column: 1 / -1;
}

@media (max-width: 600px) {
  .order-grid {
    grid-template-columns: 1fr;
  }
  .order-section {
    padding: 24px 18px;
  }
}

/* Order — Pack Info */
.order-pack-info {
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 20px 24px;
}

.order-pack-info__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.order-pack-info__row + .order-pack-info__row {
  border-top: 1px solid var(--border-subtle);
}

/* Order — Agreement */
.order-agreement {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.order-agreement input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 2px solid var(--border-light);
  border-radius: 5px;
  cursor: pointer;
  position: relative;
  transition: all var(--transition-fast);
  margin-top: 2px;
}

.order-agreement input[type="checkbox"]:checked {
  background: var(--brand-green);
  border-color: var(--brand-green);
}

.order-agreement input[type="checkbox"]:checked::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 900;
}

.order-agreement label {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
  cursor: pointer;
}

/* Order — Payment Box */
.order-payment-box {
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
}

.order-payment-box__amount {
  font-size: 2.2rem;
  font-weight: 900;
  font-family: var(--font-heading);
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 8px 0 20px;
}

.order-payment-msg {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  background: rgba(26, 106, 255, 0.08);
  border: 1px solid rgba(26, 106, 255, 0.2);
  border-radius: var(--radius-sm);
  color: var(--brand-blue);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 16px;
}

#paypal-button-container {
  max-width: 400px;
  margin: 0 auto;
  min-height: 50px;
}

.order-payment-status {
  display: none;
  padding: 16px;
  border-radius: var(--radius-sm);
  margin-top: 16px;
  font-weight: 600;
  text-align: center;
  font-size: 0.92rem;
}

.order-payment-status.success {
  display: block;
  background: rgba(46, 204, 64, 0.1);
  border: 1px solid rgba(46, 204, 64, 0.3);
  color: var(--brand-green);
}

.order-payment-status.error {
  display: block;
  background: rgba(255, 59, 48, 0.1);
  border: 1px solid rgba(255, 59, 48, 0.3);
  color: #ff6b6b;
}

/* Order — Confirmation field */
.order-confirmation input {
  background: rgba(46, 204, 64, 0.05) !important;
  border-color: rgba(46, 204, 64, 0.3) !important;
  color: var(--brand-green) !important;
  font-weight: 700;
  text-align: center;
  direction: ltr;
}

/* Order — Spinner */
.order-spinner {
  display: none;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.2);
  border-top-color: #fff;
  border-radius: 50%;
  animation: orderSpin 0.7s linear infinite;
  margin-right: 8px;
}

.order-spinner.active {
  display: inline-block;
}

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

/* Order — Success Screen */
.order-success {
  display: none;
  text-align: center;
  padding: 80px 20px;
}

.order-success.active {
  display: block;
}

.order-success__icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--brand-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 2rem;
  color: #fff;
}