* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #f6faff;
  overflow-x: hidden;
}

h1, h2, h3, .font-display {
  font-family: 'Plus Jakarta Sans', sans-serif;
}

/* ── Line pattern background ───────────────────── */
.hero-bg {
  background-color: #e6e9ed;
  background-image:
    linear-gradient(rgba(100,120,90,0.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(100,120,90,0.13) 1px, transparent 1px);
  background-size: 48px 48px;
  position: relative;
}

/* Radial fade so lines fade toward center */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 40%, #e8ede6 30%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

/* ── Navbar ─────────────────────────────────────── */
.navbar-floating {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 64px);
  max-width: 1200px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 16px;
  z-index: 100;
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

/* On scroll — full width, pinned to top */
.navbar-scrolled {
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
  transform: none;
  border-radius: 0;
  border-left: none;
  border-right: none;
  border-top: none;
  box-shadow: 0 1px 0 rgba(0,0,0,0.08), 0 4px 16px rgba(0,0,0,0.05);
}

/* ── Floating icon cards ─────────────────────────── */
.float-card {
  position: absolute;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  animation: floatY 4s ease-in-out infinite;
}
.float-card-left {
  left: 6%;
  top: 52%;
  animation-delay: 0s;
}
.float-card-right {
  right: 6%;
  top: 50%;
  animation-delay: 1.5s;
}
@keyframes floatY {
  0%, 100% { transform: translateY(0px) rotate(-4deg); }
  50%       { transform: translateY(-14px) rotate(-4deg); }
}
.float-card-right { animation-name: floatYRight; }
@keyframes floatYRight {
  0%, 100% { transform: translateY(0px) rotate(4deg); }
  50%       { transform: translateY(-12px) rotate(4deg); }
}

/* ── Badge pill ────────────────────────────────────── */
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 999px;
  padding: 5px 16px 5px 5px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

/* ── Email input ────────────────────────────────────── */
.email-input {
  background: white;
  border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: 12px;
  padding: 14px 20px;
  font-size: 15px;
  font-family: 'DM Sans', sans-serif;
  outline: none;
  transition: border-color 0.2s;
  color: #1a1a1a;
}
.email-input::placeholder { color: #9ca3af; }
.email-input:focus { border-color: #155DFC; }

/* ── Hero entry animation ───────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.7s cubic-bezier(0.4,0,0.2,1) forwards;
}
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.22s; }
.delay-3 { animation-delay: 0.36s; }
.delay-4 { animation-delay: 0.5s; }
.delay-5 { animation-delay: 0.62s; }

/* ── Nav link hover ──────────────────────────────────── */
.nav-link {
  position: relative;
  font-size: 15px;
  color: #374151;
  font-weight: 500;
  transition: color 0.2s;
  text-decoration: none;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 2px;
  background: #155DFC;
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.2s cubic-bezier(0.4,0,0.2,1);
}
.nav-link:hover { color: #155DFC; }
.nav-link:hover::after { transform: scaleX(1); }

.bg-theme-blue{
  background: #155DFC;
}

.text-blue{
  color: #155DFC;
}

.bg-theme-blue-700{
  background: #1157f0;
}

    /* Card header colours */
.hdr-green { background: var(--green); }
.hdr-blue  { background: var(--blue);  }
.hdr-peach { background: var(--peach); }

/* Feature row dotted separator */
.feat-item + .feat-item {
  border-top: 1.5px dashed #d1d5db;
}

/* Card hover lift */
.feat-card {
  transition: transform 0.25s cubic-bezier(.4,0,.2,1), box-shadow 0.25s cubic-bezier(.4,0,.2,1);
}
.feat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.10);
}

/* Blue shape decoration (bottom-right, like screenshot) */
.deco-shape {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  background: var(--accent-blue);
  border-radius: 50% 50% 50% 10% / 50% 50% 10% 50%;
  opacity: 0.12;
  pointer-events: none;
}

/* Fade-up entry */
@keyframes fadeUp {
  from { opacity:0; transform:translateY(28px); }
  to   { opacity:1; transform:translateY(0); }
}
.fade-up { animation: fadeUp 0.6s cubic-bezier(.4,0,.2,1) both; }
.d1 { animation-delay: 0.05s; }
.d2 { animation-delay: 0.18s; }
.d3 { animation-delay: 0.31s; }

/* Fade up */
@keyframes fadeUp {
  from { opacity:0; transform:translateY(22px); }
  to   { opacity:1; transform:translateY(0); }
}
.fade-up { animation: fadeUp 0.65s cubic-bezier(.4,0,.2,1) both; }
.d1 { animation-delay: 0.05s; }
.d2 { animation-delay: 0.18s; }
.d3 { animation-delay: 0.30s; }

.blob-img {
  border-radius: 44% 56% 56% 44% / 48% 48% 52% 52%;
  overflow: hidden;
  position: relative;
}

.blob-img-2 {
  border-radius: 38% 62% 55% 45% / 45% 45% 55% 55%;
  overflow: hidden;
  position: relative;
}

  /* Input base */
.field {
  width: 100%;
  background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 10px;
  padding: 13px 16px;
  font-size: 14px;
  font-family: 'Instrument Sans', sans-serif;
  color: #fff;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  backdrop-filter: blur(4px);
}
.field::placeholder { color: rgba(255,255,255,0.65); }
.field:focus {
  border-color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.22);
}
select.field option { color: #1e293b; background: #fff; }

/* Phone prefix */
.phone-wrap { position: relative; }
.phone-prefix {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  pointer-events: none;
  z-index: 1;
}
.phone-wrap .field { padding-left: 68px; }

/* Checkbox custom */
.custom-cb { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; }
.custom-cb input[type=checkbox] { display: none; }
.cb-box {
  width: 18px; height: 18px; min-width: 18px;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 4px;
  margin-top: 2px;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.15s;
}
.custom-cb input:checked + .cb-box {
  background: #fff;
  border-color: #fff;
}
.custom-cb input:checked + .cb-box svg { display: block; }
.cb-box svg { display: none; }

/* Send button */
.btn-send {
  background: #155DFC;
  color: #fff;
  font-family: 'Instrument Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 13px 36px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  display: inline-flex; align-items: center; gap-8px;
}
.btn-send:hover { background: #1157f0; transform: translateY(-1px); }
.btn-send:active { transform: translateY(0); }

/* Contact card */
.contact-card {
  background: #f1f5f9;
  border-radius: 20px;
  padding: 36px 28px;
}

/* Icon circle */
.icon-circle {
  width: 64px; height: 64px;
  border-radius: 50%;
  border: 2px solid #2e9dda;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px;
}

/* Fade up */
@keyframes fadeUp {
  from { opacity:0; transform:translateY(22px); }
  to   { opacity:1; transform:translateY(0); }
}
.fade-up { animation: fadeUp 0.6s cubic-bezier(.4,0,.2,1) both; }
.d1 { animation-delay: 0.05s; }
.d2 { animation-delay: 0.15s; }
.d3 { animation-delay: 0.28s; }
.d4 { animation-delay: 0.40s; }


.footer-link {
  color: #94a3b8;
  font-size: 14px;
  text-decoration: none;
  display: block;
  padding: 6px 0;
  transition: color 0.18s, padding-left 0.18s;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.footer-link:last-child { border-bottom: none; }
.footer-link:hover { color: #fff; padding-left: 4px; }

.social-btn {
  width: 38px; height: 38px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: #94a3b8;
  transition: all 0.18s;
  text-decoration: none;
}
.social-btn:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.25); color: #fff; }

.col-heading {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.col-heading::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(46,157,218,0.5), transparent);
}

.badge-blue {
  display: inline-block;
  background: rgba(46,157,218,0.15);
  color: #2e9dda;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  border: 1px solid rgba(46,157,218,0.25);
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  color: #94a3b8;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.18s;
}
.contact-row:last-child { border-bottom: none; }
.contact-row:hover { color: #fff; }
.contact-icon {
  width: 32px; height: 32px; border-radius: 8px;
  background: rgba(46,157,218,0.12);
  border: 1px solid rgba(46,157,218,0.2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* Scroll to top */
.scroll-top {
  width: 36px; height: 36px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: #64748b;
  cursor: pointer;
  transition: all 0.18s;
  background: transparent;
}
.scroll-top:hover { border-color: #2e9dda; color: #2e9dda; background: rgba(46,157,218,0.08); }


/* Software Page */

.cat-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  border-radius: 14px;
  border: 1.5px solid #e2e8f0;
  background: #fff;
  transition: all 0.2s cubic-bezier(.4,0,.2,1);
  cursor: default;
  min-width: 90px;
}
.cat-pill:hover {
  border-color: #2e9dda;
  background: #f0f9ff;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(46,157,218,0.12);
}
.cat-pill .icon-wrap {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: #f1f5f9;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.cat-pill:hover .icon-wrap { background: #dbeafe; }
.cat-pill span { font-size: 12px; font-weight: 600; color: #475569; letter-spacing: 0.01em; }

/* ── Section divider band ──────────────────────── */
.blue-band {
  background: #2e9dda;
  position: relative;
}

/* ── Highlight text ────────────────────────────── */
.highlight { color: #2e9dda; font-weight: 600; }

/* ── App store badges ──────────────────────────── */
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #0f1117;
  color: #fff;
  border-radius: 10px;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 600;
  font-family: 'Instrument Sans', sans-serif;
  text-decoration: none;
  transition: background 0.18s, transform 0.15s;
  border: 1px solid rgba(255,255,255,0.1);
}
.store-badge:hover { background: #1e293b; transform: translateY(-1px); }
.store-badge .sub { font-size: 10px; font-weight: 400; opacity: 0.65; display: block; line-height: 1; }
.store-badge .main { font-size: 14px; font-weight: 700; display: block; line-height: 1.3; }

/* ── Phone mockup ──────────────────────────────── */
.phone-frame {
  width: 240px;
  border-radius: 32px;
  background: #0f1117;
  border: 6px solid #1e293b;
  box-shadow: 0 32px 80px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.05);
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}
.phone-notch {
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 90px; height: 22px;
  background: #0f1117;
  border-radius: 0 0 16px 16px;
  z-index: 10;
}
.phone-screen {
  background: #fff;
  padding: 28px 0 0;
  min-height: 420px;
}

/* ── Laptop mockup ─────────────────────────────── */
.laptop-frame {
  border-radius: 10px 10px 0 0;
  background: #1e293b;
  border: 6px solid #334155;
  box-shadow: 0 24px 64px rgba(0,0,0,0.25);
  overflow: hidden;
}
.laptop-screen {
  background: #f8fafc;
  min-height: 260px;
  overflow: hidden;
}
.laptop-base {
  height: 18px;
  background: #1e293b;
  border-radius: 0 0 8px 8px;
  position: relative;
}
.laptop-base::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; transform: translateX(-50%);
  width: 60px; height: 4px;
  background: #334155;
  border-radius: 0 0 4px 4px;
}

/* ── Fade up ───────────────────────────────────── */
@keyframes fadeUp {
  from { opacity:0; transform:translateY(24px); }
  to   { opacity:1; transform:translateY(0); }
}
.fade-up { animation: fadeUp 0.65s cubic-bezier(.4,0,.2,1) both; }
.d1 { animation-delay: 0.05s; }
.d2 { animation-delay: 0.18s; }
.d3 { animation-delay: 0.30s; }
.d4 { animation-delay: 0.42s; }
.d5 { animation-delay: 0.54s; }



/* Feature card */
.feat-card {
  background: #fff;
  border: 1.5px solid #e8ecf0;
  border-radius: 20px;
  padding: 16px;
  text-align: center;
  transition: all 0.25s cubic-bezier(.4,0,.2,1);
  position: relative;
  overflow: hidden;
}
.feat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.25s;
}
.feat-card.green::before  { background: linear-gradient(135deg,#f0fdf4,#fff); }
.feat-card.blue::before   { background: linear-gradient(135deg,#eff6ff,#fff); }
.feat-card.orange::before { background: linear-gradient(135deg,#fff7ed,#fff); }
.feat-card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(0,0,0,0.09); }
.feat-card:hover::before { opacity: 1; }
.feat-card:hover.green  { border-color: #86efac; }
.feat-card:hover.blue   { border-color: #93c5fd; }
.feat-card:hover.orange { border-color: #fdba74; }

/* Partner logos strip */
.partner-strip {
  display: flex;
  align-items: center;
  gap: 12px;
  overflow: hidden;
}
.partner-logo {
  flex-shrink: 0;
  background: #fff;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  padding: 8px 14px;
  font-size: 11px;
  font-weight: 700;
  color: #64748b;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

/* Stat card */
.stat-card {
  background: #fff;
  border: 1.5px solid #e8ecf0;
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Fade up */
@keyframes fadeUp {
  from { opacity:0; transform:translateY(24px); }
  to   { opacity:1; transform:translateY(0); }
}
.fade-up { animation: fadeUp 0.65s cubic-bezier(.4,0,.2,1) both; }
.d1{animation-delay:.05s} .d2{animation-delay:.15s}
.d3{animation-delay:.25s} .d4{animation-delay:.35s}
.d5{animation-delay:.45s} .d6{animation-delay:.55s}



/* Contacts */

    /* ── Field styles ─────────────────────────────── */
    .field {
      width: 100%;
      background: rgba(255,255,255,0.13);
      border: 1.5px solid rgba(255,255,255,0.28);
      border-radius: 10px;
      padding: 13px 16px;
      font-size: 14px;
      font-family: 'Instrument Sans', sans-serif;
      color: #fff;
      outline: none;
      transition: border-color 0.2s, background 0.2s;
    }
    .field::placeholder { color: rgba(255,255,255,0.5); }
    .field:focus { border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.2); }
    select.field option { color: #1e293b; background: #fff; }

    /* Phone prefix */
    .phone-wrap { position: relative; }
    .phone-prefix {
      position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
      display: flex; align-items: center; gap: 5px;
      font-size: 13px; color: rgba(255,255,255,0.8);
      pointer-events: none; z-index: 1;
    }
    .phone-wrap .field { padding-left: 70px; }

    /* Light field (for support/training forms on white bg) */
    .field-light {
      width: 100%;
      background: #f8fafc;
      border: 1.5px solid #e2e8f0;
      border-radius: 10px;
      padding: 13px 16px;
      font-size: 14px;
      font-family: 'Instrument Sans', sans-serif;
      color: #1e293b;
      outline: none;
      transition: border-color 0.2s, box-shadow 0.2s;
    }
    .field-light::placeholder { color: #94a3b8; }
    .field-light:focus { border-color: #2e9dda; box-shadow: 0 0 0 3px rgba(46,157,218,0.1); }
    select.field-light option { color: #1e293b; }

    /* Custom checkbox — blue bg */
    .custom-cb { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; }
    .custom-cb input[type=checkbox] { display: none; }
    .cb-box {
      width: 18px; height: 18px; min-width: 18px;
      border: 2px solid rgba(255,255,255,0.4); border-radius: 4px;
      margin-top: 2px; background: rgba(255,255,255,0.1);
      display: flex; align-items: center; justify-content: center;
      transition: all 0.15s;
    }
    .custom-cb input:checked + .cb-box { background: #fff; border-color: #fff; }
    .custom-cb input:checked + .cb-box svg { display: block; }
    .cb-box svg { display: none; }

    /* Custom checkbox — light bg */
    .custom-cb-light { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; }
    .custom-cb-light input[type=checkbox] { display: none; }
    .cb-box-light {
      width: 18px; height: 18px; min-width: 18px;
      border: 2px solid #cbd5e1; border-radius: 4px;
      margin-top: 2px; background: #fff;
      display: flex; align-items: center; justify-content: center;
      transition: all 0.15s;
    }
    .custom-cb-light input:checked + .cb-box-light { background: #2e9dda; border-color: #2e9dda; }
    .custom-cb-light input:checked + .cb-box-light svg { display: block; }
    .cb-box-light svg { display: none; }

    /* Buttons */
    .btn-primary {
      display: inline-flex; align-items: center; gap: 8px;
      background: #155DFC; color: #fff;
      font-family: 'Instrument Sans', sans-serif; font-weight: 600; font-size: 14px;
      padding: 13px 28px; border-radius: 10px; border: none; cursor: pointer;
      transition: background 0.2s, transform 0.15s;
    }
    .btn-primary:hover { background: #1157f0; transform: translateY(-1px); }

    .btn-blue {
      display: inline-flex; align-items: center; gap: 8px;
      background: #2e9dda; color: #fff;
      font-family: 'Instrument Sans', sans-serif; font-weight: 600; font-size: 14px;
      padding: 13px 28px; border-radius: 10px; border: none; cursor: pointer;
      transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    }
    .btn-blue:hover { background: #2589c4; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(46,157,218,0.25); }

    /* Contact card (right sidebar) */
    .contact-card { background: #f1f5f9; border-radius: 20px; padding: 36px 28px; }
    .icon-circle {
      width: 60px; height: 60px; border-radius: 50%;
      border: 2px solid #2e9dda;
      display: flex; align-items: center; justify-content: center; margin: 0 auto 12px;
    }

    /* Support card */
    .support-card {
      background: #fff; border: 1.5px solid #e2e8f0; border-radius: 20px;
      padding: 28px; transition: all 0.22s cubic-bezier(.4,0,.2,1);
    }
    .support-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.08); border-color: #bfdbfe; }

    /* FAQ accordion */
    details summary { cursor: pointer; list-style: none; }
    details summary::-webkit-details-marker { display: none; }
    details[open] .chevron { transform: rotate(180deg); }
    .chevron { transition: transform 0.2s; }

    /* Fade up */
    @keyframes fadeUp {
      from { opacity:0; transform:translateY(22px); }
      to   { opacity:1; transform:translateY(0); }
    }
    .fade-up { animation: fadeUp 0.65s cubic-bezier(.4,0,.2,1) both; }
    .d1{animation-delay:.05s}.d2{animation-delay:.15s}.d3{animation-delay:.25s}
    .d4{animation-delay:.35s}.d5{animation-delay:.45s}.d6{animation-delay:.55s}

    /* Pricing */

        /* Toggle pill */
    .toggle-track {
      width: 52px; height: 28px;
      background: #111;
      border-radius: 999px;
      position: relative;
      cursor: pointer;
      transition: background 0.2s;
      flex-shrink: 0;
    }
    .toggle-thumb {
      width: 22px; height: 22px;
      background: #fff;
      border-radius: 50%;
      position: absolute;
      top: 3px; left: 3px;
      transition: transform 0.25s cubic-bezier(.4,0,.2,1);
    }
    .toggle-track.yearly .toggle-thumb { transform: translateX(24px); }

    /* Card hover lift */
    .plan-card { transition: transform 0.22s ease, box-shadow 0.22s ease; }
    .plan-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.10); }

    /* Animated price swap */
    .price-wrap { position: relative; overflow: hidden; height: 60px; }
    .price-val {
      position: absolute; inset: 0;
      display: flex; align-items: center;
      transition: opacity 0.2s ease, transform 0.2s ease;
    }
    .price-val.hidden-price { opacity: 0; transform: translateY(8px); pointer-events: none; }

    /* Scroll reveal */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .reveal { animation: fadeUp 0.55s ease both; }
    .delay-1 { animation-delay: 0.08s; }
    .delay-2 { animation-delay: 0.18s; }
    .delay-3 { animation-delay: 0.28s; }
    .delay-4 { animation-delay: 0.38s; }


    
     /* Checkmark circle animation */
    @keyframes scaleIn {
      0%   { opacity: 0; transform: scale(0.4); }
      70%  { transform: scale(1.08); }
      100% { opacity: 1; transform: scale(1); }
    }
    @keyframes drawCheck {
      from { stroke-dashoffset: 60; }
      to   { stroke-dashoffset: 0; }
    }
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes pulse-ring {
      0%   { transform: scale(1);   opacity: 0.4; }
      100% { transform: scale(1.6); opacity: 0; }
    }

    .check-circle {
      animation: scaleIn 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s both;
    }
    .check-path {
      stroke-dasharray: 60;
      stroke-dashoffset: 60;
      animation: drawCheck 0.45s ease 0.55s forwards;
    }
    .pulse-ring {
      position: absolute; inset: 0; border-radius: 50%;
      border: 2px solid #2563eb;
      animation: pulse-ring 1.4s ease-out 0.8s infinite;
    }

    .fade-up-1 { animation: fadeUp 0.6s ease 0.3s both; }
    .fade-up-2 { animation: fadeUp 0.6s ease 0.45s both; }
    .fade-up-3 { animation: fadeUp 0.6s ease 0.60s both; }
    .fade-up-4 { animation: fadeUp 0.6s ease 0.75s both; }
    .fade-up-5 { animation: fadeUp 0.6s ease 0.90s both; }

    /* Step cards */
    .step-card {
      background: #fff;
      border: 1.5px solid #e5e7eb;
      border-radius: 16px;
      padding: 24px;
      transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    }
    .step-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 16px 40px rgba(0,0,0,0.08);
      border-color: #bfdbfe;
    }

    /* buttons */
    .store-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: white;
      border: 1px solid #e5e7eb;
      border-radius: 12px;
      padding: 10px 18px;
      text-decoration: none;
      transition: 0.2s ease;
    }

    .store-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    }

    .store-btn .sub {
      font-size: 10px;
      color: #6b7280;
    }

    .store-btn .main {
      font-weight: 700;
      font-family: 'Plus Jakarta Sans', sans-serif;
    }

    /* images hover */
    .phone-img {
      transition: 0.3s ease;
    }

    .phone-img:hover {
      transform: translateY(-8px);
    }
