/* ═══════════════════════════════════════════════════════════════
   KHOZNA LANDING PAGE — REFERENCE TEMPLATE MATCH
   Brand: Deep Vibrant Blue (#00A3E1)
═══════════════════════════════════════════════════════════════ */

:root {
  --blue-primary:   #00A3E1;
  --blue-hover:     #0087BB;
  --blue-light-bg:  #F0F9FF;
  --blue-banner:    #00A3E1;
  
  --dark-slate:     #122730; /* Dark Teal Slate blending #487181 for How Khozna Makes It Easy */
  --slate-accent:   #487181; /* User suggested Teal Accent */
  --footer-dark:    #081E26; /* User suggested Deep Dark Teal Footer */
  
  --white:          #FFFFFF;
  --off-white:      #F8FAFC;
  --grey-light:     #F1F5F9;
  --grey-border:    #E2E8F0;
  
  --text-primary:   #0F172A;
  --text-secondary: #475569;
  --text-muted:     #64748B;
  
  --font-heading:   'Plus Jakarta Sans', sans-serif;
  --font-body:      'Inter', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Container & Utilities ── */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 90px 0; }
.section-white { background: var(--white); }
.section-light-grey { background: var(--off-white); }
.section-dark-slate {
  background: linear-gradient(135deg, #487181 0%, #365764 100%);
  color: var(--white);
}
.section-blue-banner { background: linear-gradient(135deg, #00A3E1 0%, #0077A3 100%); color: var(--white); }
.text-center { text-align: center; }
.text-blue { color: var(--blue-primary); }

/* ── Pill Badges ── */
.pill-badge {
  display: inline-block;
  padding: 6px 14px;
  background: #E0F2FE;
  color: var(--blue-primary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  border-radius: 100px;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.badge-dark {
  background: rgba(255,255,255,0.15);
  color: #A5F3FC;
}
.badge-white {
  background: rgba(255,255,255,0.2);
  color: var(--white);
}

/* ── Buttons ── */
.btn-pill-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  background: var(--blue-primary);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 100px;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-pill-primary:hover {
  background: var(--blue-hover);
  transform: translateY(-1px);
}
.btn-lg {
  padding: 14px 32px;
  font-size: 1rem;
}
.btn-pill-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  background: var(--white);
  color: var(--blue-primary);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.92rem;
  border-radius: 100px;
  transition: transform 0.2s ease;
}
.btn-pill-white:hover { transform: translateY(-1px); }

/* ═══════════════════ NAVBAR ═══════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  border-bottom: 1px solid var(--grey-border);
  backdrop-filter: blur(12px);
}
.nav-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 36px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-logo { width: 36px; height: 36px; object-fit: contain; }
.brand-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}
.nav-menu {
  display: flex;
  list-style: none;
  gap: 28px;
}
.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}
.nav-link:hover, .nav-link.active { color: var(--blue-primary); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.lang-switch {
  display: flex;
  align-items: center;
  gap: 4px;
  background: var(--grey-light);
  padding: 3px 8px;
  border-radius: 100px;
}
.lang-btn {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
  padding: 3px 8px;
  border-radius: 100px;
}
.lang-btn.active { color: var(--white); background: var(--blue-primary); }
.lang-sep { font-size: 0.7rem; color: var(--grey-border); }

/* ── Mobile Hamburger & Drawer Styles ── */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--grey-light);
  border: 1px solid var(--grey-border);
  cursor: pointer;
}
.mobile-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}
.mobile-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-toggle.open span:nth-child(2) { opacity: 0; }
.mobile-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-drawer {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--grey-border);
  padding: 24px 24px 32px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transform: translateY(-20px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
  z-index: 999;
}
.nav-drawer.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.drawer-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.drawer-link {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  padding: 6px 0;
  display: block;
  transition: color 0.2s ease;
}
.drawer-link:hover { color: var(--blue-primary); }
.drawer-footer { margin-top: 10px; }
.btn-block { width: 100%; text-align: center; justify-content: center; }

/* ═══════════════════ SCROLL REVEAL ANIMATIONS ═══════════════════ */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(32px) scale(0.96);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.reveal-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }

/* ═══════════════════ HERO SECTION ═══════════════════ */
.hero-section {
  padding-top: 144px;
  padding-bottom: 90px;
  background: linear-gradient(180deg, #F0F9FF 0%, #FFFFFF 100%);
  text-align: center;
  overflow: hidden;
}
.hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Search Filter Pill */
.search-filter-pill {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  padding: 8px 10px 8px 24px;
  border-radius: 100px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid var(--grey-border);
  margin-bottom: 40px;
  max-width: 90%;
  flex-wrap: wrap;
  justify-content: center;
}
.filter-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
.filter-label { font-size: 0.72rem; color: var(--text-muted); font-weight: 500; }
.filter-val { font-size: 0.88rem; font-weight: 600; color: var(--text-primary); }
.filter-divider { width: 1px; height: 28px; background: var(--grey-border); }
.filter-search-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-primary);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.88rem;
  transition: background 0.2s;
}
.filter-search-btn:hover { background: var(--blue-hover); }

/* Hero Text */
.hero-header-text { max-width: 650px; margin-bottom: 50px; }
.hero-main-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}
.hero-sub-text {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 28px;
}

/* App store buttons wrapper */
.app-store-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.left-aligned { justify-content: flex-start; margin-top: 24px; }

/* Real Official Store Badges */
.store-badge-real {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 20px;
  background: #000000;
  color: #FFFFFF;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.15);
  transition: transform 0.15s ease, background-color 0.2s;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}
.store-badge-real:hover {
  background: #1F2937;
  transform: translateY(-2px);
}
.store-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  line-height: 1.15;
}
.store-text .sub {
  font-size: 0.6rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.75);
}
.store-text .main {
  font-size: 0.95rem;
  font-weight: 700;
  font-family: var(--font-heading);
  letter-spacing: -0.01em;
}

/* Hero Phone Mockup with Callouts */
.hero-phone-container {
  position: relative;
  width: 100%;
  max-width: 620px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
.hero-phone-frame {
  width: 340px;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 25px 50px rgba(0,0,0,0.15));
}
.hero-mockup-img { width: 100%; height: auto; }

/* Floating Tooltip Callouts (Pro Hand-Crafted Cards) */
.floating-tag {
  position: absolute;
  z-index: 10;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow: inset 0 1px 1px #FFFFFF, 0 20px 40px -12px rgba(15, 23, 42, 0.12), 0 0 0 1px rgba(15, 23, 42, 0.04);
  padding: 12px 18px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
  animation: floatAnim 5s ease-in-out infinite;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}
.floating-tag:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: inset 0 1px 1px #FFFFFF, 0 24px 50px -10px rgba(0, 163, 225, 0.22);
  border-color: rgba(0, 163, 225, 0.5);
}

.tag-icon-box {
  width: 42px; height: 42px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  flex-shrink: 0;
}
.icon-verified {
  background: linear-gradient(135deg, #ECFDF5 0%, #D1FAE5 100%);
  color: #059669;
  border: 1px solid rgba(16, 185, 129, 0.3);
}
.icon-fee {
  background: linear-gradient(135deg, #F0F9FF 0%, #E0F2FE 100%);
  color: #0284C7;
  border: 1px solid rgba(0, 163, 225, 0.3);
}
.icon-chat {
  background: linear-gradient(135deg, #F0F9FF 0%, #E0F2FE 100%);
  color: #00A3E1;
  border: 1px solid rgba(0, 163, 225, 0.3);
}
.icon-video {
  background: linear-gradient(135deg, #FFF1F2 0%, #FFE4E6 100%);
  color: #E11D48;
  border: 1px solid rgba(244, 63, 94, 0.3);
}

.live-dot {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid #FFFFFF;
}
.pulse-emerald {
  background: #10B981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.25);
  animation: pulseDot 2s infinite;
}
.pulse-blue {
  background: #00A3E1;
  box-shadow: 0 0 0 3px rgba(0, 163, 225, 0.25);
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.tag-content { display: flex; flex-direction: column; }
.tag-title-row { display: flex; align-items: center; gap: 8px; }
.tag-title {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 800;
  color: #0F172A;
  line-height: 1.2;
}
.tag-sub {
  font-size: 0.74rem;
  font-weight: 500;
  color: #64748B;
  margin-top: 3px;
  display: block;
}

.mini-pill {
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.3;
}
.pill-green { background: #D1FAE5; color: #047857; }
.pill-blue  { background: #E0F2FE; color: #0369A1; }
.pill-cyan  { background: #E0F2FE; color: #0284C7; }
.pill-rose  { background: #FFE4E6; color: #BE123C; }

.tag-top-left     { top: 15px; left: -60px; animation-delay: 0s; }
.tag-top-right    { top: 35px; right: -60px; animation-delay: 1.2s; }
.tag-mid-left     { bottom: 95px; left: -70px; animation-delay: 2.4s; }
.tag-bottom-right { bottom: 75px; right: -70px; animation-delay: 1.8s; }

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

/* ═══════════════════ SECTION SPLIT GENERAL ═══════════════════ */
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.split-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}
.split-visual { display: flex; justify-content: center; }
.split-mockup-img {
  width: 390px;
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 22px 45px rgba(0,0,0,0.15));
}
.split-mockup-img.mockup-detail {
  width: 480px;
  max-width: 100%;
  filter: drop-shadow(0 25px 50px rgba(0,0,0,0.18));
}
.split-screen-frame {
  width: 250px;
  max-height: 480px;
  border-radius: 24px;
  border: 6px solid #0F172A;
  box-shadow: 0 16px 36px -10px rgba(0, 0, 0, 0.25);
  object-fit: cover;
}

/* ═══════════════════ SECTION 3: DARK HOW IT WORKS ═══════════════════ */
.dark-section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
  flex-wrap: wrap;
  gap: 20px;
}
.dark-title {
  font-family: var(--font-body);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}
.dark-header-desc {
  max-width: 440px;
  color: #E2E8F0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.cards-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card-white {
  background: var(--white);
  border-radius: 20px;
  padding: 36px 28px;
  color: var(--text-primary);
  transition: transform 0.2s ease;
}
.feature-card-white:hover { transform: translateY(-4px); }
.card-top-icon {
  width: 48px; height: 48px;
  background: var(--blue-light-bg);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.card-item-title {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.card-item-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ═══════════════════ SECTION 5: VIBRANT BLUE CTA BANNER ═══════════════════ */
.banner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.banner-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 14px;
}
.banner-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 460px;
}

.input-pill-group {
  display: flex;
  background: rgba(255,255,255,0.2);
  padding: 6px;
  border-radius: 100px;
  max-width: 440px;
  border: 1px solid rgba(255,255,255,0.3);
}
.pill-input {
  flex: 1;
  background: none;
  border: none;
  padding: 0 20px;
  color: var(--white);
  font-size: 0.95rem;
  outline: none;
}
.pill-input::placeholder { color: rgba(255,255,255,0.7); }

.banner-phone-preview {
  display: flex;
  justify-content: center;
}
.banner-mockup-img {
  width: 280px;
  max-height: 520px;
  max-width: 100%;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.25));
}
.banner-screen-frame {
  border-radius: 28px;
  border: 6px solid #0F172A;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
  object-fit: cover;
  object-position: top;
}

/* ═══════════════════ FAQ SECTION ═══════════════════ */
.faq-accordion {
  max-width: 680px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}
.faq-box {
  background: var(--off-white);
  border: 1px solid var(--grey-border);
  border-radius: 14px;
  overflow: hidden;
}
.faq-question {
  padding: 18px 24px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}
.faq-question::-webkit-details-marker { display: none; }
.arrow { font-size: 1.3rem; color: var(--text-muted); transition: transform 0.2s; }
.faq-box[open] .arrow { transform: rotate(90deg); color: var(--blue-primary); }
.faq-answer { padding: 0 24px 18px; color: var(--text-secondary); font-size: 0.94rem; line-height: 1.6; }

/* ═══════════════════ FOOTER ═══════════════════ */
.footer-dark {
  background: #081E26;
  color: var(--white);
  padding: 70px 0 30px;
}
.footer-container {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 30px;
}
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-logo { width: 36px; height: 36px; }
.footer-brand-name { font-family: var(--font-heading); font-weight: 800; font-size: 1.5rem; color: #FFFFFF; letter-spacing: -0.01em; }
.footer-tagline { color: #94A3B8; font-size: 0.9rem; max-width: 320px; line-height: 1.65; margin-bottom: 20px; }

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: #CBD5E1;
}
.contact-item small { color: #64748B; margin-left: 4px; }
.contact-item svg { flex-shrink: 0; }

.footer-heading {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #64748B;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links a { color: #E2E8F0; font-size: 0.92rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--blue-primary); }

.footer-social-wrapper {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 20px;
}
.footer-social-row {
  display: flex;
  gap: 10px;
}
.social-icon-btn {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #94A3B8;
  transition: color 0.2s, border-color 0.2s, background 0.2s, transform 0.2s;
}
.social-icon-btn:hover {
  color: var(--white);
  border-color: var(--blue-primary);
  background: rgba(0,163,225,0.2);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px dashed rgba(255,255,255,0.12);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  color: #64748B;
  font-size: 0.85rem;
}
.bottom-legal-links {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.bottom-legal-links a { color: #94A3B8; transition: color 0.2s; }
.bottom-legal-links a:hover { color: var(--blue-primary); }
.bottom-legal-links .sep { color: rgba(255,255,255,0.15); font-size: 0.75rem; }

/* ═══════════════════ RESPONSIVE BREAKPOINTS ═══════════════════ */

/* Tablet & Large Mobile (< 992px) */
@media (max-width: 992px) {
  .nav-container { padding: 0 20px; }
  .nav-menu { display: none; }
  .mobile-toggle { display: flex; }
  .nav-right .btn-pill-primary { display: none; }
  
  .split-grid, .banner-grid, .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .cards-grid-3 {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .dark-section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .left-aligned { justify-content: center; }
  .split-visual { order: -1; }
  .footer-social-wrapper { justify-content: flex-start; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 16px; }
  
  .tag-top-left     { left: -20px; }
  .tag-top-right    { right: -20px; }
  .tag-mid-left     { left: -20px; }
  .tag-bottom-right { right: -20px; }
}

/* Mobile Phones (< 768px) */
@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .hero-section { padding-top: 116px; padding-bottom: 60px; }
  
  .hero-title {
    font-size: clamp(1.9rem, 7.5vw, 2.7rem);
    line-height: 1.25;
  }
  .hero-sub {
    font-size: 0.96rem;
    padding: 0;
  }
  
  /* Mobile Search Filter Pill */
  .search-filter-pill {
    padding: 14px 18px;
    gap: 12px;
    width: 100%;
    border-radius: 20px;
    flex-direction: column;
    align-items: stretch;
  }
  .filter-divider { display: none; }
  .filter-item { width: 100%; text-align: center; align-items: center; }
  .filter-search-btn {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
  }

  /* Hero Phone & Callout Badges on Mobile */
  .hero-phone-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
    position: static;
  }
  .hero-phone-frame {
    width: 290px;
    margin-bottom: 12px;
  }
  
  /* Mobile Callouts: Sleek 2x2 Grid below phone mockup */
  .floating-tag {
    position: static;
    animation: none;
    width: 100%;
    padding: 10px 14px;
    box-shadow: inset 0 1px 1px #FFFFFF, 0 8px 24px -6px rgba(15, 23, 42, 0.08);
  }
  .floating-tag:hover { transform: none; }
  
  .split-mockup-img {
    width: 310px;
  }
  .split-mockup-img.mockup-detail {
    width: 360px;
    max-width: 100%;
  }
  .split-screen-frame {
    width: 230px;
    max-height: 420px;
  }
  .banner-mockup-img {
    width: 230px;
    max-height: 440px;
  }
  .banner-content {
    text-align: center;
  }
}

/* Small Phone Screens (< 520px) */
@media (max-width: 520px) {
  .hero-title {
    font-size: 1.8rem;
  }
  .hero-phone-frame {
    width: 260px;
  }
  .banner-form-pill {
    flex-direction: column;
    background: none;
    box-shadow: none;
    border: none;
    padding: 0;
    gap: 10px;
  }
  .pill-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 100px;
    padding: 14px 20px;
    font-size: 0.9rem;
  }
  .btn-pill-submit {
    width: 100%;
    padding: 14px 20px;
    justify-content: center;
  }
  .footer-container {
    gap: 30px;
  }
  .bottom-legal-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .bottom-legal-links .sep { display: none; }
}
