/* ============================================
   Money Mate Landing Page - Custom Styles
   ============================================ */

/* --- Design Tokens --- */
:root {
  --color-navy: #1e3a5f;
  --color-navy-dark: #0c1726;
  --color-navy-light: #2d5f9a;
  --color-gold: #f97316;
  --color-gold-light: #fb923c;
  --color-gold-dark: #ea580c;
  --color-white: #ffffff;
  --color-gray-50: #f8fafc;
  --color-gray-100: #f1f5f9;
  --color-gray-200: #e2e8f0;
  --color-gray-300: #cbd5e1;
  --color-gray-400: #94a3b8;
  --color-gray-500: #64748b;
  --color-gray-600: #475569;
  --color-gray-700: #334155;
  --color-gray-800: #1e293b;
  --color-gray-900: #0f172a;

  --font-sans: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  --font-display: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  --font-mono: "JetBrains Mono", "Fira Code", monospace;

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md:
    0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg:
    0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --shadow-xl:
    0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  --shadow-gold: 0 0 40px rgba(249, 115, 22, 0.2);

  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;

  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 350ms ease;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  color: var(--color-gray-800);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

/* --- Typography --- */
.font-display {
  font-family: var(--font-display);
  letter-spacing: -0.025em;
}

.font-mono {
  font-family: var(--font-mono);
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition:
    background-color var(--transition-base),
    box-shadow var(--transition-base),
    backdrop-filter var(--transition-base);
}

.nav.scrolled {
  background-color: rgba(30, 58, 95, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.nav-link {
  position: relative;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transition: width var(--transition-base);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* --- Mobile Menu --- */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(12, 23, 38, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity var(--transition-base),
    visibility var(--transition-base);
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu a {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--color-white);
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity var(--transition-slow),
    transform var(--transition-slow),
    color var(--transition-fast);
}

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

.mobile-menu.open a:nth-child(1) {
  transition-delay: 100ms;
}
.mobile-menu.open a:nth-child(2) {
  transition-delay: 150ms;
}
.mobile-menu.open a:nth-child(3) {
  transition-delay: 200ms;
}
.mobile-menu.open a:nth-child(4) {
  transition-delay: 250ms;
}
.mobile-menu.open a:nth-child(5) {
  transition-delay: 300ms;
}

.mobile-menu a:hover {
  color: var(--color-gold);
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  transition:
    transform var(--transition-base),
    opacity var(--transition-base);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* --- Hero --- */
.hero-gradient {
  background: linear-gradient(135deg, #0c1726 0%, #1e3a5f 50%, #2d5f9a 100%);
  position: relative;
  overflow: hidden;
}

.hero-gradient::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(249, 115, 22, 0.12) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

.hero-gradient::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(
    to top,
    var(--color-gray-50) 0%,
    transparent 100%
  );
  pointer-events: none;
}

/* --- Phone Mockup --- */
/* iPhone-style thin bezel with realistic frame */
.phone-mockup {
  width: 280px;
  height: 606px;
  background: #2a2a2c;
  border-radius: 44px;
  position: relative;
  box-shadow:
    inset 0 0 0 2px #3a3a3c,
    0 0 0 1px rgba(0, 0, 0, 0.3),
    0 30px 60px rgba(0, 0, 0, 0.45),
    0 0 0 4px #1c1c1e;
  overflow: hidden;
}

/* Side button - power */
.phone-mockup::before {
  content: "";
  position: absolute;
  right: -3px;
  top: 140px;
  width: 3px;
  height: 48px;
  background: linear-gradient(180deg, #3a3a3c, #2a2a2c, #3a3a3c);
  border-radius: 0 2px 2px 0;
  z-index: 5;
}

/* Side button - volume */
.phone-mockup::after {
  content: "";
  position: absolute;
  left: -3px;
  top: 120px;
  width: 3px;
  height: 32px;
  background: linear-gradient(180deg, #3a3a3c, #2a2a2c, #3a3a3c);
  border-radius: 2px 0 0 2px;
  z-index: 5;
  box-shadow: 0 42px 0 0 #2a2a2c;
}

.phone-mockup-screen {
  position: absolute;
  inset: 4px;
  border-radius: 40px;
  overflow: hidden;
  background: #f5f5f5;
  padding: 3px;
}

/* Real screenshot fills the phone screen */
.phone-mockup-screen > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: 37px;
  display: block;
}

.phone-mockup-screen .mock-logo {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  object-fit: contain;
}

.phone-mockup-screen .mock-text {
  width: 60%;
  height: 8px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
}

.phone-mockup-screen .mock-text.short {
  width: 40%;
}

.phone-mockup-screen .mock-card {
  width: 90%;
  height: 60px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

/* --- Buttons --- */
.btn-gold {
  background: linear-gradient(
    135deg,
    var(--color-gold) 0%,
    var(--color-gold-dark) 100%
  );
  color: var(--color-navy-dark);
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-lg);
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: none;
  cursor: pointer;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 168, 67, 0.35);
}

.btn-outline {
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: var(--color-white);
  font-weight: 500;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-lg);
  transition:
    border-color var(--transition-fast),
    background var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  background: transparent;
}

.btn-outline:hover {
  border-color: var(--color-white);
  background: rgba(255, 255, 255, 0.1);
}

/* --- Store Badge --- */
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: #000;
  color: var(--color-white);
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition:
    transform var(--transition-fast),
    border-color var(--transition-fast);
  cursor: pointer;
}

.store-badge:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.5);
}

.store-badge .badge-text-sm {
  font-size: 0.65rem;
  opacity: 0.8;
  line-height: 1;
}

.store-badge .badge-text-lg {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
}

/* --- Feature Cards --- */
.feature-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 2rem;
  border: 1px solid var(--color-gray-200);
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base),
    border-color var(--transition-base);
  cursor: pointer;
}

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

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

/* --- Special Feature Card (Cashback) --- */
.feature-card-special {
  background: linear-gradient(
    135deg,
    var(--color-navy) 0%,
    var(--color-navy-light) 100%
  );
  color: var(--color-white);
  border: none;
  position: relative;
  overflow: hidden;
}

.feature-card-special::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -30%;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(212, 168, 67, 0.15) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

/* --- Steps / How It Works --- */
.step-connector {
  position: absolute;
  top: 28px;
  left: calc(16.67% + 28px);
  width: calc(66.67% - 56px);
  height: 2px;
  border-top: 2px dashed var(--color-gray-300);
}

/* --- Inline CTA --- */
.btn-gold-lg {
  background: linear-gradient(
    135deg,
    var(--color-gold) 0%,
    var(--color-gold-dark) 100%
  );
  color: var(--color-navy-dark);
  font-weight: 700;
  padding: 1rem 2.5rem;
  border-radius: var(--radius-xl);
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: none;
  cursor: pointer;
  font-size: 1.125rem;
}

.btn-gold-lg:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(249, 115, 22, 0.35);
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 1.25rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* --- Screenshots Section --- */
.screenshots-section {
  background: linear-gradient(180deg, #0c1726 0%, #1e3a5f 50%, #0c1726 100%);
  position: relative;
  overflow: hidden;
}

.screenshots-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(212, 168, 67, 0.06) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

/* iPhone-style thin bezel for screenshot section */
.screenshot-phone {
  width: 220px;
  height: 476px;
  background: #2a2a2c;
  border-radius: 36px;
  position: relative;
  box-shadow:
    inset 0 0 0 2px #3a3a3c,
    0 0 0 1px rgba(0, 0, 0, 0.3),
    0 20px 40px rgba(0, 0, 0, 0.35),
    0 0 0 3px #1c1c1e;
  overflow: hidden;
  flex-shrink: 0;
}

.screenshot-phone::before {
  content: "";
  position: absolute;
  right: -2px;
  top: 110px;
  width: 2px;
  height: 38px;
  background: linear-gradient(180deg, #3a3a3c, #2a2a2c, #3a3a3c);
  border-radius: 0 2px 2px 0;
  z-index: 5;
}

.screenshot-phone-screen {
  position: absolute;
  inset: 3px;
  border-radius: 33px;
  overflow: hidden;
  background: #f5f5f5;
  padding: 3px;
}

/* Real screenshot fills screenshot phone */
.screenshot-phone-screen > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: 30px;
  display: block;
}

.screenshot-center {
  transform: scale(1.08);
  z-index: 2;
}

.screenshot-left {
  transform: perspective(1000px) rotateY(8deg) scale(0.92);
  opacity: 0.85;
}

.screenshot-right {
  transform: perspective(1000px) rotateY(-8deg) scale(0.92);
  opacity: 0.85;
}

/* --- Testimonials --- */
.testimonial-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 2rem;
  border: 1px solid var(--color-gray-200);
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base),
    border-color var(--transition-base);
}

.testimonial-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-gray-300);
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.125rem;
  flex-shrink: 0;
}

/* --- Stat Counter --- */
.stat-badge {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 1.5rem 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-gray-200);
  text-align: center;
  min-width: 170px;
}

.stat-number {
  font-family: var(--font-sans);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-navy);
  line-height: 1;
  letter-spacing: -0.03em;
}

/* --- CTA Section --- */
.cta-section {
  background: linear-gradient(135deg, #0c1726 0%, #1e3a5f 50%, #0c1726 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(212, 168, 67, 0.12) 0%,
    transparent 60%
  );
  border-radius: 50%;
  pointer-events: none;
}

/* --- QR Code Placeholder --- */
.qr-placeholder {
  width: 120px;
  height: 120px;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
}

.qr-inner {
  width: 100%;
  height: 100%;
  background: repeating-conic-gradient(
      var(--color-navy) 0% 25%,
      var(--color-white) 0% 50%
    )
    50% / 12px 12px;
  border-radius: var(--radius-sm);
}

/* --- Footer --- */
.footer {
  background: var(--color-navy-dark);
  color: var(--color-gray-400);
}

.footer a {
  transition: color var(--transition-fast);
}

.footer a:hover {
  color: var(--color-gold);
}

/* --- Feature Showcase --- */
.showcase-phone {
  width: 240px;
  height: 519px; /* 240 × 2.163 */
  background: #2a2a2c;
  border-radius: 40px;
  position: relative;
  box-shadow:
    inset 0 0 0 2px #3a3a3c,
    0 0 0 1px rgba(0, 0, 0, 0.3),
    0 25px 50px rgba(0, 0, 0, 0.25),
    0 0 0 3px #1c1c1e;
  overflow: hidden;
  flex-shrink: 0;
}

.showcase-phone::before {
  content: "";
  position: absolute;
  right: -2px;
  top: 120px;
  width: 2px;
  height: 42px;
  background: linear-gradient(180deg, #3a3a3c, #2a2a2c, #3a3a3c);
  border-radius: 0 2px 2px 0;
  z-index: 5;
}

.showcase-phone-screen {
  position: absolute;
  inset: 4px;
  border-radius: 36px;
  overflow: hidden;
  background: #f5f5f5;
  padding: 3px;
}

.showcase-phone-screen > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: 33px;
  display: block;
}

/* --- Comparison Table --- */
.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

.comparison-table th,
.comparison-table td {
  padding: 0.875rem 1rem;
  text-align: center;
  border-bottom: 1px solid var(--color-gray-200);
}

.comparison-table thead th {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--color-gray-700);
  background: var(--color-gray-50);
  border-bottom: 2px solid var(--color-gray-300);
}

.comparison-table thead th:first-child {
  text-align: left;
  border-top-left-radius: var(--radius-lg);
}

.comparison-table thead th:last-child {
  border-top-right-radius: var(--radius-lg);
}

/* Highlight Moni column */
.comparison-table th.moni-col,
.comparison-table td.moni-col {
  background: rgba(249, 115, 22, 0.06);
  font-weight: 600;
}

.comparison-table thead th.moni-col {
  color: var(--color-gold-dark);
  background: rgba(249, 115, 22, 0.1);
}

.comparison-table tbody td:first-child {
  text-align: left;
  font-weight: 500;
  color: var(--color-gray-700);
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.comparison-table tbody tr:hover {
  background: var(--color-gray-50);
}

/* --- FAQ Accordion --- */
.faq-item {
  transition: border-color var(--transition-base);
}

.faq-item.active {
  border-color: var(--color-gold);
}

.faq-question {
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-gray-800);
  font-family: var(--font-sans);
  line-height: 1.5;
}

.faq-question:hover {
  color: var(--color-navy);
}

.faq-icon {
  transition: transform var(--transition-base);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding-top: 0;
  padding-bottom: 0;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding-bottom: 1rem;
}

/* --- Email Signup --- */
.email-signup-section {
  background: linear-gradient(135deg, #0c1726 0%, #1e3a5f 50%, #0c1726 100%);
  position: relative;
  overflow: hidden;
}

.email-signup-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(249, 115, 22, 0.1) 0%,
    transparent 60%
  );
  border-radius: 50%;
  pointer-events: none;
}

/* --- Privacy Policy Page --- */
.policy-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--color-gray-100);
}

.policy-content h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-gray-800);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.policy-content p {
  margin-bottom: 1rem;
  color: var(--color-gray-600);
  line-height: 1.8;
}

.policy-content ul {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.policy-content ul li {
  margin-bottom: 0.5rem;
  color: var(--color-gray-600);
  line-height: 1.7;
}

.policy-toc {
  position: sticky;
  top: 100px;
}

.policy-toc a {
  display: block;
  padding: 0.375rem 0.75rem;
  color: var(--color-gray-500);
  font-size: 0.875rem;
  border-left: 2px solid var(--color-gray-200);
  transition:
    color var(--transition-fast),
    border-color var(--transition-fast);
}

.policy-toc a:hover,
.policy-toc a.active {
  color: var(--color-navy);
  border-color: var(--color-gold);
}

/* --- Animations --- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-delay-1 {
  transition-delay: 100ms;
}
.fade-up-delay-2 {
  transition-delay: 200ms;
}
.fade-up-delay-3 {
  transition-delay: 300ms;
}
.fade-up-delay-4 {
  transition-delay: 400ms;
}
.fade-up-delay-5 {
  transition-delay: 500ms;
}
.fade-up-delay-6 {
  transition-delay: 600ms;
}

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

.animate-float {
  animation: float 4s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(212, 168, 67, 0.2);
  }
  50% {
    box-shadow: 0 0 40px rgba(212, 168, 67, 0.4);
  }
}

.animate-pulse-glow {
  animation: pulse-glow 3s ease-in-out infinite;
}

/* --- Mobile Sticky CTA Bar --- */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: rgba(12, 23, 38, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 0.75rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  transform: translateY(100%);
  opacity: 0;
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.3s ease;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.sticky-cta.visible {
  transform: translateY(0);
  opacity: 1;
}

/* Hide sticky CTA on desktop — only show on mobile/tablet */
@media (min-width: 769px) {
  .sticky-cta {
    display: none;
  }
}

/* --- Enhanced Feature Card Hover --- */
.feature-card {
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

/* --- Showcase Phone Scroll Reveal --- */
.showcase-phone {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up .showcase-phone {
  transform: scale(0.95);
}

.fade-up.visible .showcase-phone {
  transform: scale(1);
}

/* --- Button Press Effect --- */
.btn-gold:active,
.store-badge:active {
  transform: translateY(0) scale(0.97);
}

/* --- Section Divider Gradient --- */
.section-fade-in {
  position: relative;
}

.section-fade-in::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  border-radius: 2px;
}

/* --- Testimonial Card Quote Mark --- */
.testimonial-card {
  position: relative;
}

.testimonial-card::after {
  content: "\201C";
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 4rem;
  line-height: 1;
  font-family: Georgia, serif;
  color: var(--color-gray-100);
  pointer-events: none;
}

/* --- Stat Number Enhancement --- */
.stat-number {
  background: linear-gradient(135deg, var(--color-navy), var(--color-navy-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- FAQ Item Active Glow --- */
.faq-item.active {
  box-shadow: 0 0 0 1px var(--color-gold), 0 4px 12px rgba(249, 115, 22, 0.1);
}

/* --- Problem Card Hover --- */
.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* --- Smooth Scroll Padding for Sticky CTA --- */
@media (max-width: 768px) {
  .cta-section {
    padding-bottom: 6rem;
  }

  footer.footer {
    padding-bottom: 5rem;
  }
}

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .fade-up {
    opacity: 1;
    transform: none;
  }
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .showcase-phone {
    width: 200px;
    height: 433px;
  }
}

@media (max-width: 768px) {
  .showcase-phone {
    width: 220px;
    height: 476px;
    margin: 0 auto;
  }

  .phone-mockup {
    width: 220px;
    height: 476px; /* 220 × 2.163 */
    border-radius: 36px;
  }

  .phone-mockup-screen {
    inset: 3px;
    border-radius: 33px;
    padding: 3px;
  }

  .screenshot-phone {
    width: 180px;
    height: 389px; /* 180 × 2.163 */
  }

  .screenshot-left,
  .screenshot-right {
    display: none;
  }

  .screenshot-center {
    transform: scale(1);
  }

  .stat-number {
    font-size: 2rem;
  }

  .step-connector {
    display: none;
  }
}

@media (max-width: 480px) {
  .phone-mockup {
    width: 200px;
    height: 433px; /* 200 × 2.163 */
  }

  .store-badge {
    padding: 0.5rem 1rem;
  }

  .store-badge .badge-text-lg {
    font-size: 0.875rem;
  }
}
