/* =========================================================
   EPOS — Premium Fintech Landing Page
   ========================================================= */

:root {
  --primary-blue: #0B66D7;
  --bright-blue: #1683FF;
  --deep-navy: #061426;
  --dark-bg: #071B32;
  --white: #FFFFFF;
  --light-bg: #F5F8FC;
  --gold: #D6A84F;
  --muted: #64748B;

  --mtn-yellow: #FFCC00;
  --syriatel-red: #ED1C24;

  --glass-bg: rgba(255, 255, 255, 0.07);
  --glass-bg-strong: rgba(255, 255, 255, 0.10);
  --glass-border: rgba(255, 255, 255, 0.14);

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 36px;

  --shadow-soft: 0 20px 60px rgba(6, 20, 38, 0.35);
  --shadow-glow-blue: 0 0 80px rgba(22, 131, 255, 0.35);
  --shadow-glow-gold: 0 0 60px rgba(214, 168, 79, 0.25);

  --ease: cubic-bezier(.22, 1, .36, 1);
  --container-w: 1280px;
}

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

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

body {
  margin: 0;
  font-family: 'Almarai', 'Segoe UI', Tahoma, sans-serif;
  background: var(--light-bg);
  color: var(--deep-navy);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  width: 100%;
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: 24px;
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}

.skip-link {
  position: absolute; right: 16px; top: -60px;
  background: var(--primary-blue); color: #fff;
  padding: 10px 18px; border-radius: 10px; z-index: 999;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 16px; }

:focus-visible {
  outline: 2px solid var(--bright-blue);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ---------------------------------------------------------
   Buttons
   --------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  border: none;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
  white-space: nowrap;
}
.btn svg { flex-shrink: 0; }
.btn-lg { padding: 16px 32px; font-size: 16px; }
.btn-sm { padding: 9px 16px; font-size: 13.5px; }
.btn-block { width: 100%; justify-content: center; }

.btn-primary {
  background: linear-gradient(135deg, var(--bright-blue), var(--primary-blue));
  color: #fff;
  box-shadow: 0 10px 30px rgba(11, 102, 215, 0.4);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(22, 131, 255, 0.5); }

.btn-outline {
  background: transparent;
  border: 1.5px solid rgba(11, 102, 215, 0.35);
  color: var(--primary-blue);
}
.btn-outline:hover { background: rgba(11, 102, 215, 0.08); transform: translateY(-2px); }

.btn-glass {
  background: var(--glass-bg-strong);
  border: 1px solid var(--glass-border);
  color: #fff;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.btn-glass:hover { background: rgba(255,255,255,0.16); transform: translateY(-3px); }

/* ---------------------------------------------------------
   Header
   --------------------------------------------------------- */
.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 200;
  padding: 18px 0;
  transition: background .35s var(--ease), backdrop-filter .35s var(--ease), padding .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  padding: 12px 0;
  background: rgba(6, 20, 38, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 10px 40px rgba(6,20,38,0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.brand img { width: auto; height: 40px; object-fit: contain; }
.brand-name {
  font-weight: 800;
  font-size: 22px;
  letter-spacing: .5px;
  color: #fff;
}
.site-header:not(.is-scrolled) .brand-name { color: #fff; }

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 6px;
}
.main-nav a {
  display: block;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 400;
  font-size: 15px;
  color: rgba(255,255,255,0.82);
  transition: background .2s var(--ease), color .2s var(--ease);
}
.main-nav a:hover, .main-nav a.active {
  background: rgba(255,255,255,0.1);
  color: #fff;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.header-actions .btn-outline {
  color: #fff;
  border-color: rgba(255,255,255,0.28);
}
.header-actions .btn-outline:hover { background: rgba(255,255,255,0.1); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 10px;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin-inline: auto;
  background: #fff;
  border-radius: 2px;
  transition: transform .25s var(--ease), opacity .25s var(--ease);
}

/* ---------------------------------------------------------
   Mobile Drawer
   --------------------------------------------------------- */
.drawer-overlay {
  position: fixed; inset: 0; z-index: 250;
  background: rgba(6,20,38,0.6);
  backdrop-filter: blur(4px);
  opacity: 0; visibility: hidden;
  transition: opacity .3s var(--ease), visibility .3s var(--ease);
}
.drawer-overlay.is-open { opacity: 1; visibility: visible; }

.mobile-drawer {
  position: fixed;
  top: 0; bottom: 0;
  right: 0;
  width: min(340px, 86vw);
  background: linear-gradient(180deg, var(--dark-bg), var(--deep-navy));
  z-index: 260;
  padding: 22px;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .35s var(--ease);
  box-shadow: -20px 0 60px rgba(0,0,0,0.4);
}
.mobile-drawer.is-open { transform: translateX(0); }

.drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 18px; margin-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.drawer-close {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff; width: 36px; height: 36px; border-radius: 50%;
  font-size: 20px; line-height: 1;
}
.mobile-drawer nav ul { display: flex; flex-direction: column; gap: 4px; }
.mobile-drawer nav a {
  display: block; padding: 13px 14px; border-radius: 12px;
  color: rgba(255,255,255,0.85); font-weight: 700;
}
.mobile-drawer nav a:hover { background: rgba(255,255,255,0.08); color: #fff; }
.drawer-footer {
  margin-top: auto;
  display: flex; flex-direction: column; gap: 12px;
  padding-top: 18px; border-top: 1px solid rgba(255,255,255,0.1);
}
/* ---------------------------------------------------------
   Section shared
   --------------------------------------------------------- */
section { position: relative; }

.section-head { text-align: center; max-width: 640px; margin-inline: auto; margin-bottom: 52px; }
.section-title {
  font-size: clamp(28px, 3.6vw, 42px);
  color: var(--deep-navy);
  margin-bottom: 12px;
}
.section-subtitle { color: var(--muted); font-size: 17px; }

/* fade-up animation */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  transition-delay: var(--delay, 0ms);
}
.fade-up.in-view { opacity: 1; transform: translateY(0); }

/* ---------------------------------------------------------
   Hero
   --------------------------------------------------------- */
.hero {
  position: relative;
  padding: 168px 0 120px;
  background: radial-gradient(ellipse 120% 80% at 30% 0%, #0d2b4d 0%, var(--dark-bg) 45%, var(--deep-navy) 100%);
  overflow: hidden;
  color: #fff;
}

.hero-bg { position: absolute; inset: 0; z-index: 0; }

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}
.hero-glow-1 {
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(22,131,255,0.45), transparent 70%);
  inset-inline-end: -10%;
  top: 10%;
}
.hero-glow-2 {
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(214,168,79,0.22), transparent 70%);
  inset-inline-start: -6%;
  bottom: 0%;
}

.hero-particles {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(1.5px 1.5px at 20% 30%, rgba(255,255,255,0.5), transparent),
    radial-gradient(1.5px 1.5px at 70% 60%, rgba(255,255,255,0.35), transparent),
    radial-gradient(1px 1px at 85% 20%, rgba(255,255,255,0.4), transparent),
    radial-gradient(1px 1px at 40% 80%, rgba(255,255,255,0.3), transparent),
    radial-gradient(1.5px 1.5px at 55% 15%, rgba(255,255,255,0.35), transparent);
  opacity: 0.6;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: 40px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 22px;
}

.hero-title {
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.25;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
}
.hero-title-accent {
  display: block;
  background: linear-gradient(90deg, var(--bright-blue), #6fb7ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-top: 4px;
}

.hero-subtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.72);
  max-width: 480px;
  margin-bottom: 34px;
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 44px; }

.trust-features {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 16px 30px;
}
.trust-features li {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.78);
  font-size: 14.5px;
  font-weight: 400;
}
.trust-features img { flex-shrink: 0; }

/* ---------------------------------------------------------
   Hero visual (real product photo asset)
   --------------------------------------------------------- */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-visual img {
  width: 100%;
  max-width: 640px;
  height: auto;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.5));
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}

/* Real product photos (App + POS showcase sections) */
.phone-photo {
  width: 100%;
  max-width: 300px;
  height: auto;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.5));
  animation: float 6s ease-in-out infinite;
}
.pos-photo {
  width: 100%;
  max-width: 300px;
  height: auto;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.5));
  animation: float 6s ease-in-out infinite 1.2s;
}

/* ---------------------------------------------------------
   Services
   --------------------------------------------------------- */
.services {
  padding: 100px 0;
  background:
    radial-gradient(ellipse 60% 50% at 85% 0%, rgba(11,102,215,0.06), transparent 60%),
    var(--light-bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: #fff;
  border: 1px solid rgba(11,102,215,0.08);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  box-shadow: 0 14px 40px rgba(6,20,38,0.06);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(22,131,255,0.06), transparent 50%);
  opacity: 0;
  transition: opacity .35s var(--ease);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(11,102,215,0.18);
  border-color: rgba(22,131,255,0.25);
}
.service-card:hover::before { opacity: 1; }

.service-logo {
  display: inline-flex; align-items: center; justify-content: center;
  width: 72px; height: 64px;
  padding: 8px 10px;
  border-radius: 16px;
  margin-bottom: 20px;
  background: var(--light-bg);
  box-shadow: inset 0 0 0 1px rgba(11,102,215,0.08);
}
.service-logo img {
  width: 100%; height: 100%;
  object-fit: contain;
}

.service-card h3 { font-size: 20px; margin-bottom: 10px; color: var(--deep-navy); }
.service-card p { color: var(--muted); font-size: 14.5px; margin-bottom: 22px; min-height: 44px; }

.card-cta {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--primary-blue); font-weight: 700; font-size: 14.5px;
  transition: gap .25s var(--ease);
}
.card-cta:hover { gap: 12px; }

/* ---------------------------------------------------------
   Showcase (App + POS)
   --------------------------------------------------------- */
.showcase {
  padding: 40px 0 100px;
  background: var(--light-bg);
}
.showcase-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.showcase-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  border-radius: var(--radius-xl);
  padding: 56px;
  position: relative;
  overflow: hidden;
}
.app-showcase {
  background: linear-gradient(135deg, var(--dark-bg), var(--deep-navy));
  color: #fff;
}
.pos-showcase {
  background: linear-gradient(135deg, #0d2c50, var(--dark-bg));
  color: #fff;
}
.pos-showcase .showcase-copy { order: 2; }
.pos-showcase .showcase-visual { order: 1; }

.showcase-tag {
  display: inline-block;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 16px;
}
.showcase-copy h2 { font-size: clamp(26px, 3vw, 36px); margin-bottom: 14px; }
.showcase-copy p { color: rgba(255,255,255,0.7); font-size: 16px; margin-bottom: 24px; max-width: 420px; }

.feature-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 30px; }
.feature-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 15px; color: rgba(255,255,255,0.88); font-weight: 400;
}
.feature-list svg { color: var(--bright-blue); flex-shrink: 0; }

.store-badges { display: flex; gap: 14px; flex-wrap: wrap; }
.store-badge {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  padding: 10px 18px;
  border-radius: 14px;
  color: #fff;
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.store-badge:hover { background: rgba(255,255,255,0.15); transform: translateY(-2px); }
.store-badge span { display: flex; flex-direction: column; font-weight: 700; font-size: 14px; }
.store-badge small { font-weight: 400; font-size: 10px; opacity: .7; }

.showcase-visual { position: relative; display: flex; align-items: center; justify-content: center; }

.device-pedestal {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  max-width: 260px;
  height: 46px;
  background: url("../img/ui/product-pedestal.png") center / cover no-repeat;
  border-radius: 50%;
  filter: blur(1px);
  mask-image: radial-gradient(closest-side, #000 60%, transparent 100%);
  -webkit-mask-image: radial-gradient(closest-side, #000 60%, transparent 100%);
  opacity: 0.8;
  z-index: 0;
}

/* ---------------------------------------------------------
   Stats
   --------------------------------------------------------- */
.stats {
  padding: 70px 0;
  background: linear-gradient(135deg, var(--primary-blue), var(--bright-blue));
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-item { display: flex; flex-direction: column; align-items: center; }
.stat-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: #fff;
  padding: 12px;
  object-fit: contain;
  margin-bottom: 14px;
  box-shadow: 0 10px 24px rgba(6,20,38,0.18);
}
.stat-value {
  display: block;
  font-size: clamp(28px, 3.6vw, 40px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}
.stat-label { color: rgba(255,255,255,0.85); font-size: 15px; font-weight: 400; }

/* ---------------------------------------------------------
   Why EPOS
   --------------------------------------------------------- */
.why-epos { padding: 100px 0; background: var(--light-bg); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 14px 40px rgba(6,20,38,0.06);
  border: 1px solid rgba(11,102,215,0.06);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.why-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(11,102,215,0.14); }
.why-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 60px; height: 60px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(22,131,255,0.12), rgba(11,102,215,0.06));
  color: var(--primary-blue);
  margin-bottom: 18px;
}
.why-card h3 { font-size: 18px; margin-bottom: 10px; color: var(--deep-navy); }
.why-card p { color: var(--muted); font-size: 14.5px; }

/* ---------------------------------------------------------
   CTA Banner
   --------------------------------------------------------- */
.cta-banner {
  position: relative;
  padding: 110px 0;
  background:
    linear-gradient(160deg, rgba(6,20,38,0.88), rgba(7,27,50,0.82)),
    url("../img/ui/cta-banner.png") center / cover no-repeat;
  overflow: hidden;
  text-align: center;
}
.cta-inner { position: relative; z-index: 1; max-width: 620px; margin-inline: auto; }
.cta-inner h2 { font-size: clamp(28px, 3.6vw, 42px); color: #fff; margin-bottom: 16px; }
.cta-inner p { color: rgba(255,255,255,0.72); font-size: 17px; margin-bottom: 34px; }

/* ---------------------------------------------------------
   FAQ
   --------------------------------------------------------- */
.faq { padding: 100px 0; background: var(--light-bg); }
.faq-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 40px;
  align-items: start;
}
.faq-list .section-head { margin-bottom: 34px; margin-inline: 0; }

.accordion-item {
  background: #fff;
  border: 1px solid rgba(11,102,215,0.08);
  border-radius: var(--radius-md);
  margin-bottom: 14px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(6,20,38,0.05);
}
.accordion-item h3 { margin: 0; }
.accordion-trigger {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  background: transparent; border: none;
  padding: 20px 24px;
  font-size: 16px; font-weight: 700;
  color: var(--deep-navy);
  text-align: start;
}
.accordion-trigger .chev { transition: transform .3s var(--ease); color: var(--primary-blue); flex-shrink: 0; }
.accordion-trigger[aria-expanded="true"] .chev { transform: rotate(180deg); }

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s var(--ease);
}
.accordion-panel p { padding: 0 24px 22px; color: var(--muted); font-size: 15px; }

.faq-help {
  background:
    linear-gradient(150deg, rgba(7,27,50,0.93), rgba(6,20,38,0.96)),
    url("../img/backgrounds/aleppo-night.png") center / cover no-repeat;
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  color: #fff;
  position: sticky;
  top: 110px;
}
.faq-help-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 76px; height: 76px;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--bright-blue);
  margin-bottom: 20px;
}
.faq-help h3 { font-size: 19px; margin-bottom: 8px; }
.faq-help p { color: rgba(255,255,255,0.68); margin-bottom: 24px; font-size: 14.5px; }
.faq-help .btn-outline { color: #fff; border-color: rgba(255,255,255,0.3); }
.faq-help .btn-outline:hover { background: rgba(255,255,255,0.1); }

/* ---------------------------------------------------------
   Footer
   --------------------------------------------------------- */
.site-footer {
  background: linear-gradient(180deg, var(--deep-navy), #030b16);
  color: rgba(255,255,255,0.75);
  padding-top: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1.4fr;
  gap: 32px;
  padding-bottom: 50px;
}
.footer-brand p { margin: 18px 0 20px; font-size: 14.5px; line-height: 1.8; max-width: 300px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.footer-social a:hover { background: var(--primary-blue); transform: translateY(-3px); }

.footer-col h4 { color: #fff; font-size: 16px; margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 14.5px; transition: color .2s var(--ease); }
.footer-col a:hover { color: var(--bright-blue); }

.footer-newsletter h4 { color: #fff; font-size: 16px; margin-bottom: 10px; }
.footer-newsletter p { font-size: 14px; margin-bottom: 18px; }
.newsletter-form { display: flex; gap: 8px; }
.newsletter-form input {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 12px;
  padding: 12px 14px;
  color: #fff;
  font-family: inherit;
  font-size: 14px;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-form button {
  background: linear-gradient(135deg, var(--bright-blue), var(--primary-blue));
  border: none;
  border-radius: 12px;
  width: 46px;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: transform .2s var(--ease);
}
.newsletter-form button:hover { transform: scale(1.06); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 22px 0; }
.footer-bottom-inner {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 13.5px; color: rgba(255,255,255,0.5); flex-wrap: wrap; gap: 10px;
}
.footer-tagline { display: flex; align-items: center; gap: 6px; }

/* ---------------------------------------------------------
   Back to top
   --------------------------------------------------------- */
.back-to-top {
  position: fixed;
  bottom: 26px; inset-inline-end: 26px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bright-blue), var(--primary-blue));
  color: #fff;
  border: none;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 30px rgba(11,102,215,0.4);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s var(--ease);
  z-index: 150;
}
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1200px) {
  .services-grid, .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
  .main-nav { display: none; }
  .header-actions .btn-outline span { display: none; }
  .nav-toggle { display: flex; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-copy { order: 1; }
  .hero-visual { order: 2; margin-top: 20px; }
  .hero-ctas, .trust-features { justify-content: center; }
  .trust-features { grid-template-columns: repeat(2, auto); justify-content: center; }
  .hero-subtitle { margin-inline: auto; }
  .showcase-card, .pos-showcase { grid-template-columns: 1fr; text-align: center; }
  .pos-showcase .showcase-copy, .pos-showcase .showcase-visual { order: unset; }
  .showcase-copy p, .feature-list { margin-inline: auto; }
  .feature-list li { justify-content: center; }
  .store-badges, .showcase .hero-ctas { justify-content: center; }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-help { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  .stats-grid, .why-grid, .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .hero { padding: 140px 0 80px; }
  .hero-visual img { max-width: 320px; }
  .hero-ctas { flex-direction: column; width: 100%; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .trust-features { grid-template-columns: 1fr; }
  .showcase-card { padding: 36px 22px; }
  .services-grid, .why-grid, .stats-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .newsletter-form { max-width: 340px; margin-inline: auto; }
  .footer-bottom-inner { justify-content: center; text-align: center; }
}

@media (max-width: 400px) {
  .phone-photo { max-width: 220px; }
  .pos-photo { max-width: 220px; }
}
