/* =========================================================
   SHAMEKH — White / Clean / Glass design system
   ========================================================= */

:root {
  /* surfaces */
  --bg: #f7f8fb;
  --surface: #ffffff;
  --glass: rgba(255, 255, 255, 0.6);
  --glass-strong: rgba(255, 255, 255, 0.78);
  --glass-border: rgba(255, 255, 255, 0.85);
  --glass-edge: rgba(15, 23, 42, 0.06);

  /* text */
  --ink: #0b1220;
  --ink-2: #2a3447;
  --muted: #5b6577;
  --muted-2: #8a93a6;

  /* brand accents */
  --gold-1: #f5c451;
  --gold-2: #e0a93e;
  --gold-3: #b67e1c;

  --diamond-1: #7cc4ff;
  --diamond-2: #4f8cff;
  --diamond-3: #6457ff;

  --accent: #4f8cff;

  /* shadows */
  --shadow-sm: 0 4px 14px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 10px 30px rgba(15, 23, 42, 0.07);
  --shadow-lg: 0 24px 60px rgba(15, 23, 42, 0.10);
  --shadow-glow-gold: 0 20px 50px rgba(224, 169, 62, 0.18);
  --shadow-glow-diamond: 0 24px 60px rgba(79, 140, 255, 0.22);

  /* radius */
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 26px;
  --r-xl: 34px;
}

/* =========================================================
   Base
   ========================================================= */

* { box-sizing: border-box; }

:root {
  /* enables transitioning to/from height: auto on details, etc. */
  interpolate-size: allow-keywords;
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Tajawal', 'Segoe UI', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-2);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: 'Cairo', 'Tajawal', sans-serif;
  color: var(--ink);
  margin: 0 0 0.4em;
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: -0.01em;
}

p { margin: 0 0 1em; }

.container {
  width: min(1200px, 92%);
  margin-inline: auto;
}
.container-narrow { width: min(820px, 92%); }

/* =========================================================
   Decorative background
   ========================================================= */

.bg-decor {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
  animation: float 18s ease-in-out infinite;
}

.blob-1 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, #ffe6a8 0%, transparent 70%);
  top: -120px; right: -120px;
}
.blob-2 {
  width: 460px; height: 460px;
  background: radial-gradient(circle, #cfe1ff 0%, transparent 70%);
  bottom: -120px; left: -100px;
  animation-delay: -6s;
}
.blob-3 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, #ffd8e6 0%, transparent 70%);
  top: 40%; left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.35;
  animation-delay: -12s;
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at 50% 0%, #000 35%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 0%, #000 35%, transparent 80%);
}

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

/* =========================================================
   Glass utility
   ========================================================= */

.glass {
  background: var(--glass);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid var(--glass-border);
  box-shadow:
    var(--shadow-md),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.glass-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
}

.eyebrow-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--diamond-1), var(--diamond-2));
  box-shadow: 0 0 10px var(--diamond-2);
}

/* =========================================================
   Buttons
   ========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-lg { padding: 15px 28px; font-size: 16px; }

.btn-primary {
  background: linear-gradient(135deg, #1f2a44 0%, #0b1220 100%);
  color: #fff;
  box-shadow: 0 12px 28px rgba(11, 18, 32, 0.25);
}
.btn-primary:hover {
  box-shadow: 0 18px 36px rgba(11, 18, 32, 0.32);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.6);
  color: var(--ink);
  border: 1px solid rgba(15, 23, 42, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.btn-ghost:hover {
  background: #fff;
  border-color: rgba(15, 23, 42, 0.18);
}

/* tier-specific buttons */
.btn-tier {
  width: 100%;
  margin-top: 8px;
  padding: 14px 22px;
  font-size: 15px;
  color: #fff;
}

.btn-tier-gold {
  background: linear-gradient(135deg, var(--gold-1) 0%, var(--gold-2) 60%, var(--gold-3) 100%);
  box-shadow: 0 14px 30px rgba(182, 126, 28, 0.28);
}
.btn-tier-gold:hover { box-shadow: 0 20px 38px rgba(182, 126, 28, 0.38); }

.btn-tier-diamond {
  background: linear-gradient(135deg, var(--diamond-1) 0%, var(--diamond-2) 50%, var(--diamond-3) 100%);
  box-shadow: 0 14px 30px rgba(79, 140, 255, 0.32);
}
.btn-tier-diamond:hover { box-shadow: 0 20px 42px rgba(79, 140, 255, 0.42); }

/* =========================================================
   Navigation
   ========================================================= */

.nav-wrap {
  position: sticky;
  top: 16px;
  z-index: 50;
  padding: 0 16px;
}

.nav {
  width: min(1200px, 100%);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 18px;
  border-radius: 999px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}
.nav-logo {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
  transition: transform 0.25s ease;
}
.nav-brand:hover .nav-logo { transform: scale(1.05); }
.nav-brand-text {
  font-family: 'Cairo', sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: var(--ink);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink-2);
  transition: background 0.2s, color 0.2s;
}
.nav-links a:hover {
  background: rgba(15, 23, 42, 0.05);
  color: var(--ink);
}

.nav-cta { padding: 10px 18px; font-size: 14px; }

.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.nav-toggle span {
  display: block;
  width: 18px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* =========================================================
   Sections shared
   ========================================================= */

.section { padding: 100px 0; }
.section-tight { padding: 60px 0; }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.section-title {
  font-size: clamp(28px, 4vw, 44px);
  margin: 16px 0 12px;
}
.section-sub {
  color: var(--muted);
  font-size: 17px;
  margin: 0;
}

.grad-text {
  background: linear-gradient(135deg, var(--diamond-2) 0%, var(--diamond-3) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* =========================================================
   Hero
   ========================================================= */

.hero {
  padding: 80px 0 60px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}

.eyebrow {
  margin-bottom: 22px;
}

.hero-title {
  font-size: clamp(36px, 5.4vw, 64px);
  font-weight: 900;
  line-height: 1.15;
  margin: 0 0 22px;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 36px;
}
.hero-sub strong { color: var(--ink); font-weight: 800; }

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 22px;
}
.stat-num {
  font-family: 'Cairo', sans-serif;
  font-size: 26px;
  font-weight: 900;
  color: var(--ink);
  line-height: 1;
}
.stat-label {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
}
.stat-sep {
  width: 1px;
  height: 32px;
  background: linear-gradient(180deg, transparent, rgba(15, 23, 42, 0.15), transparent);
}

/* hero visual */
.hero-visual {
  position: relative;
  height: 480px;
}

.float-card {
  position: absolute;
  border-radius: var(--r-lg);
  padding: 22px;
  animation: drift 8s ease-in-out infinite;
}

.card-a {
  inset-block-start: 30px;
  inset-inline-start: 0;
  width: 280px;
  height: 220px;
  z-index: 2;
}
.card-b {
  inset-block-start: 200px;
  inset-inline-end: 30px;
  width: 240px;
  z-index: 3;
  animation-delay: -3s;
}
.card-c {
  inset-block-end: 0;
  inset-inline-start: 60px;
  width: 240px;
  z-index: 3;
  animation-delay: -6s;
}

.dot-row { display: flex; gap: 6px; margin-bottom: 18px; }
.dot-row span {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.1);
}
.dot-row span:first-child { background: #ff5f57; }
.dot-row span:nth-child(2) { background: #ffbd2e; }
.dot-row span:nth-child(3) { background: #28ca42; }

.bar { height: 10px; border-radius: 6px; background: rgba(15, 23, 42, 0.08); margin-bottom: 10px; }
.bar-1 { width: 80%; background: linear-gradient(90deg, var(--diamond-1), var(--diamond-2)); opacity: 0.5; }
.bar-2 { width: 60%; }
.bar-3 { width: 90%; }

.mini-chip {
  display: inline-block;
  margin-top: 14px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 700;
  color: #2c8a3a;
  background: rgba(76, 217, 100, 0.15);
  border-radius: 999px;
}

.mini-row { display: flex; align-items: center; gap: 14px; }
.mini-square {
  width: 44px; height: 44px;
  border-radius: 12px;
  flex-shrink: 0;
}
.grad-gold {
  background: linear-gradient(135deg, var(--gold-1), var(--gold-3));
  box-shadow: 0 6px 16px rgba(182, 126, 28, 0.3);
}
.grad-diamond {
  background: linear-gradient(135deg, var(--diamond-1), var(--diamond-3));
  box-shadow: 0 6px 16px rgba(79, 140, 255, 0.3);
}
.mini-title { font-weight: 800; color: var(--ink); font-size: 15px; }
.mini-meta { font-size: 13px; color: var(--muted); margin-top: 2px; }

.float-badge {
  position: absolute;
  top: 0;
  inset-inline-end: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  z-index: 4;
}
.float-badge svg { color: #2c8a3a; }

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

/* =========================================================
   Trust strip
   ========================================================= */

.trust { padding: 16px 0 0; }

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 22px 28px;
  border-radius: var(--r-lg);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--ink-2);
  font-size: 14.5px;
}
.trust-item svg { color: var(--diamond-2); flex-shrink: 0; }

/* =========================================================
   Pricing
   ========================================================= */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  align-items: stretch;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 40px 34px 36px;
  border-radius: var(--r-xl);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.price-card:hover {
  transform: translateY(-10px);
}

.tier-icon {
  width: 56px; height: 56px;
  border-radius: 18px;
  display: grid; place-items: center;
  margin-bottom: 22px;
  color: #fff;
  background: linear-gradient(135deg, var(--gold-1), var(--gold-3));
  box-shadow: 0 10px 24px rgba(182, 126, 28, 0.32);
}
.tier-icon-diamond {
  background: linear-gradient(135deg, var(--diamond-1), var(--diamond-3));
  box-shadow: 0 10px 24px rgba(79, 140, 255, 0.35);
}

.tier-name {
  font-size: 26px;
  margin-bottom: 6px;
}
.tier-tag {
  color: var(--muted);
  font-size: 14.5px;
  margin: 0 0 26px;
}

.tier-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 4px;
}
.price-num {
  font-family: 'Cairo', sans-serif;
  font-size: 48px;
  font-weight: 900;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.02em;
}
.price-cur {
  font-size: 18px;
  font-weight: 700;
  color: var(--muted);
}
.tier-price-meta {
  font-size: 13.5px;
  color: var(--muted-2);
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px dashed rgba(15, 23, 42, 0.1);
}

.features {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-grow: 1;
}
.features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.55;
}

/* CHECKMARK design */
.check {
  width: 24px; height: 24px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--gold-1), var(--gold-2));
  color: #fff;
  flex-shrink: 0;
  margin-top: 2px;
  box-shadow:
    0 4px 10px rgba(224, 169, 62, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}
.check-diamond {
  background: linear-gradient(135deg, var(--diamond-1), var(--diamond-2));
  box-shadow:
    0 4px 10px rgba(79, 140, 255, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

/* Featured tier (currently Gold) — same baseline level as Diamond */
.price-card.featured {
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-glow-gold), inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.price-card.featured::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--r-xl);
  padding: 1.5px;
  background: linear-gradient(135deg, var(--gold-1), var(--gold-3));
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}

.featured-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--gold-1) 0%, var(--gold-2) 60%, var(--gold-3) 100%);
  box-shadow: 0 8px 20px rgba(182, 126, 28, 0.38);
  white-space: nowrap;
}

.pricing-note {
  text-align: center;
  margin-top: 36px;
  color: var(--muted);
  font-size: 14.5px;
}
.pricing-note a {
  color: var(--diamond-2);
  font-weight: 700;
  border-bottom: 1px dashed currentColor;
}

/* =========================================================
   Why-us features
   ========================================================= */

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

.feature {
  padding: 32px 26px;
  border-radius: var(--r-lg);
  transition: transform 0.25s ease;
}
.feature:hover {
  transform: translateY(-4px);
}
.feature-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(124, 196, 255, 0.2), rgba(79, 140, 255, 0.2));
  color: var(--diamond-2);
  margin-bottom: 18px;
}
.feature h3 { font-size: 19px; margin-bottom: 8px; }
.feature p { color: var(--muted); margin: 0; font-size: 15px; }

/* =========================================================
   Process
   ========================================================= */

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.step {
  position: relative;
  padding: 28px 24px;
  border-radius: var(--r-lg);
}
.step-num {
  width: 42px; height: 42px;
  border-radius: 12px;
  display: grid; place-items: center;
  font-family: 'Cairo', sans-serif;
  font-weight: 900;
  font-size: 20px;
  color: #fff;
  background: linear-gradient(135deg, var(--ink), #2a3447);
  margin-bottom: 18px;
  box-shadow: 0 8px 18px rgba(11, 18, 32, 0.18);
}
.step h3 { font-size: 18px; margin-bottom: 6px; }
.step p { color: var(--muted); font-size: 14.5px; margin: 0; }

/* =========================================================
   FAQ
   ========================================================= */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  border-radius: var(--r-md);
  overflow: hidden;
  transition: box-shadow 0.25s ease;
}
.faq-item[open] { box-shadow: var(--shadow-lg); }

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 24px;
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  color: var(--ink);
  font-size: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }

.faq-icon {
  width: 30px; height: 30px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(79, 140, 255, 0.1);
  color: var(--diamond-2);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.3s ease, background 0.3s, color 0.3s;
  flex-shrink: 0;
}
.faq-item[open] .faq-icon {
  transform: rotate(180deg);
  background: var(--diamond-2);
  color: #fff;
}

.faq-body {
  padding: 0 24px 22px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

/* Smooth open/close — pure CSS via ::details-content + interpolate-size */
.faq-item::details-content {
  block-size: 0;
  opacity: 0;
  overflow: hidden;
  transition:
    content-visibility 0.4s ease,
    opacity 0.3s ease,
    block-size 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition-behavior: allow-discrete;
}
.faq-item[open]::details-content {
  block-size: auto;
  opacity: 1;
}

/* =========================================================
   CTA
   ========================================================= */

.cta {
  position: relative;
  padding: 64px 40px;
  border-radius: var(--r-xl);
  text-align: center;
  overflow: hidden;
}
.cta-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(124, 196, 255, 0.25) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(245, 196, 81, 0.2) 0%, transparent 50%);
  pointer-events: none;
}
.cta-title {
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: 14px;
  position: relative;
}
.cta-sub {
  color: var(--muted);
  font-size: 17px;
  margin-bottom: 32px;
  position: relative;
}
.cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  margin-bottom: 28px;
}
.cta-channels {
  display: flex;
  gap: 12px;
  justify-content: center;
  position: relative;
}
.cta-channels a {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink-2);
  border: 1px solid rgba(15, 23, 42, 0.08);
  transition: transform 0.2s, color 0.2s, background 0.2s;
}
.cta-channels a:hover {
  transform: translateY(-3px);
  color: var(--diamond-2);
  background: #fff;
}

/* =========================================================
   Footer
   ========================================================= */

.footer {
  padding: 60px 0 30px;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  margin-top: 40px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 30px;
  align-items: center;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-brand img {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.06);
}
.footer-name {
  font-family: 'Cairo', sans-serif;
  font-weight: 900;
  font-size: 20px;
  color: var(--ink);
}
.footer-tag {
  color: var(--muted);
  font-size: 13px;
}
.footer-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14px;
  color: var(--muted);
  transition: color 0.2s, background 0.2s;
}
.footer-links a:hover { color: var(--ink); background: rgba(15, 23, 42, 0.04); }

.footer-copy {
  text-align: end;
  color: var(--muted);
  font-size: 13.5px;
}

/* =========================================================
   Reveal-on-scroll
   ========================================================= */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  will-change: transform, opacity;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .blob, .float-card, .float-badge { animation: none; }
  html { scroll-behavior: auto; }
}

/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { height: 380px; max-width: 480px; margin: 0 auto; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-wrap { top: 12px; padding: 0 12px; }
  .nav { padding: 10px 14px; gap: 8px; }
  .nav-cta { display: none; }
  .nav-toggle { display: inline-flex; }

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    inset-inline-end: 0;
    inset-inline-start: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    border: 1px solid var(--glass-border);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-lg);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s, opacity 0.25s;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links a {
    padding: 12px 16px;
    border-radius: var(--r-sm);
    font-size: 16px;
  }

  .section { padding: 70px 0; }
  .section-head { margin-bottom: 40px; }
  .hero { padding: 50px 0 30px; }
  .hero-stats { gap: 16px; }
  .stat-num { font-size: 22px; }

  .pricing-grid { grid-template-columns: 1fr; gap: 22px; }
  .price-card:hover { transform: translateY(-4px); }
  .price-card { padding: 34px 26px 30px; }
  .price-num { font-size: 40px; }

  .features-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .trust-row { grid-template-columns: 1fr; padding: 18px 22px; }

  .cta { padding: 48px 24px; }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-brand { justify-content: center; }
  .footer-copy { text-align: center; }
}

@media (max-width: 480px) {
  .hero-visual { height: 320px; }
  .card-a { width: 220px; height: 180px; padding: 16px; }
  .card-b, .card-c { width: 200px; padding: 16px; }
  .nav-brand-text { font-size: 19px; }
  .nav-logo { width: 34px; height: 34px; }
  .btn-lg { padding: 13px 22px; font-size: 15px; }
}
