/* ===================================================
   TrueROI — Marketing Website
   Light Theme Stylesheet
   Brand palette:
     Pink    #DD355E  (CTAs, Badges)
     Cyan    #0CCBDE  (Active tabs / highlights)
     Teal    #0B727A
     Green   #105942
     Purple  #2E1C4E  (Headings / deep text)
   =================================================== */

:root {
  /* Brand */
  --primary: #DD355E;            /* Accent Pink — CTAs */
  --primary-dark: #B82A4E;
  --primary-light: #F26A89;
  --accent: #0CCBDE;             /* Highlight Cyan */
  --accent-dark: #0BA5B5;
  --teal: #0B727A;
  --green: #105942;
  --purple: #2E1C4E;
  --accent2: #DD355E;
  --danger: #DD355E;
  --info: #0B727A;

  /* Light surfaces */
  --bg:       #FFFFFF;
  --bg2:      #F7F9FC;
  --bg3:      #EEF2F8;
  --surface:  #FFFFFF;
  --surface2: #F7F9FC;

  --border:        rgba(46, 28, 78, 0.08);
  --border-strong: rgba(46, 28, 78, 0.14);
  --border-hover:  rgba(221, 53, 94, 0.45);

  /* Typography */
  --text:       #2E1C4E;          /* Purple Accent — main text/title */
  --text-muted: #5A6175;
  --muted:      #5A6175;
  --text-dim:   #8A91A5;
  --text-inverse: #FFFFFF;

  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;

  --shadow:      0 4px 16px rgba(46, 28, 78, 0.06);
  --shadow-md:   0 12px 36px rgba(46, 28, 78, 0.10);
  --shadow-glow: 0 8px 28px rgba(221, 53, 94, 0.18);

  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  --font-heading: 'Sora', sans-serif;
  --font-body: 'Nunito', sans-serif;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 { font-family: var(--font-heading); color: var(--text); }

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

img { max-width: 100%; display: block; }

::selection { background: rgba(221, 53, 94, 0.18); color: var(--purple); }

/* ===== UTILITY ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.gradient-text {
  background: linear-gradient(135deg, #DD355E 0%, #0CCBDE 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(221, 53, 94, 0.10);
  border: 1px solid rgba(221, 53, 94, 0.25);
  color: var(--primary-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

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

.section-header h2 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 14px;
  color: var(--text);
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  box-shadow: 0 6px 18px rgba(221, 53, 94, 0.32);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(221, 53, 94, 0.45);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-strong);
}
.btn-ghost:hover {
  color: var(--primary-dark);
  border-color: var(--border-hover);
  background: rgba(221, 53, 94, 0.06);
}

.btn-outline {
  background: transparent;
  color: var(--primary-dark);
  border: 1.5px solid var(--primary);
}
.btn-outline:hover {
  background: rgba(221, 53, 94, 0.08);
  transform: translateY(-2px);
}

.btn-white {
  background: #fff;
  color: var(--primary-dark);
  font-weight: 700;
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,255,255,0.4);
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.7);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.14); transform: translateY(-2px); }

.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.navbar.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 16px rgba(46, 28, 78, 0.06);
  padding: 10px 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  flex-shrink: 0;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #fff;
  box-shadow: 0 4px 12px rgba(221, 53, 94, 0.35);
}

.logo-accent { color: var(--primary-dark); }

.nav-logo-img {
  height: 40px;
  
  width: auto;
  object-fit: contain;
  display: block;
}

.footer-logo-img {
  height: 50px;
  
  width: auto;
  object-fit: contain;
  display: block;
  margin-bottom: 14px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}

.nav-links a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--primary-dark);
  background: rgba(221, 53, 94, 0.08);
}

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

/* Drawer-only elements — hidden on desktop, shown inside the @media (max-width: 768px) drawer below */
.nav-mobile-cta,
.nav-mobile-contact,
.nav-links .nav-icon,
.nav-links .nav-chev { display: none; }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: rgba(46, 28, 78, 0.06);
  border: none;
  cursor: pointer;
  padding: 10px;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  transition: var(--transition);
}
.hamburger:hover { background: rgba(221, 53, 94, 0.10); }
.hamburger span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: var(--purple);
  border-radius: 2px;
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), opacity 0.2s ease;
  transform-origin: center;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 120px 24px 80px;
  overflow: hidden;
  background: linear-gradient(160deg, #FFFFFF 0%, #F7F9FC 50%, #EEF2F8 100%);
}

.hero-bg { position: absolute; inset: 0; pointer-events: none; }

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.35;
  animation: blobFloat 8s ease-in-out infinite alternate;
}

.blob-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(221, 53, 94, 0.45), transparent);
  top: -150px; left: -100px;
  animation-delay: 0s;
}

.blob-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(12, 203, 222, 0.40), transparent);
  bottom: -100px; right: -100px;
  animation-delay: -3s;
}

.blob-3 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(46, 28, 78, 0.18), transparent);
  top: 40%; left: 40%;
  opacity: 0.25;
  animation-delay: -5s;
}

@keyframes blobFloat {
  0%   { transform: scale(1) translate(0,0); }
  100% { transform: scale(1.12) translate(30px, -40px); }
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(46, 28, 78, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46, 28, 78, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 56px;
  width: 100%;
}

.hero-left { flex: 1; min-width: 0; text-align: left; }

.hero-right { flex-shrink: 0; width: 420px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(221, 53, 94, 0.10);
  border: 1px solid rgba(221, 53, 94, 0.30);
  color: var(--primary-dark);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 24px;
  animation: fadeInDown 0.6s ease;
}

.hero-badge i { color: var(--primary); }

.hero-title {
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--purple);
  margin-bottom: 24px;
  animation: fadeInUp 0.7s ease 0.1s both;
}

.hero-desc {
  font-size: clamp(1rem, 2.5vw, 1.18rem);
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 36px;
  animation: fadeInUp 0.7s ease 0.2s both;
}

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  animation: fadeInUp 0.7s ease 0.3s both;
}

.badge-label { font-size: 0.82rem; color: var(--text-dim); font-weight: 500; }

.app-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 18px;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  box-shadow: var(--shadow);
}

.app-badge i { font-size: 1.5rem; }
.app-badge div small { display: block; font-size: 0.68rem; color: var(--text-muted); }
.app-badge div strong { display: block; font-size: 0.9rem; font-family: var(--font-heading); color: var(--text); }
.app-badge.android i { color: #105942; }
.app-badge.android:hover { border-color: rgba(16, 89, 66, 0.4); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.app-badge.ios i { color: var(--text-dim); }
.app-badge.coming-soon { opacity: 0.7; }
.app-badge.coming-soon:hover { opacity: 0.9; transform: translateY(-2px); }

.soon-tag {
  position: absolute;
  top: -8px; right: -8px;
  background: var(--accent2);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 20px;
}

.hero-stats {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  flex-wrap: wrap;
  background: rgba(255,255,255,0.85);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 32px;
  box-shadow: var(--shadow);
  animation: fadeInUp 0.7s ease 0.4s both;
  backdrop-filter: blur(10px);
}

.stat-pill { text-align: center; padding: 0 28px; }

.stat-pill strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-pill span { font-size: 0.78rem; color: var(--text-muted); font-weight: 600; }

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border-strong);
}

/* ===== HERO ENQUIRY CARD ===== */
.hero-enquiry-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px 24px;
  box-shadow: var(--shadow-md), 0 0 40px rgba(221, 53, 94, 0.06);
  animation: fadeInUp 0.7s ease 0.2s both;
}

.enquiry-card-header { text-align: center; margin-bottom: 24px; }

.enquiry-card-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(221, 53, 94, 0.14), rgba(12, 203, 222, 0.14));
  border: 1px solid rgba(221, 53, 94, 0.25);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--primary);
  margin: 0 auto 14px;
}

.enquiry-card-header h3 { font-size: 1.3rem; font-weight: 800; color: var(--purple); margin-bottom: 6px; }
.enquiry-card-header p  { font-size: 0.88rem; color: var(--text-muted); }

.enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 16px;
}

.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.02em;
}

.input-wrap { position: relative; display: flex; align-items: center; }

.input-wrap i {
  position: absolute;
  left: 13px;
  font-size: 0.82rem;
  color: var(--text-dim);
  pointer-events: none;
}

.input-wrap input {
  width: 100%;
  padding: 11px 14px 11px 36px;
  border: 1.5px solid var(--border-strong);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  background: #fff;
  transition: var(--transition);
  outline: none;
}

.input-wrap input::placeholder { color: var(--text-dim); }

.input-wrap input:focus {
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(221, 53, 94, 0.15);
}

.enquiry-submit {
  margin-top: 4px;
  font-size: 0.95rem;
  padding: 13px 20px;
  border-radius: var(--radius-sm);
}

.enquiry-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding: 24px 16px;
  background: rgba(16, 89, 66, 0.06);
  border: 1px solid rgba(16, 89, 66, 0.25);
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  color: var(--green);
}

.enquiry-success i { font-size: 2rem; }
.enquiry-success strong { font-size: 1rem; color: var(--text); }
.enquiry-success p { font-size: 0.85rem; color: var(--text-muted); margin: 0; }

.enquiry-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--text-dim);
  text-align: center;
  margin-bottom: 14px;
}

.enquiry-note i { color: var(--teal); font-size: 0.75rem; }

.enquiry-alt {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.8rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

.enquiry-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(37, 211, 102, 0.10);
  color: #128c4a;
  border: 1px solid rgba(37, 211, 102, 0.35);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  transition: var(--transition);
}
.enquiry-wa-btn:hover { background: rgba(37, 211, 102, 0.18); transform: translateY(-1px); }
.enquiry-wa-btn i { font-size: 0.95rem; }

/* ===== HERO MOCKUP ===== */
.hero-mockup {
  position: relative;
  z-index: 2;
  margin-top: 60px;
  width: 100%;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  padding: 28px 28px 0;
  background: linear-gradient(160deg, #FFFFFF 0%, #F7F9FC 100%);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  border: 1px solid var(--border);
  border-bottom: none;
  box-shadow: 0 -4px 32px rgba(46, 28, 78, 0.08), inset 0 1px 0 rgba(255,255,255,0.6);
}

.mockup-wrapper {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0;
}

.mockup-desktop {
  background: var(--surface);
  border: 1.5px solid var(--border-strong);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
  width: 76%;
  box-shadow:
    0 -8px 32px rgba(46, 28, 78, 0.10),
    0 24px 60px rgba(221, 53, 94, 0.08);
}

.mockup-desktop-bar {
  background: #F1F4F9;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1.5px solid var(--border);
}

.mockup-desktop-bar span { width: 11px; height: 11px; border-radius: 50%; }
.mockup-desktop-bar span:nth-child(1) { background: #FF5F57; }
.mockup-desktop-bar span:nth-child(2) { background: #FEBC2E; }
.mockup-desktop-bar span:nth-child(3) { background: #28C840; }

.mockup-url {
  flex: 1;
  text-align: center;
  font-size: 0.7rem;
  color: var(--text-muted);
  background: #fff;
  border-radius: 6px;
  padding: 4px 12px;
  margin-left: 8px;
  border: 1px solid var(--border);
}

.mockup-desktop-screen { aspect-ratio: 16/9; }

.mockup-mobile {
  background: var(--surface);
  border: 2px solid var(--border-strong);
  border-radius: 30px;
  overflow: hidden;
  width: 18%;
  min-width: 108px;
  margin-left: -2%;
  position: relative;
  z-index: 2;
  box-shadow:
    0 12px 40px rgba(46, 28, 78, 0.16),
    0 0 30px rgba(12, 203, 222, 0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 6px 16px;
  aspect-ratio: 9/17;
}

.mockup-mobile-notch {
  width: 60px;
  height: 12px;
  background: #2E1C4E;
  border-radius: 0 0 10px 10px;
  margin-bottom: 6px;
}

.mockup-mobile-screen { flex: 1; width: 100%; border-radius: 16px; overflow: hidden; }

.mockup-mobile-home {
  width: 40px;
  height: 5px;
  background: rgba(46, 28, 78, 0.18);
  border-radius: 3px;
  margin-top: 10px;
}

/* ===== SCREEN PLACEHOLDERS ===== */
.screen-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--bg2), var(--bg3));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.screen-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(221, 53, 94, 0.04) 0%, transparent 60%);
}

.placeholder-inner { text-align: center; color: var(--text-muted); position: relative; z-index: 1; }
.placeholder-inner i { font-size: 2rem; margin-bottom: 8px; color: var(--primary); opacity: 0.6; }
.placeholder-inner p { font-size: 0.8rem; font-weight: 600; margin-bottom: 4px; }
.placeholder-inner small { font-size: 0.68rem; color: var(--text-dim); }
.placeholder-inner h4 { font-size: 1rem; margin-bottom: 6px; color: var(--text); }
.placeholder-note { color: var(--text-dim); font-style: italic; }

.large-screen { min-height: 380px; border-radius: var(--radius); }

.mobile-screen-ph { aspect-ratio: 9/17; border-radius: 16px; flex: 1; min-height: 260px; }

.app-screen { aspect-ratio: 9/17; border-radius: 0; }
.desktop-placeholder { min-height: 240px; }
.mobile-placeholder { height: 100%; }

/* ===== TRUSTED BY ===== */
.trusted-section {
  padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg2);
}

.trusted-label {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}

.trusted-logos {
  position: relative;
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
          mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
}

.trusted-track {
  display: flex;
  align-items: center;
  gap: 56px;
  width: max-content;
  animation: trustedScroll 28s linear infinite;
  will-change: transform;
}

.trusted-logos:hover .trusted-track { animation-play-state: paused; }

@keyframes trustedScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .trusted-track { animation: none; }
}

.trust-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
  transition: var(--transition);
  flex-shrink: 0;
  white-space: nowrap;
}

.trust-logo i { color: var(--accent-dark); opacity: 0.8; }
.trust-logo:hover { color: var(--purple); }

/* ===== FEATURES ===== */
.features-section {
  padding: 100px 0;
  background: var(--bg);
}

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

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(221, 53, 94, 0.04), transparent);
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
}

.feature-card:hover::before { opacity: 1; }
.feature-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(221, 53, 94, 0.12);
}

.feature-large { grid-column: span 2; }

.feature-icon-wrap {
  width: 52px;
  height: 52px;
  background: rgba(221, 53, 94, 0.10);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 1.4rem;
  color: var(--primary);
  border: 1px solid rgba(221, 53, 94, 0.18);
}

/* Per-card icon palette overrides */
.feature-icon-wrap[style*="e89d26"],
.feature-icon-wrap[style*="f0b850"] {
  background: rgba(221, 53, 94, 0.10);
  color: var(--primary);
  border-color: rgba(221, 53, 94, 0.18);
}
.feature-icon-wrap[style*="54bec1"] {
  background: rgba(12, 203, 222, 0.12);
  color: var(--teal);
  border-color: rgba(12, 203, 222, 0.30);
}
.feature-icon-wrap[style*="e94060"] {
  background: rgba(46, 28, 78, 0.10);
  color: var(--purple);
  border-color: rgba(46, 28, 78, 0.20);
}

.feature-card h3 { font-size: 1.15rem; font-weight: 800; color: var(--purple); margin-bottom: 10px; }
.feature-card p  { font-size: 0.92rem; color: var(--text-muted); line-height: 1.7; }

.feature-list { margin-top: 16px; display: flex; flex-direction: column; gap: 8px; }

.feature-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.feature-list li i { color: var(--green); font-size: 0.8rem; }

.feature-app-row { display: flex; gap: 10px; margin-top: 18px; }

.mini-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  border: 1px solid;
  transition: var(--transition);
}

.android-mini { color: var(--green); border-color: rgba(16, 89, 66, 0.3); }
.android-mini:hover { background: rgba(16, 89, 66, 0.08); }
.ios-mini { color: var(--text-muted); border-color: var(--border-strong); }

/* ===== SCREENSHOTS ===== */
.screenshots-section {
  padding: 100px 0;
  background: var(--bg2);
}

.tabs-wrapper { max-width: 900px; margin: 0 auto; }

.tab-buttons {
  display: flex;
  align-items: center;
  gap: 4px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 5px;
  margin-bottom: 32px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  box-shadow: var(--shadow);
}

.tab-btn {
  padding: 10px 22px;
  border-radius: 50px;
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.tab-btn.active {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  box-shadow: 0 4px 14px rgba(12, 203, 222, 0.40);
}

.tab-btn:hover:not(.active) { color: var(--purple); background: rgba(46, 28, 78, 0.05); }

.tab-content { display: none; animation: fadeInUp 0.4s ease; }
.tab-content.active { display: block; }

.screen-frame {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-md);
}

.mobile-screens-row { display: flex; gap: 16px; justify-content: center; }

/* ===== HOW IT WORKS ===== */
.how-section { padding: 100px 0; background: var(--bg); }

.steps-grid {
  display: flex;
  align-items: flex-start;
  gap: 0;
  flex-wrap: wrap;
  justify-content: center;
}

.step-card {
  flex: 1;
  min-width: 200px;
  max-width: 240px;
  text-align: center;
  padding: 32px 20px;
  position: relative;
}

.step-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(221, 53, 94, 0.20);
  line-height: 1;
  margin-bottom: 12px;
}

.step-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  margin: 0 auto 16px;
  box-shadow: 0 8px 24px rgba(221, 53, 94, 0.35);
}

.step-card h3 { font-size: 1rem; font-weight: 800; color: var(--purple); margin-bottom: 8px; }
.step-card p  { font-size: 0.88rem; color: var(--text-muted); }

.step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--accent);
  opacity: 0.55;
  padding-top: 80px;
  flex-shrink: 0;
}

/* ===== PRICING ===== */
.pricing-section { padding: 100px 0; background: var(--bg2); }

.pricing-toggle {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
  margin-bottom: 48px;
  font-size: 0.92rem;
  color: var(--text-muted);
  font-weight: 600;
}

.toggle-switch { position: relative; width: 48px; height: 26px; }
.toggle-switch input { opacity: 0; width: 0; height: 0; }

.toggle-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: var(--bg3);
  border: 1px solid var(--border-strong);
  border-radius: 26px;
  transition: var(--transition);
}

.toggle-slider::before {
  content: '';
  position: absolute;
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 3px;
  background: var(--primary);
  border-radius: 50%;
  transition: var(--transition);
}

input:checked + .toggle-slider { background: var(--primary); border-color: var(--primary); }
input:checked + .toggle-slider::before { transform: translateX(22px); background: #fff; }

.save-badge {
  background: var(--green);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  margin-left: 6px;
  font-style: normal;
}

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

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

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

.pricing-card.popular {
  border-color: var(--primary);
  background: linear-gradient(160deg, #FFFFFF 0%, #FFF6F8 100%);
  box-shadow: 0 0 0 1px var(--primary), 0 16px 48px rgba(221, 53, 94, 0.18);
  transform: scale(1.02);
}

.pricing-card.popular:hover { transform: scale(1.02) translateY(-4px); }

.popular-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 20px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(221, 53, 94, 0.35);
}

.plan-header { margin-bottom: 24px; }

.plan-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  background: rgba(221, 53, 94, 0.10);
  color: var(--plan-color, var(--primary));
  margin-bottom: 14px;
  border: 1px solid rgba(221, 53, 94, 0.18);
}

.plan-icon[style*="54bec1"] { background: rgba(12, 203, 222, 0.12); color: var(--teal); border-color: rgba(12, 203, 222, 0.30); }
.plan-icon[style*="e89d26"] { background: rgba(221, 53, 94, 0.10); color: var(--primary); border-color: rgba(221, 53, 94, 0.20); }
.plan-icon[style*="e94060"] { background: rgba(46, 28, 78, 0.10); color: var(--purple); border-color: rgba(46, 28, 78, 0.20); }

.plan-header h3 { font-size: 1.2rem; font-weight: 800; color: var(--purple); margin-bottom: 4px; }
.plan-header p  { font-size: 0.82rem; color: var(--text-muted); }

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 3px;
  margin-bottom: 28px;
}

.currency { font-size: 1.2rem; color: var(--text-muted); }
.price { font-family: var(--font-heading); font-size: 2.6rem; font-weight: 900; color: var(--purple); }
.period { font-size: 0.82rem; color: var(--text-muted); margin-left: 2px; }

.plan-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text);
}

.plan-features li i.fa-check { color: var(--green); font-size: 0.8rem; }
.plan-features li i.fa-xmark { color: var(--text-dim); font-size: 0.8rem; }
.plan-features li.disabled { opacity: 0.45; }

.pricing-note {
  text-align: center;
  margin-top: 36px;
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.pricing-note i { color: var(--teal); }

/* ===== DOWNLOAD ===== */
.download-section { padding: 100px 0; background: var(--bg); }

.download-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.download-text .section-badge { margin-bottom: 12px; }
.download-text h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--purple);
  margin-bottom: 16px;
  line-height: 1.25;
}
.download-text > p { color: var(--text-muted); margin-bottom: 28px; line-height: 1.7; }

.download-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 32px;
}

.dl-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text);
  font-weight: 600;
}

.dl-feature i { color: var(--accent-dark); width: 18px; }

.download-btns { display: flex; flex-direction: column; gap: 14px; }

.download-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--surface);
  border: 1.5px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 16px 22px;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  color: var(--text);
  box-shadow: var(--shadow);
}

.download-btn i { font-size: 1.8rem; flex-shrink: 0; }
.download-btn div { flex: 1; }
.download-btn div small { display: block; font-size: 0.7rem; color: var(--text-muted); }
.download-btn div strong { display: block; font-size: 1rem; font-family: var(--font-heading); color: var(--purple); }

.android-dl i { color: var(--green); }
.android-dl {
  border-color: rgba(16, 89, 66, 0.3);
  background: linear-gradient(135deg, rgba(16, 89, 66, 0.05), var(--surface));
}
.android-dl:hover {
  border-color: rgba(16, 89, 66, 0.55);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(16, 89, 66, 0.14);
}

.ios-dl { opacity: 0.7; cursor: not-allowed; }
.ios-dl i { color: var(--text-muted); }

.dl-arrow { color: var(--accent-dark); }
.coming-soon-pill {
  background: var(--accent2);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
}

.dl-note { margin-top: 16px; font-size: 0.82rem; color: var(--text-muted); }
.dl-note i { color: var(--teal); }
.notify-link { color: var(--primary-dark); font-weight: 700; cursor: pointer; }
.notify-link:hover { text-decoration: underline; }

/* Phone Frame */
.download-visual { position: relative; display: flex; justify-content: center; }

.phone-frame {
  width: 220px;
  background: var(--surface);
  border: 2px solid var(--border-strong);
  border-radius: 40px;
  padding: 14px 10px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-md), 0 0 50px rgba(12, 203, 222, 0.18);
}

.phone-notch {
  width: 80px;
  height: 14px;
  background: var(--purple);
  border-radius: 0 0 14px 14px;
  margin-bottom: 8px;
}

.phone-screen {
  flex: 1;
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  min-height: 360px;
}

.phone-home-btn {
  width: 50px;
  height: 5px;
  background: var(--border-strong);
  border-radius: 3px;
  margin-top: 12px;
}

.phone-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(12, 203, 222, 0.18), transparent);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
}

/* ===== NOTIFY MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(46, 28, 78, 0.45);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.modal-overlay.open { opacity: 1; pointer-events: all; }

.modal-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  max-width: 440px;
  width: 100%;
  text-align: center;
  position: relative;
  transform: scale(0.92);
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}

.modal-overlay.open .modal-box { transform: scale(1); }

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--bg2);
  border: none;
  color: var(--text-muted);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.modal-close:hover { background: var(--bg3); color: var(--purple); }

.modal-icon {
  width: 72px;
  height: 72px;
  background: rgba(221, 53, 94, 0.10);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--primary);
  margin: 0 auto 20px;
}

.modal-box h3 { font-size: 1.4rem; font-weight: 800; color: var(--purple); margin-bottom: 8px; }
.modal-box p { color: var(--text-muted); font-size: 0.92rem; margin-bottom: 24px; }

.notify-form { display: flex; flex-direction: column; gap: 12px; }

.notify-form input {
  width: 100%;
  padding: 14px 18px;
  background: #fff;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
}

.notify-form input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(221, 53, 94, 0.15); }
.notify-form input::placeholder { color: var(--text-dim); }

.modal-note { margin-top: 12px !important; font-size: 0.78rem !important; color: var(--text-dim) !important; margin-bottom: 0 !important; }

/* ===== TESTIMONIALS ===== */
.testimonials-section { padding: 100px 0; background: var(--bg2); }

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

.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

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

.testimonial-card.featured {
  border-color: var(--primary);
  background: linear-gradient(160deg, #FFFFFF 0%, #FFF6F8 100%);
  position: relative;
  top: -12px;
  box-shadow: 0 0 0 1px var(--primary), var(--shadow-md);
}

.stars {
  display: flex;
  gap: 3px;
  color: #F5B400;
  font-size: 0.88rem;
  margin-bottom: 16px;
}

.testimonial-card p {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author { display: flex; align-items: center; gap: 12px; }

.author-avatar {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--primary), var(--purple));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.testimonial-author strong { display: block; font-size: 0.92rem; font-weight: 800; color: var(--purple); }
.testimonial-author span { font-size: 0.78rem; color: var(--text-muted); }

/* ===== CTA SECTION ===== */
.cta-section { padding: 80px 0; background: var(--bg); }

.cta-inner {
  background: linear-gradient(135deg, var(--purple) 0%, #1A0F33 100%);
  border: 1px solid rgba(221, 53, 94, 0.25);
  border-radius: var(--radius-lg);
  padding: 60px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(46, 28, 78, 0.25);
}

.cta-blob {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(221, 53, 94, 0.35), transparent);
  border-radius: 50%;
  right: -100px;
  top: -100px;
}

.cta-text { position: relative; z-index: 1; }
.cta-text h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800; color: #fff; margin-bottom: 8px; }
.cta-text p { color: rgba(255,255,255,0.78); font-size: 1rem; }

.cta-actions {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0;
}

.footer-brand p {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 280px;
}

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

.footer-social a {
  width: 36px;
  height: 36px;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.footer-social a:hover {
  color: #fff;
  border-color: var(--primary);
  background: var(--primary);
}

.footer-col h4 {
  font-size: 0.9rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--purple);
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }

.footer-col ul li a {
  font-size: 0.86rem;
  color: var(--text-muted);
  transition: var(--transition);
  font-weight: 500;
}

.footer-col ul li a:hover { color: var(--primary-dark); }

.footer-contact ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.86rem;
  color: var(--text-muted);
}

.footer-contact ul li i { color: var(--primary); width: 16px; }

.footer-apps { display: flex; gap: 10px; margin-top: 20px; }

.footer-app-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text);
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.footer-app-badge i { color: var(--green); }
.footer-app-badge.ios-badge i { color: var(--text-muted); }
.footer-app-badge:hover { border-color: var(--border-hover); color: var(--primary-dark); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer-bottom a { color: var(--primary-dark); font-weight: 700; }
.footer-bottom a:hover { text-decoration: underline; }

/* =====================================================
   FLOATING WHATSAPP WIDGET (popup + button + pulses)
   ===================================================== */
.wa-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 998;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
  pointer-events: none;
}

/* ----- Floating round button ----- */
.wa-float {
  position: relative;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #25D366 0%, #128C4A 100%);
  color: #fff;
  border: 0;
  padding: 0;
  font-family: inherit;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  text-decoration: none;
  box-shadow:
    0 10px 28px rgba(37, 211, 102, 0.45),
    0 4px 12px rgba(46, 28, 78, 0.18);
  transition: transform 0.25s cubic-bezier(0.4,0,0.2,1), box-shadow 0.25s ease;
  cursor: pointer;
  pointer-events: auto;
  animation: waBounceIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.4s both,
             waIdleFloat 4s ease-in-out 1.2s infinite;
}

.wa-float:hover {
  transform: translateY(-4px) scale(1.06) rotate(-6deg);
  box-shadow:
    0 14px 36px rgba(37, 211, 102, 0.55),
    0 6px 18px rgba(46, 28, 78, 0.24);
}

.wa-float i {
  position: relative;
  z-index: 3;
  line-height: 1;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.18));
}

/* Notification badge */
.wa-float-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  background: #DD355E;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 800;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  border: 2px solid #fff;
  box-shadow: 0 4px 10px rgba(221, 53, 94, 0.45);
  animation: waBadgePop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) 1.2s both;
}

/* Outward expanding pulse rings */
.wa-float-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  z-index: 1;
  animation: waPulse 2.4s ease-out infinite;
  pointer-events: none;
  opacity: 0.55;
}
.wa-float-pulse-2 { animation-delay: 1.2s; }

@keyframes waPulse {
  0%   { transform: scale(1);   opacity: 0.55; }
  70%  { transform: scale(1.6); opacity: 0;    }
  100% { transform: scale(1.6); opacity: 0;    }
}

@keyframes waBounceIn {
  0%   { transform: scale(0) rotate(-180deg); opacity: 0; }
  60%  { transform: scale(1.1) rotate(8deg); opacity: 1; }
  100% { transform: scale(1) rotate(0); opacity: 1; }
}

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

@keyframes waBadgePop {
  0%   { transform: scale(0); }
  60%  { transform: scale(1.3); }
  100% { transform: scale(1); }
}

/* ----- Chat preview popup card ----- */
.wa-popup {
  position: relative;
  width: 320px;
  max-width: calc(100vw - 48px);
  background: #fff;
  border-radius: 18px;
  box-shadow:
    0 24px 60px rgba(46, 28, 78, 0.22),
    0 6px 20px rgba(37, 211, 102, 0.12);
  overflow: hidden;
  border: 1px solid var(--border);
  opacity: 0;
  transform: translateY(20px) scale(0.92);
  transform-origin: bottom right;
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.wa-popup.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* Header — green WhatsApp-style bar */
.wa-popup-header {
  background: linear-gradient(135deg, #128C4A 0%, #075E54 100%);
  color: #fff;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}

.wa-popup-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  position: relative;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.wa-online-dot {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 14px;
  height: 14px;
  background: #25D366;
  border: 2px solid #128C4A;
  border-radius: 50%;
  animation: waOnlinePulse 2s ease-in-out infinite;
}

@keyframes waOnlinePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  50%      { box-shadow: 0 0 0 6px rgba(37, 211, 102, 0); }
}

.wa-popup-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.wa-popup-info strong {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.01em;
}

.wa-popup-status {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.85);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.wa-status-dot {
  width: 7px;
  height: 7px;
  background: #4ADE80;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 2px rgba(74, 222, 128, 0.25);
}

/* Close X */
.wa-popup-close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.18);
  border: none;
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: background 0.2s ease, transform 0.2s ease;
  z-index: 5;
}

.wa-popup-close:hover {
  background: rgba(255, 255, 255, 0.32);
  transform: rotate(90deg);
}

/* Body — chat-style background */
.wa-popup-body {
  padding: 22px 18px 14px;
  background:
    linear-gradient(rgba(247, 244, 236, 0.95), rgba(247, 244, 236, 0.95)),
    repeating-linear-gradient(45deg, rgba(46, 28, 78, 0.03) 0 2px, transparent 2px 8px);
  min-height: 110px;
  position: relative;
}

.wa-msg-bubble {
  background: #fff;
  border-radius: 4px 14px 14px 14px;
  padding: 10px 14px 18px;
  font-size: 0.86rem;
  line-height: 1.55;
  color: var(--text);
  box-shadow: 0 2px 6px rgba(46, 28, 78, 0.08);
  position: relative;
  max-width: 92%;
  animation: waBubbleIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
}

.wa-msg-bubble::before {
  content: '';
  position: absolute;
  top: 0;
  left: -8px;
  width: 12px;
  height: 12px;
  background: #fff;
  clip-path: polygon(100% 0, 100% 100%, 0 0);
}

.wa-msg-text { display: block; }
.wa-msg-text strong { color: var(--primary-dark); font-weight: 700; }

.wa-msg-time {
  position: absolute;
  bottom: 4px;
  right: 10px;
  font-size: 0.66rem;
  color: var(--text-dim);
  font-weight: 500;
}

@keyframes waBubbleIn {
  from { opacity: 0; transform: translateY(8px) scale(0.95); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* Typing indicator dots */
.wa-typing {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 6px rgba(46, 28, 78, 0.06);
  margin-top: 10px;
  opacity: 0;
  animation: waBubbleIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) 1.2s forwards;
}

.wa-typing span {
  width: 6px;
  height: 6px;
  background: #128C4A;
  border-radius: 50%;
  display: inline-block;
  opacity: 0.5;
  animation: waTyping 1.2s ease-in-out infinite;
}
.wa-typing span:nth-child(2) { animation-delay: 0.2s; }
.wa-typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes waTyping {
  0%, 60%, 100% { transform: translateY(0);   opacity: 0.4; }
  30%           { transform: translateY(-4px); opacity: 1;   }
}

/* CTA at bottom of popup */
.wa-popup-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 18px;
  background: linear-gradient(135deg, #25D366 0%, #128C4A 100%);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  transition: filter 0.2s ease, transform 0.2s ease;
  letter-spacing: 0.01em;
}

.wa-popup-cta i { font-size: 1.15rem; }

.wa-popup-cta:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

/* ----- Mobile adjustments ----- */
@media (max-width: 480px) {
  .wa-widget { bottom: 18px; right: 18px; gap: 10px; }
  .wa-float  { width: 56px; height: 56px; font-size: 28px; }
  .wa-popup  { width: 290px; }
  .wa-popup-body { padding: 18px 14px 12px; }
  .wa-msg-bubble { font-size: 0.82rem; }
}

/* ===== BACK TO TOP ===== */
.back-top {
  position: fixed;
  bottom: 102px;
  right: 34px;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(221, 53, 94, 0.45);
  transition: var(--transition);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  z-index: 999;
}

.back-top.show { opacity: 1; transform: translateY(0); pointer-events: all; }
.back-top:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(221, 53, 94, 0.55); }

/* ===== ANIMATIONS ===== */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: 1fr 1fr; }
  .feature-large { grid-column: span 1; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .pricing-card.popular { transform: none; }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: span 3; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .testimonial-card.featured { top: 0; }
}

@media (max-width: 768px) {
  .nav-container {
    gap: 12px;
    padding: 0 16px;
    justify-content: space-between;
    min-height: 56px;
  }
  .navbar { padding: 8px 0; background: rgba(255,255,255,0.96); border-bottom: 1px solid var(--border); }
  .navbar.scrolled { padding: 6px 0; box-shadow: 0 2px 14px rgba(46, 28, 78, 0.08); }
  .nav-logo { flex: 0 1 auto; min-width: 0; }
  .nav-logo-img { height: 36px; }
  .nav-actions { gap: 0; }

  /* Hide the desktop nav-actions buttons; keep only hamburger */
  .nav-actions .btn-ghost,
  .nav-actions .btn-primary { display: none; }
  .hamburger { width: 40px; height: 40px; padding: 9px; }

  /* ===== Creative Mobile Drawer ===== */
  .nav-links {
    display: none;
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: calc(100vh - 56px);
    height: calc(100dvh - 56px);
    background:
      radial-gradient(circle at 100% 0%, rgba(221, 53, 94, 0.10), transparent 45%),
      radial-gradient(circle at 0% 100%, rgba(12, 203, 222, 0.08), transparent 50%),
      linear-gradient(180deg, #FFFFFF 0%, #FFF8FA 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 4px;
    padding: 22px 20px 28px;
    z-index: 999;
    border-top: 1px solid var(--border);
    overflow-y: auto;
    overscroll-behavior: contain;
  }
  .nav-links.open { display: flex; animation: drawerFadeIn 0.35s ease both; }
  .nav-links li { width: 100%; opacity: 0; }
  .nav-links.open li { animation: drawerItemIn 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) forwards; }
  .nav-links.open li:nth-child(1) { animation-delay: 0.06s; }
  .nav-links.open li:nth-child(2) { animation-delay: 0.12s; }
  .nav-links.open li:nth-child(3) { animation-delay: 0.18s; }
  .nav-links.open li:nth-child(4) { animation-delay: 0.24s; }
  .nav-links.open li:nth-child(5) { animation-delay: 0.30s; }
  .nav-links.open li:nth-child(6) { animation-delay: 0.36s; }
  .nav-links.open li:nth-child(7) { animation-delay: 0.42s; }

  @keyframes drawerFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
  }
  @keyframes drawerItemIn {
    from { opacity: 0; transform: translateX(-24px); }
    to   { opacity: 1; transform: translateX(0); }
  }

  /* Each menu link — icon + label + chevron */
  .nav-links a {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1rem;
    color: var(--text);
    padding: 12px 14px;
    border-radius: 14px;
    font-weight: 600;
    text-align: left;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(46, 28, 78, 0.06);
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
    position: relative;
  }
  .nav-links a > span:not([class]) { flex: 1; }

  .nav-links a .nav-icon {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    background: linear-gradient(135deg, rgba(221, 53, 94, 0.14), rgba(12, 203, 222, 0.14));
    color: var(--primary-dark);
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
  }
  .nav-links a .nav-chev {
    color: var(--text-dim);
    font-size: 0.78rem;
    transition: transform 0.25s ease, color 0.25s ease;
  }

  .nav-links a:hover,
  .nav-links a:active {
    background: #fff;
    border-color: var(--border-hover);
    color: var(--primary-dark);
    transform: translateX(4px);
    box-shadow: 0 6px 18px rgba(221, 53, 94, 0.10);
  }
  .nav-links a:hover .nav-icon,
  .nav-links a:active .nav-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    transform: rotate(-6deg) scale(1.08);
  }
  .nav-links a:hover .nav-chev,
  .nav-links a:active .nav-chev {
    color: var(--primary);
    transform: translateX(4px);
  }

  /* Login + Get Started CTA block */
  .nav-links li.nav-mobile-cta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 18px 0 0;
    padding: 18px 0 0;
    border-top: 1px dashed var(--border-strong);
    background: transparent;
    border-bottom: none;
  }
  .nav-links li.nav-mobile-cta a {
    text-align: center;
    padding: 14px 22px;
    border-radius: 50px;
    font-size: 1rem;
    background: transparent;
    justify-content: center;
    border: 1.5px solid var(--border-strong);
    color: var(--text);
    box-shadow: none;
  }
  .nav-links li.nav-mobile-cta a .nav-icon { display: none; }
  .nav-links li.nav-mobile-cta .btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    border-color: transparent;
    box-shadow: 0 8px 22px rgba(221, 53, 94, 0.32);
  }
  .nav-links li.nav-mobile-cta .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(221, 53, 94, 0.45);
  }
  .nav-links li.nav-mobile-cta .btn-ghost:hover {
    background: rgba(221, 53, 94, 0.06);
    border-color: var(--border-hover);
    color: var(--primary-dark);
    transform: none;
  }

  /* WhatsApp + social block at bottom of drawer */
  .nav-mobile-contact {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px dashed var(--border-strong);
  }
  .nav-contact-eyebrow {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 600;
    text-align: center;
    margin-bottom: 12px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }
  .nav-wa-btn {
    display: flex !important;
    align-items: center;
    gap: 14px;
    padding: 14px 18px !important;
    background: linear-gradient(135deg, #128C4A 0%, #25D366 100%) !important;
    border: none !important;
    border-radius: 16px !important;
    color: #fff !important;
    box-shadow: 0 10px 24px rgba(37, 211, 102, 0.32);
    text-align: left !important;
    transform: none !important;
  }
  .nav-wa-btn > i:first-child {
    font-size: 1.6rem;
    flex-shrink: 0;
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .nav-wa-btn > div {
    flex: 1;
    display: flex;
    flex-direction: column;
    line-height: 1.25;
  }
  .nav-wa-btn strong {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
  }
  .nav-wa-btn span {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 2px;
  }
  .nav-wa-arrow { font-size: 0.85rem !important; color: rgba(255, 255, 255, 0.85) !important; transition: transform 0.25s ease; }
  .nav-wa-btn:hover .nav-wa-arrow { transform: translateX(4px); color: #fff !important; }

  .nav-mobile-social {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 16px;
  }
  .nav-mobile-social a {
    width: 40px;
    height: 40px;
    background: #fff !important;
    border: 1px solid var(--border-strong) !important;
    border-radius: 50% !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center !important;
    color: var(--purple) !important;
    padding: 0 !important;
    font-size: 0.9rem;
    transition: all 0.25s ease;
  }
  .nav-mobile-social a:hover {
    background: var(--primary) !important;
    color: #fff !important;
    border-color: var(--primary) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 6px 16px rgba(221, 53, 94, 0.35);
  }

  .hamburger { display: flex; }

  .features-grid { grid-template-columns: 1fr; }
  .feature-large { grid-column: span 1; }

  .hero-inner { flex-direction: column; gap: 40px; }
  .hero-left { text-align: center; }
  .hero-left .hero-cta { justify-content: center; }
  .hero-left .hero-stats { display: flex; justify-content: center; }
  .hero-right { width: 100%; }

  .hero-stats { padding: 16px; }
  .stat-pill { padding: 0 14px; }
  .stat-pill strong { font-size: 1.3rem; }

  .mockup-mobile { display: none; }
  .mockup-desktop { width: 100%; }

  .download-inner { grid-template-columns: 1fr; }
  .download-visual { display: none; }

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

  .cta-inner { flex-direction: column; text-align: center; padding: 40px 24px; }

  .steps-grid { flex-direction: column; align-items: center; }
  .step-arrow { padding-top: 0; transform: rotate(90deg); }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .footer-contact { grid-column: span 2; }

  .mobile-screens-row { overflow-x: auto; padding-bottom: 16px; }
  .mobile-screen-ph { min-width: 140px; }
}

@media (max-width: 480px) {
  .hero-cta { flex-direction: column; }
  .hero-left .hero-stats,
  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 18px;
    width: 100%;
    justify-content: stretch;
  }
  .hero-stats .stat-divider { display: none; }
  .tab-buttons { flex-wrap: wrap; border-radius: var(--radius); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px 20px; }
  .footer-brand { grid-column: span 2; }
  .footer-contact { grid-column: span 2; }
  .cta-actions { flex-direction: column; }
}

/* =====================================================
   COMPREHENSIVE MOBILE POLISH (≤768px and ≤480px)
   ===================================================== */
@media (max-width: 768px) {
  .container { padding: 0 18px; }

  /* Tighter section padding so mobile doesn't feel sparse */
  .features-section,
  .screenshots-section,
  .how-section,
  .pricing-section,
  .download-section,
  .testimonials-section { padding: 60px 0; }
  .cta-section { padding: 50px 0; }
  .section-header { margin-bottom: 40px; }
  .section-header h2 { font-size: clamp(1.6rem, 6vw, 2.2rem); }
  .section-header p { font-size: 0.98rem; padding: 0 8px; }

  /* Hero */
  .hero { padding: 100px 16px 60px; }
  .hero-inner { gap: 32px; }
  .hero-title { font-size: clamp(2rem, 9vw, 3rem); margin-bottom: 18px; }
  .hero-desc { font-size: 1rem; margin-bottom: 28px; }
  .hero-badge { font-size: 0.78rem; padding: 6px 14px; }
  .hero-badge span { line-height: 1.3; }
  .hero-cta .btn-lg { padding: 14px 24px; font-size: 0.95rem; width: 100%; justify-content: center; }
  .hero-mockup { margin-top: 40px; padding: 14px 14px 0; border-radius: 18px 18px 0 0; }
  .hero-enquiry-card { padding: 24px 20px 18px; border-radius: 18px; }
  .hero-enquiry-card h3 { font-size: 1.15rem; }

  /* Features cards */
  .feature-card { padding: 24px 20px; }
  .feature-card h3 { font-size: 1.05rem; }
  .feature-card p { font-size: 0.88rem; }

  /* Tabs — pill buttons that wrap nicely */
  .tab-buttons {
    flex-wrap: wrap;
    width: 100%;
    border-radius: 16px;
    justify-content: center;
    gap: 6px;
  }
  .tab-btn { padding: 9px 16px; font-size: 0.82rem; flex: 1 1 auto; min-width: 0; }
  .screen-frame { padding: 10px; border-radius: 16px; }

  /* How it works */
  .step-arrow { padding: 4px 0; opacity: 0.35; }
  .step-card { padding: 20px 16px; max-width: 100%; }

  /* Pricing — override the inline padding/grid set in HTML */
  .pricing-card { padding: 32px 22px !important; border-radius: 18px; }
  .pricing-card h3 { font-size: 1.4rem !important; }
  .plan-features { grid-template-columns: 1fr !important; gap: 10px 0 !important; }
  .pricing-card .btn-lg { width: 100%; justify-content: center; }
  .pricing-note { flex-direction: column; gap: 4px; padding: 0 12px; line-height: 1.6; }

  /* CTA banner */
  .cta-inner { padding: 36px 22px; border-radius: 18px; gap: 22px; }
  .cta-text h2 { font-size: 1.4rem; }
  .cta-text p { font-size: 0.95rem; }
  .cta-actions { width: 100%; }
  .cta-actions .btn-lg { width: 100%; justify-content: center; padding: 14px 22px; }

  /* Testimonials */
  .testimonial-card { padding: 24px 20px; }
  .testimonial-card.featured { top: 0; }

  /* Download */
  .download-text h2 { font-size: 1.5rem; }
  .download-features { grid-template-columns: 1fr; gap: 10px; }

  /* Footer */
  .footer { padding: 48px 0 24px; }
  .footer-grid { gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }

  /* Form inputs more comfortable to tap */
  .input-wrap input { padding: 12px 14px 12px 36px; font-size: 0.95rem; }
  .enquiry-submit { padding: 14px 20px; font-size: 1rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }

  /* Even tighter navbar on small phones */
  .nav-container { padding: 0 14px; min-height: 52px; }
  .nav-logo-img { height: 32px; }
  .hamburger { width: 38px; height: 38px; padding: 8px; }
  .hamburger span { width: 20px; }
  .nav-links { top: 56px; padding: 24px 22px 32px; }

  .hero { padding: 90px 14px 50px; }
  .hero-title { font-size: clamp(1.85rem, 10vw, 2.4rem); line-height: 1.15; }
  .hero-desc { font-size: 0.95rem; }

  /* Hero stats — 2x2 grid on small mobile */
  .hero-left .hero-stats,
  .hero-stats {
    padding: 18px 14px;
    gap: 14px 12px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }
  .hero-stats .stat-pill {
    padding: 10px 6px;
    background: rgba(255,255,255,0.55);
    border: 1px solid var(--border);
    border-radius: 12px;
  }
  .hero-stats .stat-pill strong { font-size: 1.35rem; line-height: 1.1; }
  .hero-stats .stat-pill span { font-size: 0.78rem; }
  .hero-stats .stat-divider { display: none; }

  /* Features */
  .feature-card { padding: 22px 18px; }

  /* Pricing tighter on small screens */
  .pricing-card { padding: 28px 18px !important; }
  .pricing-card h3 { font-size: 1.25rem !important; }
  .pricing-card > p { font-size: 0.9rem !important; padding: 0 4px; }
  .popular-tag { font-size: 0.66rem; padding: 4px 14px; top: -12px; }

  /* Trusted-by marquee — slightly faster + tighter on small screens */
  .trusted-section { padding: 24px 0; }
  .trusted-label { font-size: 0.72rem; margin-bottom: 14px; padding: 0 16px; }
  .trusted-track { gap: 36px; animation-duration: 22s; }
  .trust-logo { font-size: 0.78rem; }
  .trust-logo i { font-size: 0.85rem; }

  /* Tabs — full width pills */
  .tab-btn { padding: 9px 12px; font-size: 0.78rem; }

  /* Mockup */
  .hero-mockup { padding: 10px 10px 0; }
  .mockup-desktop { border-radius: 12px 12px 0 0; }
  .mockup-desktop-bar { padding: 8px 10px; }
  .mockup-url { font-size: 0.66rem; padding: 3px 10px; }

  /* CTA */
  .cta-inner { padding: 32px 18px; }
  .cta-text h2 { font-size: 1.25rem; }

  /* Footer apps */
  .footer-apps { flex-wrap: wrap; }

  /* Modal */
  .modal-box { padding: 36px 24px; }
}

/* =====================================================
   SECTION MOBILE POLISH — Features / Screenshots /
   How It Works / Pricing / Testimonials
   ===================================================== */
@media (max-width: 768px) {
  /* Features — keep single column, tighten card breathing */
  .features-grid { gap: 16px; }
  .feature-card,
  .feature-card.feature-large { padding: 22px 18px; grid-column: span 1; }
  .feature-icon-wrap { width: 44px; height: 44px; font-size: 1.2rem; margin-bottom: 14px; }
  .feature-card h3 { font-size: 1.05rem; }
  .feature-card p { font-size: 0.9rem; line-height: 1.6; }
  .feature-list li { font-size: 0.85rem; }

  /* Screenshots — tabs as 2x2 grid, screen-frame snug */
  .tab-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    max-width: 360px;
    border-radius: 14px;
    gap: 4px;
    padding: 4px;
  }
  .tab-btn {
    padding: 10px 8px;
    font-size: 0.8rem;
    min-width: 0;
    flex: unset;
    width: 100%;
    text-align: center;
  }
  .screen-frame { padding: 8px; border-radius: 14px; }
  .mobile-screens-row { gap: 12px; padding: 0 4px 14px; }
  .mobile-screen-ph { min-width: 130px; min-height: 230px; flex: 0 0 auto; }

  /* How It Works — vertical stack, no rogue horizontal arrows */
  .steps-grid { flex-direction: column; align-items: center; gap: 4px; }
  .step-card {
    max-width: 100%;
    width: 100%;
    min-width: 0;
    padding: 22px 18px;
  }
  .step-number { font-size: 2.6rem; }
  .step-icon { width: 48px; height: 48px; font-size: 1.2rem; }
  .step-arrow {
    transform: rotate(90deg);
    padding: 2px 0;
    opacity: 0.4;
    font-size: 1rem;
  }

  /* Pricing — neutralise inline desktop padding/font sizes */
  .pricing-card,
  .pricing-card.popular {
    padding: 32px 20px !important;
    transform: none !important;
    border-radius: 18px;
  }
  .pricing-card h3 { font-size: 1.3rem !important; margin-bottom: 8px; }
  .pricing-card > p { font-size: 0.95rem !important; line-height: 1.55; }
  .pricing-card .plan-icon { width: 56px !important; height: 56px !important; font-size: 24px !important; }

  .plan-features {
    grid-template-columns: 1fr !important;
    gap: 10px 0 !important;
    margin-bottom: 24px !important;
  }
  .plan-features li { font-size: 0.9rem; }

  /* Pricing CTA pair — full-width stacked on phones */
  .pricing-card > div[style*="display:flex"]:last-of-type,
  .pricing-card > div[style*="flex-wrap:wrap"] {
    flex-direction: column !important;
    gap: 10px !important;
    align-items: stretch !important;
  }
  .pricing-card .btn-lg { width: 100%; justify-content: center; padding: 14px 18px; font-size: 0.95rem; }

  .pricing-note {
    flex-direction: column;
    gap: 6px;
    padding: 0 14px;
    line-height: 1.6;
    text-align: center;
    margin-top: 24px;
  }

  /* Testimonials — single column, undo featured offset */
  .testimonials-grid { grid-template-columns: 1fr; gap: 16px; }
  .testimonial-card,
  .testimonial-card.featured {
    padding: 24px 20px;
    top: 0;
    transform: none;
  }
  .testimonial-card p { font-size: 0.92rem; line-height: 1.65; }
}

@media (max-width: 480px) {
  /* Tabs: keep 2x2 but shorter labels need less padding */
  .tab-btn { padding: 9px 6px; font-size: 0.75rem; }
  .tab-buttons { max-width: 100%; }

  /* Screen frame full-bleed on tiny screens */
  .screen-frame { padding: 6px; border-radius: 12px; }

  /* Step cards tighter */
  .step-card { padding: 18px 14px; }
  .step-number { font-size: 2.2rem; }
  .step-card h3 { font-size: 0.98rem; }
  .step-card p  { font-size: 0.85rem; }

  /* Pricing tighter */
  .pricing-card,
  .pricing-card.popular { padding: 26px 16px !important; }
  .pricing-card h3 { font-size: 1.2rem !important; }
  .pricing-card .plan-icon { width: 52px !important; height: 52px !important; font-size: 22px !important; margin-bottom: 16px !important; }
  .popular-tag { font-size: 0.65rem; padding: 4px 12px; top: -12px; }
  .plan-features li { font-size: 0.86rem; }

  /* Testimonials */
  .testimonial-card,
  .testimonial-card.featured { padding: 20px 16px; }
}
