/* ================================================================
   SHAWIR · v3 — Enhanced Edition (sage / cream / gold palette of v1+)
   Build: refined, animated, gallery-rich
================================================================ */

:root {
  --brand: #23433d;            /* Deep sage green (v1 brand) */
  --brand-700: #1a312c;
  --brand-900: #0f1f1c;
  --brand-50: #eef3f1;
  --cream: #f7f1e6;
  --cream-2: #efe7d6;
  --sand: #ccab7d;
  --sand-2: #b8945f;
  --ink: #1a2622;
  --ink-soft: #4a5a55;
  --muted: #7a8a85;
  --line: rgba(35, 67, 61, 0.10);
  --line-2: rgba(35, 67, 61, 0.18);
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(35, 67, 61, 0.06);
  --shadow-md: 0 14px 36px -14px rgba(35, 67, 61, 0.25);
  --shadow-lg: 0 30px 70px -25px rgba(35, 67, 61, 0.40);
  --shadow-xl: 0 40px 100px -30px rgba(35, 67, 61, 0.50);
  --radius: 18px;
  --radius-lg: 28px;
  --radius-xl: 40px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', 'Tajawal', 'Cairo', system-ui, -apple-system, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "lnum" 1, "tnum" 0;
  font-variant-numeric: lining-nums;
}
[dir="ltr"] body { font-family: 'Inter', 'Tajawal', system-ui, sans-serif; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; }
::selection { background: var(--brand); color: var(--cream); }

/* ============ Animated Background Orbs ============ */
.bg-orbs {
  position: fixed; inset: 0; z-index: -1; pointer-events: none; overflow: hidden;
}
.bg-orbs::before, .bg-orbs::after {
  content: ''; position: absolute; border-radius: 50%; filter: blur(120px); opacity: 0.45;
}
.bg-orbs::before {
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--sand) 0%, transparent 70%);
  top: -200px; right: -200px;
  animation: orbFloat1 22s ease-in-out infinite;
}
.bg-orbs::after {
  width: 700px; height: 700px;
  background: radial-gradient(circle, var(--brand) 0%, transparent 70%);
  bottom: -300px; left: -200px;
  animation: orbFloat2 28s ease-in-out infinite;
  opacity: 0.25;
}
@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-50px, 80px) scale(1.1); }
}
@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(80px, -100px) scale(1.15); }
}

/* ============ Container ============ */
.container { width: min(1240px, 100% - 40px); margin-inline: auto; }

/* ============ Navbar ============ */
.navbar {
  position: fixed; top: 14px; left: 50%; transform: translateX(-50%);
  width: min(1280px, calc(100% - 28px));
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 18px;
  padding: 10px 14px 10px 22px;
  background: rgba(247, 241, 230, 0.78);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(35, 67, 61, 0.08);
  border-radius: 999px;
  box-shadow: 0 4px 24px -8px rgba(35, 67, 61, 0.12);
  transition: padding .3s var(--ease), box-shadow .3s, background .3s;
}
.navbar.scrolled {
  padding: 6px 10px 6px 18px;
  background: rgba(247, 241, 230, 0.95);
  box-shadow: var(--shadow-md);
}

.brand {
  display: inline-flex; align-items: center;
  font-weight: 800;
  padding-inline-start: 14px;
  margin-inline-start: 4px;
  text-decoration: none;
}
.brand-img {
  height: 56px; width: auto; display: block;
  transition: transform .35s ease, filter .35s ease;
  filter: drop-shadow(0 6px 14px rgba(35, 67, 61, 0.18));
}
.brand:hover .brand-img { transform: scale(1.05); }
.navbar.scrolled .brand-img { height: 48px; }
.footer .brand-img { height: 64px; filter: drop-shadow(0 6px 14px rgba(0,0,0,0.25)) brightness(0) invert(1); }
@media (max-width: 860px) {
  .brand-img { height: 48px; }
  .navbar.scrolled .brand-img { height: 42px; }
}

.nav-links {
  display: flex; gap: 4px; justify-self: center;
}
.nav-links a {
  padding: 9px 16px; border-radius: 999px;
  font-size: 14.5px; font-weight: 600; color: var(--ink-soft);
  transition: background .25s, color .25s;
  position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--brand); background: rgba(35, 67, 61, 0.07); }

.nav-cta { display: flex; align-items: center; gap: 8px; }
.lang-toggle {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 14px; border-radius: 999px;
  border: 1.5px solid var(--line-2);
  font-size: 12px; font-weight: 800; color: var(--brand);
  letter-spacing: 1px;
  transition: all .25s var(--ease);
}
.lang-toggle:hover { background: var(--brand); color: var(--cream); border-color: var(--brand); transform: translateY(-2px); }

.burger {
  display: none;
  width: 42px; height: 42px;
  border-radius: 12px;
  border: 1.5px solid var(--line-2);
  position: relative;
  transition: background .2s;
}
.burger span {
  position: absolute; left: 11px; right: 11px;
  height: 2px; background: var(--brand);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .25s, top .3s;
}
.burger span:nth-child(1) { top: 14px; }
.burger span:nth-child(2) { top: 20px; }
.burger span:nth-child(3) { top: 26px; }
.burger.open span:nth-child(1) { top: 20px; transform: rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { top: 20px; transform: rotate(-45deg); }

/* Mobile Drawer */
.drawer {
  position: fixed; inset: 0; z-index: 95;
  background: var(--cream);
  display: flex; flex-direction: column; gap: 20px;
  justify-content: center; align-items: center;
  transform: translateY(-100%);
  transition: transform .5s var(--ease);
}
.drawer.open { transform: translateY(0); }
.drawer a { font-size: 22px; font-weight: 800; color: var(--brand); }
.drawer .lang-toggle { font-size: 14px; padding: 12px 22px; }

/* ============ Buttons ============ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px; border-radius: 14px;
  font-weight: 700; font-size: 15px;
  transition: all .3s var(--ease);
  border: 1.5px solid transparent;
  line-height: 1.1;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-3px); }
.btn-lg { padding: 16px 26px; font-size: 16px; }
.btn-primary { background: var(--brand); color: var(--cream); }
.btn-primary:hover { background: var(--brand-700); box-shadow: var(--shadow-md); }
.btn-gold { background: var(--sand); color: var(--brand-900); }
.btn-gold:hover { background: var(--sand-2); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--brand); border-color: var(--line-2); }
.btn-outline:hover { background: var(--brand); color: var(--cream); border-color: var(--brand); }
.btn-ghost { background: rgba(35, 67, 61, 0.06); color: var(--brand); }
.btn-ghost:hover { background: rgba(35, 67, 61, 0.12); }

/* App store buttons */
.store-btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 12px 22px; border-radius: 14px;
  background: var(--ink); color: var(--cream);
  transition: all .3s var(--ease);
  border: 1.5px solid var(--ink);
}
.store-btn i { font-size: 26px; }
.store-btn span { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.2; }
.store-btn span small { font-size: 10.5px; opacity: 0.75; }
.store-btn span strong { font-size: 15px; font-weight: 700; letter-spacing: 0.5px; }
.store-btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.store-btn--alt { background: var(--white); color: var(--ink); border-color: var(--line-2); }
.store-btn--alt:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }

/* ============ Section base ============ */
section { position: relative; }
.section { padding: 110px 0 60px; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 60px; }
.section-head.start { text-align: start; margin: 0 0 50px; }
.kicker {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 999px;
  background: rgba(35, 67, 61, 0.08);
  color: var(--brand);
  font-size: 12.5px; font-weight: 800; letter-spacing: 1.5px;
  margin-bottom: 16px;
}
.kicker::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--sand); box-shadow: 0 0 0 3px rgba(204,171,125,0.3);
}
.section-title {
  font-size: clamp(28px, 4.2vw, 48px);
  font-weight: 900; line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--brand);
}
.section-title em { font-style: normal; color: var(--sand-2); }
.section-sub {
  font-size: 17px; color: var(--ink-soft); margin-top: 14px;
}

/* ============ HERO ============ */
.hero {
  padding: 150px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: 60px; align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(35,67,61,0.07);
  border: 1px solid rgba(35,67,61,0.12);
  padding: 8px 16px; border-radius: 999px;
  font-size: 13px; font-weight: 700; color: var(--brand);
  margin-bottom: 24px;
}
.hero-eyebrow .pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--sand);
  position: relative;
}
.hero-eyebrow .pulse::after {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  background: var(--sand); animation: pulseDot 2s infinite;
}
@keyframes pulseDot {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(3.5); opacity: 0; }
}

.hero-title {
  font-size: clamp(38px, 6vw, 72px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--brand);
  margin-bottom: 24px;
}
.hero-title .word { display: inline-block; }
.hero-title .accent {
  display: inline-block; position: relative; color: var(--sand-2);
}
.hero-title .accent::after {
  content: ''; position: absolute; bottom: 0.1em; left: 0; right: 0;
  height: 0.18em; background: rgba(204,171,125,0.35);
  border-radius: 4px; z-index: -1;
  animation: highlightSlide 2s var(--ease) .6s both;
}
@keyframes highlightSlide {
  from { transform: scaleX(0); transform-origin: right; }
  to { transform: scaleX(1); }
}
[dir="ltr"] .hero-title .accent::after { animation-direction: normal; transform-origin: left; }

.hero-lead {
  font-size: clamp(16px, 1.4vw, 18.5px);
  color: var(--ink-soft);
  max-width: 540px;
  margin-bottom: 36px;
}
.hero-lead strong { color: var(--brand); font-weight: 700; }
.price-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--sand) 0%, var(--sand-2) 100%);
  color: var(--brand-900);
  padding: 3px 12px; border-radius: 8px;
  font-weight: 800; white-space: nowrap;
  box-shadow: 0 4px 12px -4px rgba(204,171,125,0.5);
}

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

.trust-row {
  display: flex; flex-wrap: wrap; gap: 22px;
  padding-top: 26px;
  border-top: 1px dashed var(--line-2);
}
.trust-row li {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13.5px; font-weight: 600; color: var(--ink-soft);
  list-style: none;
}
.trust-row li i { color: var(--sand-2); font-size: 16px; }

/* Hero showcase */
.hero-showcase {
  position: relative;
  aspect-ratio: 1/1;
  display: grid; place-items: center;
}
.showcase-glow {
  position: absolute; inset: 8%;
  background:
    radial-gradient(circle at 30% 30%, rgba(204,171,125,0.4) 0%, transparent 55%),
    radial-gradient(circle at 70% 70%, rgba(35,67,61,0.25) 0%, transparent 55%);
  border-radius: 50%;
  animation: glowPulse 8s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.08); opacity: 1; }
}

.phone-main, .phone-side {
  position: absolute;
  border-radius: 38px;
  border: 7px solid var(--ink);
  background: var(--ink);
  box-shadow: var(--shadow-xl);
}
.phone-main {
  width: 58%; z-index: 3;
  transform: translateX(8%) rotate(-5deg);
  animation: floaty 6s ease-in-out infinite;
}
.phone-side {
  width: 50%; z-index: 2; opacity: 0.95;
  transform: translateX(-32%) translateY(-6%) rotate(7deg);
  animation: floaty 6s ease-in-out infinite reverse;
  animation-delay: -2s;
}
@keyframes floaty {
  0%, 100% { transform: translateX(8%) rotate(-5deg) translateY(0); }
  50% { transform: translateX(8%) rotate(-5deg) translateY(-14px); }
}
.phone-side {
  animation-name: floatySide;
}
@keyframes floatySide {
  0%, 100% { transform: translateX(-32%) translateY(-6%) rotate(7deg); }
  50% { transform: translateX(-32%) translateY(-12%) rotate(7deg); }
}

.float-card {
  position: absolute; z-index: 4;
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 11px 16px;
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  font-size: 13.5px; font-weight: 700; color: var(--brand);
  animation: floatTag 5s ease-in-out infinite;
}
.float-card i {
  width: 30px; height: 30px;
  background: var(--brand-50);
  color: var(--brand);
  border-radius: 9px;
  display: grid; place-items: center; font-size: 14px;
}
.float-card.fc-1 { top: 8%; right: -2%; animation-delay: 0s; }
.float-card.fc-2 { bottom: 18%; left: -4%; animation-delay: 1.5s; }
.float-card.fc-3 { top: 50%; right: 4%; animation-delay: 3s; }
.float-card.fc-3 i { background: rgba(204,171,125,0.18); color: var(--sand-2); }
@keyframes floatTag {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Marquee */
.marquee {
  margin-top: 90px;
  padding: 22px 0;
  background: var(--brand);
  color: var(--cream);
  overflow: hidden;
  border-top: 1px solid var(--brand-700);
  border-bottom: 1px solid var(--brand-700);
}
.marquee-track {
  display: inline-flex; gap: 36px;
  white-space: nowrap;
  animation: marquee 35s linear infinite;
  font-size: 18px; font-weight: 700;
}
.marquee-track span:nth-child(even) { color: var(--sand); }
.marquee-track .dot { color: var(--sand); }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(50%); }
}
[dir="ltr"] @keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============ Features ============ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.feature {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative; overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s, border-color .4s;
}
.feature::before {
  content: ''; position: absolute; top: 0; right: 0;
  width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(204,171,125,0.18) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(40%, -40%);
  transition: transform .5s var(--ease);
}
.feature:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--sand);
}
.feature:hover::before { transform: translate(20%, -20%) scale(1.4); }

.feature-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--brand-50) 0%, rgba(204,171,125,0.15) 100%);
  color: var(--brand);
  border-radius: 16px;
  display: grid; place-items: center;
  font-size: 24px;
  margin-bottom: 20px;
  position: relative; z-index: 1;
  transition: transform .4s var(--ease-spring);
}
.feature:hover .feature-icon {
  transform: rotate(-8deg) scale(1.1);
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-700) 100%);
  color: var(--cream);
}
.feature h3 {
  font-size: 19px; font-weight: 800;
  color: var(--brand); margin-bottom: 10px;
  position: relative; z-index: 1;
}
.feature p {
  font-size: 14.5px; color: var(--ink-soft);
  position: relative; z-index: 1;
}

/* ============ How it works ============ */
.how-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.how-steps::before {
  content: ''; position: absolute;
  top: 40px; right: 6%; left: 6%;
  height: 2px;
  background: repeating-linear-gradient(to left, var(--line-2) 0 10px, transparent 10px 20px);
  z-index: 0;
}
.how-step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 22px 24px;
  position: relative; z-index: 1;
  transition: transform .3s var(--ease), box-shadow .3s;
}
.how-step:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.step-bubble {
  display: grid; place-items: center;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--white);
  border: 4px solid var(--cream);
  box-shadow: 0 0 0 2px var(--brand);
  color: var(--brand);
  font-size: 22px; font-weight: 900;
  margin-bottom: 18px;
  transition: all .3s var(--ease);
}
.how-step:nth-child(2) .step-bubble { box-shadow: 0 0 0 2px var(--sand-2); color: var(--sand-2); }
.how-step:hover .step-bubble { background: var(--brand); color: var(--cream); transform: rotate(360deg); }
.how-step:nth-child(2):hover .step-bubble { background: var(--sand-2); color: var(--cream); }
.how-step h4 { font-size: 18px; font-weight: 800; color: var(--brand); margin-bottom: 8px; }
.how-step p { font-size: 14.5px; color: var(--ink-soft); }

/* ============ Gallery / Screenshots ============ */
.gallery-wrap { position: relative; }
.gallery-tabs {
  display: flex; justify-content: center; gap: 8px;
  margin: 0 auto 40px;
  flex-wrap: wrap;
}
.gallery-tab {
  padding: 10px 22px; border-radius: 999px;
  background: var(--white); border: 1.5px solid var(--line-2);
  font-weight: 700; font-size: 14px; color: var(--ink-soft);
  transition: all .3s var(--ease);
}
.gallery-tab:hover { color: var(--brand); border-color: var(--brand); }
.gallery-tab.active { background: var(--brand); color: var(--cream); border-color: var(--brand); }

.gallery-stage {
  position: relative;
  display: grid; place-items: center;
  padding: 60px 24px;
  background: linear-gradient(180deg, transparent 0%, var(--brand-50) 100%);
  border-radius: var(--radius-xl);
  min-height: 600px;
  overflow: hidden;
}
.gallery-stage::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(204,171,125,0.18) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(35,67,61,0.15) 0%, transparent 50%);
  pointer-events: none;
}

.phone-deck {
  position: relative;
  width: min(820px, 100%);
  height: 540px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.deck-item {
  position: absolute;
  width: 240px;
  aspect-ratio: 9/19;
  border-radius: 34px;
  border: 6px solid var(--ink);
  overflow: hidden;
  background: var(--ink);
  box-shadow: var(--shadow-lg);
  transition: transform .8s var(--ease), opacity .6s, filter .6s;
  cursor: pointer;
}
.deck-item img { width: 100%; height: 100%; object-fit: cover; }

/* Deck positions — 5 phones spread out */
.deck-item[data-pos="0"] { transform: translateX(-280%) translateY(60px) rotate(-22deg) scale(0.6); opacity: 0; }
.deck-item[data-pos="-2"] { transform: translateX(-140%) translateY(30px) rotate(-12deg) scale(0.75); opacity: 0.5; filter: blur(2px); }
.deck-item[data-pos="-1"] { transform: translateX(-72%) rotate(-6deg) scale(0.88); opacity: 0.85; z-index: 2; }
.deck-item[data-pos="center"] { transform: translateX(0) rotate(0) scale(1.08); opacity: 1; z-index: 5; box-shadow: var(--shadow-xl); }
.deck-item[data-pos="1"] { transform: translateX(72%) rotate(6deg) scale(0.88); opacity: 0.85; z-index: 2; }
.deck-item[data-pos="2"] { transform: translateX(140%) translateY(30px) rotate(12deg) scale(0.75); opacity: 0.5; filter: blur(2px); }
.deck-item[data-pos="3"] { transform: translateX(280%) translateY(60px) rotate(22deg) scale(0.6); opacity: 0; }

[dir="ltr"] .deck-item[data-pos="-2"] { transform: translateX(140%) translateY(30px) rotate(12deg) scale(0.75); }
[dir="ltr"] .deck-item[data-pos="-1"] { transform: translateX(72%) rotate(6deg) scale(0.88); }
[dir="ltr"] .deck-item[data-pos="1"] { transform: translateX(-72%) rotate(-6deg) scale(0.88); }
[dir="ltr"] .deck-item[data-pos="2"] { transform: translateX(-140%) translateY(30px) rotate(-12deg) scale(0.75); }

.deck-controls {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 12px; z-index: 10;
}
.deck-btn {
  width: 50px; height: 50px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--brand);
  display: grid; place-items: center; font-size: 16px;
  box-shadow: var(--shadow-sm);
  transition: all .25s var(--ease);
}
.deck-btn:hover { background: var(--brand); color: var(--cream); transform: scale(1.1); }

.deck-dots {
  display: flex; justify-content: center; gap: 8px;
  margin-top: 28px;
}
.deck-dot {
  width: 8px; height: 8px; border-radius: 999px;
  background: var(--line-2);
  transition: all .3s var(--ease);
}
.deck-dot.active { width: 28px; background: var(--brand); }

/* Thumbnail strip */
.gallery-thumbs {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 12px; margin-top: 30px;
}
.thumb {
  position: relative;
  aspect-ratio: 9/19;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  border: 3px solid transparent;
  transition: all .3s var(--ease);
  opacity: 0.55;
}
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.thumb:hover { opacity: 1; transform: translateY(-4px); }
.thumb.active { opacity: 1; border-color: var(--brand); box-shadow: var(--shadow-md); }

/* ============ Pricing strip ============ */
.value {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-700) 100%);
  color: var(--cream);
  border-radius: var(--radius-xl);
  padding: 60px 56px;
  display: grid; grid-template-columns: 1.15fr 0.85fr;
  gap: 50px; align-items: center;
  position: relative; overflow: hidden;
}
.value::before {
  content: ''; position: absolute; top: -50%; right: -10%;
  width: 60%; height: 200%;
  background: radial-gradient(circle, rgba(204,171,125,0.25) 0%, transparent 60%);
  pointer-events: none;
}
.value h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 900; line-height: 1.18;
  letter-spacing: -0.02em;
}
.value .kicker { background: rgba(247,241,230,0.12); color: var(--sand); margin-bottom: 14px; }
.value .kicker::before { background: var(--sand); }
.value p { color: rgba(247,241,230,0.78); font-size: 17px; max-width: 460px; margin-top: 14px; }

.price-card {
  background: var(--cream);
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-xl);
  position: relative; z-index: 1;
}
.price-card-head {
  font-size: 12px; font-weight: 800; letter-spacing: 2px;
  color: var(--brand); text-transform: uppercase;
  margin-bottom: 6px;
}
.price-amount {
  display: flex; align-items: baseline; gap: 8px;
  padding-bottom: 20px; border-bottom: 1px dashed var(--line-2);
  margin-bottom: 20px;
}
.price-amount strong {
  font-size: 56px; font-weight: 900; color: var(--brand);
  line-height: 1; letter-spacing: -0.03em;
}
.price-amount small { font-size: 14px; color: var(--ink-soft); font-weight: 700; }
.price-card ul { list-style: none; margin-bottom: 22px; }
.price-card li {
  display: flex; gap: 12px; padding: 8px 0;
  font-size: 14.5px;
}
.price-card li i {
  color: var(--brand);
  background: var(--brand-50);
  width: 22px; height: 22px; border-radius: 50%;
  display: grid; place-items: center;
  font-size: 10px; flex-shrink: 0; margin-top: 3px;
}
.price-card .btn { width: 100%; justify-content: center; }

/* ============ FAQ ============ */
.faq-grid {
  max-width: 920px; margin: 0 auto;
  display: grid; gap: 14px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 4px 24px;
  transition: all .3s var(--ease);
}
.faq-item[open] {
  border-color: var(--brand);
  box-shadow: var(--shadow-md);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center;
  gap: 18px;
  font-weight: 700; font-size: 16px;
  color: var(--brand);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-toggle {
  width: 34px; height: 34px;
  background: var(--brand-50); color: var(--brand);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 12px;
  transition: all .35s var(--ease-spring);
  flex-shrink: 0;
}
.faq-item[open] .faq-toggle {
  transform: rotate(135deg);
  background: var(--brand); color: var(--cream);
}
.faq-item .faq-body {
  padding: 0 0 20px;
  color: var(--ink-soft); font-size: 15px;
}

/* ============ Contact ============ */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px;
  display: flex; align-items: center; gap: 16px;
  transition: all .3s var(--ease);
}
.contact-card:hover:not(.static) {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--sand);
}
.contact-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-700) 100%);
  color: var(--cream);
  border-radius: 14px;
  display: grid; place-items: center;
  font-size: 20px; flex-shrink: 0;
  transition: transform .3s var(--ease-spring);
}
.contact-card:hover .contact-icon { transform: rotate(-8deg) scale(1.05); }
.contact-card small {
  display: block; font-size: 12px;
  color: var(--ink-soft); margin-bottom: 4px;
}
.contact-card strong {
  font-size: 15px; color: var(--brand); font-weight: 700;
  unicode-bidi: plaintext;
}

/* ============ CTA Banner ============ */
.cta-banner {
  position: relative;
  background: linear-gradient(135deg, var(--ink) 0%, var(--brand) 100%);
  color: var(--cream);
  border-radius: var(--radius-xl);
  padding: 80px 40px;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(circle at 25% 20%, rgba(204,171,125,0.4) 0%, transparent 50%),
    radial-gradient(circle at 75% 80%, rgba(35,67,61,0.6) 0%, transparent 50%);
}
.cta-banner h2 {
  font-size: clamp(30px, 5vw, 56px);
  font-weight: 900; line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}
.cta-banner h2 em { font-style: normal; color: var(--sand); }
.cta-banner p {
  max-width: 540px; margin: 0 auto 32px;
  color: rgba(247,241,230,0.8); font-size: 17px;
}
.cta-banner .hero-actions { justify-content: center; }

/* ============ Contact Form ============ */
.contact-form-wrap {
  margin-top: 48px;
  background: linear-gradient(180deg, #ffffff 0%, var(--cream) 100%);
  border: 1px solid rgba(35,67,61,0.08);
  border-radius: 28px;
  padding: 44px 44px 40px;
  box-shadow: 0 20px 60px -28px rgba(35,67,61,0.25);
  position: relative;
  overflow: hidden;
}
.contact-form-wrap::before {
  content: ''; position: absolute; inset: -1px;
  border-radius: 28px; padding: 1.5px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--sand) 50%, var(--brand) 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0.25; pointer-events: none;
}
.contact-form-wrap::after {
  content: ''; position: absolute;
  width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, rgba(204,171,125,0.18), transparent 70%);
  inset-inline-end: -140px; top: -140px;
  pointer-events: none;
}
.contact-form-head {
  text-align: center; margin-bottom: 30px;
  position: relative; z-index: 1;
}
.contact-form-head .kicker { display: inline-block; margin-bottom: 12px; }
.contact-form-head h3 {
  font-size: clamp(22px, 3vw, 30px); font-weight: 800;
  color: var(--brand); margin-bottom: 8px;
}
.contact-form-head p { color: var(--muted); font-size: 15px; }

.contact-form {
  display: grid; gap: 18px; position: relative; z-index: 1;
}
.contact-form .form-row {
  display: grid; gap: 18px;
  grid-template-columns: 1fr 1fr;
}
.contact-form .form-field { display: flex; flex-direction: column; gap: 8px; }
.contact-form label {
  font-size: 13px; font-weight: 700; color: var(--brand);
  padding-inline-start: 4px;
}
.contact-form .input-wrap {
  position: relative;
  background: #fff;
  border: 1.5px solid rgba(35,67,61,0.12);
  border-radius: 14px;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), transform .25s var(--ease);
}
.contact-form .input-wrap:hover { border-color: rgba(35,67,61,0.22); }
.contact-form .input-wrap:focus-within {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(35,67,61,0.10);
  transform: translateY(-1px);
}
.contact-form .input-wrap > i {
  position: absolute; top: 18px; inset-inline-start: 16px;
  color: var(--brand); font-size: 15px; opacity: 0.6;
  transition: opacity .25s, color .25s;
}
.contact-form .input-wrap:focus-within > i { opacity: 1; color: var(--brand); }
.contact-form .input-wrap--area > i { top: 16px; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  background: transparent;
  border: 0; outline: 0;
  padding: 14px 18px 14px 46px;
  font: inherit;
  color: var(--ink);
  font-size: 15px;
  border-radius: 14px;
  font-family: inherit;
}
[dir="rtl"] .contact-form input,
[dir="rtl"] .contact-form textarea { padding: 14px 46px 14px 18px; }
.contact-form textarea { resize: vertical; min-height: 120px; line-height: 1.7; padding-top: 14px; }
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(26,38,34,0.35); }

.contact-form .honeypot {
  position: absolute !important; left: -9999px !important;
  width: 1px; height: 1px; opacity: 0;
}

.form-submit {
  justify-self: stretch; margin-top: 6px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  position: relative; overflow: hidden;
}
.form-submit i { transition: transform .35s var(--ease); }
.form-submit:hover i { transform: translateX(-4px) rotate(-12deg); }
[dir="ltr"] .form-submit:hover i { transform: translateX(4px) rotate(12deg); }

@media (max-width: 720px) {
  .contact-form-wrap { padding: 32px 22px 28px; border-radius: 22px; }
  .contact-form .form-row { grid-template-columns: 1fr; }
}

/* ============ Footer ============ */
.footer {
  background: var(--brand-900);
  color: var(--cream);
  padding: 80px 0 24px;
  margin-top: 100px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(247,241,230,0.1);
}
.footer .brand-name strong { color: var(--cream); }
.footer .brand-name small { color: var(--sand); }
.footer-about p {
  color: rgba(247,241,230,0.7); font-size: 14.5px;
  margin: 18px 0 22px; max-width: 380px; line-height: 1.8;
}
.footer-socials { display: flex; gap: 14px; flex-wrap: wrap; justify-content: flex-start; }
.footer-socials .social-link {
  width: 48px; height: 48px;
  background: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.18);
  border: 2px solid rgba(255,255,255,0.2);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
  opacity: 0;
  transform: scale(0.8) translateY(20px);
  animation: socialPopIn 0.6s ease forwards;
}
.footer-socials .social-icon {
  width: 34px; height: 34px;
  object-fit: contain;
  transition: transform .3s var(--ease);
  position: relative; z-index: 1;
}
.footer-socials .social-link::before {
  content: ''; position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0; border-radius: 50%;
  background: rgba(255,255,255,0.3);
  transform: translate(-50%, -50%);
  transition: width .35s var(--ease), height .35s var(--ease);
}
.footer-socials .social-link:hover {
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 10px 24px rgba(0,0,0,0.25);
}
.footer-socials .social-link:hover::before { width: 100%; height: 100%; }
.footer-socials .social-link:hover .social-icon { transform: scale(1.1) rotate(5deg); }

.footer-socials .social-link.whatsapp { background: #25d366; }
.footer-socials .social-link.whatsapp:hover { background: #128c7e; box-shadow: 0 10px 24px rgba(37,211,102,0.45); }
.footer-socials .social-link.tiktok { background: #000; }
.footer-socials .social-link.tiktok:hover { background: #fe2c55; box-shadow: 0 10px 24px rgba(254,44,85,0.45); }
.footer-socials .social-link.twitter { background: #000; }
.footer-socials .social-link.twitter:hover { background: #1d9bf0; box-shadow: 0 10px 24px rgba(29,155,240,0.45); }
.footer-socials .social-link.instagram { background: linear-gradient(135deg,#e4405f 0%,#f77737 25%,#fcaf45 75%,#833ab4 100%); }
.footer-socials .social-link.instagram:hover { box-shadow: 0 10px 24px rgba(228,64,95,0.45); }
.footer-socials .social-link.linkedin { background: #0a66c2; }
.footer-socials .social-link.linkedin:hover { background: #004182; box-shadow: 0 10px 24px rgba(10,102,194,0.45); }

.footer-socials .social-link:nth-child(1) { animation-delay: 0.10s; }
.footer-socials .social-link:nth-child(2) { animation-delay: 0.20s; }
.footer-socials .social-link:nth-child(3) { animation-delay: 0.30s; }
.footer-socials .social-link:nth-child(4) { animation-delay: 0.40s; }
.footer-socials .social-link:nth-child(5) { animation-delay: 0.50s; }

@keyframes socialPopIn {
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.footer-col h5 {
  font-size: 12px; font-weight: 800; letter-spacing: 2px;
  margin-bottom: 18px; color: var(--sand);
  text-transform: uppercase;
}
.footer-col a {
  display: block; padding: 7px 0;
  color: rgba(247,241,230,0.7); font-size: 14.5px;
  transition: all .2s;
}
.footer-col a:hover { color: var(--cream); padding-inline-start: 6px; }
.pay-strip { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.pay-strip img {
  height: 28px;
  background: var(--cream);
  padding: 5px 9px;
  border-radius: 8px;
  object-fit: contain;
}
.footer-bottom {
  padding-top: 22px;
  display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 10px;
  font-size: 12.5px; color: rgba(247,241,230,0.55);
}

/* ============ WhatsApp FAB ============ */
.wa-fab {
  position: fixed; bottom: 22px; left: 22px;
  z-index: 90;
  width: 60px; height: 60px;
  background: #25D366; color: #fff;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 28px;
  box-shadow: 0 14px 30px -8px rgba(37,211,102,0.55);
  animation: waFloat 3s ease-in-out infinite;
  transition: transform .25s;
}
[dir="ltr"] .wa-fab { left: auto; right: 22px; }
.wa-fab::after {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid #25D366;
  animation: waRing 2s ease-out infinite;
}
@keyframes waRing {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.7); opacity: 0; }
}
@keyframes waFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.wa-fab:hover { transform: scale(1.1); }

/* ============ Legal pages ============ */
.legal-page { padding: 150px 0 80px; }
.legal-page .container { max-width: 920px; }
.legal-page h1 {
  font-size: clamp(32px, 4vw, 48px);
  color: var(--brand);
  margin-bottom: 16px;
  font-weight: 900;
}
.legal-meta { color: var(--ink-soft); margin-bottom: 40px; font-size: 14px; }
.legal-page h2 {
  font-size: 22px; font-weight: 800;
  color: var(--brand); margin: 36px 0 14px;
}
.legal-page p, .legal-page li {
  color: var(--ink-soft); font-size: 16px; line-height: 1.85;
  margin-bottom: 12px;
}
.legal-page ul, .legal-page ol { padding-inline-start: 24px; }
.legal-page a { color: var(--brand); text-decoration: underline; }

/* ============ Reveal animations ============ */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.show { opacity: 1; transform: translateY(0); }
.reveal.show-left { transform: translateX(40px); }
.reveal.show-left.show { transform: translateX(0); }

.stagger > * { opacity: 0; transform: translateY(20px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.stagger.show > * { opacity: 1; transform: translateY(0); }
.stagger.show > *:nth-child(1) { transition-delay: 0.05s; }
.stagger.show > *:nth-child(2) { transition-delay: 0.12s; }
.stagger.show > *:nth-child(3) { transition-delay: 0.19s; }
.stagger.show > *:nth-child(4) { transition-delay: 0.26s; }
.stagger.show > *:nth-child(5) { transition-delay: 0.33s; }
.stagger.show > *:nth-child(6) { transition-delay: 0.4s; }
.stagger.show > *:nth-child(7) { transition-delay: 0.47s; }
.stagger.show > *:nth-child(8) { transition-delay: 0.54s; }
.stagger.show > *:nth-child(9) { transition-delay: 0.61s; }

/* ============ Responsive ============ */
@media (max-width: 1100px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .how-steps { grid-template-columns: repeat(2, 1fr); }
  .how-steps::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-thumbs { grid-template-columns: repeat(6, 1fr); }
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-cta .lang-toggle { display: none; }
  .burger { display: block; }
  .navbar { grid-template-columns: auto 1fr auto auto; }

  .hero { padding: 130px 0 40px; }
  .hero-grid { grid-template-columns: 1fr; gap: 50px; }
  .hero-showcase { order: -1; max-width: 460px; margin: 0 auto; width: 100%; }
  .hero-title { font-size: clamp(36px, 10vw, 56px); }

  .section { padding: 80px 0 40px; }
  .features-grid { grid-template-columns: 1fr; }
  .how-steps { grid-template-columns: 1fr; }

  .value { grid-template-columns: 1fr; padding: 44px 28px; }

  .contact-grid { grid-template-columns: 1fr 1fr; }

  .gallery-thumbs { grid-template-columns: repeat(6, 1fr); gap: 8px; }
  .deck-item { width: 200px; }
  .phone-deck { height: 460px; }

  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .cta-banner { padding: 60px 24px; }
}

@media (max-width: 480px) {
  .deck-item { width: 170px; }
  .phone-deck { height: 380px; }
  .gallery-thumbs { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .float-card { font-size: 11px; padding: 8px 12px; }
  .float-card i { width: 24px; height: 24px; font-size: 11px; }
  .hero-actions .btn, .hero-actions .store-btn { flex: 1; justify-content: center; }
  .value { padding: 36px 22px; }
  .price-card { padding: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
