/* =========================================================
   Air Care — Premium Design System v2
   Aesthetic: Refined corporate, glacial/airy, with cyan-blue accents.
   ========================================================= */

:root{
  --brand:        #0066FF;
  --brand-600:    #0052CC;
  --brand-700:    #003D99;
  --brand-deep:   #001233;
  --accent:       #00E5FF;
  --accent-2:     #7CD0FF;
  --accent-soft:  #E6F8FF;

  --ink:          #0B1426;
  --ink-2:        #475569;
  --ink-3:        #94A3B8;
  --ink-4:        #CBD5E1;
  --bg:           #FFFFFF;
  --bg-2:         #F7FAFD;
  --bg-3:         #ECF4FB;
  --border:       #E6EDF5;
  --border-2:     #D1DCE8;

  --radius-xs:    6px;
  --radius-sm:    10px;
  --radius:       16px;
  --radius-lg:    24px;
  --radius-xl:    32px;
  --radius-pill:  999px;

  --shadow-1:     0 1px 2px rgba(15,23,42,.04), 0 1px 3px rgba(15,23,42,.05);
  --shadow-2:     0 4px 12px rgba(15,23,42,.06), 0 12px 32px rgba(15,23,42,.08);
  --shadow-3:     0 10px 30px rgba(0,102,255,.16), 0 4px 10px rgba(0,102,255,.10);

  --ff-ar:        "Tajawal","Plus Jakarta Sans",system-ui,-apple-system,Segoe UI,Roboto,sans-serif;
  --ff-en:        "Plus Jakarta Sans","Tajawal",system-ui,-apple-system,Segoe UI,Roboto,sans-serif;
  --ff-display:   "Sora","Plus Jakarta Sans","Tajawal",system-ui,sans-serif;

  --container:    1240px;
  --gutter:       clamp(18px, 4vw, 36px);
  --header-h:     78px;

  --ease:         cubic-bezier(.2,.7,.2,1);
  --ease-out:     cubic-bezier(.16,1,.3,1);
}

*,*::before,*::after{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }
html{ scroll-behavior:smooth; -webkit-text-size-adjust:100%; }
img,video,iframe{ max-width:100%; display:block; }
svg{ display:inline-block; flex-shrink:0; vertical-align: middle; }
button{ font:inherit; cursor:pointer; }
a{ color:inherit; text-decoration:none; }
::selection{ background: var(--brand); color:#fff; }

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

html[lang="en"] body{ font-family: var(--ff-en); }

h1,h2,h3,h4{
  font-family: var(--ff-display);
  font-weight: 800;
  letter-spacing: -.025em;
  line-height: 1.1;
  color: var(--ink);
  margin: 0 0 .5em;
}
h1{ font-size: clamp(2.2rem, 5vw, 4rem); letter-spacing: -.035em; }
h2{ font-size: clamp(1.7rem, 3.4vw, 2.6rem); }
h3{ font-size: clamp(1.1rem, 1.6vw, 1.25rem); font-weight: 700; }
p{ margin: 0 0 1em; color: var(--ink-2); font-size: 1rem; }
small{ color: var(--ink-3); }

html[lang="ar"] h1, html[lang="ar"] h2, html[lang="ar"] h3{ letter-spacing: 0; }

.container{ width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section{ padding: clamp(64px, 9vw, 120px) 0; position: relative; }
.section.alt{ background: var(--bg-2); }
.section.dark{
  background: linear-gradient(160deg, var(--brand-deep) 0%, #002766 70%, #003D99 100%);
  color: #DCE7F5;
}
.section.dark h1,.section.dark h2,.section.dark h3{ color:#fff; }
.section.dark p{ color: rgba(220,231,245,.78); }

.section-head{ max-width: 740px; margin: 0 auto 56px; text-align:center; }
.section-head p{ font-size: 1.06rem; }
.eyebrow{
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--brand);
  background: linear-gradient(135deg, var(--bg-3), var(--accent-soft));
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
  border: 1px solid rgba(0,102,255,.12);
}

/* Buttons */
.btn{
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px;
  border-radius: var(--radius-pill);
  font-weight: 700; font-size: .95rem;
  border: 1.5px solid transparent;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .25s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
  white-space: nowrap; line-height: 1;
  position: relative; overflow: hidden;
}
.btn-primary{
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-600) 100%);
  color: #fff;
  box-shadow: var(--shadow-3);
}
.btn-primary:hover{ transform: translateY(-2px); box-shadow: 0 14px 36px rgba(0,102,255,.32); }
.btn-outline{ background: transparent; color: var(--ink); border-color: var(--border-2); }
.btn-outline:hover{ border-color: var(--brand); color: var(--brand); background: var(--bg-3); }
.btn-ghost{ background: transparent; color: var(--ink); padding: 10px 14px; }
.btn-ghost:hover{ color: var(--brand); }
.btn-light{
  background: rgba(255,255,255,.14); color: #fff;
  border: 1px solid rgba(255,255,255,.24);
  backdrop-filter: blur(12px);
}
.btn-light:hover{ background: rgba(255,255,255,.22); transform: translateY(-2px); }
.btn-wa{
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #fff;
  box-shadow: 0 10px 24px rgba(37,211,102,.28);
}
.btn-wa:hover{ transform: translateY(-2px); box-shadow: 0 14px 32px rgba(37,211,102,.36); }
.btn .arrow{ display: inline-flex; align-items: center; transition: transform .3s var(--ease); }
html[dir="rtl"] .btn .arrow{ transform: scaleX(-1); }
.btn:hover .arrow{ transform: translateX(3px); }
html[dir="rtl"] .btn:hover .arrow{ transform: scaleX(-1) translateX(3px); }

.lang-pill{
  display:inline-flex; align-items:center; justify-content:center;
  min-width: 38px; padding: 5px 12px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--bg-3), var(--accent-soft));
  color: var(--brand);
  font-weight: 800; font-size: .78rem; letter-spacing: .06em;
  border: 1px solid rgba(0,102,255,.12);
}

/* Header */
.site-header{
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(230,237,245,.7);
}
.header-inner{ display: flex; align-items: center; justify-content: space-between; gap: 18px; height: var(--header-h); }
.brand{ display: flex; align-items: center; gap: 12px; }
.brand-logo{
  width: 42px; height: 42px; min-width: 42px; max-width: 42px;
  border-radius: 10px; object-fit: cover; background: #fff;
  box-shadow: var(--shadow-1);
}
.brand-title{ font-family: var(--ff-display); font-weight: 800; font-size: 1rem; color: var(--ink); line-height: 1.2; }
.brand-sub{ font-size: .76rem; color: var(--ink-3); font-weight: 500; }

.nav{ display: flex; align-items: center; gap: 2px; }
.nav-link{
  padding: 10px 16px; border-radius: var(--radius-pill);
  font-weight: 600; font-size: .94rem; color: var(--ink-2);
  transition: color .2s var(--ease), background .2s var(--ease);
}
.nav-link:hover{ color: var(--brand); }
.nav-link.active{ color: var(--brand); background: var(--bg-3); }

.header-actions{ display: flex; align-items: center; gap: 10px; }

.burger{
  display: none;
  width: 44px; height: 44px; min-width: 44px; max-width: 44px;
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: 12px;
  flex-direction: column; gap: 4px; align-items: center; justify-content: center;
}
.burger span{ width: 18px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .25s var(--ease), opacity .2s var(--ease); }
.burger.is-open span:nth-child(1){ transform: translateY(6px) rotate(45deg); }
.burger.is-open span:nth-child(2){ opacity: 0; }
.burger.is-open span:nth-child(3){ transform: translateY(-6px) rotate(-45deg); }

.mobile-nav{ display: none; background: #fff; border-bottom: 1px solid var(--border); padding: 12px 0 20px; }
.mobile-nav.is-open{ display: block; }
.mobile-link{ display: block; padding: 12px 14px; border-radius: 10px; font-weight: 600; color: var(--ink); }
.mobile-link:hover, .mobile-link.active{ background: var(--bg-3); color: var(--brand); }
.mobile-actions{ display: flex; gap: 10px; margin-top: 14px; padding: 0 14px; }
.mobile-actions .btn{ flex: 1; justify-content: center; }

/* Hero */
.hero{
  position: relative; min-height: 92vh;
  display: flex; align-items: center;
  overflow: hidden; isolation: isolate;
  padding: 80px 0 60px;
}
.hero.compact{ min-height: 52vh; padding: 60px 0 40px; }
.hero-bg{
  position: absolute; inset: 0;
  background-position: center; background-size: cover; background-repeat: no-repeat;
  filter: brightness(.5) saturate(115%);
  z-index: -2; transform: scale(1.05);
}
.hero-overlay{
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 70% at 20% 10%, rgba(0,102,255,.55), transparent 60%),
    radial-gradient(55% 60% at 90% 90%, rgba(0,229,255,.32), transparent 70%),
    linear-gradient(180deg, rgba(0,18,51,.45) 0%, rgba(0,18,51,.85) 80%);
  z-index: -1;
}
.hero-grid{
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: -1;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 0%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 0%, transparent 80%);
}
.hero-content{ color: #fff; max-width: 780px; position: relative; }
.hero-content .eyebrow{
  background: rgba(255,255,255,.1); color: #fff;
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(8px);
}
.hero h1{ color:#fff; letter-spacing: -.04em; font-weight: 800; }
.hero h1 .accent-word{
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.hero-sub{
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  color: rgba(255,255,255,.82);
  max-width: 600px; margin-bottom: 32px; line-height: 1.7;
}
.hero-actions{ display: flex; flex-wrap: wrap; gap: 14px; margin-top: 8px; }

.airflow{
  position: absolute; top: 50%; left: -8%;
  width: 116%; height: 70%;
  transform: translateY(-50%);
  pointer-events: none; opacity: .55; z-index: -1;
}

.hero-badges{
  display: flex; flex-wrap: wrap; gap: 18px 28px;
  margin-top: 36px; padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.hero-badge{
  display: inline-flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,.78);
  font-size: .88rem; font-weight: 600;
}
.hero-badge .dot{
  width: 8px; height: 8px; min-width: 8px; max-width: 8px;
  border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 12px var(--accent); display: inline-block;
}

/* Cards / grids */
.grid{ display: grid; gap: 22px; }
.grid.cols-2{ grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.grid.cols-3{ grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid.cols-4{ grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

.card{
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out), border-color .25s var(--ease);
  position: relative; overflow: hidden;
}
.card::before{
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,102,255,.04) 0%, transparent 50%);
  opacity: 0; transition: opacity .4s var(--ease);
  pointer-events: none;
}
.card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-2); border-color: rgba(0,102,255,.18); }
.card:hover::before{ opacity: 1; }
.card h3{ margin-bottom: 10px; }
.card p{ margin-bottom: 0; font-size: .95rem; line-height: 1.65; }

.card .card-icon{
  width: 48px; height: 48px;
  min-width: 48px; max-width: 48px;
  flex-shrink: 0;
  border-radius: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--brand) 0%, var(--accent) 130%);
  color: #fff;
  margin-bottom: 18px;
  box-shadow: 0 8px 20px rgba(0,102,255,.28), inset 0 1px 0 rgba(255,255,255,.18);
  position: relative;
  transition: transform .35s var(--ease-out);
}
.card .card-icon svg{
  width: 22px; height: 22px;
  max-width: 22px; max-height: 22px;
}
.card:hover .card-icon{ transform: scale(1.08) rotate(-3deg); }

.card.dark{ background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.08); color: #DCE7F5; }
.card.dark h3{ color:#fff; }
.card.dark p{ color: rgba(220,231,245,.7); }

/* Branch card */
.branch-card{
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 0; overflow: hidden; padding: 0;
  border: 1px solid var(--border);
}
.branch-card .info{ padding: 32px; }
.branch-card .map{ min-height: 340px; background: var(--bg-2); }
.branch-card iframe{ width: 100%; height: 100%; border: 0; display: block; }
.branch-card .meta{ display: grid; gap: 12px; margin: 18px 0 24px; color: var(--ink-2); font-size: .95rem; }
.branch-card .meta .row{ display: flex; align-items: flex-start; gap: 12px; }
.branch-card .meta svg{
  width: 18px; height: 18px;
  min-width: 18px; max-width: 18px;
  color: var(--brand); flex-shrink: 0; margin-top: 4px;
}

/* Stats */
.stats{
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: linear-gradient(180deg, #fff 0%, var(--bg-2) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 50px;
  box-shadow: var(--shadow-1);
}
.stat{ padding: 32px 18px; text-align: center; border-inline-end: 1px solid var(--border); }
.stat:last-child{ border-inline-end: 0; }
.stat-num{
  font-family: var(--ff-display);
  font-size: clamp(1.6rem, 3.8vw, 2.8rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-700) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: var(--brand);
  line-height: 1; margin-bottom: 8px; letter-spacing: -.02em;
}
.stat-label{ color: var(--ink-2); font-weight: 600; font-size: .88rem; }

/* Sectors */
.sectors{ display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.sectors .chip{
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  background: #fff;
  border: 1px solid var(--border);
  font-weight: 600; font-size: .9rem; color: var(--ink);
  transition: all .25s var(--ease);
}
.sectors .chip:hover{ border-color: var(--brand); color: var(--brand); background: var(--bg-3); transform: translateY(-2px); }
.sectors .chip svg{
  width: 14px; height: 14px;
  min-width: 14px; max-width: 14px;
  color: var(--brand);
}

/* Feature row */
.feature-row{ display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 64px; }
.feature-row .media{
  border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--bg-3), #fff);
  box-shadow: var(--shadow-2);
  position: relative;
}
.feature-row .media img, .feature-row .media svg{ width: 100%; height: 100%; object-fit: cover; }

/* SHOP PROMO — special section */
.shop-promo{
  background: linear-gradient(135deg, #001233 0%, #002766 50%, #003D99 100%);
  border-radius: var(--radius-xl);
  padding: clamp(40px, 6vw, 72px);
  color: #fff; position: relative; overflow: hidden; isolation: isolate;
}
.shop-promo::before{
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(50% 60% at 90% 10%, rgba(0,229,255,.28), transparent 70%),
    radial-gradient(40% 50% at 0% 100%, rgba(0,102,255,.36), transparent 65%);
  z-index: -1;
}
.shop-promo::after{
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 40px 40px; z-index: -1;
}
.shop-promo h2{ color: #fff; }
.shop-promo p{ color: rgba(255,255,255,.78); font-size: 1.04rem; max-width: 560px; }
.shop-promo .shop-grid{ display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; align-items: center; }
.shop-promo .price-tag{
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  background: rgba(0,229,255,.12);
  color: var(--accent);
  border: 1px solid rgba(0,229,255,.3);
  border-radius: var(--radius-pill);
  font-size: .85rem; font-weight: 700; letter-spacing: .04em;
  margin-bottom: 18px;
}
.shop-promo .price-tag .dot{
  width: 6px; height: 6px; min-width:6px; max-width:6px;
  border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
}
.shop-promo .url-pill{
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 24px;
  padding: 12px 18px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  color: rgba(255,255,255,.92);
  font-family: var(--ff-en);
  font-size: .92rem; font-weight: 600; letter-spacing: .02em;
}
.shop-promo .url-pill svg{
  width: 16px; height: 16px; min-width:16px; max-width:16px;
  color: var(--accent);
}
.shop-visual{
  position: relative; aspect-ratio: 4/5;
  border-radius: var(--radius-lg); overflow: hidden;
  background: linear-gradient(160deg, #0a1a3d 0%, #001233 100%);
  border: 1px solid rgba(255,255,255,.08);
}
.shop-visual svg{ width: 100%; height: 100%; display: block; }

/* App teaser */
.app-teaser{
  background: linear-gradient(135deg, var(--brand-deep) 0%, #002766 60%, #0040a8 100%);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: clamp(40px, 6vw, 72px);
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: center;
  position: relative; overflow: hidden;
}
.app-teaser::before{
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(40% 60% at 100% 0%, rgba(0,229,255,.28), transparent 70%),
    radial-gradient(40% 60% at 0% 100%, rgba(0,102,255,.4), transparent 60%);
  pointer-events: none;
}
.app-teaser h2{ color:#fff; }
.app-teaser p{ color: rgba(255,255,255,.78); }
.app-teaser .badges{ display:flex; gap: 12px; margin-top: 22px; flex-wrap: wrap; }
.app-badge{
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(11,20,55,.6);
  border: 1px solid rgba(255,255,255,.12);
  color: #fff;
  padding: 12px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  transition: transform .25s var(--ease), background .25s var(--ease);
  backdrop-filter: blur(8px);
}
.app-badge:hover{ transform: translateY(-2px); background: rgba(11,20,55,.8); }
.app-badge svg{ width: 22px; height: 22px; min-width: 22px; max-width: 22px; }
.app-badge small{ color: rgba(149,168,198,.85); display:block; font-size: .68rem; font-weight: 500; }
.app-badge strong{ font-size: .92rem; }

.phone-mock{
  position: relative; z-index: 1;
  width: 100%; max-width: 280px; margin-inline: auto;
  aspect-ratio: 9/18;
  background: linear-gradient(160deg, #1a2b4d, #0b1437);
  border-radius: 40px;
  border: 8px solid #0a1430;
  box-shadow: 0 40px 80px rgba(0,0,0,.45), inset 0 1px 0 rgba(255,255,255,.06);
  display: grid; place-items: center;
  text-align: center; padding: 24px;
}
.phone-mock::before{
  content: ""; position: absolute; top: 8px; left: 50%;
  transform: translateX(-50%);
  width: 110px; height: 22px;
  background: #050a18; border-radius: 0 0 14px 14px;
}

/* Process steps */
.steps{
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px; counter-reset: step;
}
.step{
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  position: relative; counter-increment: step;
  transition: transform .35s var(--ease), border-color .25s var(--ease), box-shadow .35s var(--ease);
}
.step:hover{ transform: translateY(-4px); border-color: rgba(0,102,255,.18); box-shadow: var(--shadow-2); }
.step::before{
  content: counter(step, decimal-leading-zero);
  position: absolute; top: 20px; inset-inline-end: 24px;
  font-family: var(--ff-display);
  font-size: 1.6rem; font-weight: 800;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--brand); opacity: .45;
}
.step h3{ margin-top: 12px; }

/* CTA */
.cta{
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-600) 100%);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: clamp(32px, 5vw, 56px);
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
  position: relative; overflow: hidden;
}
.cta::after{
  content: ""; position: absolute; inset: -40%;
  background: radial-gradient(40% 30% at 80% 80%, rgba(0,229,255,.4), transparent 70%);
  pointer-events: none;
}
.cta > *{ position: relative; z-index: 1; }
.cta h2{ color: #fff; margin: 0 0 6px; }
.cta p{ color: rgba(255,255,255,.88); margin: 0; }
.cta-actions{ display: flex; flex-wrap: wrap; gap: 12px; }
.cta .btn-primary{
  background: #fff; color: var(--brand-700);
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
}
.cta .btn-primary:hover{ background: #f1f5fb; }
.cta .btn-outline{ color:#fff; border-color: rgba(255,255,255,.4); background: transparent; }
.cta .btn-outline:hover{ background: rgba(255,255,255,.12); color:#fff; border-color:#fff; }

/* Forms */
.form-grid{ display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field{ display: flex; flex-direction: column; gap: 8px; }
.field.full{ grid-column: 1 / -1; }
.field label{ font-weight: 600; font-size: .9rem; color: var(--ink); }
.field input, .field select, .field textarea{
  width: 100%; padding: 14px 18px;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  background: #fff; font: inherit; color: var(--ink);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus{
  outline: none; border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(0,102,255,.12);
}
.field textarea{ min-height: 140px; resize: vertical; }

/* Profile embed */
.profile-embed{
  position: relative; width: 100%; padding-top: 56.25%;
  box-shadow: var(--shadow-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-2);
  border: 1px solid var(--border);
}
.profile-embed iframe{ position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* Form embed (Microsoft Forms) — taller ratio for forms */
.form-embed{
  position: relative;
  width: 100%;
  max-width: 880px;
  margin-inline: auto;
  height: 780px;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-2);
  border: 1px solid var(--border);
}
.form-embed iframe{
  width: 100%; height: 100%; border: 0; display: block;
}
.form-embed .loading{
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 14px;
  color: var(--ink-3); font-size: .9rem;
  background: var(--bg-2);
  pointer-events: none;
}
.form-embed .loading .spinner{
  width: 32px; height: 32px;
  border: 3px solid var(--border);
  border-top-color: var(--brand);
  border-radius: 50%;
  animation: spin .9s linear infinite;
}
@keyframes spin{ to{ transform: rotate(360deg); } }
.form-embed iframe[data-loaded] + .loading{ display: none; }
@media (max-width: 560px){
  .form-embed{ height: 920px; }
}

/* Footer */
.site-footer{
  background: linear-gradient(180deg, #0a1426 0%, #050a18 100%);
  color: rgba(182,200,224,.85);
  padding: 80px 0 28px;
  margin-top: 40px;
  position: relative; overflow: hidden;
}
.site-footer::before{
  content: ""; position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--brand), transparent);
}
.footer-grid{
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-grid h4{
  color: #fff; font-size: .98rem; margin-bottom: 18px;
  font-family: var(--ff-display); font-weight: 700;
}
.footer-grid ul{ list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.footer-grid a{ color: rgba(182,200,224,.78); font-size: .94rem; transition: color .2s var(--ease); }
.footer-grid a:hover{ color: var(--accent); }
.footer-brand{ display: flex; gap: 14px; align-items: flex-start; margin-bottom: 16px; }
.footer-brand img{
  width: 56px; height: 56px; min-width: 56px; max-width: 56px;
  border-radius: 12px;
}
.footer-brand .name{ font-weight: 800; color: #fff; font-family: var(--ff-display); }
.socials{ display: flex; gap: 10px; margin-top: 16px; }
.socials a{
  width: 36px; height: 36px; min-width: 36px; max-width: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.06);
  border-radius: 10px;
  transition: background .2s var(--ease), transform .2s var(--ease);
  border: 1px solid rgba(255,255,255,.06);
}
.socials a:hover{ background: var(--brand); color:#fff; transform: translateY(-2px); }
.socials svg{ width: 16px; height: 16px; max-width: 16px; max-height: 16px; }

.footer-bottom{
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: .84rem; color: rgba(143,161,189,.7);
}

/* Reveal */
.reveal{
  opacity: 0; transform: translateY(28px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
.reveal.is-visible{ opacity: 1; transform: translateY(0); }
.reveal[data-delay="100"]{ transition-delay: .1s; }
.reveal[data-delay="200"]{ transition-delay: .2s; }
.reveal[data-delay="300"]{ transition-delay: .3s; }
.reveal[data-delay="400"]{ transition-delay: .4s; }

@media (prefers-reduced-motion: reduce){
  .reveal, .reveal.is-visible{ transition: none; transform: none; opacity: 1; }
  *{ animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

/* Floating WhatsApp */
.float-wa{
  position: fixed; bottom: 24px; inset-inline-end: 24px; z-index: 60;
  width: 52px; height: 52px; min-width: 52px; max-width: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 30px rgba(37,211,102,.36);
  transition: transform .3s var(--ease);
}
.float-wa::after{
  content: ""; position: absolute; inset: -4px;
  border-radius: 50%; background: rgba(37,211,102,.3); z-index: -1;
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse{
  0%{ transform: scale(1); opacity: .6; }
  100%{ transform: scale(1.5); opacity: 0; }
}
.float-wa:hover{ transform: scale(1.08); }
.float-wa svg{ width: 24px; height: 24px; max-width: 24px; max-height: 24px; }

/* ---------- Cookie consent banner ---------- */
.cookie-banner{
  position: fixed;
  bottom: 20px;
  inset-inline-start: 20px;
  inset-inline-end: 96px; /* avoid float-wa overlap */
  max-width: 480px;
  z-index: 70;
  background: rgba(11,20,38,.95);
  color: #fff;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
  backdrop-filter: blur(20px);
  display: none;
}
.cookie-banner.is-visible{ display: block; animation: slideUp .5s var(--ease-out); }
@keyframes slideUp {
  from{ opacity: 0; transform: translateY(20px); }
  to{ opacity: 1; transform: translateY(0); }
}
.cookie-banner h4{
  color: #fff;
  font-size: 1rem;
  margin: 0 0 6px;
  font-family: var(--ff-display);
  display: flex; align-items: center; gap: 10px;
}
.cookie-banner h4 svg{
  width: 20px; height: 20px;
  max-width: 20px; max-height: 20px;
  color: var(--accent);
}
.cookie-banner p{
  color: rgba(220,231,245,.78);
  font-size: .88rem;
  line-height: 1.6;
  margin: 0 0 14px;
}
.cookie-banner .actions{ display: flex; gap: 8px; flex-wrap: wrap; }
.cookie-banner .btn{
  padding: 9px 18px; font-size: .85rem;
}
.cookie-banner .btn-primary{
  background: linear-gradient(135deg, var(--brand), var(--brand-600));
  border: 0;
}
.cookie-banner .btn-ghost{
  color: rgba(255,255,255,.7);
  padding: 9px 16px;
}
.cookie-banner .btn-ghost:hover{ color: #fff; }
.cookie-banner .learn{
  color: var(--accent);
  font-size: .85rem;
  font-weight: 600;
  margin-inline-start: auto;
  align-self: center;
}
.cookie-banner .learn:hover{ text-decoration: underline; }

@media (max-width: 560px){
  .cookie-banner{
    inset-inline-start: 12px; inset-inline-end: 12px;
    bottom: 84px;
    max-width: none; padding: 18px 20px;
  }
}

/* ---------- Legal / content pages (privacy, terms, cookies) ---------- */
.legal-content{
  max-width: 820px;
  margin-inline: auto;
}
.legal-content h2{
  font-size: 1.5rem;
  margin-top: 2.5em;
  margin-bottom: .8em;
  padding-bottom: .5em;
  border-bottom: 1px solid var(--border);
}
.legal-content h2:first-of-type{ margin-top: 0; }
.legal-content h3{
  font-size: 1.1rem;
  margin-top: 1.8em;
  margin-bottom: .5em;
  color: var(--brand-700);
}
.legal-content p, .legal-content li{
  color: var(--ink-2);
  line-height: 1.85;
  font-size: 1rem;
}
.legal-content ul, .legal-content ol{
  padding-inline-start: 1.5em;
  margin-bottom: 1em;
}
.legal-content li{ margin-bottom: .5em; }
.legal-content strong{ color: var(--ink); font-weight: 700; }
.legal-content .last-updated{
  display: inline-block;
  padding: 6px 14px;
  background: var(--bg-3);
  color: var(--brand-700);
  border-radius: var(--radius-pill);
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: 32px;
}
.legal-content a{
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal-content a:hover{ color: var(--brand-700); }

/* ---------- FAQ accordion ---------- */
.faq-list{
  max-width: 820px;
  margin-inline: auto;
  display: grid;
  gap: 14px;
}
.faq-item{
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.faq-item:hover{ border-color: var(--border-2); }
.faq-item[open]{ border-color: rgba(0,102,255,.2); box-shadow: var(--shadow-1); }
.faq-item summary{
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  font-weight: 700;
  font-family: var(--ff-display);
  font-size: 1.02rem;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color .2s var(--ease);
}
.faq-item summary::-webkit-details-marker{ display: none; }
.faq-item summary:hover{ color: var(--brand); }
.faq-item summary::after{
  content: "";
  width: 14px; height: 14px;
  min-width: 14px; max-width: 14px;
  border-inline-end: 2.5px solid var(--brand);
  border-bottom: 2.5px solid var(--brand);
  transform: rotate(45deg);
  transition: transform .3s var(--ease);
  margin-bottom: 4px;
  flex-shrink: 0;
}
.faq-item[open] summary::after{ transform: rotate(-135deg); margin-bottom: 0; margin-top: 4px; }
.faq-item .answer{
  padding: 0 24px 22px;
  color: var(--ink-2);
  line-height: 1.85;
  font-size: .96rem;
}
.faq-item .answer p:last-child{ margin-bottom: 0; }

/* ---------- 404 page ---------- */
.notfound{
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 0;
}
.notfound .big{
  font-family: var(--ff-display);
  font-size: clamp(6rem, 18vw, 14rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.05em;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--brand);
  margin-bottom: 16px;
}
.notfound h1{ font-size: clamp(1.6rem, 3.4vw, 2.4rem); margin-bottom: 14px; }
.notfound p{ max-width: 480px; margin-inline: auto; margin-bottom: 28px; }

/* Responsive */
@media (max-width: 980px){
  .nav{ display: none; }
  .burger{ display: flex; }
  .branch-card{ grid-template-columns: 1fr; }
  .branch-card .map{ min-height: 280px; order: 2; }
  .feature-row{ grid-template-columns: 1fr; gap: 32px; }
  .shop-promo .shop-grid{ grid-template-columns: 1fr; }
  .shop-visual{ max-width: 360px; margin-inline: auto; }
  .app-teaser{ grid-template-columns: 1fr; text-align: center; }
  .footer-grid{ grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 560px){
  .brand-sub{ display:none; }
  .brand-title{ font-size: .92rem; }
  .stats{ grid-template-columns: repeat(2, 1fr); }
  .stat{ border-inline-end: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 24px 12px; }
  .stat:nth-child(even){ border-inline-end: 0; }
  .stat:nth-last-child(-n+2){ border-bottom: 0; }
  .form-grid{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom{ flex-direction: column; align-items: flex-start; }
  .float-wa{ width: 48px; height: 48px; min-width:48px; max-width:48px; bottom: 18px; inset-inline-end: 18px; }
  .float-wa svg{ width: 22px; height: 22px; max-width:22px; max-height:22px; }
  .hero-badges{ gap: 12px 20px; }
  .cta{ flex-direction: column; text-align: center; }
}

@media print{
  .site-header, .site-footer, .float-wa, .cta, .hero-actions{ display: none; }
  body{ color: #000; background:#fff; }
}
