/* =========================================
   The First 10 Minutes — Landing Page CSS
   front.css
   ========================================= */

/* ---- Google Fonts Import ---- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Sora:wght@400;600;700;800&family=Bricolage+Grotesque:wght@400;500;600;700;800&family=Space+Mono:wght@400;700&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* ---- CSS Custom Properties ---- */
:root {
  /* Colors */
  --color-primary:     rgba(206, 32, 41, 1);
  --color-primary-btn:     rgba(226, 57, 54, 1);
  --color-primary-dark:#B71C1C;
  --color-navy:        rgba(55, 76, 108, 1);
  --color-navy-light:  #2C3E66;
  --color-navy-dark:   #152239;
  --color-white:       #FFFFFF;
  --color-bg:          #F7F8FC;
  --color-bg-section:  #FFFFFF;
  --color-text:        #1B2A4A;
  --color-text-muted:  rgba(17, 35, 83, 0.7);
  --color-text-muted2:  rgba(90, 102, 136, 1);
  --color-text-muted3:  rgba(107, 122, 155, 1);
  --color-text-light:  #9AAABE;
  --color-border:      #E4E8F0;
  --color-card-bg:     #FFFFFF;
  --color-red-soft:    rgba(226, 57, 54, 0.12);
  --color-green:       rgba(21, 160, 106, 1);

  /* Typography */
  --font-display:  'Bricolage Grotesque', 'Sora', sans-serif;
  --font-sora:  'Sora', sans-serif;
  --font-body:     'Plus Jakarta Sans', 'Inter', sans-serif;
  --font-mono:     'Space Mono', monospace;
  --font-ui:       'Inter', sans-serif;

  /* Spacing */
  --section-py:    50px;
  --section-py-sm: 30px;

  /* Radius */
  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   28px;
  --radius-xl:   32px;
  --radius-pill: 999px;

  /* Shadows */
  --shadow-card:  0 4px 24px rgba(27, 42, 74, 0.08);
  --shadow-hover: 0 8px 40px rgba(27, 42, 74, 0.14);
  --shadow-btn:   0 4px 16px rgba(214, 40, 40, 0.30);
}

/* ---- Base Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-text);
  background-color: var(--color-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- Typography Helpers ---- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: var(--color-red-soft);
  border: 1px solid rgba(226, 57, 54, 0.12);
  border-radius: var(--radius-pill);
  padding: 6px 16px;
}

.eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-primary);
  display: inline-block;
  flex-shrink: 0;
}

.section-title {
  font-family: var(--font-sora);
  font-size: clamp(32px, 4.5vw, 64px);
  font-weight: 600;
  line-height: 1.12;
  color: var(--color-navy);
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 19px;
  color: var(--color-text-muted3);
  line-height: 1.7;
  max-width: 590px;
  margin-left: auto;
  margin-right: auto;
}

.text-red { color: var(--color-primary); }

/* ---- Buttons ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-primary-btn);
  color: var(--color-white);
  font-family: var(--font-ui);
  font-size: 19px;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
  box-shadow: var(--shadow-btn);
  white-space: nowrap;
}
.btn-primary.hbtn {

padding-top: 10px;
padding-right: 20px;
padding-bottom: 10px;
padding-left: 20px;
border-radius: 12px;
font-family: var(--font-body);
font-weight: 600;
font-size: 14px;
line-height: 20px;
letter-spacing: 0px;
text-align: center;


}
.btn-primary:hover {
  background: var(--color-primary-dark);
  box-shadow: 0 6px 24px rgba(214, 40, 40, 0.40);
  transform: translateY(-1px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: rgba(17, 35, 83, 1);
  font-family: var(--font-ui);
  font-size: 19px;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(214, 222, 239, 1);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
  white-space: nowrap;
}

.btn-outline:hover {
  border-color: var(--color-navy);
  background: var(--color-bg);
  transform: translateY(-1px);
}

/* =============================================
   NAVBAR
   ============================================= */
.navbar-front {
  /* position: sticky; */
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  /* border-bottom: 1px solid var(--color-border); */
  padding: 0 0;
}

.navbar-front .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 4px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 2px;
}

.brand-logo img {
width: 64px;
}

.brand-logo .logo-icon {
  width: 36px;
  height: 36px;
  border: 2.5px solid var(--color-navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 2px;
  position: relative;
}

.brand-logo .logo-icon i {
  color: var(--color-primary);
  font-size: 16px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-bottom: 0;
}

.nav-menu .nav-link {
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text-muted);
  padding: 8px 16px; letter-spacing: 0px;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}

.nav-menu .nav-link:hover,
.nav-menu .nav-link.active {
  color: var(--color-primary);
  font-weight: 700;
  /* background: var(--color-red-soft); */
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero-section {
  /* min-height: calc(100vh - 72px); */
  display: flex;
  align-items: center;
  padding: 40px 0 30px;
  background: var(--color-white);
  overflow: hidden;
  position: relative;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 75% 50%, rgba(214, 40, 40, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero-left {
  padding-right: 24px;
}

.hero-headline {
  font-family: var(--font-sora);
  font-size: clamp(40px, 5.5vw, 70px);
  font-weight: 600;
  line-height: 1.08;
  color: var(--color-navy);
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero-headline .highlight {
  color: var(--color-primary); font-weight: 700;
}

.hero-desc {
  font-family: var(--font-ui);
  font-size: 19px; font-weight: 400;
  color: var(--color-text-muted2);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 16px;
}

.avatar-stack {
  display: flex;
  align-items: center;
}

.avatar-stack .avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2.5px solid white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  color: white;
  margin-left: -10px;
}

.avatar-stack .avatar:first-child { margin-left: 0; }
.avatar-a { background: #4B7BE5; }
.avatar-b { background: rgba(21, 160, 106, 1); }
.avatar-c { background: #9C6FDE; }
.avatar-d { background: #F5A623; }

.proof-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.proof-stars {
  display: flex;
  gap: 3px;
}

.proof-stars i { color: #F5A623; font-size: 14px; }

.proof-label {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(17, 35, 83, 0.6);
}

.proof-label strong {
  font-weight: 700;
  color: var(--color-navy);
}
/* ============================================
   HERO RIGHT — STAGE
   ============================================ */
.hero-right {
    position: relative;
    min-height: 760px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phones-stage {
    position: relative;
    width: 100%;
    max-width: 560px;
    height: 760px;
}

/* ============================================
   PHONE IMAGES
   ============================================ */
.phone-img {
    position: absolute;
    height: auto;
    filter: drop-shadow(0 30px 50px rgba(15, 23, 42, 0.18));
    user-select: none;
    -webkit-user-drag: none;
}

.phone-home {
    width: 280px;
    top: 0;
    left: 6px;
    z-index: 2;
}

.phone-call {
    width: 320px;
bottom: 100px;
    right: -10px;
    z-index: 3;
}

/* ============================================
   FLOATING CARDS — SHARED
   ============================================ */
.float-card {
    position: absolute;
    border-radius: 18px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 10;
    min-width: 200px;
}

.float-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.icon-mint     { background: #d4f4dd; color: #16a34a; }
.icon-lavender { background: #e8e4f7; color: #6366f1; }
.icon-peach    { background: #ffe2dc; color: #ef4444; }

.float-body { display: flex; flex-direction: column; gap: 2px; }

.float-title {
    font-weight: 700;
    font-size: 13px; font-family: var(--font-display);
    color: rgba(17, 35, 83, 1);
    letter-spacing: -0.2px;
}

.float-sub {
     font-weight: 400;
    font-size: 11px; font-family: var(--font-mono);
    color: #94a3b8;
}


/* ============================================
   GLASS CARDS (CPR + Medical facts)
   ============================================ */
.float-glass {
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(18px) saturate(180%);
    -webkit-backdrop-filter: blur(18px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow:
        0 8px 32px rgba(31, 41, 55, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

/* ============================================
   SOLID CARDS (Emergency steps + SOS)
   ============================================ */
.float-solid {
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08),
                0 2px 6px rgba(15, 23, 42, 0.04);
}

/* ============================================
   CARD POSITIONS
   ============================================ */
.float-cpr {
    top: 36px;
    left: -78px;
}

.float-medical {
    top: 200px;
    right: -10px;
}

.float-steps {
bottom: 249px;
    left: -50px;
}

.float-sos {
    bottom: 106px;
    right: -20px;
}

/* ============================================
   SUBTLE FLOAT ANIMATION
   ============================================ */
@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-8px); }
}

.float-card { animation: floatY 5s ease-in-out infinite; }
.float-cpr     { animation-delay: 0s; }
.float-medical { animation-delay: 1.2s; }
.float-steps   { animation-delay: 2s; }
.float-sos     { animation-delay: 0.6s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1199px) {
    .phones-stage { transform: scale(0.92); transform-origin: center; }
}

@media (max-width: 991px) {
    .hero-right { min-height: 680px; margin-top: 60px; }
    .phones-stage { transform: scale(0.85); transform-origin: top center; }
}

@media (max-width: 575px) {
    .phones-stage {
        transform: scale(0.7);
        transform-origin: top center;
        height: 640px;
    }
    .float-cpr     { left: 0; }
    .float-medical { right: 0; }
    .float-steps   { left: 10px; }
    .float-sos     { right: 0; }
}
/* ============================================
   RESPONSIVE — full repositioning per device
   ============================================ */

.hero-right { overflow: visible; }

/* ============================================
   LARGE DESKTOP (1200px – 1399px)
   slight shrink, keep layout intact
   ============================================ */
@media (max-width: 1399.98px) {
    .phone-home   { width: 260px; left: 34px;     top: 0; }
    .phone-call   { width: 300px; right: -20px; bottom: 100px; }

    .float-cpr     { top: 30px;   left: -60px; }
    .float-medical { top: 190px;  right: -20px; }
    .float-steps   { bottom: 240px; left: -40px; }
    .float-sos     { bottom: 100px; right: -30px; }
}

/* ============================================
   SMALL DESKTOP / LARGE TABLET (992px – 1199px)
   col-md-5 ≈ 400px wide, must tighten
   ============================================ */
@media (max-width: 1199.98px) {
    .hero-right   { min-height: 700px; }
    .phones-stage { height: 700px; }

    .phone-home   { width: 230px; left: 10px;  top: 10px; }
    .phone-call   { width: 260px; right: 0;    bottom: 90px; }

    .float-card   { min-width: 180px; padding: 12px 14px; }
    .float-icon   { width: 38px; height: 38px; font-size: 16px; }
    .float-title  { font-size: 12px; }
    .float-sub    { font-size: 10px; }

    .float-cpr     { top: 20px;    left: -40px; }
    .float-medical { top: 170px;   right: -10px; }
    .float-steps   { bottom: 220px; left: -30px; }
    .float-sos     { bottom: 90px;  right: -10px; }
}

/* ============================================
   TABLET PORTRAIT (768px – 991px)
   col-md-5 still side-by-side but very narrow (~310px)
   ============================================ */
@media (max-width: 991.98px) {
    .hero-right   { min-height: 600px; margin-top: 40px; }
    .phones-stage { height: 600px; }

    .phone-home   { width: 195px; left: 0;   top: 10px; }
    .phone-call   { width: 220px; right: 0;  bottom: 70px; }

    .float-card   { min-width: 160px; padding: 10px 12px; gap: 10px; }
    .float-icon   { width: 34px; height: 34px; font-size: 14px; border-radius: 10px; }
    .float-title  { font-size: 11px; }
    .float-sub    { font-size: 9px; }

    .float-cpr     { top: 10px;    left: -30px; }
    .float-medical { top: 150px;   right: -10px; }
    .float-steps   { bottom: 190px; left: -20px; }
    .float-sos     { bottom: 80px;  right: 0; }
}

/* ============================================
   MOBILE LANDSCAPE / TABLET STACKED (≤767px)
   column stacks full-width — full size returns
   ============================================ */
@media (max-width: 767.98px) {
    .hero-right {
        min-height: 720px;
        margin-top: 60px;
        display: flex;
        justify-content: center;
    }
    .phones-stage {
        width: 100%;
        max-width: 480px;
        height: 720px;
        margin: 0 auto;
    }

    .phone-home   { width: 260px; left: 10px;  top: 10px; }
    .phone-call   { width: 290px; right: 0;    bottom: 100px; }

    .float-card   { min-width: 190px; padding: 12px 16px; }
    .float-icon   { width: 40px; height: 40px; font-size: 17px; }
    .float-title  { font-size: 13px; }
    .float-sub    { font-size: 11px; }

    .float-cpr     { top: 30px;    left: 0; }
    .float-medical { top: 180px;   right: 0; }
    .float-steps   { bottom: 220px; left: 0; }
    .float-sos     { bottom: 90px;  right: 0; }
}

/* ============================================
   MOBILE (≤575px)
   tighter — cards may overlap phones slightly
   ============================================ */
@media (max-width: 575.98px) {
    .hero-right   { min-height: 620px; margin-top: 30px; }
    .phones-stage { height: 620px; max-width: 360px; }

    .phone-home   { width: 215px; left: 10px;  top: 10px; }
    .phone-call   { width: 245px; right: 0;    bottom: 90px; }

    .float-card   { min-width: 160px; padding: 10px 12px; gap: 10px; }
    .float-icon   { width: 34px; height: 34px; font-size: 14px; }
    .float-title  { font-size: 11px; }
    .float-sub    { font-size: 9px; }

    .float-cpr     { top: 20px;    left: -10px; }
    .float-medical { top: 150px;   right: -5px; }
    .float-steps   { bottom: 190px; left: -10px; }
    .float-sos     { bottom: 80px;  right: -5px; }
}

/* ============================================
   SMALL MOBILE (≤400px)
   compact phones, cards hug edges
   ============================================ */
@media (max-width: 400px) {
    .hero-right   { min-height: 540px; }
    .phones-stage { height: 540px; max-width: 320px; }

    .phone-home   { width: 185px; left: 5px;   top: 5px; }
    .phone-call   { width: 210px; right: 0;    bottom: 80px; }

    .float-card   { min-width: 140px; padding: 8px 10px; gap: 8px; border-radius: 14px; }
    .float-icon   { width: 30px; height: 30px; font-size: 12px; border-radius: 8px; }
    .float-title  { font-size: 10px; }
    .float-sub    { font-size: 8px; }

    .float-cpr     { top: 10px;    left: -5px; }
    .float-medical { top: 130px;   right: -5px; }
    .float-steps   { bottom: 170px; left: -5px; }
    .float-sos     { bottom: 70px;  right: -5px; }
}
/* =============================================
   WHY IT MATTERS SECTION
   ============================================= */
.why-section {
  padding: var(--section-py) 0;
  /* background: var(--color-bg); */
}

.why-cards-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: stretch;
}

.why-card {
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border);
}
.why-card.one {
background: linear-gradient(180deg, #FFFFFF 0%, #FBF3F3 100%);
border: 1px solid rgba(243, 218, 218, 1);
}
.why-card.two {
background: linear-gradient(180deg, #FFFFFF 0%, #F1F5FC 100%);
border: 1px solid rgba(228, 234, 245, 1);
}

.why-card-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.why-card-label.label-red {
  background: rgba(252, 236, 236, 1);
  color: var(--color-primary);
  border: 1px solid #FFCDD2;  font-size: 11px;
  font-weight: 700;
}

.why-card-label.label-green {
  background: #E8F8EE;
  color: rgba(21, 160, 106, 1);
  border: 1px solid #C8E6C9;
}

.why-card-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 28px;
}

.why-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.why-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  position: relative;
  padding-bottom: 24px;
}

.why-step:last-child { padding-bottom: 0; }

.why-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 14px;
  top: 28px;
  bottom: 0;
  width: 2px;
  background: var(--color-navy);
}

.why-step-num {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.why-step-num.num-red {
  background: rgba(255, 255, 255, 1);
  color: var(--color-primary);
  border: 1px solid rgba(240, 201, 201, 1);
}

.why-step-num.num-green {
  background: #E8F8EE;
  color: rgba(21, 160, 106, 1);
  border: 1px solid rgba(200, 230, 214, 1);
}

.why-step-body { flex: 1; }

.why-step-title {
  font-family: var(--font-sora);
  font-size: 17px;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 4px;
}

.why-step-desc {
  font-family: var(--font-body);
  font-size: 14px; font-weight: 400;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.why-arrow-col {
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-arrow-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--color-navy);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 4px 20px rgba(27,42,74,0.3);
}
.why-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

/* Bigger screens: keep inline */
@media (min-width: 768px) {
    .why-card-header {
        flex-direction: row;
    }

    .why-card-label,
    .why-card-title {
        margin: 0;
    }
}

/* Smaller screens: stack vertically */
@media (max-width: 767px) {
    .why-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
}
/* =============================================
   FEATURES SECTION
   ============================================= */
.features-section {
  padding: var(--section-py) 0;
  background: var(--color-white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--color-white);
  border: 1px solid  rgba(227, 231, 233, 1);
  border-radius: var(--radius-md);
  padding: 22px 18px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.feature-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.feature-icon-wrap {
  width: 56px;
  height: 56px;
  background: var(--color-navy);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-icon-wrap i {
  font-size: 24px;
  color: white;
}

.feature-title {
  font-family: var(--font-sora);
  font-size: 24px;
  font-weight: 600;
  color: rgba(0, 0, 0, 1);
  margin-bottom: 10px;
}

.feature-desc {
  font-family: var(--font-body);
  font-size: 20px;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* =============================================
   HOW IT WORKS / DOWNLOAD CTA SECTION
   ============================================= */
.download-cta-section {
  padding: var(--section-py) 0;
  background: var(--color-white);
}

.download-cta-inner {
   background: radial-gradient(
    ellipse at 95% 0%,
    #7B2D5A 0%,
    #3B3E75 30%,
    #1E2557 60%,
    #2A3A7A 80%,
    #3D4F8A 100%
  );
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 420px;
  padding: 60px 64px;
  gap: 40px;
}

.download-cta-inner::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214,40,40,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.download-cta-eyebrow {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 135, 132, 1);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.download-cta-eyebrow::before {
  content: '●';
  font-size: 8px;
}

.download-cta-title {
  font-family: var(--font-sora);
  font-size: clamp(28px, 3.5vw, 50px);
  font-weight: 600;
  color: white;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.download-cta-desc {
  font-family: var(--font-body);
  font-size: 18px; font-weight: 400;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 490px;
}

.store-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #000;
  color: white;
  border-radius: 12px;
  padding: 10px 18px;
  border: 1.5px solid rgba(255,255,255,0.15);
  transition: background 0.2s, border-color 0.2s;
  cursor: pointer;
}

.store-btn:hover {
  background: #1a1a1a;
  border-color: rgba(255,255,255,0.3);
}

.store-btn i { font-size: 22px; }

.store-btn-text { display: flex; flex-direction: column; }
.store-btn-text small {
  font-size: 9px;
  opacity: 0.7;
  font-family: var(--font-ui);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.store-btn-text span {
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-ui);
}

.download-stats {
  display: flex;
  gap: 40px;
}

.dl-stat-num {
  font-family: var(--font-sora);
  font-size: 26px;
  font-weight: 700;
  color: white;
  line-height: 1;
  margin-bottom: 4px;
}

.dl-stat-label {
  font-family: var(--font-ui);
  font-size: 13px; font-weight: 400;
  color: rgba(255,255,255,0.6);
}

/* Phone mockup in CTA section */
.download-cta-phone {
  /* position: relative; */
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 380px;
}
.download-cta-phone img{
  position:absolute;
  bottom: 0;
  right: 0;
}
.cta-phone-hand-wrap {
  position: relative;
  width: 280px;
  height: 380px;
}

.cta-phone-frame {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 220px;
  background: #1a1a2e;
  border-radius: 30px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  overflow: hidden;
  padding: 44px 14px 16px;
  height: 360px;
}

.cta-phone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 20px;
  background: #000;
  border-radius: 10px;
}

.cta-phone-screen {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cta-phone-greeting {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  font-family: var(--font-body);
}

.cta-phone-sub {
  font-size: 9px;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-ui);
}

.cta-voice-banner {
  background: rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}

.cta-voice-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-green);
  box-shadow: 0 0 6px rgba(40,167,69,0.6);
}

.cta-voice-text {
  font-size: 9px;
  color: rgba(255,255,255,0.7);
  font-family: var(--font-ui);
  line-height: 1.4;
}

.cta-sos-btn {
  background: var(--color-primary);
  border-radius: 12px;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 4px;
}

.cta-sos-label {
  color: white;
  font-size: 13px;
  font-weight: 700;
  font-family: var(--font-body);
}

.cta-sos-sub {
  color: rgba(255,255,255,0.7);
  font-size: 9px;
  font-family: var(--font-ui);
}

.cta-sos-icon {
  width: 30px;
  height: 30px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 13px;
}

.cta-quick-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-top: 4px;
}

.cta-quick-btn {
  background: rgba(255,255,255,0.07);
  border-radius: 8px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.cta-quick-icon { font-size: 14px; }
.cta-quick-label { font-size: 8px; color: rgba(255,255,255,0.7); font-family: var(--font-ui); }
.cta-quick-sub   { font-size: 7px; color: rgba(255,255,255,0.4); font-family: var(--font-ui); }

/* =============================================
   CONTACT SECTION
   ============================================= */
.contact-section {
  padding: var(--section-py) 0;
  background: var(--color-bg);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 32px;
  align-items: start;
}

.contact-form-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border);
}

.contact-eyebrow {
  margin-bottom: 20px;
  font-family: var(--font-mono);
font-weight: 700;
font-style: Bold;
font-size: 12px;
line-height: 19.2px;
letter-spacing: 2.16px;
}

.contact-form-title {
  font-family: var(--font-sora);
  font-size: 36px;
  font-weight: 700;
  color: rgba(17, 35, 83, 1);
  line-height: 1.2;
  margin-bottom: 14px;
}

.contact-form-desc {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--color-text-muted2);
  line-height: 1.65;
  margin-bottom: 36px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-label {
  font-family: var(--font-sora);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-navy);
}

.form-control-front {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-text);
  background: var(--color-bg);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  resize: none;
}

.form-control-front::placeholder { color: var(--color-text-light); }

.form-control-front:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(214,40,40,0.10);
  background: white;
}

textarea.form-control-front { min-height: 110px; }

/* Contact right column */
.contact-right { display: flex; flex-direction: column; gap: 20px; }

.emergency-banner {
  background: var(--color-primary);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: white;
}

.emergency-banner-icon {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.emergency-banner-title {
  font-family: var(--font-sora);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.emergency-banner-sub {
  font-family: var(--font-ui);
  font-size: 13px;
  color: rgba(255, 255, 255, 1);
}

.contact-info-card {
  /* background: var(--color-navy); */
    background: radial-gradient(
    ellipse at 95% 0%,
    #7B2D5A 0%,
    #3B3E75 30%,
    #1E2557 60%,
    #2A3A7A 80%,
    #3D4F8A 100%
  );
  border-radius: var(--radius-md);
  padding: 32px;
}

.contact-info-title {
  font-family: var(--font-sora);
  font-size: 22px;
  font-weight: 700;
  color: white;
  margin-bottom: 28px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-info-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 16px;
  flex-shrink: 0;
}

.contact-info-label {
  font-family: var(--font-ui);
  font-size:11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 4px;
}

.contact-info-value {
  font-family: var(--font-sora);
  font-size: 15px;
  font-weight: 600;
  color: white;
}

/* =============================================
   FOOTER
   ============================================= */
.footer-front {
  background: var(--color-navy);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 0.72px solid rgba(255, 255, 255, 0.1);
}

.footer-brand-col { }

.footer-logo {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 20px;
}

.footer-logo .logo-num {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  color: white;
}

.footer-logo .logo-icon {
  width: 32px;
  height: 32px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 2px;
}

.footer-logo .logo-icon i { color: var(--color-primary); font-size: 14px; }

.footer-tagline {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.65;
  max-width: 280px;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
}

.social-btn:hover {
  background: rgba(255,255,255,0.16);
  color: white;
}

.footer-col-title {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-family: var(--font-body);
  font-size: 14px; font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s;
}

.footer-links a:hover { color: white; }

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copy {
  font-family: var(--font-body);
  font-size: 14px; font-weight: 400;
  color: rgba(255, 255, 255, 0.4);
}

.footer-made {
  font-family: var(--font-body);
  font-size: 12px; font-weight: 400;
  /* font-style: italic; */
  color: rgba(255, 255, 255, 0.3);
}

/* =============================================
   UTILITIES & ANIMATIONS
   ============================================= */
.text-center { text-align: center; }
.mb-4  { margin-bottom: 1rem; }
.mb-8  { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mt-4  { margin-top: 1rem; }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1200px) {
  .hero-headline { font-size: clamp(36px, 4.5vw, 56px); }
  .download-cta-inner { padding: 48px 44px; }
}

@media (max-width: 992px) {
  :root { --section-py: 72px; }

  .nav-menu { display: none; }
  .navbar-toggler-front { display: flex !important; }

  .hero-section {
    min-height: auto;
    padding: 64px 0 48px;
  }

  .hero-left { padding-right: 0; margin-bottom: 48px; }
  .hero-right { height: 440px; }

  .why-cards-row {
    grid-template-columns: 1fr;
  }
  .why-arrow-col { transform: rotate(90deg); }

  .features-grid { grid-template-columns: repeat(2, 1fr); }

  .download-cta-inner {
    grid-template-columns: 1fr;
    padding: 48px 36px;
    text-align: center;
  }
  /* .download-cta-phone { display: none; } */
  .download-cta-phone img{
    position: unset;
    margin-bottom: -100px;
  }
  .download-stats { justify-content: center; }
  .store-buttons { justify-content: center; }
  .download-cta-desc { margin-left: auto; margin-right: auto; }

  .contact-wrapper { grid-template-columns: 1fr; }
  .contact-right { order: -1; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  :root { --section-py: 56px; }

  .hero-headline { font-size: clamp(32px, 7vw, 44px); }

  .why-cards-row { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }
  .contact-form-card { padding: 32px 24px; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 576px) {
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-social-proof { flex-wrap: wrap; }
  .download-stats { flex-direction: column; gap: 20px; align-items: center; }
}

/* Navbar mobile toggle */
.navbar-toggler-front {
  display: none;
  width: 40px;
  height: 40px;
  background: var(--color-bg);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.navbar-toggler-front span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--color-navy);
  border-radius: 2px;
}

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(27,42,74,0.95);
  z-index: 9999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.mobile-nav.open { display: flex; }

.mobile-nav .nav-link {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: white;
  padding: 12px 32px;
  border-radius: var(--radius-sm);
  transition: color 0.2s;
}

.mobile-nav .nav-link:hover { color: var(--color-primary); }

.mobile-nav-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}


/* =============================================
   ERS PAGE
   ============================================= */

/* ---- ERS Hero ---- */
.ers-hero {
  padding: 72px 0 10px;
  background: var(--color-white);
  overflow: hidden;
  position: relative;
}

.ers-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 65% at 78% 45%, rgba(214, 40, 40, 0.045) 0%, transparent 70%);
  pointer-events: none;
}

.ers-hero__left { padding-right: 24px; }

.ers-hero__headline {
  font-family: var(--font-display);
  font-size: clamp(38px, 4.8vw, 62px);
  font-weight: 800;
  line-height: 1.06;
  color: var(--color-navy);
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.ers-hero__desc {
  font-family: var(--font-body);
  font-size: 16.5px;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 520px;
}

/* 3-phone cluster */
.ers-hero__right {
  position: relative;
  height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ers-phones {
  position: relative;
  width: 100%;
  height: 100%;
}

.ers-phone {
  position: absolute;
  top: 50%;
  left: 50%;
  pointer-events: none;
  user-select: none;
}

.ers-phone img {
  width: 100%;
  height: auto;
  display: block;
}

/* Back left — peeks out from behind, nudged down */
.ers-phone--left {
  width: 230px;
  transform: translate(-98%, -46%);
  z-index: 1;
  filter: drop-shadow(0 18px 40px rgba(27, 42, 74, 0.16));
}

/* Back right — mirrored */
.ers-phone--right {
  width: 230px;
  transform: translate(-2%, -46%);
  z-index: 1;
  filter: drop-shadow(0 18px 40px rgba(27, 42, 74, 0.16));
}

/* Front center — tallest, sits on top */
.ers-phone--center {
  width: 250px;
  transform: translate(-50%, -50%);
  z-index: 3;
  filter: drop-shadow(0 28px 60px rgba(27, 42, 74, 0.26));
  animation: ersPhoneFloat 6s ease-in-out infinite;
}

@keyframes ersPhoneFloat {
  0%, 100% { transform: translate(-50%, -50%); }
  50%      { transform: translate(-50%, calc(-50% - 10px)); }
}

/* ---- ERS Steps ---- */
.ers-steps-section {
  padding: var(--section-py) 0;
  background: var(--color-white);
}

.ers-steps__header { margin-bottom: 80px; }

.ers-steps {
  display: flex;
  flex-direction: column;
  gap: 70px;
}

.ers-step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* Flip: image left, text right */
.ers-step--flip .ers-step__body   { order: 2; }
.ers-step--flip .ers-step__visual { order: 1; }

.ers-step__eyebrow {
  font-family: var(--font-sora);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(226, 57, 54, 1);
  margin-bottom: 14px;
}

.ers-step__slash { opacity: 0.5; margin: 0 2px; }

.ers-step__title {
  font-family: var(--font-sora);
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 600;
  line-height: 1.14;
  color: var(--color-navy);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.ers-step__desc {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-text-muted);
  line-height: 1.72;
  max-width: 460px;
}

/* Checklist (step 02) */
.ers-step__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}

.ers-step__list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-body);
  font-size: 15.5px;
  color: var(--color-navy);
  line-height: 1.5;
}

.ers-step__check {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  background: var(--color-navy);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

/* Step visual */
.ers-step__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.ers-step__img {
  width: 100%;
  max-width: 460px;
  height: auto;
  border-radius: var(--radius-lg);
  filter: drop-shadow(0 16px 44px rgba(27, 42, 74, 0.10));
}

/* ---- ERS Badges (navy band) ---- */
.ers-badges-section {
  padding: var(--section-py) 0;
  background: var(--color-navy);
}

.eyebrow--on-dark {
  background: rgba(226, 57, 54, 0.12);
  border-color: rgba(226, 57, 54, 0.2);
  color: rgba(206, 32, 41, 1);
}

.eyebrow--on-dark .dot { background: rgba(206, 32, 41, 1); }

.ers-badges__title {
  font-family: var(--font-body);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.14;
  color: white;
  letter-spacing: -0.02em;
}

.ers-badges__title .text-red { color: #E63946; }

.ers-badges__subtitle {
  font-family: var(--font-body);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.55);
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.ers-badges__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.ers-badge {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 32px 16px 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  transition: background 0.2s, transform 0.2s, border-color 0.2s;
}

.ers-badge:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-4px);
}

.ers-badge__icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0px 10px 24px 0px rgba(0, 0, 0, 0.35);

  background: rgba(255, 255, 255, 0.002);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
}

.ers-badge__name {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  line-height: 1.4;
}

/* ---- ERS Industries ---- */
.ers-industries-section {
  padding: var(--section-py) 0;
  background: var(--color-white);
}

.ers-industries__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.ers-industry-card {
  background: var(--color-white);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.ers-industry-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.ers-industry-card__icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--color-red-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--color-primary);
  margin-bottom: 22px;
}

.ers-industry-card__name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 16px;
}

.ers-industry-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ers-tag {
  font-family: var(--font-ui);
  font-size: 12.5px;
  font-weight: 500;
  color: var(--color-text-muted);
  background: var(--color-bg);
  border-radius: var(--radius-sm);
  padding: 5px 12px;
}

/* ---- ERS Final CTA ---- */
.ers-cta-section {
  padding: 0 0 var(--section-py);
  background: var(--color-white);
}

.ers-cta {
  background: linear-gradient(135deg, #1B2A4A 0%, #2C3E66 55%, #3D2C5A 100%);
  border-radius: var(--radius-xl);
  padding: 90px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.ers-cta::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -60px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214, 40, 40, 0.20) 0%, transparent 70%);
  pointer-events: none;
}

.ers-cta__title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4.4vw, 54px);
  font-weight: 800;
  line-height: 1.12;
  color: white;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  position: relative;
}

.ers-cta__desc {
  font-family: var(--font-body);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 40px;
  position: relative;
}

.ers-cta__stores {
  justify-content: center;
  margin-bottom: 0;
  position: relative;
}

/* ---- ERS Responsive ---- */
@media (max-width: 1200px) {
  .ers-phone--left,
  .ers-phone--right { width: 200px; }
  .ers-phone--center { width: 220px; }
  .ers-badges__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 992px) {
  .ers-hero { padding: 56px 0 8px; }
  .ers-hero__left { padding-right: 0; margin-bottom: 48px; }
  .ers-hero__right { height: 440px; }

  .ers-phone--left,
  .ers-phone--right { width: 165px; }
  .ers-phone--center { width: 185px; }

  .ers-steps { gap: 60px; }
  .ers-steps__header { margin-bottom: 56px; }

  /* Stack: text always above image */
  .ers-step {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .ers-step--flip .ers-step__body   { order: 1; }
  .ers-step--flip .ers-step__visual { order: 2; }

  .ers-step__desc { max-width: none; }
  .ers-step__img  { max-width: 420px; }

  .ers-industries__grid { grid-template-columns: repeat(2, 1fr); }
  .ers-cta { padding: 64px 32px; }
}

@media (max-width: 768px) {
  .ers-hero__right { height: 360px; }
  .ers-phone--left,
  .ers-phone--right { width: 130px; }
  .ers-phone--center { width: 150px; }

  .ers-badges__grid { grid-template-columns: repeat(2, 1fr); }
  .ers-industries__grid { grid-template-columns: 1fr; }
  .ers-cta { padding: 52px 24px; }
}

@media (max-width: 576px) {
  .ers-badges__grid { grid-template-columns: 1fr; }
  .ers-cta__stores { flex-direction: column; align-items: center; }
}