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

    :root {
      --purple: #1FBC51;
      --purple-dark: #1FBC51;
      --text-dark: #0f0f0f;
      --text-mid: #444;
      --text-light: #888;
      --bg: #ffffff;
      --nav-height: 66px;
      --dark-btn: #1a1a1a;

       /* Primary brand greens */
  --green:          #1FBC51;
  --green-dark:     #17a044;
  --green-deep:     #0d8a38;
  --green-light:    #E9F8EF;
  --green-soft:     rgba(31, 188, 81, 0.08);
  --green-mid:      rgba(31, 188, 81, 0.15);
  --green-border:   rgba(31, 188, 81, 0.22);
  --green-glow:     rgba(31, 188, 81, 0.30);

  /* Neutrals */
  --white:          #ffffff;
  --off-white:      #f7fdf9;
  --gray-50:        #f0faf4;
  --gray-100:       #e8f5ed;
  --gray-200:       #d1e8d9;
  --gray-300:       #aecfba;
  --gray-500:       #5f7c69;
  --gray-700:       #354a3c;
  --ink:            #0d1f14;

  /* Black (used only for buttons/text, never for cards) */
  --black:          #0a1a10;

  /* Fonts */
  --font-heading:   'Montserrat', sans-serif;
  --font-body:      'Poppins', sans-serif;
  --font-serif:     'DM Serif Display', Georgia, serif;

  /* Spacing */
  --header-h:       72px;
  --section-pad:    100px 40px;

  /* Radius */
  --r-sm:   8px;
  --r-md:   14px;
  --r-lg:   22px;
  --r-xl:   32px;
  --r-xxl:  100px;

  /* Shadows */
  --shadow-sm:    0 2px 12px rgba(0,0,0,0.05);
  --shadow-md:    0 8px 32px rgba(0,0,0,0.08);
  --shadow-lg:    0 20px 60px rgba(0,0,0,0.10);
  --shadow-green: 0 8px 32px rgba(31,188,81,0.28);
  --shadow-green-lg: 0 20px 60px rgba(31,188,81,0.18);
    }

    html, body {
      font-family: 'DM Sans', sans-serif;
      background: var(--bg);
      color: var(--text-dark);
      overflow-x: hidden;
      min-height: 100vh;
    }

    /* ── PRELOADER ───────────────────────────────────────────── */
#preloader {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-inner {
  display: flex; flex-direction: column; align-items: center; gap: 20px;
}
.pre-loader-logo { width: 160px; animation: logoBreath 1.5s ease-in-out infinite; }
@keyframes logoBreath {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.04); opacity: 0.85; }
}
.preloader-ring {
  width: 48px; height: 48px;
  border: 3px solid var(--green-light);
  border-top-color: var(--green);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.preloader-bar {
  width: 160px; height: 3px;
  background: var(--green-light);
  border-radius: 10px; overflow: hidden;
}
.preloader-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--green-dark), var(--green));
  border-radius: 10px;
  animation: fillBar 1.8s ease forwards;
}
@keyframes fillBar { from { width: 0; } to { width: 100%; } }

    /* ══════════════════════════════
       NAVBAR
    ══════════════════════════════ */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 200;
      height: var(--nav-height);
      /* background: rgba(255,255,255,0.95); */
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(0,0,0,0.07);
    }

    .nav-inner {
      max-width: 1280px;
      width: 100%;
      margin: 0 auto;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 40px;
      gap: 24px;
    }

    /* ── Logo ── */
    .logo {
      display: flex;
      align-items: center;
      flex-shrink: 0;
      text-decoration: none;
    }

    .logo img {
      height: 50px;
      width: auto;
      display: block;
    }

    /* ── Center nav links ── */
    .nav-links {
      display: flex;
      align-items: center;
      gap: 4px;
      list-style: none;
    }

    .nav-links > li {
      position: relative;
    }

    .nav-links > li > a,
    .nav-links > li > button {
      display: flex;
      align-items: center;
      gap: 5px;
      padding: 8px 14px;
      font-family: 'DM Sans', sans-serif;
      font-size: 15px;
      font-weight: 400;
      color: var(--text-mid);
      text-decoration: none;
      background: none;
      border: none;
      cursor: pointer;
      border-radius: 8px;
      transition: color 0.2s, background 0.15s;
      white-space: nowrap;
      line-height: 1;
    }

    .nav-links > li > a:hover,
    .nav-links > li > button:hover {
      color: var(--text-dark);
      background: rgba(0,0,0,0.04);
    }

    /* Chevron */
    .chevron {
      font-size: 10px;
      transition: transform 0.25s ease;
    }

    .nav-links > li.open > button .chevron {
      transform: rotate(180deg);
    }

    /* ── Dropdown ── */
    .dropdown {
      position: absolute;
      top: calc(100% + 10px);
      left: 50%;
      background: #ffffff;
      border: 1px solid rgba(0,0,0,0.09);
      border-radius: 14px;
      box-shadow: 0 14px 44px rgba(0,0,0,0.12);
      min-width: 180px;
      padding: 8px;
      opacity: 0;
      pointer-events: none;
      transform: translateX(-50%) translateY(8px);
      transition: opacity 0.22s ease, transform 0.22s ease;
      z-index: 300;
    }

    .nav-links > li.open .dropdown {
      opacity: 1;
      pointer-events: all;
      transform: translateX(-50%) translateY(0);
    }

    .dropdown a {
      display: block;
      padding: 10px 16px;
      font-size: 14px;
      color: var(--text-mid);
      text-decoration: none;
      border-radius: 8px;
      transition: background 0.15s, color 0.15s;
    }

    .dropdown a:hover {
      background: rgba(91,78,245,0.07);
      color: var(--purple);
    }

    /* ── Right nav actions ── */
    .nav-actions {
      display: flex;
      align-items: center;
      gap: 18px;
      flex-shrink: 0;
    }

    /* Cart */
    .cart-btn {
      position: relative;
      background: none;
      border: none;
      cursor: pointer;
      padding: 2px;
      color: var(--text-dark);
      font-size: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      line-height: 1;
    }

    .cart-badge {
      position: absolute;
      top: -6px;
      right: -7px;
      background: #1a1a1a;
      color: white;
      font-size: 10px;
      font-weight: 700;
      width: 18px;
      height: 18px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'DM Sans', sans-serif;
      border: 2px solid white;
    }

    /* Login */
    .login-link {
      font-size: 15px;
      font-weight: 500;
      color: var(--text-dark);
      text-decoration: none;
      transition: color 0.2s;
    }

    .login-link:hover { color: var(--text-mid); }

    /* Sign up – bottom-to-top fill */
    .signup-btn {
      position: relative;
      overflow: hidden;
      padding: 10px 24px;
      border: none;
      border-radius: 50px;
      background: var(--dark-btn);
      font-family: 'DM Sans', sans-serif;
      font-size: 15px;
      font-weight: 500;
      color: white;
      cursor: pointer;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      z-index: 0;
      transition: color 0.35s;
    }

    .signup-btn::before {
      content: '';
      position: absolute;
      left: 0; right: 0;
      bottom: 0;
      height: 0%;
      background: var(--purple);
      transition: height 0.38s cubic-bezier(0.4, 0, 0.2, 1);
      z-index: -1;
      border-radius: 50px;
    }

    .signup-btn:hover::before { height: 100%; }
    .signup-btn:hover { color: #fff; }

    /* ── Hamburger ── */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 6px;
    }

    .hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--text-dark);
      border-radius: 2px;
      transition: transform 0.3s, opacity 0.25s;
    }

    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* ── Mobile drawer ── */
    .mobile-menu {
      display: none;
      position: fixed;
      top: var(--nav-height);
      left: 0; right: 0;
      background: white;
      border-bottom: 1px solid rgba(0,0,0,0.08);
      z-index: 190;
      flex-direction: column;
      padding: 12px 24px 20px;
      opacity: 0;
      pointer-events: none;
      transform: translateY(-8px);
      transition: opacity 0.25s, transform 0.25s;
    }

    .mobile-menu.open {
      opacity: 1;
      transform: translateY(0);
      pointer-events: all;
    }

    .mobile-menu a {
      display: block;
      padding: 13px 6px;
      font-size: 15px;
      color: var(--text-mid);
      text-decoration: none;
      border-bottom: 1px solid rgba(0,0,0,0.05);
    }

    .mobile-menu a:last-of-type { border-bottom: none; }

    .mobile-menu .m-sub {
      padding-left: 20px;
      font-size: 14px;
      color: var(--text-light);
    }

    .mobile-menu .m-divider {
      height: 1px;
      background: rgba(0,0,0,0.07);
      margin: 8px 0;
    }

    .mobile-menu .m-actions {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 12px 6px 4px;
    }

    .mobile-menu .m-login {
      font-size: 15px;
      font-weight: 500;
      color: var(--text-dark);
      text-decoration: none;
    }

    .mobile-menu .m-signup {
      padding: 10px 22px;
      background: var(--dark-btn);
      color: white;
      border-radius: 50px;
      font-size: 15px;
      font-weight: 500;
      text-decoration: none;
      border-bottom: none !important;
    }

    /* ══════════════════════════════
       HERO
    ══════════════════════════════ */
    .hero {
      min-height: 100vh;
      padding-top: var(--nav-height);
      position: relative;
      display: flex;
      align-items: center;
      overflow: hidden;
    }

    .hero-bg {
      position: absolute;
      top: -40px; right: -60px;
      width: 580px; height: 580px;
      object-fit: cover;
      pointer-events: none;
      z-index: 0;
      opacity: 0.9;
    }

    .hero-inner {
      max-width: 1280px;
      width: 100%;
      margin: 0 auto;
      padding-left: 40px;
      padding-right: 40px;
      padding-top: 60px;
      /* padding: 50px 40px; */
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 40px;
      position: relative;
      z-index: 1;
    }

    .hero-left { flex: 0 0 auto; max-width: 520px; }

    .rating-badge {
      display: inline-flex;
      align-items: center;
      background: white;
      border: 1px solid #e8e8e8;
      border-radius: 12px;
      padding: 12px 21px;
      margin-bottom: 20px;
      box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    }

    .rating-block { display: flex; flex-direction: column; gap: 3px; }
    .rating-score { font-size: 15px; font-weight: 600; color: var(--text-dark); }
    .stars { display: flex; gap: 2px; }
    .stars i { color: #1FBC51; font-size: 14px; }
    .rating-label { font-size: 12px; color: var(--text-light); }

    h1 {
      font-family: 'DM Sans', sans-serif;
      font-size: clamp(44px, 5vw, 68px);
      font-weight: 700;
      line-height: 1.08;
      letter-spacing: -2px;
      color: var(--text-dark);
      margin-bottom: 20px;
    }

    h1 em {
      font-family: 'DM Serif Display', serif;
      font-style: italic;
      font-weight: 400;
      letter-spacing: -1px;
    }

    .hero-desc {
      font-size: 16px;
      line-height: 1.65;
      color: #555;
      max-width: 430px;
      margin-bottom: 30px;
    }

    .hero-cta { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }

    .btn-hero-primary {
      /* padding: 14px 30px;
      border: none;
      border-radius: 12px;
      background: var(--purple);
      font-family: 'DM Sans', sans-serif;
      font-size: 16px;
      font-weight: 500;
      color: white;
      cursor: pointer;
      transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
      text-decoration: none;
      display: inline-block; */
      background: var(--white);
      border: 1.5px solid #d1d5db;
      color: #374151; font-size: 13.5px; font-weight: 500;
      cursor: pointer; padding: 11px 24px;
      border-radius: 999px;
      font-family: 'Inter', sans-serif;
      transition: border-color .2s, background .2s, box-shadow .2s;
      box-shadow: 0 1px 4px rgba(0,0,0,0.06);
      text-decoration: none;
    }

    .btn-hero-primary:hover {
      /* background: var(--purple-dark);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(91,78,245,0.35); */
      border-color: #9ca3af; background: #f9fafb;
      box-shadow: 0 2px 8px rgba(0,0,0,0.09);
    }

    /* .btn-hero-outline {
      padding: 14px 15px;
      border: 1.5px solid #c8c8c8;
      border-radius: 12px;
      background: transparent;
      font-family: 'DM Sans', sans-serif;
      font-size: 16px;
      font-weight: 500;
      color: var(--text-dark);
      cursor: pointer;
      transition: border-color 0.2s, background 0.2s;
      text-decoration: none;
      display: inline-block;
    } */
     /* .btn-hero-outline{
    background: linear-gradient(135deg, #060e22 0%, #0f2060 35%, #1a3aad 65%, #2563eb 100%);
    color: #fff; border: none;
    text-decoration: none;
    font-size: 13.5px; font-weight: 600; cursor: pointer;
    padding: 11px 22px; border-radius: 999px;
    display: flex; align-items: center; gap: 10px;
    font-family: 'Inter', sans-serif;
    box-shadow:
      0 4px 20px rgba(37,99,235,0.45),
      0 1px 6px rgba(6,14,34,0.4),
      inset 0 1px 0 rgba(255,255,255,0.1);
    transition: box-shadow .2s, transform .15s;
    position: relative; overflow: hidden;
  } */

    /* .btn-hero-outline:hover { border-color: #999; background: #f5f5f5; } */

    /* .btn-hero-outline::before {
      content: '';
      position: absolute; inset: 0; border-radius: 999px;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.07), transparent);
      transform: translateX(-100%);
      animation: shimmer 2.5s infinite 1s;
    }
    @keyframes shimmer { to { transform: translateX(100%); } }
    .btn-hero-outline:hover {
      box-shadow: 0 6px 28px rgba(37,99,235,0.6), 0 2px 8px rgba(6,14,34,0.4);
      transform: translateY(-1px);
    }
    .grad-arrow {
      width: 24px; height: 24px; background: rgba(255,255,255,0.18);
      border-radius: 50%; display: flex; align-items: center; justify-content: center;
      font-size: 10px; flex-shrink: 0;
    } */

    .hero-btns {
  display: flex; gap: 12px; margin-top: 28px; align-items: center;
}

/* ── PILL BUTTON: View Examples ── */
.btn-pill-outline {
  background: var(--white);
  border: 1.5px solid #d1d5db;
  color: #374151; font-size: 12.5px; font-weight: 500;
  cursor: pointer; padding: 15px 24px;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  transition: border-color .2s, background .2s, box-shadow .2s;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.btn-pill-outline:hover {
  border-color: #9ca3af; background: #f9fafb;
  box-shadow: 0 2px 8px rgba(0,0,0,0.09);
}

/* ── PILL BUTTON: Get Started Today (dark navy→blue gradient) ── */
  .btn-pill-gradient {
    background: linear-gradient(135deg, #060e22 0%, #0b2a15 35%, #179740 65%, #1FBC51 100%);
    color: #fff; border: none;
    font-size: 12.5px; font-weight: 500; cursor: pointer;
    padding: 15px 24px; border-radius: 999px;
    display: flex; align-items: center; gap: 10px;
    font-family: 'Inter', sans-serif;
    box-shadow:
      0 4px 20px rgba(221, 230, 222, 0.45),
      0 1px 6px rgba(6,14,34,0.4),
      inset 0 1px 0 rgba(255,255,255,0.1);
    transition: box-shadow .2s, transform .15s;
    position: relative; overflow: hidden;
  }
  .btn-pill-gradient::before {
    content: '';
    position: absolute; inset: 0; border-radius: 999px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.07), transparent);
    transform: translateX(-100%);
    animation: shimmer 2.5s infinite 1s;
  }
  @keyframes shimmer { to { transform: translateX(100%); } }
  .btn-pill-gradient:hover {
    box-shadow: 0 6px 28px rgba(184, 192, 187, 0.6), 0 2px 8px rgba(6,14,34,0.4);
    transform: translateY(-1px);
  }
  .grad-arrow {
    width: 24px; height: 24px; background: rgba(255,255,255,0.18);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 10px; flex-shrink: 0;
  }


    /* ── Phone & swing animation ── */
    .hero-right {
      flex: 0 0 auto;
      display: flex;
      align-items: flex-end;
      justify-content: flex-end;
      position: relative;
    }

    @keyframes phoneSwing {
      0%   { transform: rotate(0deg); }
      15%  { transform: rotate(2.0deg); }
      45%  { transform: rotate(-2.0deg); }
      75%  { transform: rotate(1.8deg); }
      90%  { transform: rotate(-1.0deg); }
      100% { transform: rotate(0deg); }
    }

    .phone-img {
      width: clamp(340px, 42vw, 560px);
      height: auto;
      display: block;
      bottom: 0px;
      position: relative;
      z-index: 2;
      filter: drop-shadow(0 30px 60px rgba(0,0,0,0.12));
      transform-origin: center 90%;
      animation: phoneSwing 8s ease-in-out infinite;
    }

    /* ══════════════════════════════
       RESPONSIVE
    ══════════════════════════════ */
    @media (max-width: 960px) {
      .nav-links  { display: none; }
      .nav-actions { display: none; }
      .hamburger  { display: flex; }
      .mobile-menu { display: flex; }
      .nav-inner  { padding: 0 24px; }

      .hero-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 40px 24px;
      }

      .hero-right { width: 100%; justify-content: center; }
      .phone-img  { width: clamp(280px, 70vw, 420px); }
      .hero-bg    { width: 640px; height: 640px; top: -30px; right: -80px; }
    }

    @media (max-width: 480px) {
      h1 { font-size: 38px; letter-spacing: -1.5px; }
      .hero-bg { width: 480px; height: 480px; top: -10px; right: -60px; opacity: 0.75; }
    }

    /* ══════════════════════════════
       FEATURES SECTION
    ══════════════════════════════ */
    .features-section {
      padding: 100px 40px;
      background: #fff;
    }

    .features-header {
      text-align: center;
      margin-bottom: 56px;
    }

    .features-label {
      display: inline-block;
      font-size: 16px;
      font-weight: 500;
      color: var(--purple);
      border: 1.5px solid #f4f3fa;
      border-radius: 20px;
      padding: 10px 20px;
      margin-bottom: 20px;
      letter-spacing: 0.1px;
      box-shadow: rgba(42, 40, 46, 0.06) 0px 10px 10px -3.75px, rgba(42, 40, 46, 0.16) 0px 2.289px 2.289px -2.5px, rgba(42, 40, 46, 0.18) 0px 0.602px 0.602px -1.25px;
    }

    .features-title {
      font-family: 'Montserrat', sans-serif;
      font-size: clamp(34px, 4.5vw, 58px);
      font-weight: 900;
      letter-spacing: -1.5px;
      line-height: 1.08;
      color: var(--text-dark);
      margin-bottom: 18px;
      text-transform: uppercase;
    }
    .features-title .heading-accent {
      color: var(--green-dark);
    }

    .features-subtitle {
      font-size: 16px;
      color: #666;
      line-height: 1.6;
      max-width: 520px;
      margin: 0 auto;
    }

    /* ── Three-column cards ── */
    .features-grid {
      max-width: 1280px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 20px;
      align-items: start;
    }

    /* ── Card base ── */
    .feat-card {
      border-radius: 20px;
      overflow: hidden;
      background: #f7f7f8;
    }

    /* ── Card 1 – Clear money movements (light) ── */
    .feat-card-1 {
      background: #f7f7f8;
      padding: 32px 28px 0;
    }

    .feat-card-1 .card-heading {
      font-size: 22px;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 12px;
      letter-spacing: -0.4px;
      line-height: 1.25;
    }

    .feat-card-1 .card-desc {
      font-size: 14.5px;
      color: #666;
      line-height: 1.6;
      margin-bottom: 28px;
    }

    /* Transaction list widget */
    .txn-widget {
      background: #fff;
      border-radius: 16px 16px 0 0;
      padding: 20px 20px 0;
      box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    }

    .txn-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 18px;
    }

    .txn-title {
      font-size: 15px;
      font-weight: 600;
      color: var(--text-dark);
    }

    .txn-search {
      font-size: 16px;
      color: #999;
      cursor: pointer;
    }

    .txn-item {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 11px 0;
      border-bottom: 1px solid #f0f0f0;
    }

    .txn-item:last-child { border-bottom: none; margin-bottom: 0; }

    .txn-avatar {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      object-fit: cover;
      flex-shrink: 0;
      background: #eee;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .txn-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }

    .txn-avatar-icon {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
    }

    .txn-info { flex: 1; min-width: 0; }

    .txn-name {
      font-size: 14px;
      font-weight: 600;
      color: var(--text-dark);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .txn-cat {
      font-size: 12px;
      color: #aaa;
      margin-top: 1px;
    }

    .txn-amount {
      font-size: 14px;
      font-weight: 500;
      color: var(--text-dark);
      flex-shrink: 0;
    }

    /* ── Card 2 – Middle photo card ── */
    .feat-card-2 {
      background: #f7f7f8;
      padding: 0;
      display: flex;
      flex-direction: column;
    }

    .feat-card-2 .card-photo {
      width: 100%;
      height: 320px;
      object-fit: cover;
      object-position: top center;
      display: block;
      border-radius: 20px 20px 0 0;
    }

    .feat-card-2 .card-body {
      padding: 28px 28px 32px;
    }

    .feat-card-2 .card-heading {
      font-size: 22px;
      font-weight: 700;
      color: var(--text-dark);
      letter-spacing: -0.4px;
      margin-bottom: 12px;
      line-height: 1.25;
    }

    .feat-card-2 .card-desc {
      font-size: 14.5px;
      color: #666;
      line-height: 1.6;
    }

    /* ── Card 3 – Purple 24/7 card ── */
    .feat-card-3 {
       background: linear-gradient(150deg, #0d9e3e 0%, #0b7a32 55%, #074d20 100%);
      padding: 32px 28px 0;
      color: white;
    }

    .feat-card-3 .card-heading {
      font-size: 22px;
      font-weight: 700;
      color: #fff;
      letter-spacing: -0.4px;
      margin-bottom: 12px;
      line-height: 1.25;
    }

    .feat-card-3 .card-desc {
      font-size: 14.5px;
      color: rgba(255,255,255,0.82);
      line-height: 1.6;
      margin-bottom: 28px;
    }

    /* Transfer widget */
    .transfer-widget {
      background: rgba(255,255,255,0.12);
      border-radius: 16px 16px 0 0;
      padding: 24px 20px 0;
      backdrop-filter: blur(8px);
    }

    .transfer-complete {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
      margin-bottom: 20px;
    }

    .transfer-check {
      width: 48px;
      height: 48px;
      background: rgba(255,255,255,0.25);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      color: white;
    }

    .transfer-label {
      font-size: 16px;
      font-weight: 600;
      color: #fff;
    }

    .transfer-item {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 12px 0;
      border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .transfer-item:last-child { border-bottom: none; }

    .transfer-avatar {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      overflow: hidden;
      flex-shrink: 0;
      background: rgba(255,255,255,0.2);
    }

    .transfer-avatar img { width: 100%; height: 100%; object-fit: cover; }

    .transfer-check-icon {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: rgba(255,255,255,0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-size: 14px;
      color: white;
    }

    .transfer-info { flex: 1; min-width: 0; }

    .transfer-name {
      font-size: 13.5px;
      font-weight: 600;
      color: #fff;
    }

    .transfer-sub {
      font-size: 12px;
      color: rgba(255,255,255,0.65);
      margin-top: 1px;
    }

    .transfer-amount {
      font-size: 13.5px;
      font-weight: 500;
      color: rgba(255,255,255,0.9);
      flex-shrink: 0;
    }

    /* ══════════════════════════════
       HOW IT WORKS – STICKY SCROLL
    ══════════════════════════════ */
    .hiw-scroll-wrapper {
      position: relative;
      height: 105vh;
      isolation: isolate;
    }

    .hiw-sticky {
      position: sticky;
      top: 0;
      height: 100vh;
      overflow: visible;
      display: flex;
      flex-direction: column;
      background: #fff;
      z-index: 2;
    }

    .hiw-header {
      text-align: center;
      padding: 80px 40px 48px;
      flex-shrink: 0;
      will-change: transform, opacity;
      transition: transform 0.6s cubic-bezier(0.4,0,0.2,1),
                  opacity  0.5s ease;
    }

    .hiw-label {
      display: inline-block;
      font-size: 16px;
      font-weight: 500;
      color: var(--purple);
      border: 1.5px solid #f4f3fa;
      border-radius: 20px;
      padding: 10px 20px;
      margin-bottom: 20px;
      letter-spacing: 0.1px;
      box-shadow: rgba(42, 40, 46, 0.06) 0px 10px 10px -3.75px, rgba(42, 40, 46, 0.16) 0px 2.289px 2.289px -2.5px, rgba(42, 40, 46, 0.18) 0px 0.602px 0.602px -1.25px;
    }

    .hiw-title {
      font-family: 'Montserrat', sans-serif;
      font-size: clamp(36px, 5vw, 72px);
      font-weight: 900;
      letter-spacing: -2px;
      line-height: 1.08;
      color: var(--text-dark);
      margin-bottom: 20px;
      text-transform: uppercase;
    }
    .hiw-title .heading-accent { color: var(--green-dark); }

    .hiw-subtitle {
      font-size: 16px;
      color: #888;
      line-height: 1.6;
    }

    .hiw-steps {
      flex: 1;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      border-top: 1px solid #e8e8e8;
    }

    .hiw-step {
      position: relative;
      padding: 48px 52px;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      opacity: 0;
      transform: translateY(24px);
      will-change: opacity, transform;
      transition: opacity 0.6s cubic-bezier(0.4,0,0.2,1),
                  transform 0.6s cubic-bezier(0.4,0,0.2,1);
    }

    .hiw-step:not(:last-child)::after {
      content: '';
      position: absolute;
      top: 0; bottom: 0; right: 0;
      width: 1px;
      background: #e8e8e8;
    }

    .hiw-step.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* Stagger transitions so step 2 and 3 animate slightly after */
    #hiwStep2 { transition-delay: 0.08s; }
    #hiwStep3 { transition-delay: 0.16s; }

    .step-number {
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 1.5px;
      color: #bbb;
      text-transform: uppercase;
      margin-bottom: 72px;
    }

    .step-heading {
      font-size: clamp(20px, 2vw, 26px);
      font-weight: 700;
      color: var(--text-dark);
      letter-spacing: -0.5px;
      line-height: 1.2;
      margin-bottom: 14px;
    }

    .step-desc {
      font-size: 15px;
      color: #888;
      line-height: 1.65;
      max-width: 280px;
      /* padding-bottom: 20px; */
    }

    /* Mobile: disable sticky, stack vertically */
    @media (max-width: 700px) {
      .hiw-scroll-wrapper { height: auto; }
      .hiw-sticky { position: relative; height: auto; overflow: visible; }
      .hiw-steps { grid-template-columns: 1fr; border-top: none; }
      .hiw-step {
        opacity: 1 !important;
        transform: none !important;
        border-top: 1px solid #e8e8e8;
        padding: 36px 28px;
      }
      .hiw-step::after { display: none; }
      .step-number { margin-bottom: 28px; }
      .hiw-header { padding: 60px 24px 36px; }
    }

    /* ── Responsive features ── */
    @media (max-width: 1024px) {
      .features-grid {
        grid-template-columns: 1fr 1fr;
      }

      .feat-card-3 {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0;
        padding: 32px 28px 32px;
        border-radius: 20px;
        align-items: start;
      }

      .feat-card-3 .card-desc { margin-bottom: 0; }

      .transfer-widget {
        border-radius: 16px;
        padding: 24px 20px;
      }
    }

    @media (max-width: 700px) {
      .features-section { padding: 70px 20px; }

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

      .feat-card-3 {
        grid-column: auto;
        display: block;
        padding: 28px 20px 0;
      }

      .feat-card-3 .card-desc { margin-bottom: 24px; }

      .transfer-widget {
        border-radius: 16px 16px 0 0;
        padding: 20px 16px 0;
      }

      .feat-card-2 .card-photo { height: 240px; }
    }

    /* ══════════════════════════════
       OVERVIEW SECTION
    ══════════════════════════════ */
    .overview-section {
      padding: 100px 40px 120px;
      text-align: center;
      background: #fff;
      overflow: hidden;
      position: relative;
      z-index: 1;
    }

    .overview-label {
      display: inline-block;
      font-size: 16px;
      font-weight: 500;
      color: var(--purple);
      border: 1.5px solid #f4f3fa;
      border-radius: 20px;
      padding: 10px 20px;
      margin-bottom: 20px;
      letter-spacing: 0.1px;
      box-shadow: rgba(42, 40, 46, 0.06) 0px 10px 10px -3.75px, rgba(42, 40, 46, 0.16) 0px 2.289px 2.289px -2.5px, rgba(42, 40, 46, 0.18) 0px 0.602px 0.602px -1.25px;
    }

    .overview-title {
      font-family: 'Montserrat', sans-serif;
      font-size: clamp(36px, 5vw, 66px);
      font-weight: 900;
      letter-spacing: -2px;
      line-height: 1.08;
      color: var(--text-dark);
      margin-bottom: 18px;
      text-transform: uppercase;
    }
    .overview-title .heading-accent { color: var(--green-dark); }

    .overview-subtitle {
      font-size: 16px;
      color: #888;
      line-height: 1.65;
      max-width: 520px;
      margin: 0 auto 60px;
    }

    /* Image frame */
    .overview-frame {
      position: relative;
      max-width: 1100px;
      margin: 0 auto;
      border-radius: 28px;
      overflow: hidden;
      transform: scale(0.82);
      transform-origin: center top;
      will-change: transform;
      background-image: url(/images/phone-bg.png);
      background-size: cover;       /* Makes image cover the container */
      background-position: center;  /* Centers the image */
      background-repeat: no-repeat; /* Prevents repeating */
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      /* height: 400px; */
    }

    .overview-frame img.overview-img {
      width: 600px;
      height: auto;
      display: block;
      border-radius: 28px;
    }

    /* ── Rotating "WATCH NOW" play button ── */
    .watch-btn-wrap {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 130px;
      height: 130px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
    }

    /* Rotating text ring */
    .watch-ring {
      position: absolute;
      inset: 0;
      animation: spinRing 9s linear infinite;
      will-change: transform;
    }

    @keyframes spinRing {
      from { transform: rotate(0deg); }
      to   { transform: rotate(360deg); }
    }

    /* SVG text path */
    .watch-ring svg {
      width: 100%;
      height: 100%;
    }

    .watch-ring textPath {
      font-family: 'DM Sans', sans-serif;
      font-size: 11.5px;
      font-weight: 600;
      letter-spacing: 3.5px;
      fill: white;
      text-transform: uppercase;
    }

    /* Frosted glass circle background */
    .watch-circle {
      position: absolute;
      inset: 12px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.18);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border: 1.5px solid rgba(255,255,255,0.35);
    }

    /* Play icon */
    .watch-play {
      position: relative;
      z-index: 2;
      width: 40px;
      height: 40px;
      background: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 20px rgba(0,0,0,0.18);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .watch-play i {
      font-size: 14px;
      color: var(--purple);
      margin-left: 2px; /* optical centering for play icon */
    }

    .watch-btn-wrap:hover .watch-play {
      transform: scale(1.12);
      box-shadow: 0 6px 28px rgba(0,0,0,0.25);
    }

    /* Responsive */
    @media (max-width: 900px) {
      .overview-section { padding: 70px 24px 0; }
      .overview-frame { border-radius: 18px; }
      .watch-btn-wrap { width: 100px; height: 100px; }
      .watch-ring svg { font-size: 10px; }
      .watch-play { width: 34px; height: 34px; }
      .watch-play i { font-size: 12px; }
    }

    @media (max-width: 600px) {
      .overview-title { letter-spacing: -1px; }
      .overview-frame { border-radius: 14px; }
      .watch-btn-wrap { width: 80px; height: 80px; }
    }

    /* ══════════════════════════════
       SECURITY SECTION
    ══════════════════════════════ */
    .security-section {
      padding: 100px 40px;
      background: #f9f9fb;
      text-align: center;
    }

    .section-label {
      display: inline-block;
      font-size: 16px;
      font-weight: 500;
      color: var(--purple);
      border: 1.5px solid #f4f3fa;
      border-radius: 20px;
      padding: 10px 20px;
      margin-bottom: 20px;
      letter-spacing: 0.1px;
      box-shadow: rgba(42, 40, 46, 0.06) 0px 10px 10px -3.75px, rgba(42, 40, 46, 0.16) 0px 2.289px 2.289px -2.5px, rgba(42, 40, 46, 0.18) 0px 0.602px 0.602px -1.25px;
    }

    .section-title {
      font-family: 'Montserrat', sans-serif;
      font-size: clamp(32px, 4.5vw, 60px);
      font-weight: 900;
      letter-spacing: -2px;
      line-height: 1.08;
      color: #0f0f0f;
      margin-bottom: 16px;
      text-transform: uppercase;
    }
    .section-title .heading-accent { color: var(--green-dark); }

    .section-subtitle {
      font-size: 16px;
      color: #888;
      line-height: 1.6;
      max-width: 500px;
      margin: 0 auto 56px;
    }

    .security-grid {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }

    .security-grid .row-2 {
      grid-column: 1 / -1;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }

    .sec-card {
      background: #fff;
      border-radius: 20px;
      padding: 32px 28px 36px;
      text-align: left;
      border: 1px solid rgba(0,0,0,0.05);
      box-shadow: 0 2px 12px rgba(0,0,0,0.04);
      transition: box-shadow 0.2s, transform 0.2s;
    }

    .sec-card:hover {
      box-shadow: 0 8px 32px rgba(91,78,245,0.1);
      transform: translateY(-3px);
    }

    .sec-icon-wrap {
      /* width: 56px;
      height: 56px;
      background: #cfecdf;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 56px;
      font-size: 22px;
      color: var(--purple); */
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
    border-radius: var(--r-md);
    background: var(--white);
    border: 1.5px solid var(--green-border);
    transition: 0.28s;
    color: var(--green);
    margin-bottom: 56px;
    }

    .sec-heading {
      font-size: 18px;
      font-weight: 700;
      color: #0f0f0f;
      letter-spacing: -0.3px;
      margin-bottom: 10px;
    }

    .sec-desc {
      font-size: 14px;
      color: #888;
      line-height: 1.65;
    }

    @media (max-width: 900px) {
      .security-section { padding: 70px 24px; }
      .security-grid { grid-template-columns: repeat(2, 1fr); }
      .security-grid .row-2 { grid-template-columns: 1fr; }
    }

    @media (max-width: 560px) {
      .security-grid { grid-template-columns: 1fr; }
      .security-grid .row-2 { grid-template-columns: 1fr; }
    }

    /* ══════════════════════════════
       PRICING SECTION
    ══════════════════════════════ */
    .pricing-section {
      padding: 100px 40px;
      background: #fff;
      text-align: center;
    }

    .pricing-grid {
      max-width: 1000px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      align-items: start;
    }

    .price-card {
      background: #f9f9fb;
      border-radius: 20px;
      padding: 32px 28px;
      text-align: left;
      border: 1px solid rgba(0,0,0,0.06);
      transition: box-shadow 0.2s;
    }

    .price-card:hover {
      box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    }

    /* Featured / recommended card */
    .price-card.featured {
      background: #fff;
      border: 1.5px solid #cffff1;
      padding-top: 0;
      box-shadow: 0 4px 24px rgba(91,78,245,0.1);
    }

    .featured-badge {
      background: var(--green-soft);
      border-radius: 20px 20px 0 0;
      padding: 10px 16px;
      text-align: center;
      font-size: 13px;
      font-weight: 600;
      color: var(--green-dark);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      margin: 0 -28px;
      border-radius: 18px 18px 0 0;
      margin-bottom: 28px;
    }

    .featured-badge i {
      font-size: 13px;
      color: var(--green);
    }

    .price-plan-name {
      font-size: 17px;
      font-weight: 600;
      color: #0f0f0f;
      margin-bottom: 10px;
    }

    .price-amount {
      display: flex;
      align-items: baseline;
      gap: 2px;
      margin-bottom: 6px;
    }

    .price-dollar {
      font-size: clamp(44px, 5vw, 60px);
      font-weight: 800;
      color: #0f0f0f;
      letter-spacing: -2px;
      line-height: 1;
    }

    .price-period {
      font-size: 16px;
      font-weight: 400;
      color: #888;
      margin-left: 2px;
    }

    .price-tagline {
      font-size: 14px;
      color: #888;
      margin-bottom: 24px;
    }

    .price-btn {
      width: 100%;
      padding: 13px;
      border-radius: 12px;
      font-family: 'DM Sans', sans-serif;
      font-size: 15px;
      font-weight: 600;
      cursor: pointer;
      text-align: center;
      text-decoration: none;
      display: block;
      margin-bottom: 28px;
      transition: background 0.2s, transform 0.15s;
      border: 1.5px solid #d0d0d0;
      background: transparent;
      color: #0f0f0f;
    }

    .price-btn:hover {
      background: #f5f5f5;
    }

    .price-btn.primary {
      background: var(--green-dark);
      color: #fff;
      border-color: transparent;
    }

    .price-btn.primary:hover {
      background: #4838e8;
      transform: translateY(-1px);
    }

    .price-includes {
      font-size: 13px;
      font-weight: 700;
      color: #0f0f0f;
      margin-bottom: 16px;
      text-transform: none;
      letter-spacing: 0;
    }

    .price-features {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .price-features li {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 14px;
      color: #444;
    }

    .price-features.fas {
      width: 20px;
      height: 20px;
      border-radius: 50%;
      border: 2px solid #6153f5;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 9px;
      color: #6153f5;
      flex-shrink: 0;
    }

    @media (max-width: 860px) {
      .pricing-section { padding: 70px 24px; }
      .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 460px;
      }
    }

    /* ══════════════════════════════
       INTEGRATIONS SECTION
    ══════════════════════════════ */
    .integrations-section {
      padding: 100px 40px;
      background: #fff;
      text-align: center;
      overflow: hidden;
    }

    .integrations-section .section-title {
      font-size: clamp(32px, 4.5vw, 58px);
      text-align: center;
      max-width: 1100px;
      margin: 0 auto 16px;
    }

    .integrations-section .section-subtitle {
      text-align: center;
      max-width: 1100px;
      margin: 0 auto 56px;
    }

    /* Mosaic grid */
    .int-grid {
      max-width: 700px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      grid-template-rows: repeat(3, 140px);
      gap: 12px;
      position: relative;
    }

    /* Each partner tile */
    .int-tile {
      background: #fdfbfb;
      border-radius: 26px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      position: relative;
      padding: 4px;
      /* box-shadow: rgba(42, 40, 46, 0.06) 0px 10px 10px -3.75px, rgba(42, 40, 46, 0.16) 0px 2.289px 2.289px -2.5px, rgba(42, 40, 46, 0.18) 0px 0.602px 0.602px -1.25px; */
      box-shadow: 11.6667px 16.5278px 7.77778px #00000003, 6.80556px 9.72222px 6.80556px #00000005, 2.91667px 3.88889px 4.86111px #00000005, .972222px .972222px 2.91667px #00000005;
    }
    .blonde_border{
      background-color: #e8ebe9;
      width: 100%;
      height: 100%;
       border-radius: 26px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      position: relative;
    }

    .int-tile img {
      width: 56px;
      height: 56px;
      object-fit: contain;
      border-radius: 12px;
      display: block;
      /* pop animation applied by JS */
      transform: scale(1);
      will-change: transform;
      transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    /* Tile positions in the 5-col × 3-row grid:
       Layout (col / row):
       [ ]  [1]  [ ]  [2]  [ ]   row 1
       [3]  [ ]  [C]  [ ]  [4]   row 2   C = centre logo
       [ ]  [5]  [ ]  [6]  [ ]   row 3
    */
    .int-tile-1 { grid-column: 2; grid-row: 1; }
    .int-tile-2 { grid-column: 4; grid-row: 1; }
    .int-tile-3 { grid-column: 1; grid-row: 2; }
    .int-tile-4 { grid-column: 5; grid-row: 2; }
    .int-tile-5 { grid-column: 2; grid-row: 3; }
    .int-tile-6 { grid-column: 4; grid-row: 3; }

    /* Centre logo tile */
    .int-center {
      grid-column: 3;
      grid-row: 2;
      background: transparent;
      z-index: 2;
      

    }

    .int-center-inner {
      width: 110px;
      height: 110px;
      border-radius: 50%;
      background-image: url(/images/apilox-main.jpg);
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      display: flex;
      align-items: center;
      justify-content: center;
      /* box-shadow: 0 8px 32px rgba(91,78,245,0.4); */
      overflow: hidden;
      animation: centerSpin 12s linear infinite;
      will-change: transform;
    }

    @keyframes centerSpin {
      from { transform: rotate(0deg); }
      to   { transform: rotate(360deg); }
    }

    .int-center-inner img {
      width: 72px;
      height: 72px;
      object-fit: contain;
      border-radius: 0;
      /* counter-rotate so the image stays upright */
      animation: counterSpin 12s linear infinite;
    }

    @keyframes counterSpin {
      from { transform: rotate(0deg); }
      to   { transform: rotate(-360deg); }
    }

    /* Faint connector lines (SVG overlay) */
    .int-lines {
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: 1;
    }

    @media (max-width: 700px) {
      .integrations-section { padding: 70px 20px; }
      .int-grid {
        grid-template-rows: repeat(3, 110px);
        gap: 8px;
      }
      .int-tile img { width: 44px; height: 44px; }
      .int-center-inner { width: 84px; height: 84px; }
      .int-center-inner img { width: 52px; height: 52px; }
      .integrations-section .section-title { font-size: 32px; letter-spacing: -1px; }
    }

    @media (max-width: 480px) {
      .int-grid { max-width: 340px; grid-template-rows: repeat(3, 90px); }
      .int-tile { border-radius: 12px; }
    }
  
     /* ── Reviews Section ── */
  .reviews-section {
    padding: 100px 40px;
    background: #fff;
    text-align: center;
    overflow: hidden;
  }

  .reviews-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(34px, 4.5vw, 62px);
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 1.08;
    color: #0f0f0f;
    margin-bottom: 16px;
    text-transform: uppercase;
  }
  .reviews-title .heading-accent { color: var(--green-dark); }

  .reviews-subtitle {
    font-size: 16px;
    color: #888;
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto 64px;
  }

  /* ── Grid ── */
  .reviews-columns {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    height: 680px;
    overflow: hidden;
  }

  /* Fade edges */
  .reviews-columns::before,
  .reviews-columns::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 160px;
    z-index: 10;
    pointer-events: none;
  }

  .reviews-columns::before {
    top: 0;
    background: linear-gradient(to bottom, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
  }

  .reviews-columns::after {
    bottom: 0;
    background: linear-gradient(to top, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
  }

  /* ── Columns & animations ── */
  .reviews-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
    will-change: transform;
  }

  .reviews-col-1 { animation: scrollUp   28s linear infinite; }
  .reviews-col-2 { animation: scrollDown 32s linear infinite; }
  .reviews-col-3 { animation: scrollUp   24s linear infinite; }

  @keyframes scrollUp {
    0%   { transform: translateY(0); }
    100% { transform: translateY(-50%); }
  }

  @keyframes scrollDown {
    0%   { transform: translateY(-50%); }
    100% { transform: translateY(0); }
  }

  .reviews-columns:hover .reviews-col {
    animation-play-state: paused;
  }

  /* ── Card ── */
  .review-card {
    background: #f9f9fb;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 18px;
    padding: 24px 22px;
    text-align: left;
    flex-shrink: 0;
    transition: box-shadow 0.22s, transform 0.22s;
  }

  .review-card:hover {
    box-shadow: 0 8px 32px rgba(31, 188, 81, 0.1);
    transform: translateY(-2px);
  }

  /* ── Stars ── */
  .review-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 14px;
  }

  .review-stars i {
    font-size: 13px;
    color: #f5a623;
  }

  .review-stars i.dim {
    color: #ddd;
  }

  /* ── Quote ── */
  .review-quote {
    font-size: 15px;
    font-weight: 400;
    color: #2a2a2a;
    line-height: 1.6;
    margin-bottom: 20px;
  }

  /* ── Author ── */
  .review-author {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    flex-shrink: 0;
    overflow: hidden;
    background: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: #777;
  }

  .review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .review-name {
    font-size: 14px;
    font-weight: 600;
    color: #0f0f0f;
  }

  .review-role {
    font-size: 12.5px;
    color: #aaa;
    margin-top: 1px;
  }

     /* ══════ FAQ ══════ */
    .faq-section { padding: 100px 40px; background: #fff; text-align: center; }
    .faq-title { font-family: 'Montserrat', sans-serif; font-size: clamp(32px, 5vw, 62px); font-weight: 900; letter-spacing: -2px; line-height: 1.08; color: #0f0f0f; margin-bottom: 56px; text-transform: uppercase; }
    .faq-title .heading-accent { color: var(--green-dark); }
    .faq-list { max-width: 860px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
    .faq-item { border-radius: 16px; overflow: hidden; border: 1.5px solid rgba(0,0,0,0.07); background: #fff; transition: border-color 0.25s, box-shadow 0.25s; }
    .faq-item:hover { border-color: rgba(31,188,81,0.25); box-shadow: 0 4px 20px rgba(31,188,81,0.07); }
    .faq-item.open { background: linear-gradient(135deg, #1FBC51 0%, #18a346 55%, #148f3c 100%); border-color: transparent; box-shadow: 0 8px 32px rgba(31,188,81,0.28); }
    .faq-question { display: flex; align-items: center; gap: 16px; padding: 20px 24px; cursor: pointer; user-select: none; width: 100%; background: none; border: none; text-align: left; font-family: 'DM Sans', sans-serif; }
    .faq-icon { width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 15px; font-weight: 400; transition: background 0.25s, color 0.25s; background: #e6f9ed; color: var(--green); line-height: 1; }
    .faq-item.open .faq-icon { background: rgba(255,255,255,0.25); color: #fff; }
    .faq-question-text { font-size: 16px; font-weight: 600; color: #0f0f0f; flex: 1; transition: color 0.25s; letter-spacing: -0.2px; line-height: 1.3; }
    .faq-item.open .faq-question-text { color: #fff; }
    .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease; }
    .faq-item.open .faq-answer { max-height: 400px; }
    .faq-answer-inner { padding: 0 24px 20px 72px; }
    .faq-answer-text { font-size: 14.5px; font-weight: 600; color: rgba(255,255,255,0.92); line-height: 1.65; }

    /* ══════ CTA BANNER ══════ */
    .cta-banner-section { padding: 0 40px 80px; background: #fff; }
    .cta-banner { max-width: 1280px; margin: 0 auto; border-radius: 28px; overflow: hidden; position: relative; min-height: 420px; display: flex; align-items: center; background-image: url(/images/phone-bg2.png);background-position: center; background-size: cover; background-repeat: no-repeat; }
    .cta-banner::before { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.15); z-index: 0; }
    .cta-banner-content { position: relative; z-index: 2; flex: 0 0 auto; max-width: 1000px; padding: 60px 0 60px 64px; display: flex; flex-direction: column; align-items: flex-start; }
    .cta-banner-title { font-family: 'Montserrat', sans-serif; font-size: clamp(36px, 4vw, 38px); font-weight: 900; color: #ffffff; line-height: 1.1; letter-spacing: -1.5px; margin-bottom: 20px; text-transform: uppercase; }
    .cta-banner-title .heading-accent { color: var(--green-light); }
    .cta-banner-desc { font-size: 15px; color: rgba(255,255,255,0.82); line-height: 1.65; max-width: 500px; margin-bottom: 36px; }
    .cta-banner-btn { display: inline-flex; align-items: center; padding: 14px 32px; background: var(--green); color: #fff; font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 600; border-radius: 12px; text-decoration: none; border: none; cursor: pointer; transition: background 0.2s, transform 0.15s, box-shadow 0.2s; box-shadow: 0 4px 20px rgba(31,188,81,0.3); }
    .cta-banner-btn:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(31,188,81,0.4); }
    .cta-banner-phones { position: absolute; right: 0; bottom: 0; z-index: 3; height: 90%; max-height: 460px; width: auto; object-fit: contain; object-position: bottom right; transform: translateY(80px); opacity: 0; transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.7s ease; will-change: transform, opacity; pointer-events: none; }
    .cta-banner-phones.phones-visible { transform: translateY(0); opacity: 1; }

    /* ══════ FOOTER ══════ */
    .footer-newsletter { background: #fff; border-top: 1px solid #ebebeb; padding: 48px 60px; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
    .footer-newsletter-title { font-family: 'DM Sans', sans-serif; font-size: clamp(20px, 3vw, 34px); font-weight: 800; color: #0f0f0f; letter-spacing: -0.5px; text-transform: uppercase; }
    .footer-newsletter-form { display: flex; align-items: center; gap: 10px; flex: 0 0 auto; }
    .footer-newsletter-input { padding: 14px 22px; border-radius: 50px; border: 1.5px solid #e8e8e8; background: #f5f5f5; font-family: 'DM Sans', sans-serif; font-size: 15px; color: #333; outline: none; width: 260px; transition: border-color 0.2s, background 0.2s; }
    .footer-newsletter-input::placeholder { color: #bbb; }
    .footer-newsletter-input:focus { border-color: var(--green); background: #fff; }
    .footer-newsletter-btn { padding: 14px 28px; border-radius: 50px; background: #0f0f0f; color: #fff; font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 600; border: none; cursor: pointer; white-space: nowrap; transition: background 0.2s, transform 0.15s; }
    .footer-newsletter-btn:hover { background: var(--green); transform: translateY(-1px); }

    .site-footer { background: #fff; padding: 56px 60px 0; border-top: 1px solid #ebebeb; }
    .footer-top { display: grid; grid-template-columns: 280px repeat(5, 1fr); gap: 32px; padding-bottom: 48px; }
    .footer-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; margin-bottom: 20px; }
    .footer-logo-mark { width: 30px; height: 30px; background: #0f0f0f; border-radius: 7px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
    .footer-logo-text { font-family: 'DM Sans', sans-serif; font-size: 22px; font-weight: 800; color: #0f0f0f; letter-spacing: -0.5px; }
    .footer-email { display: block; font-size: 15px; color: #0f0f0f; text-decoration: underline; text-underline-offset: 3px; margin-bottom: 20px; transition: color 0.2s; }
    .footer-email:hover { color: var(--green); }
    .footer-socials { display: flex; gap: 8px; }
    .footer-social-btn { width: 38px; height: 38px; border-radius: 50%; border: 1.5px solid #e0e0e0; background: transparent; display: flex; align-items: center; justify-content: center; color: #555; font-size: 14px; cursor: pointer; text-decoration: none; transition: border-color 0.2s, color 0.2s, background 0.2s; }
    .footer-social-btn:hover { border-color: var(--green); color: var(--green); background: #e6f9ed; }
    .footer-col-title { font-size: 13px; font-weight: 600; color: #aaa; letter-spacing: 0.3px; margin-bottom: 20px; }
    .footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
    .footer-links li a { font-size: 14.5px; color: #444; text-decoration: none; transition: color 0.2s; line-height: 1; }
    .footer-links li a:hover { color: var(--green); }
    .footer-bottom { border-top: 1px solid #ebebeb; padding: 20px 0 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
    .footer-bottom-left, .footer-bottom-right { font-size: 14px; color: #888; text-decoration: none; transition: color 0.2s; }
    .footer-bottom-left:hover, .footer-bottom-right:hover { color: #333; }
    .footer-bottom-center { font-size: 13.5px; color: #888; text-align: center; }
    .footer-bottom-center a { color: #0f0f0f; font-weight: 700; text-decoration: none; }
    .footer-legal { padding: 28px 0 40px; border-top: 1px solid #f0f0f0; display: flex; flex-direction: column; gap: 14px; }
    .footer-legal p { font-size: 12.5px; color: #aaa; line-height: 1.7; }

    /* ══════ VAULTA CLOSING ══════ */
    /* .vaulta-closing { background: linear-gradient(160deg, #1FBC51 0%, #18a346 35%, #148f3c 55%, #8aeea8 80%, #d4fce0 100%); overflow: hidden; position: relative; }
    .vaulta-marquee-wrap { overflow: hidden; position: relative; padding-top: 10px; min-height: 180px; display: flex; align-items: center; justify-content: center; }
    .vaulta-typewriter { display: flex; align-items: center; justify-content: center; gap: 0; padding: 20px 48px; }
    .vaulta-letter {
      font-family: 'DM Sans', sans-serif;
      font-size: clamp(100px, 15vw, 200px);
      font-weight: 900;
      letter-spacing: -4px;
      line-height: 0.88;
      color: transparent;
      -webkit-text-stroke: 2px rgba(255,255,255,0.35);
      background: linear-gradient(180deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.52) 52%, rgba(255,255,255,0.08) 100%);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      user-select: none;
      opacity: 0;
      transform: translateX(-20px);
      transition: opacity 0.3s ease, transform 0.3s ease;
      flex-shrink: 0;
    }
    .vaulta-letter.shown { opacity: 1; transform: translateX(0); }
    .vaulta-bar { display: flex; align-items: center; justify-content: space-between; padding: 20px 48px; border-top: 1px solid rgba(255,255,255,0.15); flex-wrap: wrap; gap: 12px; }
    .vaulta-bar-left { display: flex; align-items: center; gap: 12px; }
    .vaulta-bar-logo { width: 28px; height: 28px; border-radius: 50%; background: rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
    .vaulta-bar-text { font-size: 13px; color: rgba(255,255,255,0.75); }
    .vaulta-bar-right { display: flex; gap: 28px; }
    .vaulta-bar-right a { font-size: 13px; color: rgba(255,255,255,0.75); text-decoration: none; transition: color 0.2s; }
    .vaulta-bar-right a:hover { color: #fff; } */

    /* ══════ BOTTOM APILOX CLOSING ══════ */
    .bottom-apilox-closing { background: linear-gradient(160deg, #1FBC51 0%, #18a346 35%, #148f3c 55%, #8aeea8 80%, #d4fce0 100%); overflow: hidden; position: relative; }
    .bottom-apilox-marquee-wrap { overflow: hidden; position: relative; padding-top: 10px; min-height: 180px; display: flex; align-items: center; justify-content: center; }
    .bottom-apilox-typewriter { display: flex; align-items: center; justify-content: center; gap: 0; padding: 0; width: 100%; }
    .bottom-apilox-letter {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(120px, 20vw, 280px);
    font-weight: 900;
    letter-spacing: -6px;
    line-height: 0.88;
    color: transparent;
    -webkit-text-stroke: 2px rgba(255,255,255,0.35);
    background: linear-gradient(180deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.52) 52%, rgba(255,255,255,0.08) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    user-select: none;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    flex: 1;
    text-align: center;
    }
    .bottom-apilox-letter.shown { opacity: 1; transform: translateX(0); }
    .bottom-apilox-bar { display: flex; align-items: center; justify-content: space-between; padding: 20px 48px; border-top: 1px solid rgba(255,255,255,0.15); flex-wrap: wrap; gap: 12px; }
    .bottom-apilox-bar-left { display: flex; align-items: center; gap: 12px; }
    .bottom-apilox-bar-logo { width: 28px; height: 28px; border-radius: 50%; background: rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
    .bottom-apilox-bar-text { font-size: 13px; color: rgba(255,255,255,0.75); }
    .bottom-apilox-bar-right { display: flex; gap: 28px; }
    .bottom-apilox-bar-right a { font-size: 13px; color: rgba(255,255,255,0.75); text-decoration: none; transition: color 0.2s; }
    .bottom-apilox-bar-right a:hover { color: #fff; }

        .bottom-apilox-bar-right a {
    font-size: 13px;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    transition: color 0.2s;
    }
    .bottom-apilox-bar-right a:hover { color: #fff; }

    /* ══════ RESPONSIVE ══════ */
    @media (max-width: 960px) {
      .nav-links { display: none; }
      .nav-actions .login-link, .nav-actions .signup-btn { display: none; }
      .hamburger { display: flex; }
      .mobile-menu { display: flex; }
      .nav-inner { padding: 0 24px; }
      .hero-inner { flex-direction: column; align-items: flex-start; padding: 40px 24px; }
      .hero-right { width: 100%; justify-content: center; }
      .phone-img { width: clamp(280px, 70vw, 420px); }
      .hero-bg { width: 640px; height: 640px; top: -30px; right: -80px; }
    }
    @media (max-width: 700px) {
      .hiw-scroll-wrapper { height: auto; }
      .hiw-sticky { position: relative; height: auto; overflow: visible; }
      .hiw-steps { grid-template-columns: 1fr; border-top: none; }
      .hiw-step { opacity: 1 !important; transform: none !important; border-top: 1px solid #e8e8e8; padding: 36px 28px; }
      .hiw-step::after { display: none; }
      .step-number { margin-bottom: 28px; }
      .hiw-header { padding: 60px 24px 36px; }
      .features-section { padding: 70px 20px; }
      .features-grid { grid-template-columns: 1fr; }
      .feat-card-3 { display: block; padding: 28px 20px 0; }
      .feat-card-3 .card-desc { margin-bottom: 24px; }
      .transfer-widget { border-radius: 16px 16px 0 0; padding: 20px 16px 0; }
      .feat-card-2 .card-photo { height: 240px; }
      .integrations-section { padding: 70px 20px; }
      .int-grid { grid-template-rows: repeat(3, 110px); gap: 8px; }
      .int-tile img { width: 44px; height: 44px; }
      .int-center-inner { width: 84px; height: 84px; }
      .int-center-inner img { width: 84px; height: 84px; }
      .vaulta-letter { font-size: clamp(60px, 15vw, 120px); }
    }
    @media (max-width: 1024px) {
      .features-grid { grid-template-columns: 1fr 1fr; }
      .feat-card-3 { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; gap: 0; padding: 32px 28px 32px; border-radius: 20px; align-items: start; }
      .feat-card-3 .card-desc { margin-bottom: 0; }
      .transfer-widget { border-radius: 16px; padding: 24px 20px; }
    }
    @media (max-width: 900px) {
      .overview-section { padding: 60px 24px 60px; }
      .overview-frame { border-radius: 18px; }
      .watch-btn-wrap { width: 100px; height: 100px; }
      .watch-play { width: 34px; height: 34px; }
      .watch-play i { font-size: 12px; }
      .security-section { padding: 70px 24px; }
      .security-grid { grid-template-columns: repeat(2, 1fr); }
      .security-grid .row-2 { grid-template-columns: 1fr; }
    }
    @media (max-width: 860px) {
      .reviews-section { padding: 70px 24px; }
      .reviews-columns { grid-template-columns: repeat(2, 1fr); height: 600px; }
      .reviews-col-3 { display: none; }
      .cta-banner { min-height: 320px; border-radius: 22px; }
      .cta-banner-content { padding: 44px 0 44px 36px; max-width: 380px; }
      .cta-banner-phones { height: 95%; max-height: 360px; }
      .pricing-section { padding: 70px 24px; }
      .pricing-grid { grid-template-columns: 1fr; max-width: 460px; }
      .faq-section { padding: 70px 24px; }
      .footer-newsletter { padding: 36px 28px; flex-direction: column; align-items: flex-start; }
      .footer-newsletter-input { width: 220px; }
      .site-footer { padding: 40px 28px 0; }
      .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
      .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
      .vaulta-bar { padding: 16px 24px; }
    }
    @media (max-width: 640px) {
      .cta-banner-section { padding: 0 16px 60px; }
      .cta-banner { min-height: auto; border-radius: 18px; flex-direction: column; align-items: flex-start; }
      .cta-banner-content { padding: 40px 24px 32px; max-width: 100%; }
      .cta-banner-title { font-size: 34px; }
      .cta-banner-desc { font-size: 14px; margin-bottom: 28px; }
      .cta-banner-phones { position: relative; right: auto; bottom: auto; height: auto; max-height: 260px; width: 85%; max-width: 320px; display: block; margin: 0 auto; }
    }
    @media (max-width: 560px) {
      .security-grid { grid-template-columns: 1fr; }
      .security-grid .row-2 { grid-template-columns: 1fr; }
      .reviews-columns { grid-template-columns: 1fr; height: 520px; }
      .reviews-col-2 { display: none; }
      .faq-section { padding: 60px 20px; }
      .faq-title { font-size: 32px; letter-spacing: -1px; margin-bottom: 40px; }
      .faq-question { padding: 18px 18px; gap: 14px; }
      .faq-question-text { font-size: 15px; }
      .faq-answer-inner { padding: 0 18px 18px 64px; }
      .footer-newsletter-form { flex-direction: column; width: 100%; }
      .footer-newsletter-input { width: 100%; }
      .footer-newsletter-btn { width: 100%; }
      .footer-top { grid-template-columns: 1fr 1fr; gap: 16px 20px; }
      .vaulta-bar { flex-direction: column; align-items: flex-start; }
    }
    @media (max-width: 480px) {
      h1 { font-size: 38px; letter-spacing: -1.5px; }
      .hero-bg { width: 420px; height: 420px; top: 0; right: -40px; opacity: 0.6; }
      .int-grid { max-width: 340px; grid-template-rows: repeat(3, 90px); }
      .int-tile { border-radius: 12px; }
      .nav-actions .cart-btn { display: none; }
    }
    @media (max-width: 1100px) {
      .cta-banner-section { padding: 0 24px 70px; }
      .cta-banner { min-height: 380px; }
      .cta-banner-content { padding: 50px 0 50px 48px; }
      .footer-top { grid-template-columns: 240px repeat(3, 1fr); }
    }

/* ══════════════════════════════════════════════════════════════════
   COMPREHENSIVE RESPONSIVE OVERHAUL
   Mobile-first improvements + widescreen optimizations
   Breakpoints: 480px | 640px | 768px | 900px | 1024px | 1280px | 1600px+
══════════════════════════════════════════════════════════════════ */

/* ── Global box-model & fluid type helpers ── */
img, video { max-width: 100%; height: auto; }
section, .features-section, .overview-section, .security-section,
.pricing-section, .integrations-section, .reviews-section, .faq-section {
  width: 100%;
  box-sizing: border-box;
}

/* ══ WIDESCREEN (1600px+) ══ */
@media (min-width: 1600px) {
  .nav-inner    { max-width: 1440px; }
  .hero-inner   { max-width: 1440px; }
  .features-grid { max-width: 1440px; }
  .security-grid { max-width: 1300px; }
  .pricing-grid  { max-width: 1200px; }
  .reviews-columns { max-width: 1300px; }
  .overview-frame  { max-width: 1280px; }
  .int-grid        { max-width: 860px; }
  .faq-list        { max-width: 1000px; }
  .cta-banner      { max-width: 1440px; }

  h1 { font-size: 80px; }
  .features-title, .hiw-title, .overview-title { font-size: 72px; }
  .section-title, .reviews-title  { font-size: 68px; }
  .faq-title   { font-size: 72px; }
  .cta-banner-title { font-size: 72px; }

  .hero-left  { max-width: 620px; }
  .phone-img  { width: clamp(440px, 36vw, 640px); }
}

/* ══ LARGE DESKTOP (1280px – 1600px) ══ */
@media (min-width: 1280px) and (max-width: 1599px) {
  .features-grid  { max-width: 1200px; }
  .reviews-columns{ max-width: 1100px; }
}

/* ══ DESKTOP nav fix (keep cart visible) ── */
@media (min-width: 961px) {
  .hamburger { display: none !important; }
  .mobile-menu { display: none !important; }
  .nav-links   { display: flex !important; }
  .nav-actions .login-link,
  .nav-actions .signup-btn { display: inline-flex !important; }
}

/* ══ TABLET LANDSCAPE (901px – 1024px) ══ */
@media (min-width: 901px) and (max-width: 1024px) {
  .nav-inner { padding: 0 28px; }

  /* Hero */
  .hero-inner { padding: 50px 28px; gap: 28px; }
  .hero-left  { max-width: 420px; }
  .phone-img  { width: clamp(280px, 38vw, 420px); }

  /* Features: 2-col, card3 spans full */
  .features-section { padding: 70px 28px; }
  .features-grid    { grid-template-columns: 1fr 1fr; gap: 16px; }
  .feat-card-3      {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 32px 28px;
    border-radius: 20px;
    align-items: start;
  }
  .feat-card-3 .card-desc { margin-bottom: 0; }
  .transfer-widget { border-radius: 16px; padding: 24px 20px; }

  /* Pricing: 1-col centered */
  .pricing-grid { grid-template-columns: 1fr 1fr; gap: 16px; max-width: 700px; }
  .price-card.featured { grid-column: 1 / -1; max-width: 360px; margin: 0 auto; width: 100%; }

  /* Security */
  .security-grid { grid-template-columns: repeat(2, 1fr); }
  .security-grid .row-2 { grid-template-columns: repeat(2, 1fr); }

  /* Reviews */
  .reviews-columns { grid-template-columns: repeat(2, 1fr); height: 600px; }
  .reviews-col-3   { display: none; }

  /* Footer */
  .footer-top { grid-template-columns: 200px repeat(3, 1fr); gap: 24px; }
  .site-footer { padding: 40px 32px 0; }
  .footer-newsletter { padding: 36px 32px; }
}

/* ══ TABLET PORTRAIT (768px – 900px) ══ */
@media (min-width: 768px) and (max-width: 900px) {
  .nav-inner  { padding: 0 20px; }
  .nav-links  { display: none; }
  .hamburger  { display: flex; }
  .mobile-menu{ display: flex; }
  .nav-actions .login-link,
  .nav-actions .signup-btn { display: none; }

  /* Hero */
  .hero { min-height: auto; padding-bottom: 40px; }
  .hero-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 60px 24px 0;
    gap: 32px;
  }
  .hero-left  { max-width: 600px; }
  .hero-cta   { justify-content: center; }
  .hero-desc  { max-width: 100%; }
  .hero-right { width: 100%; justify-content: center; }
  .phone-img  { width: clamp(260px, 55vw, 380px); }
  .hero-bg    { width: 600px; height: 600px; top: -30px; right: -60px; opacity: 0.7; }

  /* Features */
  .features-section { padding: 60px 24px; }
  .features-grid    { grid-template-columns: 1fr 1fr; gap: 14px; }
  .feat-card-3      {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 28px 22px;
    gap: 0;
  }
  .transfer-widget { border-radius: 14px; padding: 20px 16px; }

  /* HIW */
  .hiw-scroll-wrapper { height: auto; }
  .hiw-sticky         { position: relative; height: auto; }
  .hiw-header         { padding: 60px 24px 36px; }
  .hiw-steps          { grid-template-columns: 1fr 1fr; }
  .hiw-step           { opacity: 1 !important; transform: none !important; padding: 36px 24px; }

  /* Integrations */
  .integrations-section { padding: 60px 24px; }

  /* Security */
  .security-section { padding: 60px 24px; }
  .security-grid    { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .security-grid .row-2 { grid-template-columns: repeat(2, 1fr); }

  /* Pricing */
  .pricing-section { padding: 60px 24px; }
  .pricing-grid    { grid-template-columns: 1fr 1fr; gap: 14px; max-width: 640px; }
  .price-card.featured { grid-column: 1 / -1; max-width: 340px; margin: 0 auto; width: 100%; }

  /* Reviews */
  .reviews-section  { padding: 60px 24px; }
  .reviews-columns  { grid-template-columns: repeat(2, 1fr); height: 580px; }
  .reviews-col-3    { display: none; }

  /* FAQ */
  .faq-section { padding: 60px 24px; }
  .faq-title   { font-size: 34px; }

  /* CTA */
  .cta-banner-section   { padding: 0 20px 60px; }
  .cta-banner           { min-height: 300px; border-radius: 20px; }
  .cta-banner-content   { padding: 40px 0 40px 32px; max-width: 340px; }
  .cta-banner-title     { font-size: 34px; }

  /* Newsletter */
  .footer-newsletter { padding: 32px 24px; flex-direction: column; align-items: flex-start; gap: 20px; }
  .footer-newsletter-input { width: 220px; }

  /* Footer */
  .site-footer { padding: 36px 24px 0; }
  .footer-top  { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; gap: 10px; }
}

/* ══ MOBILE LARGE (480px – 767px) ══ */
@media (min-width: 480px) and (max-width: 767px) {
  /* Navbar */
  .nav-inner  { padding: 0 18px; }
  .nav-links  { display: none; }
  .hamburger  { display: flex; }
  .mobile-menu{ display: flex; }
  .nav-actions .login-link,
  .nav-actions .signup-btn { display: none; }

  /* Hero – centered single column */
  .hero { min-height: auto; padding-bottom: 0; }
  .hero-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 48px 20px 0;
    gap: 28px;
  }
  h1 { font-size: clamp(36px, 8vw, 52px); letter-spacing: -1.5px; }
  .hero-left  { max-width: 100%; }
  .hero-desc  { max-width: 100%; font-size: 15px; }
  .hero-cta   { justify-content: center; flex-wrap: nowrap; gap: 10px; }
  .btn-hero-primary, .btn-hero-outline {
    flex: 1;
    min-width: 0;
    text-align: center;
    justify-content: center;
    padding: 12px 14px;
    font-size: 13.5px;
  }
  .hero-right { width: 100%; justify-content: center; }
  .phone-img  { width: clamp(220px, 70vw, 340px); }
  .hero-bg    { width: 520px; height: 520px; top: 0; right: -50px; opacity: 0.6; }

  /* Rating badge centered */
  .rating-badge { display: flex; width: fit-content; margin: 0 auto 20px; }

  /* Features */
  .features-section { padding: 56px 18px; }
  .features-header  { margin-bottom: 36px; }
  .features-grid    { grid-template-columns: 1fr; gap: 16px; }
  .feat-card-3      {
    grid-column: auto;
    display: block;
    padding: 28px 20px 0;
  }
  .feat-card-3 .card-desc { margin-bottom: 24px; }
  .transfer-widget  { border-radius: 16px 16px 0 0; padding: 20px 16px 0; }
  .feat-card-2 .card-photo { height: 220px; }

  /* HOW IT WORKS */
  .hiw-scroll-wrapper { height: auto; }
  .hiw-sticky  { position: relative; height: auto; }
  .hiw-header  { padding: 56px 20px 32px; }
  .hiw-title   { font-size: clamp(30px, 7vw, 46px); letter-spacing: -1.5px; }
  .hiw-steps   { grid-template-columns: 1fr; border-top: none; }
  .hiw-step    { opacity: 1 !important; transform: none !important; border-top: 1px solid #e8e8e8; padding: 32px 24px; }
  .hiw-step::after { display: none; }
  .step-number { margin-bottom: 20px; }

  /* Overview */
  .overview-section { padding: 56px 20px 60px; }
  .overview-title   { font-size: clamp(28px, 7vw, 44px); letter-spacing: -1px; }
  .overview-frame   { border-radius: 16px; }
  .overview-frame img.overview-img { width: 100%; }
  .watch-btn-wrap   { width: 90px; height: 90px; }
  .watch-play       { width: 32px; height: 32px; }
  .watch-play i     { font-size: 12px; }

  /* Security */
  .security-section { padding: 56px 18px; }
  .section-title    { font-size: clamp(28px, 6vw, 42px); letter-spacing: -1px; }
  .security-grid    { grid-template-columns: 1fr 1fr; gap: 12px; }
  .security-grid .row-2 { grid-template-columns: 1fr; }
  .sec-card         { padding: 24px 20px 28px; }
  .sec-icon-wrap    { margin-bottom: 32px; }

  /* Pricing */
  .pricing-section { padding: 56px 18px; }
  .pricing-grid    { grid-template-columns: 1fr; max-width: 400px; gap: 16px; }

  /* Integrations */
  .integrations-section { padding: 56px 18px; }
  .int-grid  { grid-template-rows: repeat(3, 100px); gap: 8px; max-width: 500px; }
  .int-tile img { width: 44px; height: 44px; }
  .int-center-inner { width: 84px; height: 84px; }

  /* Reviews */
  .reviews-section { padding: 56px 18px; }
  .reviews-title   { font-size: clamp(28px, 6vw, 42px); letter-spacing: -1px; }
  .reviews-columns { grid-template-columns: 1fr 1fr; height: 560px; }
  .reviews-col-3   { display: none; }

  /* FAQ */
  .faq-section  { padding: 56px 18px; }
  .faq-title    { font-size: clamp(26px, 6vw, 38px); letter-spacing: -1px; margin-bottom: 36px; }
  .faq-question { padding: 16px 18px; gap: 12px; }
  .faq-question-text { font-size: 14.5px; }
  .faq-answer-inner  { padding: 0 16px 16px 58px; }

  /* CTA */
  .cta-banner-section { padding: 0 16px 56px; }
  .cta-banner {
    min-height: auto;
    border-radius: 18px;
    flex-direction: column;
    align-items: flex-start;
  }
  .cta-banner-content { padding: 36px 24px 28px; max-width: 100%; }
  .cta-banner-title   { font-size: clamp(28px, 7vw, 40px); letter-spacing: -1px; }
  .cta-banner-desc    { font-size: 14px; margin-bottom: 24px; }
  .cta-banner-phones  {
    position: relative;
    right: auto; bottom: auto;
    height: auto;
    max-height: 220px;
    width: 70%;
    max-width: 280px;
    display: block;
    margin: 0 auto;
  }
  .cta-banner-btn { width: auto; justify-content: flex-start; align-self: flex-start; }

  /* Newsletter */
  .footer-newsletter { padding: 28px 18px; flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-newsletter-title { font-size: clamp(18px, 5vw, 26px); }
  .footer-newsletter-form  { flex-direction: column; width: 100%; gap: 10px; }
  .footer-newsletter-input { width: 100%; }
  .footer-newsletter-btn   { width: 100%; }

  /* Footer */
  .site-footer { padding: 28px 18px 0; }
  .footer-top  { grid-template-columns: 1fr 1fr; gap: 20px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; gap: 8px; }
  .footer-legal  { padding: 20px 0 32px; }
  .footer-legal p { font-size: 11.5px; }

  /* Closing */
  .bottom-apilox-letter { font-size: clamp(100px, 18vw, 180px); letter-spacing: -4px; }
  .bottom-apilox-bar    { padding: 14px 18px; }
  .bottom-apilox-bar-right { gap: 18px; }
}

/* ══ MOBILE SMALL (≤ 479px) ══ */
@media (max-width: 479px) {
  /* Navbar */
  .nav-inner  { padding: 0 16px; }
  .nav-actions .cart-btn { display: none; }

  /* Hero */
  .hero { min-height: auto; }
  .hero-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 16px 0;
    gap: 24px;
  }
  h1  { font-size: clamp(32px, 9vw, 44px); letter-spacing: -1.5px; }
  .hero-left  { max-width: 100%; }
  .hero-desc  { font-size: 14.5px; max-width: 100%; }
  .hero-cta   { flex-direction: row; align-items: center; gap: 10px; width: 100%; flex-wrap: nowrap; }
  .btn-hero-primary, .btn-hero-outline {
    width: auto;
    flex: 1;
    text-align: center;
    justify-content: center;
    padding: 12px 14px;
    font-size: 13.5px;
  }
  .rating-badge { display: flex; width: fit-content; margin: 0 auto 16px; }
  .hero-right { width: 100%; justify-content: center; }
  .phone-img  { width: clamp(200px, 78vw, 300px); }
  .hero-bg    { width: 420px; height: 420px; top: 0; right: -40px; opacity: 0.6; }

  /* Features */
  .features-section { padding: 48px 16px; }
  .features-title   { font-size: clamp(28px, 8vw, 40px); letter-spacing: -1px; }
  .features-subtitle { font-size: 14.5px; }
  .features-grid    { grid-template-columns: 1fr; gap: 14px; }
  .feat-card-3      { display: block; padding: 24px 16px 0; }
  .feat-card-3 .card-desc { margin-bottom: 20px; }
  .transfer-widget  { padding: 18px 14px 0; }
  .feat-card-2 .card-photo { height: 200px; }
  .feat-card-1      { padding: 24px 16px 0; }
  .feat-card-1 .card-heading,
  .feat-card-2 .card-heading,
  .feat-card-3 .card-heading { font-size: 19px; }
  .feat-card-2 .card-body   { padding: 22px 20px 26px; }

  /* HOW IT WORKS */
  .hiw-scroll-wrapper { height: auto; }
  .hiw-sticky  { position: relative; height: auto; }
  .hiw-header  { padding: 48px 16px 28px; }
  .hiw-title   { font-size: clamp(28px, 8vw, 40px); letter-spacing: -1.5px; }
  .hiw-subtitle{ font-size: 14.5px; }
  .hiw-steps   { grid-template-columns: 1fr; border-top: none; }
  .hiw-step    { opacity: 1 !important; transform: none !important; border-top: 1px solid #e8e8e8; padding: 28px 16px; }
  .hiw-step::after { display: none; }
  .step-number { margin-bottom: 16px; }
  .step-heading{ font-size: 19px; }
  .step-desc   { font-size: 14.5px; max-width: 100%; }

  /* Overview */
  .overview-section { padding: 48px 16px 52px; }
  .overview-title   { font-size: clamp(26px, 8vw, 38px); letter-spacing: -1px; }
  .overview-subtitle { font-size: 14.5px; margin-bottom: 40px; }
  .overview-frame   { border-radius: 14px; }
  .overview-frame img.overview-img { width: 100%; max-width: 100%; }
  .watch-btn-wrap   { width: 76px; height: 76px; }
  .watch-play       { width: 28px; height: 28px; }
  .watch-play i     { font-size: 11px; }

  /* Security */
  .security-section { padding: 48px 16px; }
  .section-title    { font-size: clamp(24px, 7vw, 36px); letter-spacing: -1px; }
  .section-subtitle { font-size: 14.5px; }
  .security-grid    { grid-template-columns: 1fr; gap: 12px; }
  .security-grid .row-2 { grid-template-columns: 1fr; }
  .sec-card         { padding: 22px 18px 26px; }
  .sec-heading      { font-size: 16px; }
  .sec-icon-wrap    { margin-bottom: 24px; }

  /* Pricing */
  .pricing-section { padding: 48px 16px; }
  .pricing-grid    { grid-template-columns: 1fr; max-width: 100%; gap: 14px; }
  .price-card      { padding: 26px 20px; }
  .price-dollar    { font-size: clamp(38px, 9vw, 52px); }

  /* Integrations */
  .integrations-section { padding: 48px 16px; }
  .int-grid  { max-width: 320px; grid-template-rows: repeat(3, 88px); gap: 6px; }
  .int-tile  { border-radius: 12px; }
  .int-tile img { width: 38px; height: 38px; }
  .int-center-inner { width: 76px; height: 76px; }
  .integrations-section .section-title { font-size: clamp(24px, 7vw, 36px); letter-spacing: -1px; }

  /* Reviews */
  .reviews-section  { padding: 48px 16px; }
  .reviews-title    { font-size: clamp(24px, 7vw, 36px); letter-spacing: -1px; }
  .reviews-subtitle { font-size: 14.5px; }
  .reviews-columns  { grid-template-columns: 1fr; height: 500px; }
  .reviews-col-2    { display: none; }
  .reviews-col-3    { display: none; }
  .review-quote     { font-size: 14px; }

  /* FAQ */
  .faq-section   { padding: 48px 16px; }
  .faq-label     { font-size: 14px; }
  .faq-title     { font-size: clamp(24px, 7vw, 34px); letter-spacing: -1px; margin-bottom: 28px; }
  .faq-question  { padding: 15px 16px; gap: 10px; }
  .faq-icon      { width: 28px; height: 28px; font-size: 13px; flex-shrink: 0; }
  .faq-question-text { font-size: 14px; }
  .faq-answer-inner  { padding: 0 14px 16px 54px; }
  .faq-answer-text   { font-size: 13.5px; }

  /* CTA Banner */
  .cta-banner-section { padding: 0 14px 48px; }
  .cta-banner {
    flex-direction: column;
    align-items: flex-start;
    min-height: auto;
    border-radius: 16px;
  }
  .cta-banner-content  { padding: 30px 18px 24px; max-width: 100%; }
  .cta-banner-title    { font-size: clamp(26px, 7.5vw, 36px); letter-spacing: -1px; }
  .cta-banner-desc     { font-size: 13.5px; margin-bottom: 20px; }
  .cta-banner-btn      { width: auto; justify-content: flex-start; align-self: flex-start; padding: 12px 24px; font-size: 14.5px; }
  .cta-banner-phones   {
    position: relative; right: auto; bottom: auto;
    height: auto;
    max-height: 180px;
    width: 65%;
    max-width: 240px;
    display: block;
    margin: 0 auto;
    transform: none !important;
    opacity: 1 !important;
  }

  /* Newsletter */
  .footer-newsletter { padding: 24px 16px; flex-direction: column; gap: 14px; }
  .footer-newsletter-title { font-size: clamp(16px, 5vw, 22px); }
  .footer-newsletter-form  { flex-direction: column; width: 100%; gap: 8px; }
  .footer-newsletter-input { width: 100%; padding: 12px 18px; }
  .footer-newsletter-btn   { width: 100%; padding: 12px 24px; }

  /* Footer */
  .site-footer { padding: 24px 16px 0; }
  .footer-top  { grid-template-columns: 1fr 1fr; gap: 16px 20px; }
  .footer-brand,
  .footer-brand-full { grid-column: 1 / -1; margin-bottom: 4px; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; gap: 8px; padding: 16px 0 20px; }
  .footer-bottom-center { font-size: 12px; }
  .footer-legal { padding: 16px 0 28px; }
  .footer-legal p { font-size: 11px; }
  .footer-col-title { font-size: 12px; margin-bottom: 12px; }

  /* Closing */
  .bottom-apilox-letter { font-size: clamp(80px, 16vw, 150px); letter-spacing: -3px; }
  .bottom-apilox-typewriter { padding: 0; }
  .bottom-apilox-bar { padding: 12px 16px; flex-direction: column; gap: 10px; }
  .bottom-apilox-bar-right { gap: 16px; }
  .bottom-apilox-bar-right a { font-size: 12px; }
  .bottom-apilox-bar-text    { font-size: 12px; }
}

/* ══ ACCESSIBILITY & TOUCH IMPROVEMENTS ══ */
@media (hover: none) and (pointer: coarse) {
  /* Larger tap targets on touch screens */
  .nav-links > li > a,
  .nav-links > li > button { padding: 10px 16px; min-height: 44px; }
  .mobile-menu a { min-height: 44px; display: flex; align-items: center; }
  .faq-question  { min-height: 56px; }
  .price-btn     { min-height: 48px; display: flex; align-items: center; justify-content: center; }
  .cta-banner-btn { min-height: 48px; }
  .btn-hero-primary, .btn-hero-outline { min-height: 44px; }
  .footer-newsletter-btn { min-height: 48px; }
  .signup-btn, .m-signup { min-height: 44px; }

  /* Remove hover-only transforms that feel broken on touch */
  .sec-card:hover    { transform: none; }
  .review-card:hover { transform: none; }
}

/* ══ PRINT ══ */
@media print {
  nav, .mobile-menu, .hamburger, .bottom-apilox-closing,
  .footer-newsletter, .cta-banner-section { display: none !important; }
  body { font-size: 12pt; color: #000; }
}


/* ── Footer brand full-width on small screens ── */
@media (max-width: 767px) {
  .footer-brand-full,
  .footer-brand { grid-column: 1 / -1; }
}

/* ══ ADDITIONAL POLISH ══ */

/* Prevent horizontal scroll on all screen sizes */
html { overflow-x: hidden; }

/* Hero: on very small screens don't let hero be 100vh (too tall) */
@media (max-width: 479px) {
  .hero { min-height: 100svh; }
}

/* Smooth scroll */
html { scroll-behavior: smooth; }

/* Mobile menu: ensure it has proper max-height so it doesn't overflow off-screen */
.mobile-menu {
  max-height: calc(100vh - var(--nav-height));
  overflow-y: auto;
}

/* Features label (green pill) – ensure it doesn't overflow on narrow screens */
.features-label, .section-label, .overview-label, .hiw-label,
.reviews-label, .faq-label {
  max-width: 100%;
  word-break: break-word;
}

/* Pricing featured card – on very small screens don't use negative margins */
@media (max-width: 479px) {
  .featured-badge { margin: 0 -20px; }
}

/* Footer bottom links: stack gracefully */
@media (max-width: 479px) {
  .footer-bottom-left,
  .footer-bottom-right,
  .footer-bottom-center { font-size: 11.5px; }
}

/* Reviews section: pause animation on reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .reviews-col-1, .reviews-col-2, .reviews-col-3 { animation: none; }
  .int-center-inner { animation: none; }
  .watch-ring { animation: none; }
}

/* Widescreen hero: cap the hero phone so it doesn't dominate */
@media (min-width: 1400px) {
  .hero-inner { padding-top: 80px; padding-bottom: 40px; }
  .phone-img  { max-width: 520px; }
}

/* Medium screens: hero stays two-column but balanced */
@media (min-width: 901px) and (max-width: 1200px) {
  .hero-left { max-width: 460px; }
  .phone-img { width: clamp(300px, 40vw, 460px); }
}

/* Integrations section: on tablets, scale the grid proportionally */
@media (min-width: 601px) and (max-width: 900px) {
  .int-grid {
    max-width: 560px;
    grid-template-rows: repeat(3, 120px);
    gap: 10px;
  }
  .int-center-inner { width: 96px; height: 96px; }
  .int-tile img { width: 48px; height: 48px; }
}

/* HIW steps: on wide screens add more breathing room */
@media (min-width: 1280px) {
  .hiw-step { padding: 56px 64px; }
}

/* Security grid: on widescreen use 3-col for row-2 too */
@media (min-width: 1280px) {
  .security-grid { grid-template-columns: repeat(3, 1fr); }
  .security-grid .row-2 { grid-template-columns: repeat(2, 1fr); }
}

/* Pricing grid: on wide screens give more horizontal space */
@media (min-width: 1280px) {
  .pricing-grid { max-width: 1100px; gap: 24px; }
  .price-card   { padding: 36px 32px; }
}

/* Footer top: on very wide, use more columns */
@media (min-width: 1400px) {
  .footer-top { grid-template-columns: 320px repeat(5, 1fr); }
  .site-footer { padding: 64px 64px 0; }
  .footer-newsletter { padding: 56px 64px; }
}
/* ══════════════════════════════════════════════════════
   APEX FOOTER (NEW) — from apilox-footer.html
══════════════════════════════════════════════════════ */

/* ── NEWSLETTER BAND ── */
.apex-nl {
  background: #ffffff;
  border-top: 1px solid #e2e2e2;
  padding: 40px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.apex-nl-title {
  font-size: clamp(18px, 2.5vw, 30px);
  font-weight: 900;
  color: #0f0f0f;
  letter-spacing: -0.8px;
  text-transform: uppercase;
  line-height: 1.1;
  font-family: 'Montserrat', sans-serif;
}
.apex-nl-title span { color: #0b7a32; }
.apex-nl-form {
  display: flex;
  gap: 10px;
  flex: 0 0 auto;
}
.apex-nl-form input {
  padding: 13px 20px;
  border-radius: 50px;
  border: 1.5px solid #e2e2e2;
  background: #f7f7f7;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  color: #333;
  outline: none;
  width: 260px;
  transition: border-color .2s, background .2s;
}
.apex-nl-form input::placeholder { color: #bbb; }
.apex-nl-form input:focus { border-color: #1FBC51; background: #ffffff; }
.apex-nl-form button {
  padding: 13px 26px;
  border-radius: 50px;
  background: #0f0f0f;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s, transform .15s;
  letter-spacing: 0.3px;
}
.apex-nl-form button:hover { background: #0b7a32; transform: translateY(-1px); }

/* ── MAIN FOOTER ── */
.apex-footer {
  background: #f2f2f0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid #e2e2e2;
  font-family: 'Montserrat', sans-serif;
}
.apex-wm {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 160px;
  font-weight: 900;
  color: rgba(0,0,0,0.055);
  white-space: nowrap;
  letter-spacing: -6px;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  font-family: 'Montserrat', sans-serif;
}
.apex-inner {
  position: relative;
  z-index: 1;
  padding: 52px 60px 0;
}
.apex-top {
  display: grid;
  grid-template-columns: 260px 1fr 1fr 1fr 1fr 1fr;
  gap: 0 32px;
  padding-bottom: 44px;
  border-bottom: 1px solid #e2e2e2;
  align-items: start;
}
.apex-brand-card {
  background: linear-gradient(150deg, #0d9e3e 0%, #0b7a32 55%, #074d20 100%);
  border-radius: 18px;
  padding: 26px 22px 20px;
  display: flex;
  flex-direction: column;
  min-height: 220px;
  position: relative;
  overflow: hidden;
}
.apex-brand-card::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 130px; height: 130px;
  background: rgba(255,255,255,0.07);
  border-radius: 50%;
}
.apex-brand-card::after {
  content: '';
  position: absolute;
  bottom: -20px; left: -20px;
  width: 80px; height: 80px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}
.apex-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: auto;
}
.apex-logo img{
  width: 70%;
}
.apex-logo-mark {
  width: 34px; height: 34px;
  background: white;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.apex-logo-mark svg { width: 20px; height: 20px; }
.apex-logo-text {
  font-size: 18px;
  font-weight: 800;
  color: white;
  letter-spacing: -0.2px;
  font-family: 'Montserrat', sans-serif;
}
.apex-tagline {
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.92);
  line-height: 1.45;
  margin-top: 20px;
  margin-bottom: 18px;
  font-family: 'Montserrat', sans-serif;
}
.apex-tagline span { font-weight: 400; opacity: 0.8; }
.apex-stay { font-size: 11px; color: rgba(255,255,255,0.6); font-style: italic; margin-bottom: 9px; }
.apex-socials { display: flex; gap: 7px; }
.apex-social {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1.5px solid rgba(221, 221, 221, 0.616);
    background: rgb(255, 255, 255);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: backgrounds 0.2s, border-color 0.2s, transform 0.15s;
    box-shadow: rgba(0, 0, 0, 0.06) 0px 1px 6px;
    text-decoration: none;
    backdrop-filter: blur(14px);
    color: #0d9e3e;
}
.apex-social:hover { background: rgba(255,255,255,0.28); color: white;}

.apex-col-title {
  font-size: 11px;
  font-weight: 700;
  color: #888;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-family: 'Montserrat', sans-serif;
}
.apex-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.apex-links li a {
  font-size: 13.5px;
  font-weight: 500;
  color: #3a3a3a;
  text-decoration: none;
  transition: color .2s;
  line-height: 1;
  font-family: 'Montserrat', sans-serif;
}
.apex-links li a:hover { color: #0b7a32; }

.apex-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 18px 60px 22px;
}
.apex-bottom-left, .apex-bottom-right {
  font-size: 12px;
  color: #888;
  text-decoration: none;
  transition: color .2s;
  font-weight: 500;
  font-family: 'Montserrat', sans-serif;
}
.apex-bottom-left:hover, .apex-bottom-right:hover { color: #0f0f0f; }
.apex-bottom-center {
  font-size: 12px;
  color: #aaa;
  text-align: center;
  line-height: 1.5;
  font-family: 'Montserrat', sans-serif;
}
.apex-bottom-center a {
  color: #0f0f0f;
  font-weight: 700;
  text-decoration: none;
  transition: color .2s;
}
.apex-bottom-center a:hover { color: #0b7a32; }

.apex-legal {
  position: relative;
  display: flex;
  justify-content: center;
  z-index: 1;
  padding: 20px 60px 36px;
  border-top: 1px solid #e8e8e8;
}
.apex-legal p {
  font-size: 11.5px;
  color: #b0b0b0;
  line-height: 1.75;
  font-weight: 400;
  text-align: center;
  max-width: 900px;
  font-family: 'Montserrat', sans-serif;
}

/* ── CLOSING BANNER ── */
.apex-closing {
  background: linear-gradient(150deg, #0d9e3e 0%, #0b7a32 55%, #074d20 100%);
  position: relative;
  overflow: hidden;
}
.apex-closing-letters {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0 0;
  min-height: 160px;
  gap: 0;
}
.apex-cl {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(100px, 18vw, 240px);
  font-weight: 900;
  letter-spacing: -5px;
  line-height: 0.85;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255,255,255,0.3);
  background: linear-gradient(180deg, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.45) 55%, rgba(255,255,255,0.05) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  user-select: none;
  flex: 1;
  text-align: center;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.apex-cl.shown { opacity: 1; transform: translateY(0); }
.apex-closing-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 48px 22px;
  border-top: 1px solid rgba(255,255,255,0.15);
  flex-wrap: wrap;
  gap: 10px;
}
.apex-closing-bar-left {
  display: flex; align-items: center; gap: 10px;
}
.apex-closing-bar-logo {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,0.22);
  display: flex; align-items: center; justify-content: center;
}
.apex-closing-bar-logo svg { width: 14px; height: 14px; }
.apex-closing-bar-text {
  font-size: 12.5px;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
}
.apex-closing-bar-right { display: flex; gap: 24px; justify-content: center; align-items: center;}
.apex-closing-bar-right a {
  font-size: 12.5px;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color .2s;
  font-weight: 500;
  align-self: center;
  font-family: 'Montserrat', sans-serif;
}
.apex-closing-bar-right a:hover { color: #fff; }

/* ── APEX FOOTER RESPONSIVE: TABLET ── */
@media (max-width: 960px) {
  .apex-nl { padding: 36px 32px; }
  .apex-inner { padding: 40px 32px 0; }
  .apex-top {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 28px;
  }
  .apex-brand-card { grid-column: 1 / -1; min-height: unset; flex-direction: row; flex-wrap: wrap; gap: 20px; }
  .apex-tagline { margin-top: 0; margin-bottom: 0; }
  .apex-bottom { padding: 16px 32px 20px; }
  .apex-legal { padding: 20px 32px 28px; }
  .apex-closing-bar { padding: 14px 32px 20px; }
  .apex-wm { font-size: 110px; font-family: var(--font-body) ;}
}

/* ── APEX FOOTER RESPONSIVE: MOBILE ── */
@media (max-width: 600px) {
  .apex-nl { padding: 28px 20px; flex-direction: column; align-items: flex-start; }
  .apex-nl-form { flex-direction: column; gap: 10px; width: 100%; }
  .apex-nl-form input { width: 100%; }
  .apex-inner { padding: 28px 20px 0; }
  .apex-top { grid-template-columns: 1fr 1fr; gap: 24px; }
  .apex-brand-card { grid-column: 1 / -1; flex-direction: column; }
  .apex-tagline { margin-top: 16px; margin-bottom: 14px; }
  .apex-bottom { padding: 14px 20px 18px; flex-direction: column; align-items: center; text-align: center; }
  .apex-legal { padding: 16px 20px 24px; }
  .apex-closing-bar { padding: 12px 20px 18px; flex-direction: column; }
  .apex-closing-letters { min-height: 110px; }
  .apex-wm { font-size: 70px; letter-spacing: -3px; }
}