/* Approach Premium Website Refresh
   Palette: navy #1F1F51, red #FC2B36, white, soft grey
*/

@font-face {
  font-family: "Approach Poppins";
  src: url("../fonts/Poppins-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Bressay Arabic";
  src: url("../fonts/Bressay-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --ap-navy: #1f1f51;
  --ap-navy-2: #12123a;
  --ap-red: #fc2b36;
  --ap-red-2: #ff4f58;
  --ap-ink: #111326;
  --ap-muted: rgba(17, 19, 38, .66);
  --ap-soft: #f7f7fb;
  --ap-card: #ffffff;
  --ap-line: rgba(31, 31, 81, .12);
  --ap-line-strong: rgba(31, 31, 81, .22);
  --ap-radius-sm: 16px;
  --ap-radius: 26px;
  --ap-radius-lg: 36px;
  --ap-shadow: 0 28px 90px rgba(31, 31, 81, .14);
  --ap-shadow-soft: 0 18px 60px rgba(31, 31, 81, .10);
  --ap-font: "Approach Poppins", Poppins, Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --ap-ar: "Bressay Arabic", "Approach Poppins", Tahoma, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: #fff;
  color: var(--ap-ink);
  font-family: var(--ap-font);
  overflow-x: hidden;
}

body, button, input, textarea, select { font-family: var(--ap-font); }
img { max-width: 100%; }
a { color: inherit; }
.ap-ar { font-family: var(--ap-ar); direction: rtl; letter-spacing: 0; }
.ap-red { color: var(--ap-red); }
.ap-navy { color: var(--ap-navy); }
section { scroll-margin-top: 96px; }

/* Header */
.ap-header {
  position: fixed;
  z-index: 997;
  top: 0;
  left: 0;
  right: 0;
  padding: 14px 0;
  background: rgba(31,31,81,.92);
  border-bottom: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: padding .18s ease, box-shadow .18s ease, background .18s ease;
}
body.scrolled .ap-header {
  padding: 10px 0;
  background: rgba(31,31,81,.96);
  box-shadow: 0 18px 60px rgba(0,0,0,.20);
}
.ap-header .logo img { height: 34px; display: block; }
.navmenu ul {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.navmenu a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 12px;
  border-radius: 999px;
  color: rgba(255,255,255,.84);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}
.navmenu a:hover,
.navmenu a.active { color: #fff; background: rgba(255,255,255,.08); }
.navmenu a.ap-nav-cta {
  background: var(--ap-red);
  color: #fff;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 16px 38px rgba(252,43,54,.24);
}
.navmenu a.ap-nav-cta:hover { transform: translateY(-1px); filter: brightness(1.03); }
.navmenu .dropdown { position: relative; }
.navmenu .dropdown ul {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  min-width: 230px;
  display: none;
  flex-direction: column;
  align-items: stretch;
  gap: 2px;
  padding: 10px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--ap-line);
  box-shadow: var(--ap-shadow-soft);
}
.navmenu .dropdown:hover > ul { display: flex; }
.navmenu .dropdown ul a {
  color: var(--ap-navy);
  border-radius: 12px;
  padding: 10px 12px;
  width: 100%;
}
.navmenu .dropdown ul a:hover { color: var(--ap-red); background: rgba(31,31,81,.05); }
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
}

/* Hero */
.ap-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 132px 0 94px;
  background:
    radial-gradient(980px 580px at 12% 18%, rgba(252,43,54,.20), transparent 62%),
    radial-gradient(780px 520px at 88% 16%, rgba(255,255,255,.14), transparent 64%),
    linear-gradient(180deg, var(--ap-navy) 0%, var(--ap-navy-2) 100%);
}
.ap-hero::before,
.ap-hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  opacity: .34;
}
.ap-hero::before {
  width: 540px;
  height: 540px;
  border: 76px solid rgba(255,255,255,.08);
  border-left-color: rgba(252,43,54,.18);
  border-bottom-color: transparent;
  border-radius: 50%;
  right: -150px;
  top: 46px;
  transform: rotate(6deg);
}
.ap-hero::after {
  left: 0;
  right: 0;
  bottom: -1px;
  height: 260px;
  background: linear-gradient(180deg, rgba(255,255,255,0), #fff 92%);
  opacity: 1;
}
.ap-orb {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  filter: blur(18px);
  background: radial-gradient(circle at 30% 30%, rgba(252,43,54,.28), transparent 60%);
  left: 45%;
  bottom: 12%;
  opacity: .55;
}
.ap-hero-inner { position: relative; z-index: 2; }
.ap-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 13px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.08);
  border-radius: 999px;
  color: rgba(255,255,255,.84);
  font-size: 13px;
  font-weight: 700;
}
.ap-kicker i { color: var(--ap-red-2); }
.ap-hero h1 {
  color: #fff;
  font-size: clamp(45px, 7vw, 82px);
  line-height: .99;
  letter-spacing: -0.062em;
  font-weight: 900;
  margin: 20px 0 18px;
  text-shadow: 0 26px 80px rgba(0,0,0,.32);
}
.ap-hero h1 .ap-ar-line {
  display: block;
  font-family: var(--ap-ar);
  font-size: .50em;
  line-height: 1.22;
  letter-spacing: 0;
  margin-bottom: 10px;
  color: rgba(255,255,255,.78);
  font-weight: 400;
}
.ap-hero h1 strong {
  display: block;
  color: var(--ap-red-2);
  font-weight: 900;
}
.ap-lead {
  max-width: 650px;
  color: rgba(255,255,255,.82);
  font-size: 18px;
  line-height: 1.75;
  margin: 0 0 22px;
}
.ap-store-row { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
.ap-store {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 66px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 18px;
  background: rgba(255,255,255,.10);
  padding: 9px 12px;
  box-shadow: 0 18px 70px rgba(0,0,0,.25);
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.ap-store:hover { transform: translateY(-2px); background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.28); }
.ap-store img { height: 50px; width: auto; display: block; }
.ap-hero-actions { margin-top: 12px; display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.ap-link-light {
  color: rgba(255,255,255,.88);
  text-decoration: none;
  font-weight: 700;
  border-bottom: 1px dashed rgba(255,255,255,.34);
}
.ap-link-light:hover { color: #fff; border-color: #fff; }
.ap-hero-pills { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 24px; }
.ap-hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.84);
  font-weight: 700;
  font-size: 13px;
}
.ap-hero-pill i { color: var(--ap-red-2); font-size: 16px; }
.ap-visual-wrap {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ap-phone-hero {
  width: min(440px, 90%);
  position: relative;
  z-index: 3;
  filter: drop-shadow(0 38px 95px rgba(0,0,0,.42));
  animation: apFloat 6s ease-in-out infinite;
}
.ap-phone-hero img { width: 100%; height: auto; display: block; }
.ap-floating-card {
  position: absolute;
  z-index: 4;
  width: 230px;
  padding: 16px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.56);
  background: rgba(255,255,255,.90);
  box-shadow: 0 22px 70px rgba(0,0,0,.18);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.ap-floating-card h3 { margin: 0 0 4px; color: var(--ap-navy); font-size: 15px; font-weight: 900; }
.ap-floating-card p { margin: 0; color: var(--ap-muted); font-size: 12px; line-height: 1.45; }
.ap-floating-card i { color: var(--ap-red); font-size: 22px; margin-bottom: 10px; display: inline-block; }
.ap-card-left { left: 0; top: 28%; transform: rotate(-3deg); }
.ap-card-right { right: 0; bottom: 23%; transform: rotate(3deg); }
.ap-card-bottom { left: 24%; bottom: 2%; width: 260px; transform: rotate(-1deg); }
.ap-dots {
  position: absolute;
  inset: auto auto 8% 6%;
  width: 124px;
  height: 124px;
  background-image: radial-gradient(rgba(255,255,255,.34) 2px, transparent 2px);
  background-size: 16px 16px;
  opacity: .55;
}
@keyframes apFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

/* Shared sections */
.ap-section { position: relative; padding: 90px 0; background: #fff; overflow: hidden; }
.ap-section-soft { background: linear-gradient(180deg, #fff, #f8f8fd); }
.ap-section-navy {
  background:
    radial-gradient(880px 420px at 12% 0%, rgba(252,43,54,.16), transparent 60%),
    radial-gradient(880px 420px at 86% 10%, rgba(255,255,255,.08), transparent 60%),
    linear-gradient(180deg, var(--ap-navy), var(--ap-navy-2));
  color: #fff;
}
.ap-section-title { margin-bottom: 38px; }
.ap-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(31,31,81,.06);
  border: 1px solid var(--ap-line);
  color: var(--ap-navy);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.ap-section-navy .ap-eyebrow { background: rgba(255,255,255,.08); color: rgba(255,255,255,.86); border-color: rgba(255,255,255,.13); }
.ap-section-title h2 {
  margin: 14px 0 10px;
  color: var(--ap-navy);
  font-weight: 900;
  font-size: clamp(34px, 4.5vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.05em;
}
.ap-section-title h2 .ap-ar { font-size: .72em; display: block; margin-bottom: 8px; letter-spacing: 0; font-weight: 400; color: rgba(31,31,81,.72); }
.ap-section-title p {
  max-width: 760px;
  color: var(--ap-muted);
  font-size: 17px;
  line-height: 1.75;
  margin: 0;
}
.ap-section-title.text-center p { margin-left: auto; margin-right: auto; }
.ap-section-navy .ap-section-title h2,
.ap-section-navy .ap-section-title p { color: #fff; }
.ap-section-navy .ap-section-title p { color: rgba(255,255,255,.75); }
.ap-section-navy .ap-section-title h2 .ap-ar { color: rgba(255,255,255,.72); }

.ap-grid-card {
  height: 100%;
  border-radius: var(--ap-radius);
  padding: 26px;
  background: #fff;
  border: 1px solid var(--ap-line);
  box-shadow: var(--ap-shadow-soft);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.ap-grid-card:hover { transform: translateY(-4px); box-shadow: var(--ap-shadow); border-color: rgba(31,31,81,.20); }
.ap-icon-bubble {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: rgba(252,43,54,.10);
  color: var(--ap-red);
  font-size: 24px;
  margin-bottom: 16px;
}
.ap-grid-card h3 { color: var(--ap-navy); font-size: 21px; font-weight: 900; margin: 0 0 8px; letter-spacing: -0.02em; }
.ap-grid-card p { color: var(--ap-muted); line-height: 1.65; margin: 0; }
.ap-list { margin: 18px 0 0; padding: 0; list-style: none; display: grid; gap: 10px; }
.ap-list li { position: relative; padding-left: 28px; color: rgba(17,19,38,.78); line-height: 1.55; }
.ap-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--ap-red); font-weight: 900; }

/* Stats strip */
.ap-stats {
  position: relative;
  z-index: 5;
  margin-top: -74px;
}
.ap-stats-card {
  border: 1px solid rgba(31,31,81,.10);
  border-radius: 28px;
  background: rgba(255,255,255,.94);
  box-shadow: var(--ap-shadow);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  overflow: hidden;
}
.ap-stat { padding: 24px 20px; border-right: 1px solid rgba(31,31,81,.10); min-height: 118px; }
.ap-stat:last-child { border-right: 0; }
.ap-stat i { color: var(--ap-red); font-size: 26px; }
.ap-stat strong { display: block; color: var(--ap-navy); font-size: 25px; line-height: 1.15; margin: 8px 0 4px; font-weight: 900; letter-spacing: -0.02em; }
.ap-stat span { color: var(--ap-muted); font-weight: 700; font-size: 13px; }

/* Showcase */
.ap-showcase-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(255px, 1fr);
  gap: 18px;
  overflow-x: auto;
  padding: 8px 4px 28px;
  scrollbar-width: thin;
  scroll-snap-type: x mandatory;
}
.ap-shot-card {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid var(--ap-line);
  box-shadow: var(--ap-shadow-soft);
  background: #fff;
  scroll-snap-align: start;
  min-height: 570px;
}
.ap-shot-card img { width: 100%; height: 100%; display: block; object-fit: cover; }
.ap-shot-badge {
  position: absolute;
  left: 18px;
  top: 18px;
  z-index: 2;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(31,31,81,.88);
  color: #fff;
  font-weight: 900;
  font-size: 12px;
  backdrop-filter: blur(12px);
}

/* Audience */
.ap-audience-card {
  height: 100%;
  border-radius: var(--ap-radius);
  padding: 30px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: #fff;
  box-shadow: 0 26px 80px rgba(0,0,0,.20);
}
.ap-audience-card h3 { color: #fff; font-weight: 900; font-size: 25px; margin: 0 0 10px; }
.ap-audience-card p { color: rgba(255,255,255,.72); line-height: 1.7; }
.ap-audience-card .ap-list li { color: rgba(255,255,255,.84); }
.ap-audience-card .ap-list li::before { color: var(--ap-red-2); }

/* Step flow */
.ap-step {
  position: relative;
  height: 100%;
  border: 1px solid var(--ap-line);
  background: #fff;
  border-radius: var(--ap-radius);
  padding: 26px;
  box-shadow: var(--ap-shadow-soft);
}
.ap-step-num {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--ap-navy);
  color: #fff;
  font-weight: 900;
  margin-bottom: 18px;
}
.ap-step h3 { color: var(--ap-navy); font-weight: 900; margin: 0 0 8px; }
.ap-step p { color: var(--ap-muted); margin: 0; line-height: 1.65; }

/* Form */
.ap-form-card {
  border-radius: 34px;
  background: #fff;
  border: 1px solid var(--ap-line);
  box-shadow: var(--ap-shadow);
  overflow: hidden;
}
.ap-form-head {
  padding: 28px;
  background:
    radial-gradient(660px 300px at 18% 0%, rgba(252,43,54,.14), transparent 60%),
    radial-gradient(660px 300px at 88% 0%, rgba(31,31,81,.16), transparent 60%),
    linear-gradient(180deg, #fff, #fbfbff);
  border-bottom: 1px solid var(--ap-line);
}
.ap-form-head h3 { margin: 0 0 8px; color: var(--ap-navy); font-weight: 900; letter-spacing: -0.03em; }
.ap-form-head p { margin: 0; color: var(--ap-muted); line-height: 1.6; }
.ap-form-body { padding: 28px; }
.ap-form-body label { font-size: 13px; font-weight: 900; color: rgba(31,31,81,.82); margin-bottom: 7px; }
.ap-form-body .form-control,
.ap-form-body .form-select {
  border: 1px solid rgba(31,31,81,.16);
  border-radius: 15px;
  padding: 12px 14px;
  min-height: 50px;
  color: var(--ap-ink);
  box-shadow: none;
}
.ap-form-body textarea.form-control { min-height: 120px; }
.ap-form-body .form-control:focus,
.ap-form-body .form-select:focus {
  border-color: rgba(252,43,54,.62);
  box-shadow: 0 0 0 4px rgba(252,43,54,.12);
}
.php-email-form .loading,
.php-email-form .error-message,
.php-email-form .sent-message { display: none; }
.php-email-form .loading.d-block { display: block !important; color: var(--ap-muted); font-weight: 800; }
.php-email-form .error-message.d-block,
.php-email-form .sent-message.d-block {
  display: block !important;
  border-radius: 14px;
  padding: 12px 14px;
  margin: 10px 0;
  font-weight: 800;
}
.php-email-form .error-message.d-block { background: rgba(252,43,54,.10); color: #b00018; }
.php-email-form .sent-message.d-block { background: rgba(36,169,104,.10); color: #176b43; }

/* Buttons */
.ap-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 999px;
  padding: 13px 18px;
  min-height: 48px;
  text-decoration: none;
  border: 1px solid transparent;
  font-weight: 900;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
  cursor: pointer;
}
.ap-btn-red { background: var(--ap-red); color: #fff; box-shadow: 0 18px 42px rgba(252,43,54,.24); }
.ap-btn-red:hover { color: #fff; transform: translateY(-2px); filter: brightness(1.03); }
.ap-btn-navy { background: var(--ap-navy); color: #fff; box-shadow: 0 18px 42px rgba(31,31,81,.22); }
.ap-btn-navy:hover { color: #fff; transform: translateY(-2px); }
.ap-btn-white { background: #fff; color: var(--ap-navy); border-color: var(--ap-line-strong); box-shadow: 0 14px 34px rgba(31,31,81,.08); }
.ap-btn-white:hover { color: var(--ap-navy); transform: translateY(-2px); background: #fafaff; }

/* CTA */
.ap-final-cta {
  border-radius: 34px;
  padding: 34px;
  border: 1px solid rgba(255,255,255,.12);
  background:
    radial-gradient(760px 350px at 12% 10%, rgba(252,43,54,.18), transparent 60%),
    linear-gradient(135deg, rgba(255,255,255,.10), rgba(255,255,255,.04));
  box-shadow: 0 30px 100px rgba(0,0,0,.22);
}
.ap-final-cta h2 { color: #fff; font-weight: 900; letter-spacing: -0.05em; font-size: clamp(32px, 4vw, 54px); margin: 0 0 10px; }
.ap-final-cta p { color: rgba(255,255,255,.78); line-height: 1.75; margin: 0; }
.ap-final-stores { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: flex-end; }

/* Footer */
.ap-footer {
  padding: 68px 0 26px;
  background: var(--ap-navy-2);
  color: rgba(255,255,255,.76);
  position: relative;
  overflow: hidden;
}
.ap-footer::before { content:""; position:absolute; inset:0 0 auto 0; height:2px; background: linear-gradient(90deg, transparent, var(--ap-red), rgba(255,255,255,.6), var(--ap-red), transparent); opacity:.75; }
.ap-footer-logo { height: 36px; margin-bottom: 16px; }
.ap-footer p { line-height: 1.75; }
.ap-footer h4 { color: #fff; font-size: 16px; font-weight: 900; margin: 0 0 14px; }
.ap-footer a { color: rgba(255,255,255,.78); text-decoration: none; }
.ap-footer a:hover { color: #fff; }
.ap-footer-links { display: grid; gap: 9px; }
.ap-socials { display: flex; gap: 10px; margin-top: 18px; }
.ap-socials a {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: #fff;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
}
.ap-socials a:hover { background: rgba(252,43,54,.22); border-color: rgba(252,43,54,.45); }
.ap-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.10);
  margin-top: 38px;
  padding-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
}
.ap-footer-brandline { display: inline-flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.ap-footer-brandline img { height: 24px; width: auto; }

/* WhatsApp */
.ap-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 996;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  background: rgba(31,31,81,.94);
  border: 1px solid rgba(255,255,255,.13);
  box-shadow: 0 18px 65px rgba(31,31,81,.28);
  backdrop-filter: blur(16px);
}
.ap-whatsapp:hover { color: #fff; transform: translateY(-1px); }
.ap-whatsapp i { color: #25d366; font-size: 20px; }
.ap-whatsapp span { font-weight: 900; line-height: 1; display: block; }
.ap-whatsapp small { color: rgba(255,255,255,.72); font-weight: 700; font-size: 11px; }
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 18px;
  bottom: 86px;
  z-index: 995;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--ap-red);
  color: #fff;
  transition: opacity .18s ease, visibility .18s ease, transform .18s ease;
  text-decoration: none;
}
.scroll-top.active { visibility: visible; opacity: 1; }
.scroll-top:hover { color:#fff; transform: translateY(-2px); }
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--ap-navy);
}
#preloader::after {
  content:"";
  position:absolute;
  left:50%;
  top:50%;
  width:46px;
  height:46px;
  margin:-23px 0 0 -23px;
  border-radius:50%;
  border:4px solid rgba(255,255,255,.25);
  border-top-color: var(--ap-red);
  animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Legal pages */
.ap-legal-hero {
  padding: 150px 0 70px;
  background:
    radial-gradient(760px 360px at 18% 12%, rgba(252,43,54,.18), transparent 60%),
    linear-gradient(180deg, var(--ap-navy), var(--ap-navy-2));
  color: #fff;
  position: relative;
  overflow: hidden;
}
.ap-legal-hero::after { content:""; position:absolute; right:-110px; top:40px; width:360px; height:360px; border:58px solid rgba(255,255,255,.08); border-radius:50%; }
.ap-legal-hero h1 { font-size: clamp(36px, 6vw, 62px); font-weight: 900; letter-spacing: -0.05em; margin: 0 0 10px; }
.ap-legal-hero p { color: rgba(255,255,255,.78); margin: 0; font-size: 17px; }
.ap-legal-content { padding: 70px 0; background: #fff; }
.ap-legal-card {
  border-radius: 30px;
  background: #fff;
  border: 1px solid var(--ap-line);
  box-shadow: var(--ap-shadow-soft);
  padding: 36px;
}
.ap-legal-card h1, .ap-legal-card h2, .ap-legal-card h3, .ap-legal-card h4, .ap-legal-card h5 { color: var(--ap-navy); font-weight: 900; }
.ap-legal-card h2 { margin-top: 30px; font-size: 22px; }
.ap-legal-card p, .ap-legal-card li { color: rgba(17,19,38,.74); line-height: 1.78; }
.ap-legal-card a { color: var(--ap-red); font-weight: 800; }

/* Responsive */
@media (max-width: 1199.98px) {
  .mobile-nav-toggle { display: block; }
  .navmenu {
    position: fixed;
    inset: 0;
    display: none;
    padding: 84px 18px 18px;
    background: rgba(11,11,34,.72);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }
  body.mobile-nav-active .navmenu { display: block; }
  .navmenu ul {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    border-radius: 24px;
    padding: 16px;
    box-shadow: var(--ap-shadow);
    max-height: calc(100vh - 118px);
    overflow: auto;
  }
  .navmenu a { color: var(--ap-navy); justify-content: space-between; border-radius: 14px; }
  .navmenu a:hover, .navmenu a.active { color: var(--ap-red); background: rgba(31,31,81,.05); }
  .navmenu a.ap-nav-cta { justify-content: center; }
  .navmenu .dropdown ul {
    position: static;
    display: none;
    min-width: 0;
    padding: 6px 0 0 14px;
    box-shadow: none;
    border: 0;
    background: transparent;
  }
  .navmenu .dropdown:hover > ul { display: none; }
  .navmenu .dropdown ul.dropdown-active { display: flex; }
  .navmenu .dropdown ul a { color: rgba(31,31,81,.78); padding: 9px 10px; }
}

@media (max-width: 991.98px) {
  .ap-hero { padding-top: 116px; text-align: center; }
  .ap-lead { margin-left: auto; margin-right: auto; }
  .ap-store-row, .ap-hero-actions, .ap-hero-pills { justify-content: center; }
  .ap-visual-wrap { min-height: 560px; margin-top: 12px; }
  .ap-card-left { left: 12px; }
  .ap-card-right { right: 12px; }
  .ap-card-bottom { left: 50%; transform: translateX(-50%); bottom: 0; }
  .ap-stat { border-right: 0; border-bottom: 1px solid rgba(31,31,81,.10); text-align:center; }
  .ap-stat:last-child { border-bottom:0; }
  .ap-final-stores { justify-content: flex-start; margin-top: 22px; }
}

@media (max-width: 767.98px) {
  .ap-header .logo img { height: 30px; }
  .ap-hero { min-height: auto; padding-bottom: 70px; }
  .ap-hero h1 { letter-spacing: -0.045em; }
  .ap-visual-wrap { min-height: auto; padding: 36px 0 70px; }
  .ap-phone-hero { width: 88%; }
  .ap-floating-card { width: 190px; padding: 14px; }
  .ap-card-left { top: 26px; left: 0; }
  .ap-card-right { right: 0; bottom: 70px; }
  .ap-card-bottom { display: none; }
  .ap-section { padding: 70px 0; }
  .ap-section-title { margin-bottom: 26px; }
  .ap-shot-card { min-height: 480px; }
  .ap-form-head, .ap-form-body { padding: 22px; }
  .ap-final-cta { padding: 24px; }
  .ap-footer-bottom { justify-content: center; text-align: center; }
  .ap-whatsapp small { display: none; }
  .ap-whatsapp { padding: 12px 14px; }
}

@media (max-width: 575.98px) {
  .ap-store img { height: 44px; }
  .ap-store { min-height: 58px; }
  .ap-hero-pill { font-size: 12px; }
  .ap-floating-card { width: 166px; }
  .ap-card-right { bottom: 36px; }
  .ap-showcase-rail { grid-auto-columns: 82%; }
  .ap-shot-card { min-height: 520px; }
  .ap-legal-card { padding: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}

/* Legal imported content polish */
.ap-legal-content .starter-section {
  padding: 0;
  background: transparent;
}
.ap-legal-content .starter-section > .container {
  border-radius: 30px;
  background: #fff;
  border: 1px solid var(--ap-line);
  box-shadow: var(--ap-shadow-soft);
  padding: 36px;
}
.ap-legal-content .features-item,
.ap-legal-content .row {
  position: relative;
}
.ap-legal-content .border,
.ap-legal-content .rounded-3 {
  border-color: rgba(31,31,81,.12) !important;
}
.ap-legal-content .bg-white {
  background: #fff !important;
}
.ap-legal-content .badge {
  border-radius: 999px;
  padding: 8px 10px;
  color: var(--ap-navy) !important;
}
.ap-legal-content img {
  border-radius: 24px;
  filter: drop-shadow(0 22px 60px rgba(31,31,81,.16));
}
@media (max-width: 575.98px) {
  .ap-legal-content .starter-section > .container { padding: 22px; }
}

/* Lightweight inline icon substitutes — no icon font needed */
.bi { font-style: normal; line-height: 1; display: inline-flex; align-items: center; justify-content: center; }
.bi::before { display: inline-block; }
.bi-list::before { content: "☰"; }
.bi-x::before { content: "×"; }
.bi-chevron-down::before { content: "⌄"; }
.bi-stars::before { content: "✦"; }
.bi-shield-check::before { content: "✓"; }
.bi-patch-check::before,
.bi-patch-check-fill::before { content: "✓"; }
.bi-grid-1x2::before,
.bi-grid-fill::before { content: "▦"; }
.bi-lightning-charge::before,
.bi-lightning-charge-fill::before,
.bi-lightning::before { content: "⚡"; }
.bi-megaphone::before { content: "◉"; }
.bi-person-video3::before,
.bi-person-video2::before { content: "◎"; }
.bi-calendar2-check::before,
.bi-calendar-event::before { content: "◷"; }
.bi-geo-alt-fill::before,
.bi-geo-alt::before { content: "●"; }
.bi-compass::before { content: "◇"; }
.bi-phone::before { content: "▯"; }
.bi-building-check::before { content: "▣"; }
.bi-person-heart::before { content: "♡"; }
.bi-shop-window::before { content: "□"; }
.bi-camera-reels::before { content: "◌"; }
.bi-broadcast::before { content: "◍"; }
.bi-bag-check::before { content: "▢"; }
.bi-briefcase::before { content: "▤"; }
.bi-arrow-right::before { content: "→"; }
.bi-arrow-up-short::before { content: "↑"; }
.bi-instagram::before { content: "IG"; font-size: .72em; font-weight: 900; letter-spacing: -.04em; }
.bi-whatsapp::before { content: "☎"; }
.bi-envelope::before,
.bi-envelope-paper::before { content: "✉"; }
.bi-telephone::before { content: "☎"; }
