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

:root {
  --red:      #E8002D;
  --red-dark: #B5001E;
  --dark:     #0D0D0D;
  --dark-2:   #1A1A1A;
  --dark-3:   #2A2A2A;
  --mid:      #6B6B6B;
  --light:    #F5F5F5;
  --white:    #FFFFFF;
  --green:    #2D9B4C;
  --blue:     #5B6AF5;
  --yellow:   #F5A623;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 16px 64px rgba(0,0,0,0.12);
}

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

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

.section {
  padding: 100px 0;
}

/* ─── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,0,45,0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--dark);
  border-color: rgba(0,0,0,0.15);
}
.btn-ghost:hover {
  background: var(--light);
  border-color: rgba(0,0,0,0.25);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-2px);
}

.btn-nav {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  padding: 10px 22px;
  font-size: 0.875rem;
}
.btn-nav:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
}

.btn-lg { padding: 16px 36px; font-size: 1rem; }

/* ─── Section Headers ──────────────────────────────────────── */
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(232,0,45,0.08);
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
}

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

.section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--mid);
  line-height: 1.7;
}

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

.navbar.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
  padding: 12px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--dark);
}

.logo img {
  height: 36px;
  width: auto;
}

.logo-text {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.logo-e {
  color: var(--red);
}

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

.nav-links a:not(.btn) {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark-2);
  transition: color var(--transition);
}

.nav-links a:not(.btn):hover { color: var(--red); }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

/* ─── Language Switcher ────────────────────────────────────── */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(0,0,0,0.05);
  border-radius: 50px;
  padding: 3px;
}

.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 700;
  font-family: var(--font);
  color: var(--mid);
  padding: 5px 11px;
  border-radius: 50px;
  transition: var(--transition);
  letter-spacing: 0.04em;
}

.lang-btn:hover { color: var(--dark); }

.lang-btn.active {
  background: var(--white);
  color: var(--dark);
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

/* ─── RTL support ──────────────────────────────────────────── */
[dir="rtl"] .logo { direction: ltr; }
[dir="rtl"] .nav-inner { flex-direction: row-reverse; }
[dir="rtl"] .lang-switcher { direction: ltr; }
[dir="rtl"] .hero-inner { direction: rtl; }
[dir="rtl"] .problem-root-inner { flex-direction: row-reverse; }
[dir="rtl"] .mission-grid { direction: rtl; }
[dir="rtl"] .product-card-footer { flex-direction: row-reverse; }
[dir="rtl"] .footer-inner { flex-direction: row-reverse; }
[dir="rtl"] .footer-bottom .container { flex-direction: row-reverse; }
[dir="rtl"] .product-features li { padding-left: 0; padding-right: 18px; }
[dir="rtl"] .product-features li::before { left: auto; right: 0; }
[dir="rtl"] body { font-family: 'Tajawal', var(--font); }

/* ─── Product card footer ──────────────────────────────────── */
.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
}

.product-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--red);
  transition: var(--transition);
  white-space: nowrap;
}

.product-link:hover { opacity: 0.75; }

.product-card--featured .product-link { color: rgba(255,255,255,0.7); }
.product-card--featured .product-link:hover { color: var(--white); }

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* ─── Hero ─────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #fff 0%, #fff8f8 50%, #fff 100%);
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(232,0,45,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(45,155,76,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  text-align: center;
  max-width: 820px;
  padding: 40px 24px;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 32px;
  box-shadow: var(--shadow);
  animation: fadeUp 0.6s ease both;
}

.hero-title {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
  animation: fadeUp 0.6s 0.1s ease both;
}

.highlight {
  color: var(--red);
  position: relative;
  display: inline-block;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--mid);
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.7;
  animation: fadeUp 0.6s 0.2s ease both;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 64px;
  animation: fadeUp 0.6s 0.3s ease both;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 48px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.6s 0.4s ease both;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.stat-num {
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--dark);
}

.stat-label {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--mid);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}


/* ─── Problems ─────────────────────────────────────────────── */
.problems {
  background: var(--light);
}

.prob-statement {
  max-width: 720px;
  margin-bottom: 56px;
}

.prob-headline {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1.15;
  margin: 16px 0 20px;
  color: var(--dark);
}

.prob-lead {
  font-size: 1.05rem;
  color: var(--mid);
  line-height: 1.7;
}

.prob-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.prob-pillar {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
}

.prob-pillar-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.prob-pillar h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark);
}

.prob-pillar p {
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.65;
}

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

.problem-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  position: relative;
  border: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
}

.problem-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.problem-card::before {
  content: attr(data-index);
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(0,0,0,0.15);
  letter-spacing: 0.05em;
}

.problem-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

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

.problem-card p {
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.65;
}

.problem-root {
  background: var(--dark);
  border-radius: var(--radius);
  padding: 2px;
}

.problem-root-inner {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  background: var(--dark-2);
  border-radius: calc(var(--radius) - 2px);
  padding: 32px 36px;
  color: var(--white);
}

.root-label {
  white-space: nowrap;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(232,0,45,0.15);
  padding: 6px 12px;
  border-radius: 50px;
  margin-top: 3px;
}

.problem-root-inner p {
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.8);
}

.problem-root-inner strong { color: var(--white); }

/* ─── Products ─────────────────────────────────────────────── */
.section.products { background: var(--light); }

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

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  border: 1px solid rgba(0,0,0,0.08);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.product-card--featured {
  background: var(--dark);
  color: var(--white);
  border-color: transparent;
}

.product-card--featured p,
.product-card--featured li {
  color: rgba(255,255,255,0.7);
}

.product-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: color-mix(in srgb, var(--clr) 12%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.product-status {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.status-dev {
  background: rgba(232,0,45,0.1);
  color: var(--red);
}

.status-soon {
  background: rgba(107,107,107,0.1);
  color: var(--mid);
}

.product-card--featured .status-dev {
  background: rgba(232,0,45,0.2);
  color: #ff6680;
}

.product-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.product-card p {
  font-size: 0.95rem;
  color: var(--mid);
  line-height: 1.65;
  margin-bottom: 20px;
}

.product-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.product-features li {
  font-size: 0.875rem;
  color: var(--mid);
  padding-left: 18px;
  position: relative;
}

.product-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
  font-size: 0.8rem;
}

.product-free-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--green);
  background: rgba(45,155,76,0.1);
  padding: 5px 12px;
  border-radius: 50px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ─── Mission ──────────────────────────────────────────────── */
.mission {
  background: var(--light);
}

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

.mission-text > p {
  font-size: 1rem;
  color: var(--mid);
  line-height: 1.75;
  margin-bottom: 16px;
}

.mission-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 20px;
}

.mission-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.mission-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 20px;
  border: 1px solid rgba(0,0,0,0.06);
}

.mission-card-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.mission-card strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.mission-card p {
  font-size: 0.875rem;
  color: var(--mid);
  line-height: 1.6;
}

.mission-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.mission-visual-inner {
  position: relative;
  width: 340px;
  height: 380px;
}

.mvcard {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px 20px;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: var(--shadow);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.875rem;
  color: var(--mid);
  line-height: 1.5;
  max-width: 230px;
  transition: var(--transition);
}

.mvcard:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.mvcard span { font-size: 1.5rem; flex-shrink: 0; }

.mvcard-1 { top: 0; left: 0; }
.mvcard-2 { top: 50%; left: 50%; transform: translate(-10%, -50%); }
.mvcard-3 { bottom: 0; left: 10px; }

/* ─── Values ───────────────────────────────────────────────── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.value-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 32px;
  border: 1px solid rgba(0,0,0,0.06);
  position: relative;
  transition: var(--transition);
  overflow: hidden;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.value-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.value-card:hover::after { transform: scaleX(1); }

.value-num {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(0,0,0,0.2);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.value-icon {
  font-size: 1.6rem;
  margin-bottom: 16px;
  display: block;
}

.value-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.value-card p {
  font-size: 0.925rem;
  color: var(--mid);
  line-height: 1.65;
}

/* ─── Target ───────────────────────────────────────────────── */
.target {
  background: var(--light);
}

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

.target-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 28px;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
}

.target-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.target-card--mid {
  background: var(--dark);
  color: var(--white);
  border-color: transparent;
}

.target-card--mid p { color: rgba(255,255,255,0.65); }

.target-icon { font-size: 2.5rem; margin-bottom: 20px; }

.target-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.target-card p {
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.7;
}

/* ─── CTA Section ──────────────────────────────────────────── */
.cta-section {
  background: var(--dark);
  padding: 120px 0;
}

.cta-inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  color: var(--white);
}

.cta-inner .section-tag {
  color: #ff6680;
  background: rgba(232,0,45,0.2);
}

.cta-inner h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--white);
}

.cta-inner > p {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 40px;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.cta-note {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  font-style: italic;
}

/* ─── Footer ───────────────────────────────────────────────── */
.footer {
  background: var(--dark-2);
  color: rgba(255,255,255,0.6);
  padding-top: 60px;
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo { color: var(--white); margin-bottom: 12px; }

.footer-brand > p {
  font-size: 0.875rem;
  line-height: 1.6;
  max-width: 220px;
}

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

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col strong {
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}

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

.footer-bottom {
  padding: 20px 0;
}

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
}

/* ─── Category Sections ────────────────────────────────────── */
.cat-sections {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.cat-section {
  position: relative;
}

.cat-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,0.07);
  border-left: 4px solid var(--cat);
  margin-bottom: 20px;
}

.cat-section--coming .cat-header {
  opacity: 0.7;
}

.cat-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--cat) 12%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.cat-info { flex: 1; }

.cat-name {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 2px;
}

.cat-name strong {
  font-weight: 800;
  color: var(--cat);
}

.cat-desc {
  font-size: 0.82rem;
  color: var(--mid);
  line-height: 1.5;
}

.cat-count {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cat);
  background: color-mix(in srgb, var(--cat) 10%, transparent);
  padding: 5px 12px;
  border-radius: 50px;
  white-space: nowrap;
}

.cat-badge-soon {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mid);
  background: rgba(0,0,0,0.06);
  padding: 5px 12px;
  border-radius: 50px;
  white-space: nowrap;
}

.cat-products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

/* Ghost / coming-soon card */
.product-card--ghost {
  background: transparent;
  border: 2px dashed rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
  color: var(--mid);
  min-height: 180px;
  transition: var(--transition);
}

.product-card--ghost:hover {
  border-color: rgba(0,0,0,0.2);
  transform: none;
  box-shadow: none;
}

.product-card--ghost p {
  font-size: 0.875rem;
  color: var(--mid);
}

.product-card--ghost-full {
  min-height: 140px;
}

.ghost-icon {
  font-size: 1.6rem;
  opacity: 0.4;
}

/* Status badge: ready */
.status-ready {
  background: rgba(5,150,105,0.1);
  color: #059669;
}

/* ─── Nav Dropdown ──────────────────────────────────────────── */
.nav-dropdown {
  position: relative;
}

.nav-links .nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark-2);
  transition: color var(--transition);
  cursor: pointer;
  user-select: none;
}
.nav-links .nav-link:hover { color: var(--red); }

.nav-dropdown-trigger::after {
  content: ' ▾';
  font-size: 0.65rem;
  opacity: 0.5;
  display: inline-block;
  transition: transform var(--transition);
}
.nav-dropdown:hover .nav-dropdown-trigger::after,
.nav-dropdown.open .nav-dropdown-trigger::after { transform: rotate(180deg); }

.dropdown-panel {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.14);
  border: 1px solid rgba(0,0,0,0.06);
  padding: 10px;
  min-width: 272px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 200;
}
.dropdown-panel::before {
  content: '';
  position: absolute;
  top: -18px;
  left: -16px;
  right: -16px;
  height: 18px;
}
.nav-dropdown:hover .dropdown-panel {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.dd-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 10px;
  border-radius: 12px;
  transition: background var(--transition);
  color: var(--dark);
  text-decoration: none;
  cursor: pointer;
}
.dd-item:not(.dd-item--soon):hover { background: var(--light); }
.dd-item--soon { opacity: 0.4; cursor: default; pointer-events: none; }

.dd-icon-wrap {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: color-mix(in srgb, var(--cat) 12%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.dd-text { flex: 1; }
.dd-text strong { display: block; font-size: 0.85rem; font-weight: 700; line-height: 1.3; }
.dd-text span { font-size: 0.73rem; color: var(--mid); }

.dd-soon-badge {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mid);
  background: rgba(0,0,0,0.06);
  padding: 3px 8px;
  border-radius: 50px;
  flex-shrink: 0;
}

/* ─── Section Page (play.html, food.html) ───────────────────── */
.sec-hero {
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.sec-hero-content {
  max-width: 620px;
}

.sec-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.sec-hero-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.sec-hero-title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.sec-hero-sub {
  font-size: 1.1rem;
  color: var(--mid);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
}

.sec-mission-box {
  background: rgba(255,255,255,0.8);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius);
  padding: 24px 28px;
  backdrop-filter: blur(8px);
  max-width: 540px;
}

.sec-mission-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 10px;
}

.sec-mission-box p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--dark);
}

.sec-products {
  padding: 80px 0 100px;
  background: var(--light);
}

.sec-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

/* ─── Page Header (about.html) ─────────────────────────────── */
.page-header {
  background: var(--light);
  padding: 140px 0 80px;
  text-align: center;
}

.page-header h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.15;
  margin-bottom: 16px;
}

.page-header > .container > p {
  font-size: 1.05rem;
  color: var(--mid);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ─── Animations ───────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

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

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.8); }
  50%       { opacity: 1;   transform: scaleY(1.2); }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ─── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .problems-grid  { grid-template-columns: repeat(2, 1fr); }
  .prob-pillars   { grid-template-columns: repeat(2, 1fr); }
  .products-grid  { grid-template-columns: 1fr; }
  .mission-grid   { grid-template-columns: 1fr; gap: 40px; }
  .mission-visual { display: none; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }

  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--white);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    z-index: 99;
    overflow-y: auto;
  }

  .nav-links.open { display: flex; }
  .navbar.menu-open {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: var(--white);
    transition: none;
  }
  .nav-links a:not(.btn) { font-size: 1.2rem; }
  .nav-links .nav-link { font-size: 1.2rem; }
  .menu-toggle { display: flex; z-index: 100; }

  /* Dropdown on mobile: expand inline */
  .nav-dropdown { display: flex; flex-direction: column; align-items: center; width: 100%; }
  .dropdown-panel {
    position: static;
    transform: none !important;
    box-shadow: none;
    border: none;
    padding: 4px 0 0;
    border-radius: 0;
    min-width: 0;
    width: 260px;
    background: transparent;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    pointer-events: none;
    transition: opacity 0.2s, max-height 0.3s;
  }
  .nav-dropdown.open .dropdown-panel {
    opacity: 1;
    max-height: 600px;
    pointer-events: all;
  }
  .dd-item { justify-content: flex-start; padding: 8px 12px; }
  .dd-item--soon { opacity: 0.4; }

  .hero-stats { gap: 28px; }

  .problems-grid  { grid-template-columns: 1fr; }
  .prob-pillars   { grid-template-columns: 1fr; }
  .values-grid    { grid-template-columns: 1fr; }
  .target-grid    { grid-template-columns: 1fr; }

  .problem-root-inner { flex-direction: column; gap: 16px; }

  .footer-inner    { flex-direction: column; gap: 32px; }
  .footer-links    { gap: 32px; flex-wrap: wrap; }
  .footer-bottom .container { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.2rem; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .cta-actions .btn { width: 100%; justify-content: center; }
  .cta-actions { flex-direction: column; }
}
