/* ===================================================================
   Durusi — Light "Frost" design system (Stripe-style)
   Built from the DBB brand book: Frost canvas, Espresso/Forest inks,
   Vivid Mint as the only CTA, the five gradients as hero/CTA bands only,
   Fredoka (EN) + Rubik (AR). Colour is an ACCENT, never the page canvas.
   =================================================================== */

:root {
  /* ---- canvases (backgrounds only) ---- */
  --frost:#F2F5F7; --ivory:#FFFFFF; --white:#FFFFFF;

  /* ---- inks (text only, never page backgrounds) ---- */
  --espresso:#2A0F0F; --onyx:#16181B; --cocoa:#684C35; --forest:#102718;
  --deep-teal:#0C333B; --blackcurrant:#2A1B38; --wine:#660033; --link:#017579;

  /* ---- actions / accents ---- */
  /* Fixed 2026-08-31: --lilac held #00E0E8 (that is Electric) and --magenta held
     #15AC76 (that is Mint Deep). Both now hold the colour they are named after.
     Their only two consumers (.rating, .pay-meth .ic) are dead CSS — no HTML on
     the site uses either class — so nothing on screen changed. */
  --mint:#45FBB2; --mint-deep:#15AC76; --lilac:#CA9FFF; --magenta:#FE019A; --electric:#00E0E8;

  /* ---- the five brand gradients (DBB): bright colour as top glow, dark partner down,
         middle kept dark so white hero text stays legible ---- */
  --grad-mint-teal:        linear-gradient(167deg,#45FBB2 -70%,#0C333B 46%,#102718 100%); /* Vivid Mint -> Deep Teal (green) */
  --grad-lilac-currant:    linear-gradient(167deg,#CA9FFF -70%,#3A2350 46%,#2A1B38 100%); /* Bright Lilac -> Blackcurrant (purple) */
  --grad-electric-currant: linear-gradient(167deg,#00E0E8 -70%,#123244 46%,#2A1B38 100%); /* Electric -> Blackcurrant (cyan) */
  --grad-magenta-currant:  linear-gradient(167deg,#FE019A -70%,#46163A 46%,#2A1B38 100%); /* Magenta -> Blackcurrant (pink) */
  --grad-electric-magenta: linear-gradient(150deg,#00E0E8 -55%,#2A1B38 52%,#FE019A 128%); /* Electric -> Magenta (bold) */

  /* ---- legacy aliases so existing rules reskin in place ---- */
  --ink: var(--forest);        /* headings */
  --body-c: var(--espresso);   /* body text */
  --bg: var(--ivory);
  --soft: var(--white);
  --card: var(--white);
  --blue: var(--link);         /* accent text + links = teal */
  --blue-dark: var(--deep-teal);
  --blue-tint: rgba(69,251,178,0.16);
  --yellow: var(--mint-deep);
  --yellow-tint: rgba(69,251,178,0.12);
  --green-tint: rgba(69,251,178,0.12);
  --pink-tint: rgba(69,251,178,0.12);
  --line: #E2E6E9;
  --radius: 16px;
  --grad: var(--grad-electric-magenta);

  /* ---- fonts ---- */
  --font-en: "Fredoka";
  --font-ar: "Rubik";
  --sans: var(--font-en), -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --text: var(--font-en), -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--text);
  background-color: var(--ivory);
  color: var(--espresso);
  line-height: 1.7;
  font-size: 16px;
}

[dir="rtl"] body,
[dir="rtl"] h1, [dir="rtl"] h2, [dir="rtl"] h3, [dir="rtl"] .logo {
  font-family: var(--font-ar), -apple-system, sans-serif;
  letter-spacing: 0;
}

h1, h2, h3, h4 { font-family: var(--sans); font-weight: 600; line-height: 1.18; color: var(--forest); letter-spacing: -0.01em; }
h1 { font-size: clamp(2rem, 4.4vw, 3rem); font-weight: 700; line-height: 1.05; }
h2 { font-size: clamp(1.5rem, 3vw, 1.625rem); font-weight: 600; line-height: 1.2; }
h3 { font-size: 1.375rem; font-weight: 600; line-height: 1.3; }

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

/* gradient text is not allowed -> solid accent */
mark { background: none; color: var(--link); padding: 0; font-weight: 600; }

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

.eyebrow {
  display: inline-block;
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--soul, var(--link));
  margin-bottom: 1rem;
}
/* on dark gradient bands the eyebrow must stay light, not the dark accent */
.hero .eyebrow, .cta-band .eyebrow { color: rgba(255,255,255,0.9); }

.center { text-align: center; }
.sub { max-width: 580px; margin: 1rem auto 0; color: var(--cocoa); }

/* sections are transparent over the frost canvas */
main > section { position: relative; background: transparent; color: var(--espresso); }
section { padding: 88px 0; }
.soft { background: var(--white); }

/* ---- per-page colour identity: drives the HERO + CTA gradient bands, plus the
       --soul accent (eyebrows/small highlights), readable on the cream canvas ---- */
body.theme-magenta  { --page-grad: var(--grad-electric-magenta); --soul:#BC0071; --foot-grad: linear-gradient(180deg,#0A8190 0%,#7A1F8E 46%,#FB86C3 76%,#FCEDF5 100%); }
body.theme-lilac    { --page-grad: var(--grad-lilac-currant);    --soul:#8412FF; --foot-grad: linear-gradient(180deg,#3F2470 0%,#7C2BE0 46%,#C6A0F5 76%,#F3ECFD 100%); }
body.theme-electric { --page-grad: var(--grad-electric-currant); --soul:#017579; --foot-grad: linear-gradient(180deg,#0A4254 0%,#0A93A1 46%,#74DEE6 76%,#EAFBFC 100%); }
body.theme-mint     { --page-grad: var(--grad-mint-teal);        --soul:#15AC76; --foot-grad: linear-gradient(180deg,#0C5C42 0%,#15AC76 46%,#7FE3BD 76%,#EAF7F0 100%); }
body.theme-promo    { --page-grad: var(--grad-magenta-currant);  --soul:#BC0071; --foot-grad: linear-gradient(180deg,#6A0A45 0%,#C8197E 46%,#FB86C3 76%,#FCEDF5 100%); }
body.theme-dark     { --page-grad: var(--grad-electric-currant); --soul:#017579; --foot-grad: linear-gradient(180deg,#0A4254 0%,#0A93A1 46%,#74DEE6 76%,#EAFBFC 100%); }

/* Announce bar */
.announce { background: var(--ivory); color: var(--espresso); text-align: center; font-size: 0.84rem; padding: 9px 16px; border-bottom: 1px solid var(--line); }
.announce a { color: var(--link); font-weight: 600; text-decoration: none; }
.announce a:hover { text-decoration: underline; }

/* Header */
.site-header {
  background: rgba(255,255,255,0.82);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  position: sticky; top: 0; z-index: 50; border-bottom: 1px solid transparent;
}
.site-header.scrolled { border-bottom-color: var(--line); box-shadow: 0 4px 20px rgba(16,18,27,0.06); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-top: 14px; padding-bottom: 14px; }
.logo { font-family: var(--sans); font-weight: 700; font-size: 1.5rem; letter-spacing: -0.02em; color: var(--espresso); text-decoration: none; white-space: nowrap; }
.logo .dot { color: var(--mint-deep); }

.nav { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.nav a { color: var(--espresso); text-decoration: none; font-size: 0.92rem; font-weight: 500; opacity: 0.82; }
.nav a:hover, .nav a[aria-current="page"] { opacity: 1; color: var(--link); }
.nav .btn { padding: 9px 18px; font-size: 0.88rem; }
.nav a.btn { color: var(--forest); opacity: 1; }
.nav a.btn:hover { color: var(--mint); }

.lang-toggle { border: 1.5px solid var(--line); padding: 6px 14px; border-radius: 999px; font-size: 0.85rem; font-weight: 600; opacity: 1 !important; color: var(--espresso); }
.lang-toggle:hover { border-color: var(--mint-deep); color: var(--link) !important; }

.nav-toggle { display: none; background: none; border: 1.5px solid var(--line); color: var(--espresso); padding: 6px 11px; border-radius: 10px; font-size: 1rem; cursor: pointer; }

/* =====================================================================
   CTA — Vivid Mint is the ONLY call to action
   ===================================================================== */
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--mint); color: var(--forest);
  font-family: var(--sans); font-size: 0.95rem; font-weight: 600;
  padding: 13px 26px; border-radius: 999px; text-decoration: none;
  border: 1.5px solid var(--mint);
  transition: background 0.18s ease, color 0.18s ease, transform 0.15s ease, box-shadow 0.2s ease;
}
.btn::after { content: "\2192"; font-weight: 400; transition: transform 0.15s ease; }
.btn:hover { background: var(--forest); color: var(--mint); border-color: var(--forest); transform: translateY(-1px); box-shadow: 0 8px 22px rgba(16,39,24,0.18); }
.btn:hover::after { transform: translateX(3px); }

/* secondary buttons: light, outlined */
.btn-ghost { background: transparent; color: var(--espresso); border-color: var(--line); }
.btn-ghost:hover { background: var(--white); color: var(--forest); border-color: var(--forest); box-shadow: none; }
.btn-white { background: var(--white); color: var(--espresso); border-color: var(--white); }
.btn-white:hover { background: var(--mint); color: var(--forest); border-color: var(--mint); }
.btn-yellow { background: var(--mint); border-color: var(--mint); color: var(--forest); }
.btn-yellow:hover { background: var(--forest); color: var(--mint); border-color: var(--forest); }

/* buttons sitting on a gradient hero band */
.hero .btn-ghost { color: var(--white); border-color: rgba(255,255,255,0.6); }
.hero .btn-ghost:hover { background: rgba(255,255,255,0.16); color: var(--white); border-color: var(--white); }

/* =====================================================================
   Hero — the page's gradient "moment", white text on it
   ===================================================================== */
.hero {
  position: relative; padding: 84px 0 96px; overflow: hidden; text-align: left;
  background: var(--page-grad, var(--grad-electric-magenta));
  color: var(--white);
}
.ribbon, .ribbon-soft { position: absolute; pointer-events: none; z-index: 0; }
.ribbon {
  top: -42%; right: -18%; width: 78%; height: 130%;
  transform: skewY(-12deg) rotate(2deg);
  background:
    radial-gradient(40% 48% at 30% 30%, rgba(255,255,255,0.22), transparent 70%),
    radial-gradient(42% 48% at 70% 60%, rgba(255,255,255,0.16), transparent 70%);
  filter: blur(34px); animation: ribbonshift 16s ease-in-out infinite alternate; border-radius: 40px;
}
.ribbon-soft { top: -30%; right: -10%; width: 60%; height: 100%; transform: skewY(-12deg); background: radial-gradient(50% 60% at 60% 40%, rgba(255,255,255,0.18), transparent 75%); filter: blur(20px); }
@keyframes ribbonshift { 0% { transform: skewY(-12deg) rotate(2deg) translateY(0) scale(1); } 100% { transform: skewY(-10deg) rotate(-1deg) translateY(28px) scale(1.06); } }
@media (prefers-reduced-motion: reduce) { .ribbon { animation: none; } }

.hero .container { position: relative; z-index: 1; }
.hero-grid2 { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.hero h1 { max-width: 600px; margin: 0; color: var(--white); }
.hero h1 .dim { color: rgba(255,255,255,0.85); font-weight: 600; }
.hero .lead { font-size: 1.12rem; max-width: 520px; margin: 1.3rem 0 2rem; color: rgba(255,255,255,0.92); }
.hero .actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: flex-start; }
.hero .proof { margin-top: 2.2rem; display: flex; gap: 26px; flex-wrap: wrap; font-size: 0.88rem; font-weight: 500; color: rgba(255,255,255,0.92); }
.hero .proof span strong { color: var(--white); }


/* Phone mockup — white product device on the gradient */
.hero-product { position: relative; display: flex; justify-content: center; }
.phone { width: min(320px, 86%); background: var(--white); border: 1px solid rgba(255,255,255,0.5); border-radius: 34px; padding: 14px 14px 20px; box-shadow: 0 30px 70px rgba(16,18,27,0.28); position: relative; z-index: 2; }
.phone .notch { width: 90px; height: 5px; background: #dfe3e6; border-radius: 99px; margin: 2px auto 12px; }
.phone .chat-head { display: flex; align-items: center; gap: 10px; background: var(--forest); color: var(--white); border-radius: 16px 16px 4px 4px; padding: 10px 14px; font-size: 0.8rem; font-weight: 600; }
.phone .chat-head .avatar { width: 30px; height: 30px; border-radius: 99px; background: var(--mint); color: var(--forest); display: flex; align-items: center; justify-content: center; font-size: 0.75rem; font-weight: 700; }
.phone .chat-head small { display: block; font-weight: 400; opacity: 0.7; font-size: 0.68rem; }
.phone .chat-body { background: var(--frost); border-radius: 4px 4px 16px 16px; padding: 14px 12px; display: grid; gap: 10px; }
.bubble { background: var(--white); border: 1px solid var(--line); border-radius: 14px 14px 14px 4px; padding: 10px 13px; font-size: 0.78rem; line-height: 1.55; color: var(--espresso); max-width: 95%; }
.bubble .tag { display: inline-block; font-size: 0.62rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--link); margin-bottom: 4px; }
.bubble.right { border-radius: 14px 14px 4px 14px; background: rgba(69,251,178,0.22); border-color: rgba(69,251,178,0.5); justify-self: end; color: var(--forest); }
.bubble .meta { display: block; font-size: 0.64rem; color: var(--cocoa); margin-top: 5px; text-align: right; }

.float-card { position: absolute; bottom: 8%; left: -4%; z-index: 3; background: var(--white); border: 1px solid var(--line); border-radius: 14px; box-shadow: 0 18px 44px rgba(16,18,27,0.2); padding: 12px 16px; font-size: 0.78rem; color: var(--espresso); }
.float-card .up { color: var(--mint-deep); font-weight: 700; }
.float-card .lbl { display: block; font-size: 0.66rem; color: var(--cocoa); }

/* =====================================================================
   Trust strips
   ===================================================================== */
.trustbar { padding: 22px 0; }
.trustbar .items { display: flex; justify-content: center; gap: clamp(14px, 2.6vw, 38px); flex-wrap: wrap; }
.trustbar .item { display: inline-flex; align-items: center; gap: 7px; font-size: 0.84rem; font-weight: 500; color: var(--espresso); white-space: nowrap; }
.trustbar .item svg { width: 17px; height: 17px; flex: none; }
.trustbar .item svg circle { fill: var(--mint); }
.trustbar .item svg path { stroke: var(--forest); stroke-width: 2.2; fill: none; stroke-linecap: round; stroke-linejoin: round; }

.trusted { padding: 34px 0; }
.trusted-label { text-align: center; font-size: 0.76rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--cocoa); margin-bottom: 18px; }
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent); mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent); }
.marquee-track { display: flex; align-items: center; gap: 80px; width: max-content; animation: marquee 32s linear infinite; padding-right: 80px; }
.marquee-track img { height: 36px; width: auto; opacity: 0.6; filter: grayscale(1); transition: 0.2s; }
.marquee-track img:hover { opacity: 1; filter: none; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; flex-wrap: wrap; width: auto; justify-content: center; } }

/* =====================================================================
   Cards — white surfaces with soft shadow (Stripe-style)
   ===================================================================== */
.bento { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: minmax(160px, auto); gap: 18px; margin-top: 2.6rem; text-align: left; }
.bento .b1 { grid-column: span 2; grid-row: span 2; }
.bento .b-tile { background: var(--white); border: 1px solid var(--line); border-radius: 20px; padding: 28px; position: relative; overflow: hidden; color: var(--espresso); transition: transform 0.15s ease, box-shadow 0.2s ease; }
.bento .b-tile:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(16,18,27,0.08); }
.bento .b-tile h3 { margin-bottom: 0.5rem; color: var(--forest); }
.bento .b-tile p { font-size: 0.93rem; color: var(--cocoa); }
.bento .b-tile .topline { width: 44px; height: 4px; border-radius: 99px; background: var(--mint); margin-bottom: 18px; }
.bento .mini-note { margin-top: 20px; background: var(--frost); border: 1px solid var(--line); border-radius: 14px; padding: 16px; font-size: 0.8rem; color: var(--espresso); line-height: 1.6; }
.bento .mini-note .tag { display: inline-block; font-size: 0.62rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--link); margin-bottom: 4px; }
.bento ul.plain { list-style: none; margin-top: 10px; font-size: 0.9rem; display: grid; gap: 7px; color: var(--espresso); }
.bento ul.plain li::before { content: "\2192\00a0"; color: var(--mint-deep); }
.bento .big-stat { font-size: 2.6rem; font-weight: 700; color: var(--forest); line-height: 1.1; }
.bento .big-stat em { font-style: normal; color: var(--link); }
@media (max-width: 820px) { .bento { grid-template-columns: 1fr; } .bento .b1 { grid-column: span 1; grid-row: span 1; } }

.grid { display: grid; gap: 18px; margin-top: 2.6rem; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }

.card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 26px; color: var(--espresso); transition: transform 0.15s ease, box-shadow 0.2s ease; }
.card:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(16,18,27,0.08); }
.card h3 { margin-bottom: 0.5rem; color: var(--forest); }
.card p { font-size: 0.95rem; color: var(--cocoa); }
.card .note { font-weight: 600; color: var(--link); margin-top: 0.9rem; font-size: 0.92rem; }

.tile-blue { background: rgba(69,251,178,0.10); border-color: transparent; }
.tile-yellow { background: rgba(254,1,154,0.08); border-color: transparent; }
.tile-green { background: rgba(69,251,178,0.10); border-color: transparent; }
.tile-pink { background: rgba(202,159,255,0.14); border-color: transparent; }
.tile-soft { background: var(--frost); border-color: transparent; }

.chip { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 12px; background: var(--mint); color: var(--forest); font-family: var(--sans); font-weight: 700; font-size: 0.95rem; margin-bottom: 16px; }
.chip-blue { background: rgba(1,117,121,0.12); color: var(--link); }
.chip-yellow { background: rgba(202,159,255,0.18); color: var(--blackcurrant); }

/* Steps */
.steps { counter-reset: step; }
.step { position: relative; padding: 28px 26px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); color: var(--espresso); }
.step::before { counter-increment: step; content: counter(step, decimal-leading-zero); font-family: var(--sans); font-weight: 700; font-size: 0.85rem; color: var(--forest); background: var(--mint); border-radius: 999px; padding: 4px 12px; display: inline-block; margin-bottom: 14px; }
.step h3 { color: var(--forest); }
.step p { font-size: 0.93rem; color: var(--cocoa); }

/* Stats band */
.stats-band { background: var(--white); border: 1px solid var(--line); border-radius: 24px; padding: 56px 32px; }
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 28px; text-align: center; }
.stats .num { font-family: var(--sans); font-weight: 700; font-size: 2.7rem; color: var(--forest); display: block; line-height: 1.1; letter-spacing: -0.02em; }
.stats .num em { font-style: normal; color: var(--link); }
.stats .label { font-size: 0.88rem; color: var(--cocoa); }

/* Testimonials */
blockquote { font-size: 1.08rem; font-weight: 500; line-height: 1.6; color: var(--forest); }
.quote-card cite { display: flex; align-items: center; gap: 10px; margin-top: 1.2rem; font-style: normal; font-size: 0.88rem; font-weight: 600; color: var(--espresso); }
.quote-card .avatar { width: 38px; height: 38px; border-radius: 999px; background: rgba(1,117,121,0.12); color: var(--link); display: inline-flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.85rem; }
.rating { color: var(--magenta); font-size: 1rem; letter-spacing: 2px; margin-bottom: 0.8rem; }

/* Blog cards */
.post-card { display: flex; flex-direction: column; text-decoration: none; }
.post-card .thumb { height: 150px; border-radius: 12px; margin-bottom: 18px; background: var(--frost); }
.post-card .meta { font-size: 0.8rem; font-weight: 600; color: var(--link); margin-bottom: 6px; }
.post-card h3 { line-height: 1.35; color: var(--forest); }
.post-card p { margin-top: 6px; color: var(--cocoa); }
.post-card .more { margin-top: 12px; font-weight: 600; font-size: 0.9rem; color: var(--link); }
.post-card:hover .more { color: var(--mint-deep); }

/* FAQ */
details { background: var(--white); border: 1px solid var(--line); border-radius: 14px; padding: 18px 22px; margin-bottom: 12px; }
details summary { font-family: var(--sans); font-size: 0.99rem; font-weight: 600; color: var(--forest); cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
details summary::-webkit-details-marker { display: none; }
details summary::after { content: "+"; color: var(--mint-deep); font-size: 1.4rem; line-height: 1; font-weight: 400; }
details[open] summary::after { content: "\2212"; }
details p { margin-top: 0.75rem; font-size: 0.95rem; color: var(--cocoa); }

/* Pricing table */
table.pricing { width: 100%; border-collapse: separate; border-spacing: 0; margin-top: 2rem; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; color: var(--espresso); }
table.pricing th, table.pricing td { padding: 15px 16px; text-align: center; border-bottom: 1px solid var(--line); }
table.pricing th { background: var(--forest); color: var(--white); font-family: var(--sans); font-weight: 600; font-size: 0.88rem; }
table.pricing tr:last-child td { border-bottom: none; }
table.pricing .save { color: var(--link); font-weight: 600; }

/* CTA band — the page's second gradient moment */
.cta-band .inner { background: var(--page-grad, var(--grad-electric-magenta)); border-radius: 24px; padding: 68px 32px; text-align: center; position: relative; overflow: hidden; }
.cta-band .inner::before { content: ""; position: absolute; inset: -40% -20% auto auto; width: 70%; height: 160%; background: radial-gradient(45% 55% at 60% 40%, rgba(255,255,255,0.22), transparent 70%); filter: blur(30px); transform: skewY(-10deg); }
.cta-band h2, .cta-band p, .cta-band .btn-yellow, .cta-band .btn { position: relative; z-index: 1; }
.cta-band h2 { color: var(--white); max-width: 620px; margin: 0 auto 0.8rem; }
.cta-band p { color: rgba(255,255,255,0.92); margin: 0 auto 1.8rem; max-width: 480px; }
.cta-band .btn-yellow { background: var(--white); color: var(--forest); border-color: var(--white); }
.cta-band .btn-yellow:hover { background: var(--mint); color: var(--forest); border-color: var(--mint); }

/* Illustrations — shifted off the retired gold toward brand greens */
.hero-illus { position: relative; margin: 3.5rem auto 0; max-width: 840px; }
.hero-illus img, .page-illus img { position: relative; z-index: 1; width: 100%; filter: hue-rotate(120deg) saturate(1.05); }
.page-illus { max-width: 620px; margin: 0 auto; }
.split { display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: center; }
.split .page-illus { max-width: 100%; }
@media (max-width: 820px) { .split { grid-template-columns: 1fr; } }

.app-pill { display: inline-flex; align-items: center; gap: 8px; background: rgba(69,251,178,0.16); color: var(--mint-deep); font-size: 0.8rem; font-weight: 600; border-radius: 999px; padding: 6px 14px; margin-bottom: 1rem; }
.app-pill .dot-live { width: 8px; height: 8px; border-radius: 999px; background: var(--mint-deep); animation: pulse 1.6s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.45; transform: scale(0.8); } }

/* Footer — light surface, dark ink */
/* Footer — gradient brand-moment with a giant fading wordmark (adopts the page soul) */
.site-footer { position: relative; overflow: hidden; border: 0; margin-top: 96px; padding: 84px 0 0;
  background: var(--foot-grad, linear-gradient(180deg,#0C5C42 0%,#15AC76 46%,#7FE3BD 76%,#EAF7F0 100%));
  color: #fff; }
.site-footer .container { position: relative; z-index: 2; }
.site-footer .cols { display: grid; grid-template-columns: 1.7fr 1fr 0.9fr 1.3fr 0.9fr; gap: 32px; }
.site-footer h4 { font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; margin-bottom: 1rem; color: rgba(255,255,255,0.62); }
.site-footer a { color: rgba(255,255,255,0.88); text-decoration: none; font-size: 0.95rem; transition: color .15s; }
.site-footer a:hover { color: #fff; }
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 11px; }
.site-footer .tagline { font-size: 0.95rem; margin-top: 0.8rem; max-width: 280px; color: rgba(255,255,255,0.84); }
.site-footer .bottom { position: relative; z-index: 2; margin-top: 52px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.20); font-size: 0.84rem; color: rgba(255,255,255,0.78); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.site-footer .bottom a { color: rgba(255,255,255,0.78); }
.site-footer::after { content: "durusi"; display: block; position: relative; z-index: 1; margin: 34px 0 -0.16em; font-family: var(--sans); font-weight: 700; letter-spacing: -0.03em; font-size: 26vw; line-height: 0.8; text-align: center; white-space: nowrap; color: #fff; -webkit-mask-image: linear-gradient(180deg, rgba(255,255,255,0.95) 28%, rgba(255,255,255,0) 86%); mask-image: linear-gradient(180deg, rgba(255,255,255,0.95) 28%, rgba(255,255,255,0) 86%); pointer-events: none; user-select: none; }
@media (max-width:760px){ .site-footer::after { font-size: 33vw; } }

/* WhatsApp float */
.wa-float { position: fixed; bottom: 22px; right: 22px; z-index: 60; background: #22c05c; color: #fff; text-decoration: none; font-weight: 600; padding: 13px 24px; border-radius: 999px; font-size: 0.9rem; box-shadow: 0 8px 24px rgba(34,192,92,0.35); }
.wa-float:hover { background: #1ca94f; }
[dir="rtl"] .wa-float { right: auto; left: 22px; }
.wa-float { width: 56px; height: 56px; padding: 0; display: flex; align-items: center; justify-content: center; border-radius: 999px; }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }

/* Responsive */
@media (max-width: 880px) { .hero-grid2 { grid-template-columns: 1fr; gap: 40px; } .hero { text-align: left; } .ribbon { right: -60%; width: 130%; opacity: 0.75; } }
@media (max-width: 760px) {
  .nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--frost); flex-direction: column; align-items: flex-start; padding: 18px 24px 24px; border-bottom: 1px solid var(--line); }
  .nav.open { display: flex; }
  .nav-toggle { display: block; }
  .site-footer .cols { grid-template-columns: 1fr 1fr; }
  section { padding: 60px 0; }
  .hero { padding: 56px 0 64px; }
  .float-card { left: 0; }
}

/* Bilingual stacked logo */
.logo { display: inline-block; line-height: 1.1; }
.logo-img { height: 38px; width: auto; display: block; }
.site-footer .logo-img { height: 34px; filter: brightness(0) invert(1); }

/* App preview placeholder slots */
.app-slots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 2rem; }
.app-slot { aspect-ratio: 9 / 16; max-height: 340px; border: 2px dashed rgba(69,251,178,0.5); border-radius: 22px; background: var(--white); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; color: var(--mint-deep); font-size: 0.8rem; font-weight: 600; text-align: center; padding: 16px; }
.app-slot .play { width: 44px; height: 44px; border-radius: 999px; background: var(--frost); border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 20px rgba(16,18,27,0.08); font-size: 1rem; color: var(--mint-deep); }
.app-slot small { font-weight: 400; color: var(--cocoa); }
@media (max-width: 760px) { .app-slots { grid-template-columns: 1fr; } .app-slot { max-height: 240px; aspect-ratio: 16/9; } }

/* Two paths */
.paths { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 2.6rem; text-align: left; }
.path-card { border-radius: 24px; padding: 42px 36px; position: relative; overflow: hidden; background: var(--white); border: 1px solid var(--line); color: var(--espresso); }
.path-card.mentor { background: var(--forest); border-color: var(--forest); }
.path-card .pill { display: inline-block; font-size: 0.74rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; border-radius: 999px; padding: 5px 14px; margin-bottom: 1.1rem; }
.path-card.family .pill { background: rgba(69,251,178,0.18); color: var(--mint-deep); }
.path-card.mentor .pill { background: rgba(255,255,255,0.16); color: var(--white); }
.path-card h3 { font-size: 1.45rem; margin-bottom: 0.6rem; color: var(--forest); }
.path-card.mentor h3 { color: var(--white); }
.path-card p { font-size: 0.95rem; color: var(--cocoa); }
.path-card.mentor p { color: rgba(255,255,255,0.85); }
.path-card ul { list-style: none; margin: 1.2rem 0 1.8rem; display: grid; gap: 9px; font-size: 0.92rem; color: var(--espresso); }
.path-card.mentor ul { color: rgba(255,255,255,0.9); }
.path-card li::before { content: "\2192\00a0"; color: var(--mint-deep); font-weight: 700; }
.path-card.mentor li::before { color: var(--mint); }
.path-card > * { position: relative; z-index: 1; }
@media (max-width: 820px) { .paths { grid-template-columns: 1fr; } }

/* Verified badge */
.vbadge { display: inline-flex; align-items: center; gap: 4px; background: rgba(255,255,255,0.22); color: var(--white); font-size: 0.6rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; border-radius: 999px; padding: 2px 8px; margin-left: 6px; vertical-align: middle; }
.vbadge::before { content: "\2713"; font-size: 0.65rem; }
[dir="rtl"] .vbadge { margin-left: 0; margin-right: 6px; }

/* Footer license line */
.license-line { display: flex; align-items: center; gap: 8px; font-size: 0.84rem; color: var(--cocoa); margin-top: 14px; }
.license-line svg { width: 16px; height: 16px; }
.license-line svg circle { fill: var(--mint); }
.license-line svg path { stroke: var(--forest); stroke-width: 2.2; fill: none; stroke-linecap: round; stroke-linejoin: round; }

/* Footer origin story */
.footer-story { font-size: 0.85rem; color: rgba(255,255,255,0.72); margin-top: 12px; max-width: 320px; line-height: 1.65; }

/* =====================================================================
   STRIPE-STYLE PRODUCT SHOWCASE
   Feature rows + framed product boxes (kept as polished empty frames
   until real MVP mockups are dropped in).
   ===================================================================== */

/* alternating two-column feature row */
.showcase { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.showcase + .showcase { margin-top: 96px; }
.showcase .sc-text { max-width: 460px; }
.showcase.rev .sc-text { order: 2; justify-self: end; }
.showcase .sc-text h2 { margin-bottom: 0.8rem; }
.showcase .sc-text p { color: var(--cocoa); font-size: 1.02rem; }
.showcase .sc-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 1.2rem; font-weight: 600; color: var(--link); text-decoration: none; font-size: 0.95rem; }
.showcase .sc-link::after { content: "\2192"; transition: transform 0.15s ease; }
.showcase .sc-link:hover::after { transform: translateX(3px); }
@media (max-width: 880px) { .showcase { grid-template-columns: 1fr; gap: 32px; } .showcase.rev .sc-text { order: 0; } .showcase + .showcase { margin-top: 64px; } }

/* the product frame */
.product-box {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(16,18,27,0.10);
  overflow: hidden;
}
.product-box.tall .pb-canvas { aspect-ratio: 4 / 3; }
.pb-chrome { display: flex; align-items: center; gap: 7px; padding: 12px 16px; background: var(--frost); border-bottom: 1px solid var(--line); }
.pb-chrome .d { width: 10px; height: 10px; border-radius: 99px; background: #d7dde2; }
.pb-chrome .pill { margin-left: 12px; height: 9px; flex: 1; max-width: 180px; border-radius: 99px; background: #e7ebee; }
.pb-canvas {
  position: relative; aspect-ratio: 16 / 10; padding: 22px;
  display: flex; flex-direction: column; gap: 14px;
  background:
    radial-gradient(130% 90% at 50% -10%, rgba(69,251,178,0.07), transparent 60%),
    var(--white);
}
/* skeleton hint so empty boxes look intentional */
.pb-canvas .sk { height: 12px; border-radius: 6px; background: #eef1f3; }
.pb-canvas .sk.w7 { width: 70%; } .pb-canvas .sk.w5 { width: 50%; } .pb-canvas .sk.w4 { width: 40%; }
.pb-canvas .sk-block { flex: 1; min-height: 70px; border-radius: 12px; background: linear-gradient(180deg, #f4f6f8, #eef1f3); border: 1px solid #eceff2; }
.pb-canvas .sk-chip { width: 40px; height: 40px; border-radius: 11px; background: rgba(69,251,178,0.16); }
.pb-tag { position: absolute; top: 14px; right: 14px; font-size: 0.62rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--cocoa); background: var(--frost); border: 1px solid var(--line); border-radius: 999px; padding: 3px 10px; }
/* real app screenshot fills the box: when a .pb-shot is present the skeleton + tag are hidden */
.pb-canvas:has(.pb-shot) { padding: 0; }
.pb-canvas:has(.pb-shot) > :not(.pb-shot) { display: none; }
.pb-shot { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }

/* grid of smaller product boxes */
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 2.6rem; text-align: left; }
.product-grid .pg-item h3 { font-size: 1.08rem; margin: 16px 2px 4px; color: var(--forest); }
.product-grid .pg-item p { font-size: 0.9rem; color: var(--cocoa); margin: 0 2px; }
.product-grid .product-box .pb-canvas { aspect-ratio: 16 / 11; padding: 18px; gap: 10px; }
@media (max-width: 880px) { .product-grid { grid-template-columns: 1fr; } }

/* hero product box sits on the gradient — lift it */
.hero .product-box { box-shadow: 0 40px 80px rgba(16,18,27,0.28); }

/* =====================================================================
   BRAND GRADIENT SECTIONS + DARK-GLASS CARDS (from the DBB brand book)
   A bold gradient band carrying glassmorphism cards + mint-outline CTAs.
   ===================================================================== */
.grad-section { color: var(--white); }
.grad-section.gs-mint-teal { background: var(--grad-mint-teal); }
.grad-section.gs-lilac     { background: var(--grad-lilac-currant); }
.grad-section.gs-electric  { background: var(--grad-electric-currant); }
.grad-section.gs-magenta   { background: var(--grad-magenta-currant); }
.grad-section.gs-em        { background: var(--grad-electric-magenta); }
.grad-section h2 { color: var(--white); }
.grad-section .eyebrow { color: rgba(255,255,255,0.85); }
.grad-section .sub { color: rgba(255,255,255,0.9); }

.glass-card {
  background: rgba(16,18,27,0.55);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  backdrop-filter: blur(22px) saturate(140%);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(16,18,27,0.22);
  color: var(--frost);
  padding: 28px 26px;
  display: flex; flex-direction: column;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}
.glass-card:hover { transform: translateY(-3px); box-shadow: 0 16px 44px rgba(16,18,27,0.34); }
.gs-em .glass-card { background: rgba(16,18,27,0.66); border-color: rgba(255,255,255,0.22); }
.glass-card h3 { color: var(--white); margin-bottom: 0.35rem; }
.glass-card p { color: var(--frost); font-size: 0.95rem; }
.glass-card .gc-meta { color: var(--gray-300); font-size: 0.84rem; margin-bottom: 0.7rem; }
.glass-card .gc-price { font-family: var(--sans); font-weight: 700; font-size: 1.5rem; color: var(--white); margin: 0.3rem 0 0.2rem; }
.glass-card .gc-price small { font-weight: 500; font-size: 0.8rem; color: var(--gray-300); }
.glass-card .btn-glass { margin-top: auto; align-self: flex-start; }
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) { .glass-card { background: rgba(16,18,27,0.92); } .gs-em .glass-card { background: rgba(16,18,27,0.94); } }

/* mint-outline glass CTA — for use on gradients / glass cards */
.btn-glass {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(16,18,27,0.62);
  -webkit-backdrop-filter: blur(18px) saturate(140%); backdrop-filter: blur(18px) saturate(140%);
  border: 1.5px solid var(--mint); color: var(--mint);
  border-radius: 999px; padding: 12px 24px; font-weight: 600; font-family: var(--sans);
  text-decoration: none; font-size: 0.92rem; margin-top: 1.4rem;
  transition: background 0.18s ease, color 0.18s ease;
}
.btn-glass::after { content: "\2192"; transition: transform 0.15s ease; }
.btn-glass:hover { background: var(--mint); color: var(--forest); border-color: var(--mint); }
.btn-glass:hover::after { transform: translateX(3px); }

/* =====================================================================
   App showcase — Stripe-style expandable product cards + live app mockups
   ===================================================================== */
.app-showcase { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 3rem; text-align: left; }
.sc-card {
  position: relative; background: var(--white); border: 1px solid var(--line);
  border-radius: 24px; padding: 30px 30px 0; overflow: hidden;
  box-shadow: 0 18px 50px rgba(16,18,27,0.08);
  display: flex; flex-direction: column; min-height: 380px;
  transition: transform 0.18s ease, box-shadow 0.25s ease;
}
.sc-card:hover { transform: translateY(-3px); box-shadow: 0 26px 64px rgba(16,18,27,0.13); }
.sc-card.wide { grid-column: 1 / -1; }
.sc-card .sc-eyebrow { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--link); margin-bottom: 0.7rem; }
.sc-card h3 { color: var(--forest); font-size: 1.34rem; line-height: 1.2; margin-bottom: 0.5rem; max-width: 19ch; }
.sc-card .sc-desc { color: var(--cocoa); font-size: 0.95rem; line-height: 1.55; max-width: 40ch; }
.sc-expand {
  position: absolute; top: 22px; right: 22px; width: 40px; height: 40px;
  border: 1px solid var(--line); background: var(--frost); border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center; cursor: pointer;
  color: var(--forest); transition: background 0.15s ease, transform 0.15s ease, border-color 0.15s ease; z-index: 6;
}
.sc-expand:hover { background: var(--mint); border-color: var(--mint); transform: scale(1.06); }
.sc-expand svg { width: 16px; height: 16px; }
.sc-stage { position: relative; margin: 26px -30px 0; padding: 30px 30px 0; flex: 1; display: flex; align-items: flex-end; justify-content: center; overflow: hidden; }
.sc-stage::before { content: ""; position: absolute; inset: 0; z-index: 0; background: radial-gradient(85% 78% at 50% 118%, rgba(69,251,178,0.22), rgba(0,224,232,0.06) 55%, transparent 76%); }
.sc-stage > * { position: relative; z-index: 1; }
.app-showcase > .sc-card:nth-of-type(2) .sc-stage::before { background: radial-gradient(85% 78% at 50% 118%, rgba(0,224,232,0.20), rgba(202,159,255,0.13) 55%, transparent 76%); }
.sc-card.wide { flex-direction: row; align-items: stretch; gap: 0; padding: 0; min-height: 400px; }
.sc-card.wide .sc-copy { flex: 1 1 0; align-self: center; padding: 46px 12px 46px 46px; max-width: 42ch; }
.sc-card.wide .sc-copy h3 { font-size: 1.75rem; max-width: none; }
.sc-card.wide .sc-stage { flex: 1 1 auto; margin: 0; padding: 44px 44px 0; align-items: flex-end; justify-content: center; }
.sc-card.wide .sc-stage::before { background: linear-gradient(150deg, rgba(0,224,232,0.18) 0%, rgba(202,159,255,0.16) 50%, rgba(254,1,154,0.13) 100%); }

/* ---- shared app-UI mockup primitives ---- */
.appwin { width: 100%; max-width: 300px; background: var(--white); border: 1px solid var(--line); border-radius: 22px; box-shadow: 0 24px 50px rgba(16,18,27,0.14); padding: 16px 16px 18px; display: grid; gap: 12px; }
.appwin.bleed { border-radius: 22px 22px 0 0; box-shadow: 0 -1px 0 var(--line), 0 24px 50px rgba(16,18,27,0.10); padding-bottom: 26px; }
.aw-head { display: flex; align-items: center; justify-content: space-between; }
.aw-brand { font-family: var(--sans); font-weight: 700; color: var(--espresso); font-size: 0.96rem; letter-spacing: -0.02em; }
.aw-dots { color: var(--cocoa); letter-spacing: 2px; font-size: 0.9rem; }
.aw-greet { font-size: 0.74rem; color: var(--cocoa); }
.aw-card { background: var(--frost); border: 1px solid var(--line); border-radius: 14px; padding: 12px; display: grid; gap: 9px; }
.aw-row { display: flex; align-items: center; gap: 10px; }
.aw-av { width: 38px; height: 38px; border-radius: 11px; background: var(--mint); color: var(--forest); font-weight: 700; font-size: 0.82rem; display: flex; align-items: center; justify-content: center; flex: none; }
.aw-name { font-size: 0.84rem; font-weight: 600; color: var(--forest); }
.aw-meta { font-size: 0.7rem; color: var(--cocoa); }
.aw-rate { margin-left: auto; font-size: 0.74rem; font-weight: 700; color: var(--forest); white-space: nowrap; }
.aw-rate b { color: var(--mint-deep); }
.aw-btn { background: var(--mint); color: var(--forest); border: none; border-radius: 10px; padding: 10px; font-weight: 700; font-size: 0.8rem; font-family: var(--sans); text-align: center; }
.aw-line { height: 9px; border-radius: 6px; background: #eef1f3; }
.aw-line.w7 { width: 70%; } .aw-line.w5 { width: 50%; } .aw-line.w4 { width: 40%; }
.aw-pill { display: inline-flex; align-items: center; gap: 5px; align-self: start; font-size: 0.64rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--mint-deep); background: rgba(69,251,178,0.16); border-radius: 999px; padding: 4px 9px; }
.aw-stat { font-size: 1.7rem; font-weight: 700; color: var(--forest); line-height: 1; }
.aw-stat em { font-style: normal; color: var(--mint-deep); }
.aw-chart { display: flex; align-items: flex-end; gap: 7px; height: 64px; padding-top: 4px; }
.aw-chart i { flex: 1; background: linear-gradient(180deg, var(--mint), var(--mint-deep)); border-radius: 4px 4px 0 0; opacity: 0.9; }
.aw-note { font-size: 0.72rem; color: var(--espresso); line-height: 1.5; }
.aw-note b { color: var(--forest); }

/* ---- payments animated demo (wide card) ---- */
.paydemo { position: relative; width: 300px; height: 352px; flex: none; align-self: flex-end; }
.pay-step { position: absolute; inset: auto 0 0 0; opacity: 0; animation: payCycle 12s ease-in-out infinite; }
.pay-step.s2 { animation-delay: 3s; }
.pay-step.s3 { animation-delay: 6s; }
.pay-step.s4 { animation-delay: 9s; }
@keyframes payCycle {
  0% { opacity: 0; transform: translateY(12px) scale(0.985); }
  3% { opacity: 1; transform: translateY(0) scale(1); }
  25% { opacity: 1; transform: translateY(0) scale(1); }
  28% { opacity: 0; transform: translateY(-8px) scale(0.985); }
  100% { opacity: 0; transform: translateY(-8px) scale(0.985); }
}
.pkg { display: flex; align-items: center; gap: 10px; background: var(--white); border: 1.5px solid var(--line); border-radius: 12px; padding: 10px 12px; }
.pkg.sel { border-color: var(--mint); background: rgba(69,251,178,0.10); }
.pkg .h { font-size: 0.82rem; font-weight: 600; color: var(--forest); }
.pkg .save { font-size: 0.62rem; font-weight: 700; color: var(--mint-deep); }
.pkg .pr { margin-left: auto; font-size: 0.84rem; font-weight: 700; color: var(--forest); white-space: nowrap; }
.pkg .tick { width: 18px; height: 18px; border-radius: 99px; border: 1.5px solid var(--line); flex: none; }
.pkg.sel .tick { background: var(--mint); border-color: var(--mint); }
.pay-meth { display: flex; align-items: center; gap: 9px; font-size: 0.78rem; font-weight: 600; color: var(--forest); background: var(--white); border: 1.5px solid var(--line); border-radius: 12px; padding: 11px 12px; }
.pay-meth.sel { border-color: var(--mint); }
.pay-meth .ic { width: 26px; height: 18px; border-radius: 4px; background: linear-gradient(120deg, var(--electric), var(--magenta)); flex: none; }
.pay-meth .last4 { margin-left: auto; color: var(--cocoa); font-weight: 500; font-size: 0.72rem; }
.pay-total { display: flex; align-items: baseline; justify-content: space-between; padding: 2px 2px 0; }
.pay-total .l { font-size: 0.74rem; color: var(--cocoa); }
.pay-total .v { font-size: 1.1rem; font-weight: 700; color: var(--forest); }
.pay-ok { display: grid; gap: 10px; justify-items: center; text-align: center; padding: 14px 6px 6px; }
.pay-ok .check { width: 54px; height: 54px; border-radius: 99px; background: var(--mint); color: var(--forest); display: flex; align-items: center; justify-content: center; font-size: 1.6rem; font-weight: 800; }
.pay-ok .t { font-size: 0.95rem; font-weight: 700; color: var(--forest); }
.pay-ok .s { font-size: 0.74rem; color: var(--cocoa); }

/* ---- expand modal ---- */
.scm { position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center; padding: 24px; }
.scm.open { display: flex; }
.scm-back { position: absolute; inset: 0; background: rgba(16,18,27,0.55); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); animation: scmfade 0.2s ease; }
.scm-box { position: relative; z-index: 2; width: min(960px, 100%); max-height: 90vh; overflow: auto; background: var(--white); border-radius: 24px; box-shadow: 0 40px 90px rgba(16,18,27,0.35); animation: scmrise 0.25s ease; }
@keyframes scmfade { from { opacity: 0; } to { opacity: 1; } }
@keyframes scmrise { from { opacity: 0; transform: translateY(18px) scale(0.98); } to { opacity: 1; transform: translateY(0) scale(1); } }
.scm-close { position: absolute; top: 18px; right: 18px; width: 38px; height: 38px; border: 1px solid var(--line); background: var(--frost); border-radius: 11px; cursor: pointer; font-size: 1.1rem; color: var(--forest); display: inline-flex; align-items: center; justify-content: center; z-index: 5; }
.scm-close:hover { background: var(--mint); border-color: var(--mint); }
.scm-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 0; }
.scm-text { padding: 48px 44px; }
.scm-text .sc-eyebrow { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--link); margin-bottom: 0.9rem; }
.scm-text h3 { color: var(--forest); font-size: 1.9rem; line-height: 1.15; margin-bottom: 0.8rem; }
.scm-text p { color: var(--cocoa); font-size: 1rem; line-height: 1.6; margin-bottom: 1.4rem; }
.scm-checks { list-style: none; display: grid; gap: 12px; margin-bottom: 1.8rem; }
.scm-checks li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.95rem; color: var(--espresso); }
.scm-checks li svg { width: 20px; height: 20px; flex: none; margin-top: 1px; }
.scm-checks li svg circle { fill: var(--mint); }
.scm-checks li svg path { stroke: var(--forest); stroke-width: 2.2; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.scm-stage { background: var(--frost); border-left: 1px solid var(--line); border-radius: 0 24px 24px 0; display: flex; align-items: center; justify-content: center; padding: 40px 30px; position: relative; overflow: hidden; }
.scm-stage::before { content: ""; position: absolute; inset: 0; background: radial-gradient(120% 90% at 70% 10%, rgba(69,251,178,0.16), transparent 60%); }
.scm-stage .appwin, .scm-stage .paydemo { position: relative; z-index: 1; }
.scm-stage .paydemo { align-self: center; }

@media (max-width: 880px) {
  .app-showcase { grid-template-columns: 1fr; }
  .sc-card.wide { flex-direction: column; padding: 0; min-height: 0; gap: 0; }
  .sc-card.wide .sc-copy { padding: 30px 30px 0; max-width: none; }
  .sc-card.wide .sc-stage { width: 100%; padding: 30px 30px 0; justify-content: center; }
  .paydemo { width: 100%; max-width: 300px; margin: 0 auto; }
  .scm-grid { grid-template-columns: 1fr; }
  .scm-text { padding: 40px 28px 28px; }
  .scm-stage { border-left: none; border-top: 1px solid var(--line); border-radius: 0; padding: 30px 24px; }
}
@media (prefers-reduced-motion: reduce) {
  .pay-step { animation: none; }
  .pay-step.s1 { opacity: 1; }
  .pay-step.s2, .pay-step.s3, .pay-step.s4 { display: none; }
  .map-bar i { animation: none; width: 64%; }
}

/* ---- richer checkout demo elements ---- */
.pay-dots { display: flex; gap: 6px; justify-content: center; }
.pay-dots i { width: 6px; height: 6px; border-radius: 99px; background: #d7dde2; transition: width 0.2s ease; }
.pay-dots i.on { width: 18px; background: var(--mint-deep); }
.pay-field { border: 1.5px solid var(--line); border-radius: 12px; padding: 8px 12px; display: grid; gap: 2px; }
.pay-field.focus { border-color: var(--mint); box-shadow: 0 0 0 3px rgba(69,251,178,0.18); }
.pay-field .lab { font-size: 0.58rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--cocoa); }
.pay-field .val { font-size: 0.86rem; font-weight: 600; color: var(--forest); font-variant-numeric: tabular-nums; display: flex; align-items: center; }
.pay-field .cur { display: inline-block; width: 1.5px; height: 15px; background: var(--mint-deep); margin-left: 3px; animation: blink 1.1s steps(1) infinite; }
.pay-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
@keyframes blink { 0%, 50% { opacity: 1; } 51%, 100% { opacity: 0; } }
.pay-meth .col { display: flex; flex-direction: column; line-height: 1.25; }
.pay-meth .sub { font-size: 0.62rem; font-weight: 500; color: var(--cocoa); }
.pay-applepay .ic { background: #111; }
.pay-tabby .ic { background: linear-gradient(120deg, #3bffa0, #18c98a); }

/* ---- live-map booking mockup (Uber-style) ---- */
.appmap { width: 100%; max-width: 300px; background: var(--white); border: 1px solid var(--line); border-radius: 22px; box-shadow: 0 24px 50px rgba(16,18,27,0.14); overflow: hidden; }
.appmap.bleed { border-radius: 22px 22px 0 0; box-shadow: 0 -1px 0 var(--line), 0 24px 50px rgba(16,18,27,0.10); }
.appmap .map { position: relative; height: 178px; background: linear-gradient(180deg, #e9f1ee, #e0eae7); }
.appmap .map svg { width: 100%; height: 100%; display: block; }
.appmap .map-sheet { padding: 13px 15px 16px; display: grid; gap: 9px; }
.map-eta { margin-left: auto; font-weight: 700; color: var(--mint-deep); font-size: 0.84rem; white-space: nowrap; }
.map-bar { height: 6px; border-radius: 99px; background: #eef1f3; overflow: hidden; }
.map-bar i { display: block; height: 100%; width: 40%; background: linear-gradient(90deg, var(--mint), var(--mint-deep)); border-radius: 99px; animation: mapfill 6s ease-in-out infinite; }
@keyframes mapfill { 0% { width: 10%; } 100% { width: 92%; } }
.map-status { font-size: 0.72rem; color: var(--cocoa); }
.map-status b { color: var(--forest); }

/* ---- real payment-method logos ---- */
.pm-logo { height: 19px; width: auto; display: block; }
.pay-meth.pay-applepay { padding-top: 13px; padding-bottom: 13px; }
.pm-cards { margin-left: auto; display: inline-flex; align-items: center; gap: 7px; }
.pm-cards img { height: 15px; width: auto; display: block; }
.pm-tabby-img { height: 22px; width: auto; display: block; }
