/* ===========================================================
   CleanCrew — Riyadh cleaning service
   "Fresh & Premium" — bright, airy, trustworthy cleaning aesthetic
   Crisp white + fresh teal/mint (water + eco) · sunny sparkle accent
   Arabic-first (RTL) bilingual.
   =========================================================== */

:root {
  /* Brand blue — from logo (#0146B7 royal + white) */
  --teal:        #0146B7;
  --teal-deep:   #06183B;
  --teal-ink:    #06183B;
  --teal-soft:   #E8F1FE;
  --teal-tint:   #F4F7FC;

  /* Sky support */
  --sky:         #5999E9;
  --sky-deep:    #1E63E9;
  --sky-soft:    #E8F1FE;

  /* Sunny sparkle accent (used sparingly) */
  --sun:         #FFC23C;
  --sun-deep:    #F0A81E;

  /* Conversion green (WhatsApp) */
  --green:       #1FB35A;
  --green-dark:  #169049;
  --green-soft:  #E6F7EC;

  /* Neutrals */
  --ink:         #0C1C33;
  --body:        #3C4A60;
  --muted:       #6B7A90;
  --line:        #E4EAF3;
  --line-soft:   #EEF2F8;
  --white:       #FFFFFF;
  --paper:       #F5F8FD;
  --paper-2:     #EEF3FB;

  --gold:        #E6A621;

  /* Shape — soft, friendly */
  --r-sm: 12px;
  --r:    18px;
  --r-lg: 26px;
  --r-xl: 36px;

  /* Shadows — soft teal-tinted */
  --sh-sm:  0 3px 12px rgba(11,91,82,.06);
  --sh:     0 16px 40px rgba(11,91,82,.10);
  --sh-lg:  0 34px 70px rgba(11,91,82,.16);
  --sh-teal:0 16px 36px rgba(1,70,183,.28);
  --sh-green:0 14px 30px rgba(31,179,90,.30);

  --font-ar: "Tajawal", system-ui, sans-serif;
  --font-en: "Plus Jakarta Sans", system-ui, sans-serif;

  --maxw: 1220px;
}

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

body {
  font-family: var(--font-ar);
  color: var(--body);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

.en { font-family: var(--font-en); direction: ltr; unicode-bidi: isolate; display: inline-block; }

.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; position: relative; }

section { position: relative; }
.section { padding-block: clamp(66px, 9vw, 122px); }
.section-head { text-align: center; max-width: 740px; margin-inline: auto; margin-bottom: clamp(42px, 6vw, 64px); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14.5px; font-weight: 700; color: var(--teal-deep);
  background: var(--teal-soft); padding: 8px 17px; border-radius: 999px; margin-bottom: 18px;
}
.eyebrow svg { width: 15px; height: 15px; fill: var(--sun); }
.eyebrow.light { color: #fff; background: rgba(255,255,255,.16); }
.eyebrow.light svg { fill: var(--sun); }
.eyebrow .en { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; opacity: .85; font-weight: 700; }

h2.title { font-size: clamp(31px, 4.3vw, 52px); font-weight: 800; color: var(--ink); line-height: 1.12; letter-spacing: -.02em; }
h2.title .en { font-family: var(--font-en); font-weight: 700; display: block; font-size: .5em; color: var(--muted); margin-top: 9px; letter-spacing: -.01em; }
.section-head p.lede { margin-top: 16px; font-size: clamp(16px, 1.6vw, 19px); color: var(--muted); }

/* ============ Buttons ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 700; font-size: 17px; line-height: 1;
  padding: 16px 28px; border-radius: 999px; min-height: 56px;
  transition: transform .2s cubic-bezier(.2,.7,.2,1), box-shadow .25s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn .en { font-size: 12px; font-weight: 700; opacity: .85; }
.btn svg { width: 20px; height: 20px; flex: none; }
.btn-green { background: var(--green); color: #fff; box-shadow: var(--sh-green); }
.btn-green:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 18px 40px rgba(31,179,90,.42); }
.btn-blue { background: var(--teal); color: #fff; box-shadow: var(--sh-teal); }
.btn-blue:hover { background: var(--teal-deep); transform: translateY(-2px); }
.btn-outline { background: #fff; color: var(--teal-deep); box-shadow: inset 0 0 0 2px var(--line); }
.btn-outline:hover { box-shadow: inset 0 0 0 2px var(--teal); color: var(--teal-deep); transform: translateY(-2px); }
.btn-lg { font-size: 19px; padding: 19px 36px; min-height: 64px; }
.btn-block { width: 100%; }

/* ============ Header ============ */
.header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(150%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .25s ease, border-color .25s ease, background .25s ease;
}
.header.scrolled { box-shadow: var(--sh-sm); border-color: var(--line-soft); }
.header .wrap { display: flex; align-items: center; gap: 24px; height: 78px; transition: height .25s ease; }
.header.scrolled .wrap { height: 68px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 44px; width: auto; border-radius: 10px; }
.brand-name { font-weight: 800; font-size: 21px; color: var(--ink); letter-spacing: -.01em; }
.brand-name b { color: var(--teal); }
.nav { display: flex; align-items: center; gap: 4px; margin-inline-start: auto; }
.nav a { font-weight: 600; font-size: 15.5px; color: var(--body); padding: 9px 15px; border-radius: 10px; transition: background .18s, color .18s; }
.nav a:hover { background: var(--teal-tint); color: var(--teal-deep); }
.header-cta { display: flex; align-items: center; gap: 14px; margin-inline-start: 8px; }
.header-phone { display: flex; align-items: center; gap: 9px; font-weight: 700; color: var(--ink); font-size: 15.5px; white-space: nowrap; }
.header-phone svg { width: 18px; height: 18px; color: var(--green); }
.nav-toggle { display: none; }

/* ============ Hero ============ */
.hero {
  position: relative; padding-top: clamp(36px, 5vw, 60px); padding-bottom: clamp(90px, 11vw, 150px);
  background: radial-gradient(120% 110% at 88% -10%, var(--teal-soft) 0%, rgba(226,246,242,0) 52%),
              radial-gradient(90% 80% at 0% 10%, var(--sky-soft) 0%, rgba(231,243,252,0) 46%),
              linear-gradient(180deg, #fff 0%, var(--paper) 100%);
  overflow: hidden;
}
.hero .wrap { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 66px); align-items: center; }
.hero-copy { position: relative; z-index: 3; }

/* hero decor */
.hero-deco { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero-deco .blob { position: absolute; border-radius: 50%; filter: blur(8px); opacity: .5; }
.hero-deco .b1 { width: 36vw; height: 36vw; background: radial-gradient(circle at 35% 30%, var(--teal) 0%, rgba(17,181,164,0) 70%); top: -10%; inset-inline-start: 52%; opacity: .18; }
.hero-deco .b2 { width: 26vw; height: 26vw; background: radial-gradient(circle at 35% 30%, var(--sky) 0%, rgba(46,155,224,0) 70%); bottom: 4%; inset-inline-start: -8%; opacity: .15; }
.hero-deco .sp { position: absolute; fill: var(--sun); filter: drop-shadow(0 4px 10px rgba(240,168,30,.4)); animation: twinkle 3s ease-in-out infinite; }
.hero-deco .sp1 { width: 30px; top: 16%; inset-inline-start: 46%; }
.hero-deco .sp2 { width: 18px; top: 30%; inset-inline-start: 40%; animation-delay: .8s; }
.hero-deco .sp3 { width: 24px; top: 8%; inset-inline-end: 8%; fill: var(--teal); animation-delay: 1.4s; filter: drop-shadow(0 4px 10px rgba(17,181,164,.4)); }
@keyframes twinkle { 0%,100%{ opacity:.4; transform: scale(.8) rotate(0);} 50%{ opacity:1; transform: scale(1.12) rotate(20deg);} }

.rating-pill {
  display: inline-flex; align-items: center; gap: 10px; background: #fff;
  padding: 8px 16px 8px 8px; border-radius: 999px; box-shadow: var(--sh-sm);
  border: 1px solid var(--line-soft); margin-bottom: 24px; font-weight: 700; color: var(--ink); font-size: 14.5px;
}
.rating-pill .stars { color: var(--gold); letter-spacing: 1px; font-size: 14px; }
.rating-pill .badge { background: var(--teal); color: #fff; border-radius: 999px; padding: 4px 11px; font-size: 12.5px; font-weight: 800; }
.rating-pill .en { font-size: 11.5px; color: var(--muted); font-weight: 600; }

.hero h1 { font-size: clamp(38px, 6vw, 70px); font-weight: 800; color: var(--ink); line-height: 1.06; letter-spacing: -.025em; }
.hero h1 .hl { position: relative; white-space: nowrap; color: var(--teal-deep); display: inline-flex; align-items: flex-start; gap: 2px; }
.hero h1 .hl::after { content:""; position: absolute; inset-inline: 0; bottom: 6px; height: 14px; background: var(--sun); opacity: .3; border-radius: 8px; z-index: -1; }
.hero h1 .u-spark { width: .34em; height: .34em; fill: var(--sun); margin-top: .12em; }
.hero h1 .en-head { display: block; font-family: var(--font-en); font-weight: 700; font-size: .4em; color: var(--muted); margin-top: 16px; letter-spacing: -.01em; line-height: 1.1; }
.hero .subhead { margin-top: 22px; font-size: clamp(17px, 1.9vw, 21px); color: var(--body); max-width: 540px; font-weight: 500; }
.hero .subhead .en { display: block; font-size: 14.5px; color: var(--muted); margin-top: 7px; font-weight: 600; }

.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero-cta .btn { flex-direction: column; gap: 3px; }
.hero-cta .btn .lbl { display: flex; align-items: center; gap: 9px; }

.hero-assure { display: flex; flex-wrap: wrap; gap: 14px 24px; margin-top: 28px; }
.hero-assure li { display: flex; align-items: center; gap: 9px; font-weight: 600; color: var(--body); font-size: 14.5px; }
.hero-assure svg { width: 20px; height: 20px; color: var(--green); flex: none; }
.hero-assure .en { color: var(--muted); font-size: 11.5px; font-weight: 600; }

/* hero visual */
.hero-visual { position: relative; z-index: 2; }
.photo-wrap { position: relative; }
.hero-photo {
  width: 100%; aspect-ratio: 4 / 4.5;
  border-radius: 46% 54% 50% 50% / 12% 12% 14% 14%; /* organic squircle */
  border-radius: var(--r-xl);
  box-shadow: var(--sh-lg); overflow: hidden; border: 9px solid #fff; background: var(--teal-tint);
  position: relative; z-index: 1;
}
.photo-wrap::before { content:""; position: absolute; inset: -14px; border-radius: var(--r-xl);
  background: linear-gradient(150deg, rgba(17,181,164,.18), rgba(46,155,224,.12)); z-index: 0; transform: rotate(-3deg); }
.seal {
  position: absolute; z-index: 3; inset-inline-start: -14px; bottom: 40px;
  background: #fff; border-radius: 16px; box-shadow: var(--sh); padding: 12px 16px;
  display: flex; align-items: center; gap: 11px; border: 1px solid var(--line-soft);
}
.seal > svg { width: 34px; height: 34px; color: var(--teal); flex: none; }
.seal b { display: block; font-size: 15px; font-weight: 800; color: var(--ink); line-height: 1.1; }
.seal span { font-size: 12px; color: var(--muted); font-weight: 600; }

.float-card { position: absolute; background: #fff; border-radius: var(--r); box-shadow: var(--sh); padding: 14px 18px; display: flex; align-items: center; gap: 12px; z-index: 4; border: 1px solid var(--line-soft); }
.float-card .ic { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; flex: none; }
.float-card .ic.green { background: var(--green-soft); color: var(--green-dark); }
.float-card .ic.teal { background: var(--teal-soft); color: var(--teal-deep); }
.float-card svg { width: 22px; height: 22px; }
.float-card .ft-title { font-weight: 800; color: var(--ink); font-size: 16px; line-height: 1.1; }
.float-card .ft-sub { font-family: var(--font-en); font-size: 11.5px; color: var(--muted); font-weight: 600; }
.float-card.fc-1 { top: 12px; inset-inline-start: -22px; }
.float-card.fc-2 { bottom: -10px; inset-inline-end: -16px; }

/* wave divider */
.wave-bottom { position: absolute; inset-inline: 0; bottom: -1px; z-index: 1; line-height: 0; pointer-events: none; }
.wave-bottom svg { width: 100%; height: clamp(60px, 7vw, 110px); display: block; }
.wave-bottom path { fill: var(--paper); }

/* ============ Trust badges ============ */
.trust { background: var(--paper); padding-block: clamp(8px, 2vw, 20px) clamp(40px, 6vw, 64px); }
.trust-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.trust-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 22px; display: flex; align-items: flex-start; gap: 15px; transition: transform .25s, box-shadow .3s, border-color .25s; }
.trust-card:hover { transform: translateY(-5px); box-shadow: var(--sh); border-color: var(--teal); }
.trust-ic { width: 48px; height: 48px; border-radius: 14px; background: var(--teal-soft); color: var(--teal-deep); display: grid; place-items: center; flex: none; }
.trust-ic svg { width: 26px; height: 26px; }
.trust-card .tt { font-weight: 800; color: var(--ink); font-size: 16.5px; line-height: 1.2; }
.trust-card .tt .en { display: block; font-size: 11px; color: var(--muted); font-weight: 700; margin-top: 3px; letter-spacing: .05em; text-transform: uppercase; }
.trust-card .td { font-size: 13.5px; color: var(--muted); margin-top: 6px; line-height: 1.45; }

/* ============ How it works ============ */
.how { background: var(--paper); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; position: relative; }
.steps::before { content:""; position: absolute; top: 58px; inset-inline: 16%; height: 2px; background: repeating-linear-gradient(90deg, var(--teal) 0 8px, transparent 8px 16px); opacity: .3; z-index: 0; }
.step { background: #fff; border-radius: var(--r-lg); padding: 36px 30px; border: 1px solid var(--line); text-align: center; position: relative; z-index: 1; transition: transform .25s, box-shadow .3s; }
.step:hover { transform: translateY(-6px); box-shadow: var(--sh); }
.step-num { position: absolute; top: 20px; inset-inline-end: 26px; font-family: var(--font-en); font-weight: 800; font-size: 44px; color: var(--teal-soft); line-height: 1; }
.step-ic { width: 78px; height: 78px; border-radius: 24px; margin: 0 auto 22px; display: grid; place-items: center; background: linear-gradient(160deg, var(--teal) 0%, var(--teal-deep) 100%); color: #fff; box-shadow: var(--sh-teal); }
.step-ic svg { width: 36px; height: 36px; }
.step h3 { font-size: 21px; font-weight: 800; color: var(--ink); }
.step h3 .en { display: block; font-family: var(--font-en); font-size: 12.5px; color: var(--muted); font-weight: 600; margin-top: 5px; }
.step p { margin-top: 11px; color: var(--muted); font-size: 15px; }
.how-note { margin-top: 38px; text-align: center; }
.how-note span { display: inline-flex; align-items: center; gap: 10px; background: var(--green-soft); color: var(--green-dark); font-weight: 700; padding: 11px 22px; border-radius: 999px; font-size: 16px; }
.how-note .en { font-weight: 600; font-size: 13px; opacity: .85; }
.how-note svg { width: 18px; height: 18px; }

/* ============ Services / Pricing ============ */
.services { background: #fff; }
.price-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; align-items: stretch; }
.price-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px 26px; display: flex; flex-direction: column; position: relative; transition: transform .25s, box-shadow .3s, border-color .25s; }
.price-card:hover { transform: translateY(-7px); box-shadow: var(--sh-lg); border-color: var(--teal); }
.price-card.featured { border: 2px solid var(--teal); box-shadow: var(--sh); }
.price-card.featured::after { content:""; position: absolute; inset: 0; border-radius: var(--r-lg); background: linear-gradient(180deg, var(--teal-tint), transparent 30%); z-index: 0; pointer-events: none; }
.price-card.featured > * { position: relative; z-index: 1; }
.price-card.featured:hover { box-shadow: var(--sh-lg); }
.pop-badge { position: absolute; top: 0; inset-inline-start: 50%; transform: translate(-50%, -50%); background: var(--teal); color: #fff; font-weight: 800; font-size: 12.5px; padding: 7px 18px; border-radius: 999px; box-shadow: var(--sh-teal); white-space: nowrap; display: flex; align-items: center; gap: 7px; z-index: 2; }
[dir="rtl"] .pop-badge { transform: translate(50%, -50%); }
.pop-badge .en { font-size: 10.5px; opacity: .9; }
.pop-badge svg { fill: var(--sun); }
.svc-ic { width: 52px; height: 52px; border-radius: 15px; background: var(--teal-soft); color: var(--teal-deep); display: grid; place-items: center; margin-bottom: 17px; }
.price-card.featured .svc-ic { background: var(--teal); color: #fff; }
.svc-ic svg { width: 26px; height: 26px; }
.price-card h3 { font-size: 21px; font-weight: 800; color: var(--ink); line-height: 1.2; }
.price-card h3 .en { display: block; font-family: var(--font-en); font-size: 12.5px; color: var(--muted); font-weight: 600; margin-top: 4px; }
.svc-dur { font-size: 14px; color: var(--muted); margin-top: 7px; display: flex; align-items: center; gap: 7px; }
.svc-dur svg { width: 15px; height: 15px; }
.price { margin: 20px 0 4px; display: flex; align-items: center; flex-wrap: wrap; gap: 4px 9px; }
.price .amt { font-family: var(--font-en); font-weight: 800; font-size: 42px; color: var(--ink); line-height: 1; letter-spacing: -.02em; }
.price .from { font-size: 14px; font-weight: 700; color: var(--muted); align-self: flex-end; margin-bottom: 9px; }
.price .cur { font-weight: 800; color: var(--teal-deep); font-size: 16px; align-self: flex-end; margin-bottom: 7px; }
.price .cur .en { font-size: 11px; color: var(--muted); display: block; font-weight: 700; }
.price .was { font-family: var(--font-en); font-weight: 700; font-size: 20px; color: var(--muted); text-decoration: line-through; text-decoration-color: rgba(214,80,80,.65); text-decoration-thickness: 2px; }
.price .off { background: var(--green-soft); color: var(--green-dark); font-weight: 800; font-size: 11.5px; padding: 5px 10px; border-radius: 999px; white-space: nowrap; }
.promo-strip { display: inline-flex; align-items: center; gap: 9px; margin-top: 20px; background: linear-gradient(100deg, var(--green), var(--green-dark)); color: #fff; font-weight: 800; font-size: 15px; padding: 10px 20px; border-radius: 999px; box-shadow: var(--sh-green); }
.promo-strip svg { width: 18px; height: 18px; }
.promo-strip .en { font-weight: 600; font-size: 11.5px; opacity: .9; letter-spacing: .04em; }
.svc-feats { margin: 20px 0 24px; display: flex; flex-direction: column; gap: 12px; }
.svc-feats li { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; color: var(--body); }
.svc-feats li svg { width: 19px; height: 19px; color: var(--teal); flex: none; margin-top: 2px; }
.svc-feats li .en { display: block; font-size: 11.5px; color: var(--muted); font-weight: 600; }
.price-card .btn { margin-top: auto; }
.eco-note { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 14px; font-size: 12.5px; color: var(--teal-deep); font-weight: 700; }
.eco-note svg { width: 16px; height: 16px; }

/* ============ Guarantee band ============ */
.guarantee { background: var(--paper); }
.guarantee-card {
  background: linear-gradient(150deg, var(--teal) 0%, var(--teal-deep) 100%); color: #fff;
  border-radius: var(--r-xl); padding: clamp(36px, 5vw, 60px); display: grid;
  grid-template-columns: auto 1fr; gap: clamp(28px, 4vw, 52px); align-items: center;
  position: relative; overflow: hidden; box-shadow: var(--sh-lg);
}
.guarantee-card::before { content:""; position: absolute; inset-inline-end: -8%; top: -30%; width: 46%; aspect-ratio: 1; background: radial-gradient(circle, rgba(255,255,255,.18), transparent 65%); }
.g-seal { position: relative; width: 130px; height: 130px; display: grid; place-items: center; flex: none; }
.g-seal > svg:first-child { width: 62px; height: 62px; color: #fff; z-index: 1; }
.g-seal .ring { position: absolute; inset: 0; width: 130px; height: 130px; }
.g-seal .ring circle { fill: none; stroke: rgba(255,255,255,.45); stroke-width: 2; stroke-dasharray: 6 9; animation: spin 26s linear infinite; transform-origin: center; }
@keyframes spin { to { transform: rotate(360deg); } }
.g-body { position: relative; z-index: 1; }
.g-body h2 { font-size: clamp(26px, 3.6vw, 42px); font-weight: 800; line-height: 1.14; color: #fff; }
.g-body h2 .en { display: block; font-family: var(--font-en); font-size: .46em; font-weight: 700; color: rgba(255,255,255,.7); margin-top: 8px; }
.g-body p { margin-top: 14px; font-size: 17px; color: rgba(255,255,255,.88); max-width: 640px; }
.g-points { display: flex; flex-wrap: wrap; gap: 12px 22px; margin-top: 22px; }
.g-points span { display: inline-flex; align-items: center; gap: 9px; font-weight: 700; font-size: 15px; }
.g-points svg { width: 18px; height: 18px; color: #fff; background: rgba(255,255,255,.2); border-radius: 50%; padding: 3px; }

/* ============ Stats band ============ */
.stats { background: #fff; }
.stats .wrap { background: linear-gradient(160deg, var(--teal-ink) 0%, var(--teal-deep) 100%); border-radius: var(--r-xl); padding: clamp(38px, 5vw, 60px) clamp(24px, 4vw, 48px); color: #fff; overflow: hidden; box-shadow: var(--sh-lg); }
.stats .wrap::before { content:""; position: absolute; inset-inline-start: -6%; bottom: -40%; width: 40%; aspect-ratio: 1; background: radial-gradient(circle, rgba(255,255,255,.14), transparent 64%); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; z-index: 1; }
.stat { text-align: center; }
.stat .num { font-family: var(--font-en); font-weight: 800; font-size: clamp(40px, 5vw, 58px); line-height: 1; letter-spacing: -.03em; direction: ltr; unicode-bidi: isolate; color: #fff; }
.stat .num .u { color: var(--sun); }
.stat .lab { margin-top: 12px; font-weight: 700; font-size: 16px; }
.stat .lab .en { display: block; font-family: var(--font-en); font-size: 11.5px; color: rgba(255,255,255,.6); font-weight: 600; margin-top: 3px; }

/* ============ Final CTA ============ */
.final { background: #fff; }
.final-card {
  background: radial-gradient(120% 120% at 0 0, var(--teal) 0%, var(--teal-deep) 60%, var(--teal-ink) 100%); color: #fff;
  border-radius: var(--r-xl); padding: clamp(44px, 6vw, 76px); text-align: center; position: relative; overflow: hidden; box-shadow: var(--sh-lg);
}
.final-card > h2, .final-card > p, .final-card > .btn, .final-card > .final-sub { position: relative; z-index: 2; }
.final-card .sp { position: absolute; fill: rgba(255,255,255,.5); z-index: 1; animation: twinkle 3s ease-in-out infinite; }
.final-card .fsp1 { width: 30px; top: 20%; inset-inline-start: 12%; }
.final-card .fsp2 { width: 22px; bottom: 22%; inset-inline-end: 14%; animation-delay: 1s; fill: var(--sun); }
.final-card h2 { font-size: clamp(29px, 4vw, 48px); font-weight: 800; line-height: 1.12; }
.final-card h2 .en { display: block; font-family: var(--font-en); font-size: .44em; color: rgba(255,255,255,.72); font-weight: 700; margin-top: 12px; }
.final-card p { margin-top: 16px; font-size: 18px; color: rgba(255,255,255,.85); }
.final-card .btn { margin-top: 32px; }
.final-sub { margin-top: 20px; font-size: 14px; color: rgba(255,255,255,.78); display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }
.final-sub span { display: inline-flex; align-items: center; gap: 7px; }
.final-sub svg { width: 16px; height: 16px; color: #fff; }

/* ============ Footer ============ */
.footer { background: var(--teal-ink); color: rgba(255,255,255,.7); padding-block: 60px 30px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr 1.4fr; gap: 32px; }
.f-emails li { align-items: center; }
.f-emails a { font-family: var(--font-en); font-size: 13.5px; word-break: break-all; }
.footer .brand-name { color: #fff; }
.footer .brand-name b { color: var(--sun); }
.footer .f-about { margin-top: 16px; font-size: 14.5px; line-height: 1.7; max-width: 330px; }
.footer h4 { color: #fff; font-size: 16px; font-weight: 800; margin-bottom: 16px; }
.footer ul li { margin-bottom: 11px; }
.footer ul a { font-size: 14.5px; transition: color .18s; }
.footer ul a:hover { color: var(--sun); }
.f-contact li { display: flex; align-items: center; gap: 10px; font-size: 14.5px; margin-bottom: 13px; }
.f-contact svg { width: 17px; height: 17px; color: var(--sun); flex: none; }
.f-social { display: flex; gap: 10px; margin-top: 18px; }
.f-social a { width: 40px; height: 40px; border-radius: 12px; background: rgba(255,255,255,.08); display: grid; place-items: center; transition: background .2s, transform .2s; }
.f-social a:hover { background: var(--teal); transform: translateY(-3px); }
.f-social svg { width: 19px; height: 19px; color: #fff; }
.footer-bottom { margin-top: 42px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.14); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13.5px; }

/* ============ Sticky mobile bar ============ */
.mobile-bar { position: fixed; bottom: 0; inset-inline: 0; z-index: 70; background: #fff; box-shadow: 0 -8px 30px rgba(11,91,82,.14); padding: 11px 16px calc(11px + env(safe-area-inset-bottom)); display: none; gap: 10px; border-top: 1px solid var(--line); }
.mobile-bar .btn { flex: 1; min-height: 50px; padding-block: 12px; }
.fab { position: fixed; bottom: 22px; inset-inline-end: 22px; z-index: 65; width: 60px; height: 60px; border-radius: 50%; background: var(--green); color: #fff; display: grid; place-items: center; box-shadow: var(--sh-green); transition: transform .2s; animation: fab-pulse 2.6s ease-in-out infinite; }
.fab:hover { transform: scale(1.08); }
.fab svg { width: 30px; height: 30px; }
@keyframes fab-pulse { 0%,100%{ box-shadow: 0 14px 30px rgba(31,179,90,.35);} 50%{ box-shadow: 0 14px 30px rgba(31,179,90,.6), 0 0 0 10px rgba(31,179,90,.10);} }

/* ============ Quote modal ============ */
.modal-overlay { position: fixed; inset: 0; z-index: 100; background: rgba(11,48,44,.5); backdrop-filter: blur(5px); display: none; align-items: center; justify-content: center; padding: 20px; opacity: 0; transition: opacity .25s; }
.modal-overlay.open { display: flex; opacity: 1; }
.modal { background: #fff; border-radius: var(--r-xl); width: 100%; max-width: 480px; max-height: 92vh; overflow-y: auto; box-shadow: var(--sh-lg); transform: translateY(16px) scale(.98); transition: transform .3s ease; }
.modal-overlay.open .modal { transform: none; }
.modal-head { padding: 28px 28px 0; position: relative; }
.modal-head h3 { font-size: 24px; font-weight: 800; color: var(--ink); }
.modal-head h3 .en { display: block; font-family: var(--font-en); font-size: 13px; color: var(--muted); font-weight: 700; margin-top: 4px; }
.modal-head p { margin-top: 8px; color: var(--muted); font-size: 14.5px; }
.modal-close { position: absolute; top: 18px; inset-inline-end: 18px; width: 38px; height: 38px; border-radius: 50%; background: var(--paper-2); color: var(--body); display: grid; place-items: center; transition: background .18s; }
.modal-close:hover { background: var(--line); }
.modal-close svg { width: 20px; height: 20px; }
.modal-body { padding: 22px 28px 28px; display: flex; flex-direction: column; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-weight: 700; color: var(--ink); font-size: 14.5px; display: flex; align-items: baseline; gap: 6px; flex-wrap: wrap; }
.field label .en { font-weight: 600; color: var(--muted); font-size: 12px; }
.field input, .field select { font-family: var(--font-ar); font-size: 16px; padding: 13px 15px; border-radius: var(--r-sm); border: 1.5px solid var(--line); background: #fff; color: var(--ink); transition: border-color .18s, box-shadow .18s; width: 100%; }
.field input:focus, .field select:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 4px var(--teal-soft); }
.seg { display: flex; gap: 8px; }
.seg.wrap { flex-wrap: wrap; }
.seg.wrap button { flex: 1 1 calc(50% - 4px); }
.seg button { flex: 1; padding: 12px 10px; border-radius: var(--r-sm); border: 1.5px solid var(--line); font-weight: 700; color: var(--body); font-size: 15px; transition: all .15s; background: #fff; line-height: 1.25; }
.seg button.active { border-color: var(--teal); background: var(--teal-soft); color: var(--teal-deep); }
.seg button .en { display: block; font-size: 11px; color: var(--muted); font-weight: 600; margin-top: 2px; }
.seg button.active .en { color: var(--teal-deep); opacity: .8; }
.qf-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.stepper { display: flex; align-items: center; justify-content: space-between; border: 1.5px solid var(--line); border-radius: var(--r-sm); padding: 6px; gap: 6px; }
.stepper button { width: 38px; height: 38px; border-radius: 10px; background: var(--teal-tint); color: var(--teal-deep); font-size: 22px; font-weight: 800; display: grid; place-items: center; transition: background .15s, transform .1s; flex: none; }
.stepper button:hover { background: var(--teal-soft); }
.stepper button:active { transform: scale(.92); }
.stepper button:disabled { opacity: .4; cursor: not-allowed; }
.stepper .val { font-family: var(--font-en); font-weight: 800; font-size: 19px; color: var(--ink); min-width: 26px; text-align: center; }
.estimate { margin-top: 2px; background: linear-gradient(135deg, var(--teal-soft) 0%, var(--green-soft) 100%); border: 1.5px solid var(--teal-soft); border-radius: var(--r); padding: 16px 20px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.estimate .lbl2 { font-weight: 800; color: var(--ink); font-size: 15px; }
.estimate .lbl2 .en { display: block; color: var(--muted); font-size: 11px; font-weight: 600; margin-top: 2px; }
.estimate .lbl2 small { display: block; color: var(--muted); font-size: 11px; font-weight: 600; margin-top: 3px; }
.estimate .val2 { text-align: left; direction: ltr; flex: none; }
.estimate .val2 .now { font-family: var(--font-en); font-weight: 800; font-size: 33px; color: var(--green-dark); line-height: 1; }
.estimate .val2 .cur2 { font-size: 14px; font-weight: 800; color: var(--green-dark); }
.estimate .val2 .was2 { font-family: var(--font-en); font-size: 14px; color: var(--muted); text-decoration: line-through; text-decoration-color: rgba(214,80,80,.6); margin-top: 4px; }
.modal .btn { margin-top: 4px; }
.modal-foot { text-align: center; font-size: 12.5px; color: var(--muted); padding-bottom: 24px; }

/* ============ Reveal ============ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .fab, .hero-deco .sp, .g-seal .ring circle, .final-card .sp { animation: none; }
}

/* ============ Responsive ============ */
@media (max-width: 1040px) {
  .trust-row { grid-template-columns: repeat(2, 1fr); }
  .price-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 440px; margin-inline: auto; }
  .hero-photo { aspect-ratio: 16 / 11; }
  .nav, .header-phone { display: none; }
  .nav-toggle { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 12px; background: var(--teal-tint); color: var(--teal-deep); margin-inline-start: auto; }
  .nav-toggle svg { width: 24px; height: 24px; }
  .steps { grid-template-columns: 1fr; }
  .steps::before { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 16px; }
  .guarantee-card { grid-template-columns: 1fr; text-align: center; gap: 22px; }
  .g-seal { margin-inline: auto; }
  .g-points { justify-content: center; }
}
@media (max-width: 768px) {
  body { font-size: 16px; }
  .section { padding-block: 60px; }
  .trust-row { display: flex; overflow-x: auto; gap: 14px; scroll-snap-type: x mandatory; padding-bottom: 8px; margin-inline: -24px; padding-inline: 24px; scrollbar-width: none; }
  .trust-row::-webkit-scrollbar { display: none; }
  .trust-card { flex: 0 0 78%; scroll-snap-align: start; }
  .price-grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  .mobile-bar { display: flex; }
  .fab { display: none; }
  body { padding-bottom: 76px; }
  .footer { padding-bottom: 96px; }
  .hero-cta .btn { flex: 1; }
  .float-card.fc-1 { inset-inline-start: -6px; }
  .float-card.fc-2 { inset-inline-end: -6px; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
  .seal { inset-inline-start: 4px; bottom: 14px; }
}
