/* =========================================================
   WildDream Studio — Site styles
   Brand: navy #0C1434 · pink #F8B1BD · blue #4C80EC · yellow #F9C82A
          orange #FC5808 · red #E82A22
   ========================================================= */

:root {
  --navy: #0C1434;
  --navy-2: #141F4B;
  --navy-3: #1C2A5E;
  --ink: #0F1B3D;
  --pink: #F8B1BD;
  --pink-soft: #FDE6EB;
  --blue: #4C80EC;
  --blue-d: #3060C8;
  --blue-soft: #E7EEFD;
  --yellow: #F9C82A;
  --yellow-soft: #FFF5CC;
  --orange: #FC5808;
  --orange-soft: #FFE9DC;
  --red: #E82A22;
  --white: #FFFFFF;
  --bg: #FFFFFF;
  --bg-soft: #F6F7FB;
  --muted: #5B6480;
  --line: #E6E8F0;
  --shadow: 0 10px 30px rgba(12, 20, 52, 0.08);
  --shadow-lg: 0 24px 60px rgba(12, 20, 52, 0.16);
  --radius: 20px;
  --radius-sm: 12px;
  --container: 1180px;
  --font-ar: 'Cairo', 'Segoe UI', Tahoma, sans-serif;
  --font-en: 'Poppins', 'Segoe UI', Helvetica, Arial, sans-serif;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-ar);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  font-size: 16px;
  /* No overflow guard here on purpose: overflow-x on body propagates to the viewport and kills programmatic
     scrolling (scrollIntoView, window.scrollTo, in-page anchors). The stray horizontal scroll this used to hide
     was the off-screen honeypot input, now fixed properly by .visually-hidden below. */
}
html[lang="en"] body { font-family: var(--font-en); line-height: 1.65; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; line-height: 1.25; font-weight: 800; }
p { margin: 0; }

.container { width: min(100% - 32px, var(--container)); margin-inline: auto; }
.section { padding: clamp(56px, 8vw, 96px) 0; }
.section-soft { background: var(--bg-soft); }
.section-navy { background: var(--navy); color: var(--white); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--orange);
}
.eyebrow::before { content: ""; width: 22px; height: 3px; border-radius: 2px; background: var(--orange); }
.section-navy .eyebrow { color: var(--yellow); }
.section-navy .eyebrow::before { background: var(--yellow); }

.section-head { max-width: 720px; margin-bottom: clamp(28px, 4vw, 48px); }
.section-head h2 { font-size: clamp(26px, 3.4vw, 40px); margin-top: 10px; }
.section-head p { color: var(--muted); margin-top: 12px; font-size: 17px; }
.section-navy .section-head p { color: rgba(255, 255, 255, .72); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow::before { display: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 13px 24px; border-radius: 999px; border: 2px solid transparent;
  font-weight: 700; font-size: 15px; line-height: 1.2; white-space: nowrap;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s, color .2s, border-color .2s;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--orange); color: #fff; box-shadow: 0 10px 24px rgba(252, 88, 8, .32); }
.btn-primary:hover { background: #e84e05; }
.btn-whatsapp { background: #25D366; color: #fff; box-shadow: 0 10px 24px rgba(37, 211, 102, .3); }
.btn-whatsapp:hover { background: #1fbf5a; }
.btn-light { background: #fff; color: var(--navy); }
.btn-light:hover { background: var(--yellow); }
.btn-outline { border-color: rgba(255, 255, 255, .5); color: #fff; }
.btn-outline:hover { background: rgba(255, 255, 255, .1); border-color: #fff; }
.btn-outline-dark { border-color: var(--ink); color: var(--ink); }
.btn-outline-dark:hover { background: var(--ink); color: #fff; }
.btn-sm { padding: 9px 16px; font-size: 14px; }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(12, 20, 52, .92);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 76px; }
.brand { display: flex; align-items: center; gap: 12px; color: #fff; }
.brand img { height: 46px; width: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; gap: 5px; }
.brand-text strong { font-family: var(--font-en); font-size: 17px; font-weight: 700; letter-spacing: .01em; white-space: nowrap; }
.brand-text small { font-family: var(--font-en); font-size: 9px; letter-spacing: .22em; color: var(--orange); font-weight: 600; text-transform: uppercase; line-height: 1; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  padding: 10px 14px; border-radius: 999px; color: rgba(255, 255, 255, .8); font-weight: 600; font-size: 15px;
  transition: color .2s, background .2s;
}
.nav a:hover, .nav a.active { color: #fff; background: rgba(255, 255, 255, .08); }
.nav a.active { color: var(--yellow); }

.header-actions { display: flex; align-items: center; gap: 10px; }
.lang-toggle {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px; border-radius: 999px; border: 1.5px solid rgba(255, 255, 255, .28);
  background: transparent; color: #fff; font-weight: 700; font-size: 14px;
  transition: background .2s, border-color .2s;
}
.lang-toggle:hover { background: rgba(255, 255, 255, .1); border-color: #fff; }
.lang-toggle svg { width: 16px; height: 16px; }

.nav .nav-login { display: none; }
.btn-login { border-color: rgba(255, 255, 255, .35); }

/* Signed in: the sign-in button gives way to an account menu carrying the person's initials. */
.btn-login.is-replaced { display: none; }
.acct { position: relative; }
/* the avatar sits on the leading edge in both directions, so let the padding follow the text */
.acct-btn {
  display: inline-flex; align-items: center; gap: 9px; padding: 5px; padding-inline-end: 12px; border-radius: 999px;
  border: 1.5px solid rgba(255, 255, 255, .28); background: transparent; color: #fff; font-weight: 700; font-size: 14px;
  transition: background .2s, border-color .2s;
}
.acct-btn:hover, .acct-btn[aria-expanded="true"] { border-color: #fff; background: rgba(255, 255, 255, .1); }
.acct-chev { width: 14px; height: 14px; opacity: .75; transition: transform .2s var(--ease); }
.acct-btn[aria-expanded="true"] .acct-chev { transform: rotate(180deg); }
.acct-menu {
  position: absolute; top: calc(100% + 10px); inset-inline-end: 0; z-index: 70; min-width: 250px; padding: 8px;
  border-radius: 16px; background: #fff; color: var(--ink); border: 1px solid var(--line); box-shadow: var(--shadow-lg);
  animation: acct-in .16s var(--ease);
}
.acct-menu[hidden] { display: none; }
@keyframes acct-in { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
.acct-head { padding: 10px 12px 12px; margin-bottom: 6px; border-bottom: 1px solid var(--line); }
.acct-head strong { display: block; font-size: 14.5px; line-height: 1.4; }
.acct-head small { display: block; margin-top: 2px; font-size: 12.5px; color: var(--muted); text-align: start; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
html[dir="rtl"] .acct-head small { text-align: right; }
.acct-menu [role="menuitem"] {
  display: flex; align-items: center; gap: 10px; width: 100%; padding: 10px 12px; border: 0; border-radius: 10px;
  background: none; color: var(--ink); font: inherit; font-size: 14.5px; font-weight: 700; text-align: start; cursor: pointer;
}
.acct-menu [role="menuitem"]:hover, .acct-menu [role="menuitem"]:focus-visible { background: var(--bg-soft); outline: none; }
.acct-menu [role="menuitem"] svg { width: 18px; height: 18px; flex: none; color: var(--muted); }
.acct-menu .acct-out { color: var(--red); }
.acct-menu .acct-out svg { color: var(--red); }
html[dir="rtl"] .acct-menu .acct-out svg { transform: scaleX(-1); }
.acct-menu [role="menuitem"][disabled] { opacity: .6; cursor: progress; }
.nav .nav-signout { display: none; }
.acc-avatar {
  width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; flex: none;
  background: linear-gradient(135deg, var(--blue), var(--orange)); color: #fff;
  font-weight: 800; font-size: 12px; letter-spacing: .3px; line-height: 1;
}
.acc-avatar.is-anon { background: rgba(255, 255, 255, .16); }
.acc-avatar svg { width: 17px; height: 17px; }
.acc-name { font-weight: 700; max-width: 9ch; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
@media (max-width: 1200px) and (min-width: 961px) {
  .acc-name { display: none; }
  .acct-btn { padding-inline-end: 8px; gap: 6px; }
}

.menu-btn {
  display: none; width: 44px; height: 44px; border-radius: 12px; border: 1.5px solid rgba(255, 255, 255, .25);
  background: transparent; color: #fff; align-items: center; justify-content: center;
}
.menu-btn svg { width: 22px; height: 22px; }

/* Tablet landscape (iPad 1024-1200px): the full nav must fit on one line beside the brand and the buttons.
   Brand and actions never shrink, links never wrap; sizes are compacted, and the brand name gives way below 1100px. */
.brand, .header-actions { flex: none; }
.nav { min-width: 0; }
.nav a { white-space: nowrap; }
@media (max-width: 1200px) and (min-width: 961px) {
  .header-inner { gap: 12px; }
  .nav { gap: 0; }
  .nav a { padding: 8px 9px; font-size: 14px; }
  .header-actions { gap: 8px; }
  .header .btn { padding: 9px 15px; font-size: 14px; }
  .lang-toggle { padding: 7px 11px; font-size: 13px; }
  .brand { gap: 10px; }
  .brand img { height: 42px; }
  .brand-text small { display: none; }
}
@media (max-width: 1100px) and (min-width: 961px) {
  .brand-text { display: none; }
}

/* Mobile nav */
@media (max-width: 960px) {
  .nav {
    position: fixed; inset: 76px 0 auto 0; flex-direction: column; align-items: stretch; gap: 4px;
    background: var(--navy); padding: 16px; border-bottom: 1px solid rgba(255, 255, 255, .1);
    transform: translateY(-12px); opacity: 0; pointer-events: none; transition: transform .25s var(--ease), opacity .2s;
    box-shadow: 0 30px 40px rgba(0, 0, 0, .35);
  }
  .nav.open { transform: none; opacity: 1; pointer-events: auto; }
  .nav a { padding: 14px 16px; font-size: 16px; }
  .menu-btn { display: inline-flex; }
  .header .btn-cta, .header .btn-login { display: none; }
  .nav .nav-login { display: block; color: var(--yellow); }
  .acct { display: none; }
  .nav .nav-signout {
    display: block; width: 100%; padding: 14px 16px; border: 0; border-radius: 999px; background: none;
    color: #FF9B94; font: inherit; font-size: 16px; font-weight: 600; text-align: start; cursor: pointer;
  }
  .nav .nav-signout:hover { background: rgba(255, 255, 255, .08); }
  .brand-text { display: none; }
}
@media (max-width: 480px) {
  .lang-toggle span { display: none; }
  .lang-toggle { padding: 8px 10px; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden; background: var(--navy); color: #fff;
  padding: clamp(56px, 8vw, 110px) 0 clamp(64px, 8vw, 120px);
  isolation: isolate;
}
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center; }
.hero h1 {
  font-size: clamp(34px, 5.2vw, 62px); line-height: 1.28; letter-spacing: -.01em;
  margin-top: 18px;
}
html[lang="en"] .hero h1 { line-height: 1.18; }
/* the word carrying a shadda gets extra room above it, without loosening the other lines */
.hero h1 .dia { display: inline-block; padding-top: .36em; }
.hero h1 .grad {
  background: linear-gradient(90deg, var(--pink), var(--yellow), var(--orange));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-lead { font-size: clamp(17px, 1.6vw, 20px); color: rgba(255, 255, 255, .78); max-width: 560px; margin-top: 18px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.hero-tags span {
  padding: 6px 14px; border-radius: 999px; font-size: 13px; font-weight: 600;
  background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .14);
}

.hero-visual { position: relative; display: grid; place-items: center; min-height: 340px; }
.hero-visual img {
  width: min(100%, 420px); filter: drop-shadow(0 30px 50px rgba(0, 0, 0, .45));
  animation: float 6s ease-in-out infinite;
}
.hero-visual .glow {
  position: absolute; inset: 10%; border-radius: 50%;
  background: radial-gradient(circle, rgba(76, 128, 236, .35), rgba(252, 88, 8, .12) 50%, transparent 70%);
  filter: blur(30px); z-index: -1;
}

.dots { position: absolute; inset: 0; pointer-events: none; z-index: -1; }
.dots span {
  position: absolute; border-radius: 50%; opacity: .9;
  animation: drift var(--d, 9s) ease-in-out infinite alternate;
}
.dots .d1 { width: 90px; height: 90px; background: var(--pink); top: 8%; inset-inline-end: 6%; --d: 10s; }
.dots .d2 { width: 36px; height: 36px; background: var(--blue); top: 30%; inset-inline-end: 3%; --d: 8s; }
.dots .d3 { width: 60px; height: 60px; background: var(--yellow); bottom: 14%; inset-inline-end: 10%; --d: 12s; }
.dots .d4 { width: 120px; height: 120px; background: var(--red); bottom: -50px; inset-inline-start: -40px; --d: 11s; opacity: .8; }
.dots .d5 { width: 44px; height: 44px; background: var(--orange); top: 12%; inset-inline-end: 40%; --d: 9s; }
.dots .d6 { width: 26px; height: 26px; background: var(--pink); top: 55%; inset-inline-end: 44%; --d: 7s; }
@media (max-width: 960px) { .dots span { opacity: .35; } }

@keyframes float { 0%, 100% { transform: translateY(0) } 50% { transform: translateY(-14px) } }
@keyframes drift { from { transform: translate(0, 0) } to { transform: translate(14px, -18px) } }

.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 56px; }
.stat {
  padding: 18px 20px; border-radius: 16px; background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
}
.stat strong { display: block; font-size: 30px; font-weight: 800; line-height: 1.1; color: var(--yellow); font-family: var(--font-en); }
.stat span { font-size: 14px; color: rgba(255, 255, 255, .72); }

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 24px; }
  .hero-visual { order: -1; min-height: 240px; }
  .hero-visual img { width: min(70%, 300px); }
  .stats { grid-template-columns: repeat(2, 1fr); margin-top: 40px; }
}

/* ---------- Pillars ---------- */
.pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.pillar-badge { position: absolute; top: 16px; inset-inline-end: 16px; font-family: var(--font-en); font-size: 11px; font-weight: 800; letter-spacing: .08em; padding: 3px 9px; border-radius: 999px; background: var(--c); color: #fff; z-index: 1; }
.pillar {
  position: relative; overflow: hidden; padding: 28px 24px 24px; border-radius: var(--radius);
  background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  display: flex; flex-direction: column;
}
.pillar:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pillar::after {
  content: ""; position: absolute; width: 180px; height: 180px; border-radius: 50%;
  top: -80px; inset-inline-end: -70px; opacity: .18; background: var(--c);
}
.pillar-icon {
  width: 60px; height: 60px; border-radius: 18px; display: grid; place-items: center;
  background: var(--c); color: #fff; margin-bottom: 18px;
}
.pillar-icon svg { width: 28px; height: 28px; }
.pillar h3 { font-size: 20px; margin-bottom: 8px; }
.pillar p { color: var(--muted); margin-bottom: 16px; }
.pillar ul { margin-bottom: 20px; display: grid; gap: 8px; }
.pillar li { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; }
.pillar li::before {
  content: ""; flex: none; width: 18px; height: 18px; border-radius: 50%; margin-top: 4px;
  background: var(--c) center / 10px no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l5 5L20 7'/%3E%3C/svg%3E");
}
.pillar-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.pillar-foot .from { font-size: 13px; color: var(--muted); }
.pillar-foot .from strong { display: block; font-size: 20px; color: var(--ink); font-family: var(--font-en); }
.pillar-foot a { color: var(--c); font-weight: 700; display: inline-flex; align-items: center; gap: 6px; }
.pillar-foot a svg { width: 18px; height: 18px; transition: transform .2s; }
.pillar-foot a:hover svg { transform: translateX(4px); }
html[dir="rtl"] .pillar-foot a svg { transform: scaleX(-1); }
html[dir="rtl"] .pillar-foot a:hover svg { transform: scaleX(-1) translateX(4px); }

.c-ai { --c: #6A3BB5; --c-ink: #5A2FA0; }
.c-web { --c: var(--blue); --c-ink: #2B5BC4; }
.c-mkt { --c: var(--orange); --c-ink: #C24104; }
.c-game { --c: #E5B400; --c-ink: #8A6A00; }

@media (max-width: 1100px) { .pillars { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .pillars { grid-template-columns: 1fr; } }

/* ---------- Why ---------- */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.why-list { display: grid; gap: 16px; }
.why-item { display: flex; gap: 16px; padding: 18px 20px; border-radius: 16px; background: #fff; border: 1px solid var(--line); }
.why-item .n {
  flex: none; width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
  font-family: var(--font-en); font-weight: 800; font-size: 18px; color: #fff; background: var(--navy);
}
.why-item:nth-child(1) .n { background: var(--blue); }
.why-item:nth-child(2) .n { background: var(--orange); }
.why-item:nth-child(3) .n { background: #E5B400; }
.why-item:nth-child(4) .n { background: var(--red); }
.why-item h4 { font-size: 17px; margin-bottom: 4px; }
.why-item p { color: var(--muted); font-size: 15px; }
.why-visual { position: relative; padding: 36px; border-radius: 28px; background: var(--navy); color: #fff; overflow: hidden; }
.why-visual .quote { font-size: clamp(20px, 2.2vw, 26px); font-weight: 700; line-height: 1.5; position: relative; }
.why-visual .quote::before { content: "“"; font-size: 90px; line-height: 0; position: absolute; top: 18px; inset-inline-start: -6px; color: var(--yellow); opacity: .5; font-family: Georgia, serif; }
.why-visual .sig { margin-top: 20px; font-family: var(--font-en); font-size: 12px; letter-spacing: .2em; color: var(--orange); text-transform: uppercase; }
.why-visual .blob { position: absolute; border-radius: 50%; opacity: .5; }
.why-visual .b1 { width: 220px; height: 220px; background: var(--blue); bottom: -120px; inset-inline-end: -80px; }
.why-visual .b2 { width: 80px; height: 80px; background: var(--pink); top: -20px; inset-inline-end: 40px; }
.why-visual .b3 { width: 40px; height: 40px; background: var(--yellow); bottom: 30px; inset-inline-start: 30px; }
@media (max-width: 960px) { .why-grid { grid-template-columns: 1fr; } }

/* ---------- Service cards ---------- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 1000px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .services-grid { grid-template-columns: 1fr; } }

/* The whole card opens the service page through a stretched title link; only the order button sits above it. */
.svc {
  position: relative; display: flex; flex-direction: column; padding: 24px 22px 18px;
  border-radius: 18px; background: #fff; border: 1px solid var(--line); box-shadow: 0 1px 2px rgba(12, 20, 52, .04);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .2s;
  min-height: 100%;
}
.svc::before {
  content: ""; position: absolute; top: 0; inset-inline: 22px; height: 3px; border-radius: 0 0 4px 4px; background: var(--c);
}
@media (hover: hover) {
  .svc:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: color-mix(in srgb, var(--c) 30%, var(--line)); }
}
.svc-top { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 14px; }
.svc-code {
  font-family: var(--font-en); font-weight: 700; font-size: 12px; letter-spacing: .08em; line-height: 1.5;
  padding: 3px 10px; border-radius: 999px; color: var(--c-ink, var(--c)); background: color-mix(in srgb, var(--c) 13%, #fff);
}
.svc-cat { margin-inline-start: auto; font-size: 12px; color: var(--muted); font-weight: 600; }
.svc-tag {
  display: inline-flex; align-items: center; gap: 4px; font-size: 11.5px; font-weight: 800; line-height: 1.5;
  padding: 3px 9px; border-radius: 999px; white-space: nowrap;
}
.svc-tag svg { width: 11px; height: 11px; }
.svc-tag.is-demo { color: #0b6b3a; background: #dcf7e7; }
.svc-tag.is-monthly { color: var(--blue-d); background: var(--blue-soft); }
.svc-title { font-size: 17.5px; line-height: 1.45; margin-bottom: 8px; }
.svc-link { color: inherit; }
.svc-link::after { content: ""; position: absolute; inset: 0; border-radius: inherit; z-index: 1; }
.svc-link:focus-visible { outline: none; }
.svc-link:focus-visible::after { outline: 3px solid var(--c); outline-offset: 3px; }
.svc-short {
  color: var(--muted); font-size: 14.5px; line-height: 1.75; flex: 1;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.svc-price { display: flex; align-items: baseline; gap: 6px; margin-top: 18px; flex-wrap: wrap; }
.svc-price .from { font-size: 12px; color: var(--red); font-weight: 700; padding: 2px 8px; border-radius: 999px; background: #fdeceb; }
.svc-price strong { font-family: var(--font-en); font-size: 26px; font-weight: 800; color: var(--ink); line-height: 1; }
.svc-price .cur { font-size: 13px; color: var(--muted); font-weight: 700; }
.svc-price .unit { font-size: 13px; color: var(--muted); }
.svc-foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--line); }
.svc-more { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; font-size: 14px; color: var(--c-ink, var(--c)); }
.svc-more svg { width: 16px; height: 16px; transition: transform .2s var(--ease); }
html[dir="rtl"] .svc-more svg { transform: scaleX(-1); }
@media (hover: hover) {
  .svc:hover .svc-more svg { transform: translateX(3px); }
  html[dir="rtl"] .svc:hover .svc-more svg { transform: scaleX(-1) translateX(3px); }
}
.svc-foot .wa { position: relative; z-index: 2; color: #fff; font-weight: 700; min-height: 40px; }
.svc-foot .wa svg { width: 18px; height: 18px; }

.demo-lang-note { margin-top: 2px; font-size: 13px; color: var(--muted); }
.btn-demo { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn-demo:hover { background: #12204a; border-color: #12204a; }
.btn-demo svg { width: 18px; height: 18px; }
.btn-block { width: 100%; }

.search { position: relative; }
.search input {
  width: 100%; padding: 10px 40px 10px 14px; border-radius: 11px; border: 1px solid var(--line); background: #fff;
  font: inherit; font-size: 14px; outline: none; transition: border-color .2s, box-shadow .2s;
}
html[dir="ltr"] .search input { padding: 10px 14px 10px 40px; }
.search input:focus { border-color: var(--blue); box-shadow: 0 0 0 3px var(--blue-soft); }
.search svg { position: absolute; top: 50%; transform: translateY(-50%); inset-inline-start: 13px; width: 17px; height: 17px; color: var(--muted); }

.empty { padding: 40px; text-align: center; color: var(--muted); border: 1.5px dashed var(--line); border-radius: var(--radius); grid-column: 1 / -1; }

.price-note {
  margin-top: 28px; padding: 16px 20px; border-radius: 14px; background: var(--yellow-soft); color: #5a4600;
  font-size: 14px; display: flex; gap: 12px; align-items: flex-start;
}
.price-note svg { width: 20px; height: 20px; flex: none; margin-top: 2px; }

/* ---------- Services & pricing page ---------- */
.hero-facts { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.hero-facts li {
  display: flex; align-items: center; gap: 10px; padding: 10px 16px; border-radius: 14px;
  background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .12);
}
.hero-facts strong { font-family: var(--font-en); font-size: 18px; font-weight: 800; color: var(--yellow); }
.hero-facts span { font-size: 13.5px; color: rgba(255, 255, 255, .82); }
@media (max-width: 640px) {
  .hero-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
  .hero-facts li { padding: 10px 12px; gap: 8px; }
  .hero-facts span { font-size: 12.5px; line-height: 1.5; }
}

/* one toolbar for field, search and view; pinned under the header on wide screens only, where it costs little height */
.svc-toolbar { background: rgba(255, 255, 255, .95); border-bottom: 1px solid var(--line); }
@media (min-width: 961px) {
  .svc-toolbar { position: sticky; top: var(--header-h, 76px); z-index: 40; backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
}
.svc-toolbar-inner { display: flex; align-items: center; gap: 14px; padding: 12px 0; }
.svc-tabs { display: flex; gap: 4px; flex: 1 1 auto; min-width: 0; overflow-x: auto; scrollbar-width: none; }
.svc-tabs::-webkit-scrollbar { display: none; }
.svc-tabs .chip {
  flex: none; display: inline-flex; align-items: center; gap: 7px; padding: 8px 11px; border-radius: 10px;
  border: 0; background: transparent; color: var(--muted); font-weight: 700; font-size: 13.5px; white-space: nowrap;
  transition: background .2s, color .2s;
}
.svc-tabs .chip[class*="c-"]::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--c); flex: none; }
.svc-tabs .chip:hover { background: var(--bg-soft); color: var(--ink); }
.svc-tabs .chip.active { background: var(--navy); color: #fff; }
.svc-tabs .chip .cnt {
  font-family: var(--font-en); font-size: 11.5px; line-height: 1.6; padding: 0 7px; border-radius: 999px;
  background: var(--bg-soft); color: var(--muted);
}
.svc-tabs .chip.active .cnt { background: rgba(255, 255, 255, .16); color: #fff; }
.svc-tools { display: flex; align-items: center; gap: 10px; flex: none; }
.svc-tools .search { width: 200px; }
.view-toggle { display: inline-flex; padding: 3px; border-radius: 11px; background: var(--bg-soft); border: 1px solid var(--line); }
.view-toggle button {
  display: inline-flex; align-items: center; gap: 6px; padding: 6px 11px; border: 0; border-radius: 8px;
  background: transparent; color: var(--muted); font-weight: 700; font-size: 13px; white-space: nowrap;
}
.view-toggle button[aria-pressed="true"] { background: #fff; color: var(--ink); box-shadow: 0 1px 3px rgba(12, 20, 52, .14); }
.view-toggle svg, .print-btn svg { width: 16px; height: 16px; flex: none; }
.print-btn {
  display: inline-flex; align-items: center; gap: 6px; padding: 8px 12px; border-radius: 10px; border: 1px solid var(--line);
  background: #fff; color: var(--ink); font-weight: 700; font-size: 13px; white-space: nowrap;
}
.pt-tools { display: flex; justify-content: flex-end; margin-bottom: -16px; }
/* the Arabic tab names need about 1225px beside the tools; below that the tools take their own row */
@media (max-width: 1240px) {
  .svc-toolbar-inner { flex-wrap: wrap; row-gap: 10px; }
  .svc-tabs { flex-basis: 100%; }
  .svc-tools { flex: 1 1 100%; }
  .svc-tools .search { flex: 1 1 auto; width: auto; }
}
@media (max-width: 640px) {
  .view-toggle button span { display: none; }
  .view-toggle button { padding: 7px 10px; }
  .pt-tools { display: none; }
}

.svc-list-section { padding-top: clamp(32px, 5vw, 56px); }
.svc-list { display: grid; gap: clamp(40px, 6vw, 64px); }
.svc-group-head {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 20px;
  margin-bottom: 22px; padding-bottom: 18px; border-bottom: 1px solid var(--line);
}
.svc-group-id { display: flex; gap: 14px; align-items: stretch; min-width: 0; }
.svc-group-bar { width: 5px; border-radius: 5px; background: var(--c); flex: none; }
.svc-group-head h2 { font-size: clamp(21px, 2.4vw, 28px); }
.svc-group-head p { color: var(--muted); margin-top: 6px; max-width: 62ch; font-size: 15px; }
.svc-group-meta { display: flex; flex-direction: column; align-items: flex-end; gap: 2px; font-size: 13.5px; color: var(--muted); white-space: nowrap; }
.svc-group-meta strong { font-family: var(--font-en); color: var(--ink); font-size: 16px; }
@media (max-width: 640px) {
  .svc-group-head { flex-direction: column; align-items: flex-start; }
  .svc-group-meta { flex-direction: row; gap: 14px; align-items: baseline; }
}
.svc-results { font-weight: 700; color: var(--muted); margin-bottom: 16px; }

/* the price table: what a buyer prints, forwards, or holds against a quote */
.svc-list.is-table { gap: 32px; }
.price-table {
  width: 100%; border-collapse: separate; border-spacing: 0; background: #fff;
  border: 1px solid var(--line); border-radius: 16px; overflow: hidden;
}
.price-table caption { caption-side: top; text-align: start; font-weight: 800; font-size: 19px; padding: 0 0 12px; }
.price-table caption::before {
  content: ""; display: inline-block; width: 10px; height: 10px; border-radius: 50%; background: var(--c);
  margin-inline-end: 10px; vertical-align: middle;
}
.price-table th {
  text-align: start; font-size: 12.5px; font-weight: 700; color: var(--muted); background: var(--bg-soft);
  padding: 10px 18px; border-bottom: 1px solid var(--line);
}
.price-table td { padding: 14px 18px; border-bottom: 1px solid var(--line); vertical-align: middle; font-size: 15px; }
.price-table tbody tr:last-child td { border-bottom: 0; }
.price-table tbody tr { transition: background .15s; }
.price-table tbody tr:hover { background: #FAFBFE; }
.price-table td:first-child, .price-table th:first-child { width: 1%; white-space: nowrap; }
.price-table td a { font-weight: 700; color: var(--ink); }
.price-table td a:hover { color: var(--c-ink, var(--c)); text-decoration: underline; text-underline-offset: 3px; }
.price-table .num { text-align: end; white-space: nowrap; }
.pt-price b { font-family: var(--font-en); font-size: 17px; font-weight: 800; }
.pt-price small { color: var(--red); font-weight: 700; font-size: 12px; }
.pt-unit { display: block; margin-top: 2px; font-size: 12px; color: var(--muted); white-space: normal; }
@media (max-width: 640px) {
  .price-table th, .price-table td { padding: 11px 10px; }
  .price-table td { font-size: 14px; }
  .price-table td .svc-tag { display: none; }
  .price-table .num { white-space: normal; min-width: 92px; }
}

.price-terms {
  margin-top: clamp(40px, 6vw, 64px); padding: 28px clamp(20px, 4vw, 36px); border-radius: 20px;
  background: var(--bg-soft); border: 1px solid var(--line);
}
.price-terms h2 { font-size: 20px; margin-bottom: 18px; }
.price-terms ul { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 32px; }
.price-terms li { display: flex; gap: 12px; font-size: 14.5px; color: #3A4260; line-height: 1.75; }
.price-terms li svg { flex: none; width: 20px; height: 20px; color: var(--blue); margin-top: 3px; }
.price-terms-foot {
  display: flex; gap: 10px; margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--line);
  font-weight: 700; font-size: 14.5px; color: #197A43; line-height: 1.7;
}
.price-terms-foot svg { width: 20px; height: 20px; flex: none; margin-top: 2px; }
.price-terms-foot a { color: var(--orange); text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 760px) { .price-terms ul { grid-template-columns: 1fr; } }

/* ---------- One page per service ---------- */
.sp-hero {
  position: relative; overflow: hidden; isolation: isolate; background: var(--navy); color: #fff;
  padding: clamp(32px, 5vw, 60px) 0 clamp(40px, 5vw, 64px);
}
.sp-hero::before {
  content: ""; position: absolute; z-index: -1; width: 560px; height: 560px; border-radius: 50%;
  top: -220px; inset-inline-end: -140px; opacity: .5;
  background: radial-gradient(closest-side, color-mix(in srgb, var(--c) 55%, transparent), transparent);
}
.sp-hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) 380px; gap: 48px; align-items: start; }
.sp-hero .crumbs { flex-wrap: wrap; }
.sp-chips { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; margin-top: 24px; }
.sp-hero .svc-code { background: rgba(255, 255, 255, .12); color: #fff; }
.sp-hero h1 { font-size: clamp(28px, 4vw, 46px); margin-top: 14px; line-height: 1.25; }
.sp-lead { color: rgba(255, 255, 255, .8); font-size: 18px; margin-top: 14px; max-width: 58ch; }
.sp-buy {
  display: grid; gap: 10px; padding: 24px; border-radius: 22px; background: #fff; color: var(--ink);
  box-shadow: 0 30px 60px rgba(0, 0, 0, .28);
}
.sp-buy-label { font-size: 13px; font-weight: 700; color: var(--muted); }
.sp-buy .svc-price { margin-top: 0; }
.sp-buy .svc-price strong { font-size: 40px; }
.sp-buy .first-pay { margin-top: -4px; }
.sp-vat { font-size: 12.5px; color: var(--muted); margin-top: -4px; }
.sp-buy .btn { min-height: 48px; }
.sp-buy .btn svg { width: 18px; height: 18px; }
.sp-promise {
  display: flex; gap: 8px; margin-top: 4px; padding-top: 14px; border-top: 1px solid var(--line);
  font-size: 13px; font-weight: 700; color: #197A43; line-height: 1.7;
}
.sp-promise svg { width: 18px; height: 18px; flex: none; margin-top: 2px; }
.sp-promise a { color: var(--orange); text-decoration: underline; text-underline-offset: 3px; }

.sp-layout { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 48px; align-items: start; }
.sp-main h2, .sp-related-head h2 { font-size: clamp(22px, 2.6vw, 30px); }
.sp-what { font-size: 17px; color: #3A4260; line-height: 1.95; margin-top: 14px; max-width: 70ch; }
.sp-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 32px; }
.sp-col { padding: 22px; border: 1px solid var(--line); border-radius: 18px; background: #fff; }
.sp-col h3 { font-size: 17px; margin-bottom: 14px; }
.sp-list { display: grid; gap: 10px; }
.sp-list li { display: flex; gap: 10px; font-size: 15px; line-height: 1.7; }
.sp-list svg { flex: none; width: 18px; height: 18px; margin-top: 4px; }
.sp-list.is-who svg { width: 10px; height: 10px; margin-top: 9px; color: var(--c); }
.sp-list.is-get svg { color: #197A43; }
.sp-demo {
  display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 28px; padding: 22px 24px;
  border-radius: 18px; color: #fff; background: linear-gradient(135deg, var(--navy), var(--navy-3));
}
.sp-demo h3 { font-size: 19px; }
.sp-demo p { color: rgba(255, 255, 255, .75); font-size: 14.5px; margin-top: 4px; }
.sp-demo .btn-demo { flex: none; width: auto; background: #fff; color: var(--navy); border-color: #fff; }
.sp-side {
  position: sticky; top: calc(var(--header-h, 76px) + 24px);
  padding: 24px; border-radius: 18px; background: var(--bg-soft); border: 1px solid var(--line);
}
.sp-side-title { font-size: 17px; margin-bottom: 16px; }
.sp-facts { display: grid; gap: 16px; margin: 0; }
.sp-facts dt { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; color: var(--muted); }
.sp-facts dt svg { width: 17px; height: 17px; color: var(--c-ink, var(--c)); flex: none; }
.sp-facts dd { margin: 4px 0 0; font-size: 15px; font-weight: 700; line-height: 1.75; }
.sp-related-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 22px; }
.sp-related-all { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; color: var(--blue-d); white-space: nowrap; }
.sp-related-all svg { width: 16px; height: 16px; }
html[dir="rtl"] .sp-related-all svg { transform: scaleX(-1); }
.sp-bar { display: none; }
@media (max-width: 960px) {
  .sp-hero-grid, .sp-layout { grid-template-columns: 1fr; gap: 28px; }
  .sp-side { position: static; }
  /* the order button stays in reach once the price card has scrolled away */
  .sp-bar {
    display: flex; position: fixed; inset-inline: 0; bottom: 0; z-index: 60; align-items: center; justify-content: space-between; gap: 12px;
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom)); background: #fff; border-top: 1px solid var(--line);
    box-shadow: 0 -10px 24px rgba(12, 20, 52, .1); transform: translateY(110%); transition: transform .25s var(--ease);
  }
  .sp-bar.show { transform: none; }
  .sp-bar-price { display: flex; flex-direction: column; min-width: 0; }
  .sp-bar-price small { font-family: var(--font-en); font-size: 11px; font-weight: 700; color: var(--muted); }
  .sp-bar-price strong { font-family: var(--font-en); font-size: 18px; white-space: nowrap; }
  .sp-bar .btn { min-height: 46px; padding-inline: 18px; }
  .sp-bar .btn svg { width: 18px; height: 18px; }
  body[data-page="service"] .wa-float { display: none; }
  body[data-page="service"] .footer { padding-bottom: 88px; }
}
@media (max-width: 640px) {
  .sp-cols { grid-template-columns: 1fr; }
  .sp-demo { flex-direction: column; align-items: stretch; }
  .sp-demo .btn-demo { width: 100%; }
  .sp-related-head { flex-direction: column; align-items: flex-start; }
  .sp-lead { font-size: 16px; }
}

/* the price list prints as a clean price list */
@media print {
  .header, .footer, .svc-toolbar, .wa-float, .announce, .page-hero .dots, .hero-facts, .sp-bar { display: none !important; }
  .section-soft:has(.cta-band) { display: none !important; }
  .page-hero { background: none; color: #000; padding: 0 0 12px; }
  .page-hero p, .crumbs { color: #333; }
  .section { padding: 12px 0; }
  .price-table { box-shadow: none; }
  .price-table tr { break-inside: avoid; }
  .price-terms { background: none; }
}

/* ---------- Modal ---------- */
.modal { position: fixed; inset: 0; z-index: 100; display: none; align-items: center; justify-content: center; padding: 16px; }
.modal.open { display: flex; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(12, 20, 52, .7); backdrop-filter: blur(4px); }
.modal-card {
  position: relative; width: min(100%, 760px); max-height: 90vh; overflow: auto; background: #fff; border-radius: 24px;
  padding: 32px; box-shadow: var(--shadow-lg); animation: pop .25s var(--ease);
}
@keyframes pop { from { transform: translateY(16px) scale(.98); opacity: 0 } to { transform: none; opacity: 1 } }
.modal-close {
  position: absolute; top: 14px; inset-inline-end: 14px; width: 40px; height: 40px; border-radius: 50%; border: 0;
  background: var(--bg-soft); color: var(--ink); display: grid; place-items: center;
}
.modal-close svg { width: 18px; height: 18px; }

/* ---------- Packages ---------- */
.packages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 1100px) { .packages-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .packages-grid { grid-template-columns: 1fr; } }
.pkg {
  position: relative; display: flex; flex-direction: column; padding: 26px 24px; border-radius: var(--radius);
  background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow); overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.pkg:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.pkg::before { content: ""; position: absolute; top: 0; inset-inline: 0; height: 6px; background: var(--c); }
.pkg.featured { border: 2px solid var(--c); }
.pkg .badge {
  position: absolute; top: 16px; inset-inline-end: 16px; font-size: 11px; font-weight: 800; padding: 4px 10px; border-radius: 999px;
  background: var(--c); color: #fff; letter-spacing: .04em;
}
.pkg h3 { font-size: 21px; margin-top: 8px; }
.pkg .tag { color: var(--muted); font-size: 14px; margin: 6px 0 16px; min-height: 42px; }
.pkg ul { display: grid; gap: 8px; margin-bottom: 18px; }
.pkg li { display: flex; gap: 10px; font-size: 14.5px; align-items: flex-start; }
.pkg li .q { flex: none; font-family: var(--font-en); font-weight: 700; color: var(--c); min-width: 22px; }
.pkg-total { margin-top: auto; padding-top: 16px; border-top: 1px dashed var(--line); }
.pkg-total .was { font-size: 13px; color: var(--muted); }
.pkg-total .was s { font-family: var(--font-en); }
.pkg-total .save { display: inline-block; margin-inline-start: 6px; padding: 2px 8px; border-radius: 999px; background: #E8F8EE; color: #1a7f45; font-weight: 700; font-size: 12px; }
.pkg-total .now { display: flex; align-items: baseline; gap: 6px; margin-top: 4px; }
.pkg-total .now strong { font-family: var(--font-en); font-size: 32px; font-weight: 800; line-height: 1; }
.pkg-total .now span { color: var(--muted); font-size: 13px; font-weight: 700; }
.pkg .btn { margin-top: 16px; width: 100%; }

.p-launch { --c: var(--pink); } .p-launch::before { background: linear-gradient(90deg, var(--pink), var(--red)); } .p-launch .badge, .p-launch li .q { color: var(--red); } .p-launch .badge { background: var(--red); color: #fff; }
.p-ai { --c: #6A3BB5; }
.p-adopt { --c: #2E8B8B; }
.p-growth { --c: var(--blue); }
.p-camp { --c: var(--orange); }
.p-event { --c: #E5B400; }

/* ---------- Process ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; position: relative; }
.step { position: relative; padding: 26px 22px; border-radius: var(--radius); background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .1); }
.step .n {
  width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; font-family: var(--font-en);
  font-weight: 800; font-size: 20px; color: var(--navy); background: var(--yellow); margin-bottom: 16px;
}
.step:nth-child(2) .n { background: var(--pink); } .step:nth-child(3) .n { background: var(--blue); color: #fff; } .step:nth-child(4) .n { background: var(--orange); color: #fff; }
.step h3 { font-size: 19px; margin-bottom: 8px; color: #fff; }
.step p { color: rgba(255, 255, 255, .72); font-size: 15px; }
@media (max-width: 960px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative; overflow: hidden; border-radius: 28px; padding: clamp(36px, 5vw, 64px);
  background: linear-gradient(120deg, var(--orange), var(--red)); color: #fff;
  display: grid; grid-template-columns: 1.3fr .7fr; gap: 24px; align-items: center;
}
.cta-band h2 { font-size: clamp(26px, 3.2vw, 38px); }
.cta-band p { margin-top: 10px; color: rgba(255, 255, 255, .88); font-size: 17px; }
.cta-band .actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: flex-end; }
.cta-band .ring { position: absolute; border-radius: 50%; border: 24px solid rgba(255, 255, 255, .12); }
.cta-band .r1 { width: 320px; height: 320px; top: -160px; inset-inline-end: -80px; }
.cta-band .r2 { width: 180px; height: 180px; bottom: -110px; inset-inline-start: 10%; }
@media (max-width: 860px) { .cta-band { grid-template-columns: 1fr; } .cta-band .actions { justify-content: flex-start; } }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { position: relative; overflow: hidden; background: var(--navy); color: #fff; padding: clamp(44px, 6vw, 72px) 0; isolation: isolate; }
.page-hero h1 { font-size: clamp(30px, 4vw, 48px); margin-top: 12px; }
.page-hero p { color: rgba(255, 255, 255, .75); max-width: 640px; margin-top: 12px; font-size: 17px; }
.page-hero .dots .d1 { width: 70px; height: 70px; }
.page-hero .dots .d4 { width: 90px; height: 90px; }
.crumbs { display: flex; gap: 8px; font-size: 13px; color: rgba(255, 255, 255, .6); }
.crumbs a:hover { color: #fff; }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
.about-grid .lead { font-size: 18px; color: var(--ink); }
.about-grid p + p { margin-top: 14px; color: var(--muted); }
.about-visual { position: relative; }
.about-visual .card-logo {
  background: var(--navy); border-radius: 28px; padding: 40px; display: grid; place-items: center; box-shadow: var(--shadow-lg);
  position: relative; overflow: hidden;
}
.about-visual .card-logo img { width: 80%; }
.about-visual .card-logo picture { display: contents; } /* the <img> stays the centred grid item */
.about-visual .card-logo .blob { position: absolute; border-radius: 50%; opacity: .35; }
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.value { padding: 26px 24px; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); }
.value .ic { width: 52px; height: 52px; border-radius: 16px; display: grid; place-items: center; color: #fff; margin-bottom: 14px; background: var(--c, var(--navy)); }
.value .ic svg { width: 24px; height: 24px; }
.value h3 { font-size: 18px; margin-bottom: 6px; }
.value p { color: var(--muted); font-size: 15px; }
@media (max-width: 960px) { .about-grid { grid-template-columns: 1fr; } .values { grid-template-columns: 1fr; } }

.principles { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.principle { display: flex; gap: 14px; padding: 18px 20px; border-radius: 16px; background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .1); }
.principle .ic { flex: none; width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; background: var(--yellow); color: var(--navy); }
.principle .ic svg { width: 20px; height: 20px; }
.principle h4 { font-size: 16px; color: #fff; margin-bottom: 4px; }
.principle p { font-size: 14.5px; color: rgba(255, 255, 255, .7); }
@media (max-width: 760px) { .principles { grid-template-columns: 1fr; } }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 32px; align-items: start; }
.contact-cards { display: grid; gap: 14px; }
.ccard { display: flex; gap: 16px; align-items: flex-start; padding: 20px; border-radius: 18px; background: #fff; border: 1px solid var(--line); transition: transform .2s var(--ease), box-shadow .2s; }
.ccard:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.ccard .ic { flex: none; width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; color: #fff; background: var(--c, var(--navy)); }
.ccard .ic svg { width: 22px; height: 22px; }
.ccard h4 { font-size: 15px; color: var(--muted); font-weight: 600; margin-bottom: 2px; }
.ccard .v { font-weight: 700; font-size: 17px; direction: ltr; unicode-bidi: isolate; display: inline-block; min-width: 0; overflow-wrap: anywhere; }
.ccard .v.ar { direction: inherit; }
.ccard small { display: block; color: var(--muted); font-size: 13px; margin-top: 2px; }

.form-card { padding: 30px; border-radius: 24px; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow); }
.form-card h3 { font-size: 22px; margin-bottom: 6px; }
.form-card > p { color: var(--muted); margin-bottom: 22px; font-size: 15px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: grid; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 14px; font-weight: 700; }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; border-radius: 12px; border: 1.5px solid var(--line); background: #fff;
  font: inherit; font-size: 15px; outline: none; transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 4px var(--blue-soft); }
.field textarea { min-height: 120px; resize: vertical; }
.field input[type="tel"] { direction: ltr; text-align: start; }
html[dir="rtl"] .field input[type="tel"] { text-align: right; }
.form-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; align-items: center; }
.form-hint { font-size: 13px; color: var(--muted); }
.form-hint a { color: var(--orange); text-decoration: underline; text-underline-offset: 3px; }
.form-msg { margin-top: 14px; font-size: 14px; font-weight: 700; display: none; padding: 14px 16px; border-radius: 14px; }
.form-msg.show { display: block; }
.form-msg.ok { color: #14663a; background: #E6F7EC; border: 1px solid #B7E4C7; }
.form-msg.bad { color: #9B2C22; background: #FDECEA; border: 1px solid #F5C6C0; }
.form-msg strong { display: block; }
.form-msg .fm-note { display: block; font-weight: 600; opacity: .85; margin-top: 4px; }
.form-msg .fm-links { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.form-msg .fm-links .btn { font-size: 13px; padding: 9px 16px; }

/* Packages: the discount ladder the published percentages actually follow */
.pk-ladder { background: var(--bg-soft); border: 1px solid var(--line); border-radius: 20px; padding: 20px 24px; margin-bottom: 26px; }
.pk-ladder > strong { display: block; font-size: 17px; margin-bottom: 14px; }
.pk-ladder ul { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.pk-ladder li { display: flex; align-items: center; justify-content: space-between; gap: 10px; background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 10px 14px; font-size: 14px; }
.pk-ladder li b { color: var(--orange); white-space: nowrap; }
.pk-ladder p { margin: 12px 0 0; font-size: 13px; color: var(--muted); }
@media (max-width: 720px) { .pk-ladder ul { grid-template-columns: 1fr; } .pk-ladder { padding: 18px; } }
@media (max-width: 960px) { .contact-grid { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .form-grid { grid-template-columns: 1fr; } .form-card { padding: 22px 18px; } }

.map-wrap { margin-top: 36px; border-radius: 24px; overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); background: var(--bg-soft); }
.map-wrap iframe { width: 100%; height: 380px; border: 0; display: block; }
.map-bar { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: space-between; padding: 16px 20px; background: #fff; }
.map-bar p { font-size: 15px; color: var(--muted); }
.map-bar p strong { color: var(--ink); }

/* ---------- Footer ---------- */
.footer { background: var(--navy); color: rgba(255, 255, 255, .78); padding: 64px 0 84px; position: relative; overflow: hidden; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 36px; }
.footer .brand img { height: 120px; }
.footer .about-txt { margin-top: 14px; font-size: 14.5px; max-width: 320px; }
.footer h4 { color: #fff; font-size: 16px; margin-bottom: 14px; }
.footer ul { display: grid; gap: 8px; }
.footer li a { font-size: 14.5px; transition: color .2s; }
.footer li a:hover { color: var(--yellow); }
.footer .ct { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; }
.footer .ct svg { width: 18px; height: 18px; flex: none; margin-top: 4px; color: var(--yellow); }
.footer .ct .ltr { direction: ltr; unicode-bidi: isolate; display: inline-block; }
.socials { display: flex; gap: 8px; margin-top: 16px; }
.socials a { width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; background: rgba(255, 255, 255, .08); transition: background .2s, transform .2s; }
.socials a:hover { background: var(--orange); transform: translateY(-2px); }
.socials svg { width: 18px; height: 18px; }
.footer-news { margin-top: 40px; padding: 26px 28px; border-radius: 20px; background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .1); display: grid; grid-template-columns: 1.1fr 1fr; gap: 24px; align-items: center; }
.footer-news h4 { color: #fff; font-size: 18px; margin-bottom: 6px; }
.footer-news p { font-size: 14px; color: rgba(255, 255, 255, .72); }
.news-form { display: grid; grid-template-columns: 1fr auto; gap: 10px; align-items: center; }
.news-form input[type="email"] { width: 100%; padding: 13px 16px; border-radius: 999px; border: 1.5px solid rgba(255, 255, 255, .2); background: rgba(255, 255, 255, .08); color: #fff; font: inherit; font-size: 15px; outline: none; transition: border-color .2s, background .2s; }
.news-form input[type="email"]::placeholder { color: rgba(255, 255, 255, .55); }
.news-form input[type="email"]:focus { border-color: var(--yellow); background: rgba(255, 255, 255, .12); }
.news-form .btn { padding-inline: 20px; }
.news-msg { grid-column: 1 / -1; font-size: 13px; font-weight: 700; min-height: 0; display: none; }
.news-msg.show { display: block; }
.news-msg.ok { color: #7EE2A8; }
.news-msg.bad { color: #FFB4AE; }
@media (max-width: 860px) { .footer-news { grid-template-columns: 1fr; padding: 22px 20px; } }
@media (max-width: 480px) { .news-form { grid-template-columns: 1fr; } .news-form .btn { width: 100%; } }
.footer-bottom { margin-top: 44px; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, .1); display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between; font-size: 13px; }
.footer-bottom .tag { font-family: var(--font-en); letter-spacing: .2em; color: var(--orange); font-weight: 600; text-transform: uppercase; font-size: 11px; }
@media (max-width: 960px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- Floating WhatsApp ---------- */
/* Policies page */
.pol-updated { font-size: 14px !important; color: var(--yellow) !important; margin-top: 8px !important; font-weight: 700; }
.pol-layout { display: grid; grid-template-columns: 280px minmax(0, 1fr); gap: 40px; align-items: start; }
.pol-nav { position: sticky; top: 92px; background: #F4F6FB; border: 1px solid var(--line); border-radius: 18px; padding: 12px; }
.pol-nav ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 2px; }
.pol-nav a { display: flex; align-items: center; gap: 10px; padding: 8px 10px; border-radius: 10px; font-size: 14px; font-weight: 600; color: var(--muted); transition: background .2s, color .2s; }
.pol-nav a:hover { background: #fff; color: var(--navy); }
.pol-nav .n, .pol-sec h2 .n { flex: none; display: grid; place-items: center; border-radius: 8px; background: var(--navy); color: var(--yellow); font-weight: 800; }
.pol-nav .n { width: 24px; height: 24px; font-size: 12px; }
.pol-body { min-width: 0; }
.pol-sec { padding: 4px 0 26px; border-bottom: 1px solid var(--line); margin-bottom: 26px; scroll-margin-top: 96px; }
.pol-sec:last-child { border-bottom: 0; margin-bottom: 0; }
.pol-sec h2 { font-size: 22px; display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.pol-sec h2 .n { width: 36px; height: 36px; border-radius: 10px; font-size: 15px; }
.pol-sec p, .pol-sec li { font-size: 16px; line-height: 1.9; color: #3A4260; }
.pol-sec p { margin: 0 0 12px; }
.pol-sec ul { margin: 0 0 14px; padding-inline-start: 22px; }
.pol-sec li { margin-bottom: 6px; }
@media (max-width: 960px) {
  .pol-layout { grid-template-columns: minmax(0, 1fr); gap: 18px; }
  .pol-nav { position: sticky; top: 76px; z-index: 5; min-width: 0; padding: 8px; border-radius: 14px; }
  .pol-nav ul { flex-direction: row; flex-wrap: nowrap; gap: 6px; overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
  .pol-nav ul::-webkit-scrollbar { display: none; }
  .pol-nav li { flex: none; }
  .pol-nav a { padding: 6px 10px 6px 6px; background: #fff; border: 1px solid var(--line); border-radius: 999px; font-size: 13px; white-space: nowrap; }
}

/* FAQ page (shares the policies layout) */
.faq-search { display: flex; align-items: center; gap: 10px; padding: 11px 16px; border: 1.5px solid var(--line); border-radius: 999px; background: #fff; margin-bottom: 24px; transition: border-color .2s, box-shadow .2s; }
.faq-search:focus-within { border-color: var(--orange); box-shadow: 0 0 0 4px rgba(252, 88, 8, .12); }
.faq-search svg { width: 18px; height: 18px; color: var(--muted); flex: none; }
.faq-search input { border: 0; outline: 0; font: inherit; font-size: 15px; width: 100%; background: transparent; color: var(--ink); }
.faq-sec h2 .cnt { margin-inline-start: auto; font-size: 13px; font-weight: 600; color: var(--muted); white-space: nowrap; }
.faq-item { border: 1px solid var(--line); border-radius: 14px; background: #fff; margin-bottom: 10px; transition: border-color .2s, box-shadow .2s; }
.faq-item[open] { border-color: rgba(252, 88, 8, .45); box-shadow: 0 8px 24px rgba(12, 20, 52, .06); }
.faq-item summary { list-style: none; cursor: pointer; padding: 14px 16px; font-weight: 700; font-size: 16px; display: flex; align-items: center; gap: 12px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: ""; width: 9px; height: 9px; border-inline-end: 2px solid var(--orange); border-bottom: 2px solid var(--orange); transform: rotate(45deg); margin-inline-start: auto; margin-top: -4px; transition: transform .2s; flex: none; }
.faq-item[open] summary::after { transform: rotate(-135deg); margin-top: 4px; }
.faq-a { padding: 0 16px 16px; }
.faq-a p { margin: 0; font-size: 15.5px; line-height: 1.85; color: #3A4260; }
.faq-item[hidden], .faq-sec[hidden], .faq-results[hidden] { display: none; }
.faq-results { margin-bottom: 8px; }
.faq-empty { color: var(--muted); padding: 24px; text-align: center; border: 1px dashed var(--line); border-radius: 14px; }

/* The first real payment, and the promises that sit next to a price */
.first-pay { margin: 6px 0 0; font-size: 12.5px; font-weight: 700; color: var(--muted); }

.guarantees { background: #fff; border: 1px solid var(--line); border-radius: 24px; padding: 34px clamp(20px, 4vw, 40px); margin-bottom: 40px; box-shadow: var(--shadow); }
.guarantees .section-head { margin-bottom: 20px; }
.grt-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.grt-list a { display: flex; gap: 12px; align-items: flex-start; padding: 14px 16px; border: 1px solid var(--line); border-radius: 14px; background: var(--bg-soft); font-size: 14.5px; line-height: 1.65; color: var(--ink); transition: border-color .2s, background .2s, transform .2s; }
.grt-list a:hover { border-color: var(--orange); background: #fff; transform: translateY(-2px); }
.grt-list svg { width: 20px; height: 20px; flex: none; color: #197A43; margin-top: 2px; }
@media (max-width: 760px) { .grt-list { grid-template-columns: 1fr; } .guarantees { padding: 24px 18px; } }


/* Newsletter success pop-up */
.modal-card.nl-card { width: min(100%, 560px); text-align: center; padding: 40px 32px 32px; }
.nl-pop-icon { width: 72px; height: 72px; border-radius: 50%; margin: 0 auto 16px; display: grid; place-items: center; background: #E6F7EC; color: #197A43; }
.nl-pop-icon svg { width: 34px; height: 34px; }
.nl-pop h3 { font-size: 26px; margin: 0 0 8px; }
.nl-pop-lead { color: var(--muted); font-size: 16px; }
.nl-pop-list { list-style: none; margin: 18px auto 0; padding: 0; text-align: start; display: grid; gap: 10px; max-width: 440px; }
.nl-pop-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; line-height: 1.6; }
.nl-pop-list svg { width: 20px; height: 20px; flex: none; color: var(--orange); margin-top: 3px; }
.nl-pop-note { margin-top: 18px; font-size: 13.5px; color: var(--muted); line-height: 1.7; }
.nl-pop-actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-top: 22px; }
@media (max-width: 480px) { .modal-card.nl-card { padding: 34px 20px 24px; } .nl-pop-actions .btn { width: 100%; } }

/* Announcement bar (switched on from the dashboard settings) */
.announce { background: var(--yellow); color: var(--navy); font-weight: 700; font-size: 14px; }
.announce-inner { display: flex; align-items: center; justify-content: center; gap: 14px; min-height: 40px; padding-block: 6px; text-align: center; }
.announce a { text-decoration: underline; text-underline-offset: 3px; white-space: nowrap; }
.announce-close { background: none; border: 0; font-size: 22px; line-height: 1; color: inherit; cursor: pointer; padding: 0 4px; opacity: .7; }
.announce-close:hover { opacity: 1; }

.wa-float {
  position: fixed; bottom: 22px; inset-inline-end: 22px; z-index: 60;
  display: flex; align-items: center; gap: 10px; padding: 12px 18px 12px 14px; border-radius: 999px;
  background: #25D366; color: #fff; font-weight: 700; box-shadow: 0 12px 30px rgba(37, 211, 102, .4);
  transition: transform .2s var(--ease);
}
.wa-float:hover { transform: translateY(-3px); }
.wa-float svg { width: 24px; height: 24px; }
@media (max-width: 560px) { .wa-float span { display: none; } .wa-float { padding: 14px; } }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-visual img, .dots span { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Utilities ---------- */
.mt-1 { margin-top: 8px; } .mt-2 { margin-top: 16px; } .mt-3 { margin-top: 24px; } .mt-4 { margin-top: 40px; }
.center { text-align: center; }
.num { font-family: var(--font-en); }
.hidden { display: none !important; }
.ltr { direction: ltr; unicode-bidi: isolate; }
.text-muted { color: var(--muted); }
.visually-hidden { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; border: 0; overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; }
