:root {
  --ink: #2c1f2f;
  --ink-soft: #4d3b4b;
  --muted: #7a6774;
  --rose: #f6b2c4;
  --rose-strong: #ef8dad;
  --mint: #bfe8d6;
  --peach: #ffd7c2;
  --gold: #e5b567;
  --surface: #ffffff;
  --surface-soft: #fff6f8;
  --stroke: rgba(44, 31, 47, 0.08);
  --shadow: 0 18px 40px rgba(44, 31, 47, 0.12);
  --radius-lg: 22px;
  --radius-md: 16px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Tajawal", "Cairo", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top, #fff0f4 0%, #fffdfb 55%, #f6fbf8 100%);
}

.page {
  min-height: 100vh;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--stroke);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 20px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand-mark {
  font-family: "Cairo", "Tajawal", sans-serif;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 1px;
}

.brand-tag {
  color: var(--muted);
  font-size: 13px;
}

.topbar-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.topbar-nav a {
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 600;
}

.topbar-nav a:hover {
  color: var(--rose-strong);
}

.hero {
  padding: 72px 0 40px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}

.hero-content h1 {
  font-size: clamp(32px, 4vw, 48px);
  margin: 14px 0 12px;
  line-height: 1.3;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--ink-soft);
  margin: 0 0 24px;
  line-height: 1.7;
}

.pill {
  display: inline-flex;
  padding: 6px 14px;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--mint), #f8e5ee);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cta.primary {
  background: linear-gradient(120deg, var(--rose-strong), var(--gold));
  color: #fff;
  box-shadow: 0 12px 24px rgba(239, 141, 173, 0.3);
}

.cta.secondary {
  background: #fff;
  border-color: var(--stroke);
  color: var(--ink);
}

.cta.ghost {
  background: transparent;
  border-color: var(--rose-strong);
  color: var(--rose-strong);
}

.cta:hover {
  transform: translateY(-2px);
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.hero-chips span {
  background: #fff;
  border: 1px solid var(--stroke);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
  color: var(--ink-soft);
}

.hero-notes {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
  color: var(--muted);
}

.hero-visual {
  position: relative;
}

.mockup {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: var(--shadow);
  border: 1px solid var(--stroke);
}

.mockup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 12px;
}

.mockup-header .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--rose-strong);
  display: inline-block;
}

.mockup-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mockup-card {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px;
  background: var(--surface-soft);
  border-radius: 14px;
}

.mockup-icon {
  font-size: 20px;
}

.mockup-title {
  font-weight: 700;
}

.mockup-sub {
  font-size: 12px;
  color: var(--muted);
}

.mockup-stat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px;
  border-radius: 14px;
  border: 1px dashed rgba(44, 31, 47, 0.15);
  background: #fff;
}

.stat-value {
  font-size: 22px;
  font-weight: 800;
  color: var(--rose-strong);
}

.stat-label {
  font-size: 12px;
  color: var(--muted);
}

.stat-pill {
  background: var(--mint);
  color: var(--ink);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(0.5px);
  animation: float 7s ease-in-out infinite;
  z-index: -1;
}

.orb-one {
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(246, 178, 196, 0.9), rgba(246, 178, 196, 0));
  top: -40px;
  right: 30px;
}

.orb-two {
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(191, 232, 214, 0.9), rgba(191, 232, 214, 0));
  bottom: -60px;
  left: -40px;
  animation-delay: 1s;
}

.section {
  padding: 72px 0;
}

.section h2 {
  font-size: clamp(24px, 3vw, 34px);
  margin: 0 0 24px;
}

.section p {
  color: var(--ink-soft);
  line-height: 1.8;
}

.highlight {
  background: linear-gradient(120deg, rgba(246, 178, 196, 0.15), rgba(191, 232, 214, 0.2));
}

.steps-grid,
.features-grid,
.device-grid {
  display: grid;
  gap: 18px;
}

.steps-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.step-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 20px;
  border: 1px solid var(--stroke);
}

.step-number {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: var(--mint);
  display: grid;
  place-items: center;
  font-weight: 800;
  margin-bottom: 12px;
}

.features-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.feature-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 20px;
  border: 1px solid var(--stroke);
  box-shadow: 0 10px 24px rgba(44, 31, 47, 0.08);
}

.feature-icon {
  display: inline-flex;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  background: var(--peach);
  font-size: 18px;
  margin-bottom: 12px;
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
  align-items: center;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: grid;
  gap: 10px;
}

.checklist li {
  position: relative;
  padding-right: 22px;
  color: var(--ink);
  font-weight: 600;
}

.checklist li::before {
  content: "✓";
  position: absolute;
  right: 0;
  color: var(--rose-strong);
}

.booking-card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--stroke);
  padding: 22px;
  display: grid;
  gap: 12px;
}

.booking-row {
  display: flex;
  gap: 12px;
  align-items: center;
  background: var(--surface-soft);
  border-radius: 14px;
  padding: 12px;
}

.booking-icon {
  font-size: 20px;
}

.device-grid {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.device-card {
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--stroke);
  padding: 20px;
  text-align: center;
}

.device-icon {
  font-size: 26px;
  margin-bottom: 10px;
}

.instagram-card {
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--stroke);
  padding: 18px;
  margin-top: 16px;
}

.instagram-card span {
  font-weight: 800;
  color: var(--rose-strong);
}

.connect-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--stroke);
  padding: 24px;
  box-shadow: var(--shadow);
}

.cta-section {
  padding: 64px 0 80px;
}

.cta-inner {
  background: linear-gradient(120deg, var(--rose), var(--mint));
  border-radius: var(--radius-lg);
  padding: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.cta-inner h2 {
  margin: 0 0 8px;
}

.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer {
  padding: 24px 0 40px;
  color: var(--muted);
}

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

.reveal {
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
  animation-delay: var(--delay, 0s);
}

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

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

@media (max-width: 980px) {
  .hero-grid,
  .split {
    grid-template-columns: 1fr;
  }

  .topbar-nav {
    display: none;
  }

  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 48px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-chips {
    justify-content: flex-start;
  }

  .cta-inner {
    padding: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .hero-orb,
  .cta {
    animation: none;
    transition: none;
  }
}
