/* ============================================================
   MOTIVATEYOU LANDING PAGE — Pure HTML/CSS
   Brand: Inter font, #007BFF blue, #20C997 teal, #343A40 slate
   ============================================================ */

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

:root {
  --blue:        #007BFF;
  --blue-dark:   #0056b3;
  --blue-deep:   #004494;
  --teal:        #20C997;
  --teal-dark:   #17a97f;
  --slate:       #343A40;
  --slate-mid:   #495057;
  --slate-light: #6C757D;
  --white:       #FFFFFF;
  --off-white:   #F8F9FA;
  --light-gray:  #E9ECEF;
  --success:     #28A745;
  --warning:     #FFC107;
  --font:        'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-xl:   32px;
  --shadow-sm:   0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:   0 8px 24px rgba(0,0,0,0.10);
  --shadow-lg:   0 20px 60px rgba(0,0,0,0.14);
  --shadow-blue: 0 8px 32px rgba(0,123,255,0.35);
  --max-w:       1200px;
}

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

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

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

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

/* ============================================================
   UTILITIES
   ============================================================ */

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.center {
  text-align: center;
}

.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}

.section-tag--light {
  color: var(--teal);
}

.section-heading {
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--slate);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-heading--light {
  color: #fff;
}

.section-sub {
  font-size: 18px;
  color: var(--slate-light);
  line-height: 1.7;
  max-width: 560px;
}

.center .section-sub {
  margin: 0 auto;
}

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

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
  line-height: 1;
}

.btn-sm  { font-size: 14px; padding: 10px 22px; }
.btn-lg  { font-size: 16px; padding: 16px 32px; }
.btn-xl  { font-size: 17px; padding: 18px 40px; }

.btn-primary {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
  box-shadow: var(--shadow-blue);
}

.btn-primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0,123,255,0.45);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-dark {
  background: #0d0d1a;
  color: #fff;
  border-color: #0d0d1a;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

.btn-dark:hover {
  background: #1a1a2e;
  border-color: #1a1a2e;
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.5);
}

.btn-dark:active {
  transform: translateY(0);
}

.btn-coming-soon {
  opacity: 0.5;
  cursor: default;
  pointer-events: none;
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.8);
  transform: translateY(-2px);
}

.btn-white {
  background: #fff;
  color: var(--blue);
  border-color: #fff;
}

.btn-white:hover {
  background: var(--off-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.store-btn svg {
  flex-shrink: 0;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */

.animate-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-in:nth-child(2) { transition-delay: 0.1s; }
.animate-in:nth-child(3) { transition-delay: 0.2s; }

/* ============================================================
   HEADER
   ============================================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(7, 20, 60, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 4px 32px rgba(0,0,0,0.3);
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.header-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.header-logo-img {
  height: 44px;
  width: auto;
  mix-blend-mode: screen;
  display: block;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header-nav a {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.header-nav a:hover {
  color: #fff;
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  background: linear-gradient(135deg, #07143c 0%, #0a1e5c 40%, #0d2870 70%, #0a1a55 100%);
  padding: 120px 0 80px;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 30%, rgba(0,123,255,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 20% 70%, rgba(32,201,151,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.8);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 28px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
  animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.hero-headline {
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.headline-accent {
  font-style: normal;
  color: var(--teal);
  display: block;
}

.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 32px;
}

.hero-sub strong {
  color: #fff;
  font-weight: 700;
}

.hero-proof-row {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 36px;
}

.proof-stat strong {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}

.proof-stat span {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.proof-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

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

.hero-cta-note {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 32px;
}

.hero-partners {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.partners-label {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  font-weight: 400;
}

.partner-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--teal);
}

.partners-amp {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}

.partner-cred {
  font-size: 11px;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
}

/* Phone Mockup */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-glow {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(0,123,255,0.2) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.phone-mockup {
  width: 280px;
  border-radius: 40px;
  background: #0a0f1e;
  border: 1.5px solid rgba(0,123,255,0.3);
  box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 60px rgba(0,123,255,0.15);
  overflow: hidden;
  position: relative;
  z-index: 1;
  transform: perspective(800px) rotateY(-5deg) rotateX(2deg);
  transition: transform 0.4s ease;
}

.phone-mockup:hover {
  transform: perspective(800px) rotateY(-1deg) rotateX(0);
}

.phone-notch {
  width: 80px;
  height: 24px;
  background: #000;
  border-radius: 0 0 14px 14px;
  margin: 0 auto;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.phone-screenshot {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 40px;
}

.phone-screen {
  padding: 38px 16px 20px;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.app-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 4px;
}

.app-topbar span {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}

.app-greeting-hi {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

.app-greeting-name {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}

.coach-match-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(0,123,255,0.25);
  border-radius: 14px;
  padding: 14px;
}

.coach-match-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--teal);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.coach-match-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.coach-avi {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0056b3, #20C997);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
  border: 2px solid rgba(255,255,255,0.15);
}

.coach-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.coach-info strong {
  font-size: 12px;
  color: #fff;
  font-weight: 700;
}

.coach-info span {
  font-size: 10px;
  color: rgba(255,255,255,0.5);
}

.coach-stars {
  font-size: 10px;
  color: var(--warning) !important;
}

.book-btn {
  display: block;
  background: var(--blue);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 8px;
  text-align: center;
  cursor: pointer;
  transition: background 0.2s;
}

.app-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.app-stat {
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
  padding: 10px 8px;
  text-align: center;
}

.app-stat strong {
  display: block;
  font-size: 16px;
  font-weight: 800;
  color: var(--teal);
  line-height: 1.2;
}

.app-stat span {
  font-size: 9px;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
}

.chat-preview {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.chat-msg {
  font-size: 11px;
  line-height: 1.5;
  padding: 10px 12px;
  border-radius: 14px;
  max-width: 90%;
}

.coach-msg {
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.85);
  border-radius: 4px 14px 14px 14px;
  align-self: flex-start;
  font-style: italic;
}

.user-msg {
  background: var(--blue);
  color: #fff;
  border-radius: 14px 4px 14px 14px;
  align-self: flex-end;
  font-weight: 600;
}

/* ============================================================
   TRUST BAR
   ============================================================ */

.trust-bar {
  background: var(--off-white);
  border-top: 1px solid var(--light-gray);
  border-bottom: 1px solid var(--light-gray);
  padding: 20px 0;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--slate-mid);
}

.trust-item svg {
  color: var(--blue);
  flex-shrink: 0;
}

.trust-sep {
  width: 1px;
  height: 20px;
  background: var(--light-gray);
  flex-shrink: 0;
}

/* ============================================================
   PAIN SECTION
   ============================================================ */

.pain-section {
  padding: 96px 0;
  background: #fff;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}

.pain-card {
  background: var(--off-white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pain-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--teal));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.pain-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.pain-card:hover::after {
  opacity: 1;
}

.pain-card--accent {
  background: linear-gradient(145deg, #07143c, #0d2870);
  border-color: rgba(0,123,255,0.3);
  color: rgba(255,255,255,0.85);
}

.pain-card.pain-card--accent h3 {
  color: #fff;
}

.pain-card--accent::after {
  background: linear-gradient(90deg, var(--teal), var(--blue));
}

.pain-icon {
  font-size: 40px;
  margin-bottom: 18px;
  display: block;
}

.pain-card h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--slate);
  margin-bottom: 12px;
  line-height: 1.3;
}

.pain-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--slate-light);
}

.pain-card--accent p {
  color: rgba(255,255,255,0.65);
}

.pain-bridge {
  background: linear-gradient(135deg, #07143c 0%, #0a1e5c 100%);
  border-radius: var(--radius-xl);
  padding: 48px 52px;
  text-align: center;
}

.bridge-comparison {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.bridge-comparison span {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  font-style: italic;
  padding: 6px 16px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px;
}

.bridge-statement {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255,255,255,0.9);
  line-height: 1.7;
  max-width: 680px;
  margin: 0 auto;
}

.bridge-statement strong {
  color: var(--teal);
  font-weight: 800;
}

/* ============================================================
   DIFFERENTIATION SECTION
   ============================================================ */

.diff-section {
  padding: 96px 0;
  background: linear-gradient(160deg, #07143c 0%, #0a1e5c 50%, #07143c 100%);
}

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

.diff-content .section-heading--light {
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.1;
  margin-bottom: 20px;
}

.diff-body {
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  margin-bottom: 16px;
  font-style: italic;
}

.diff-statement {
  font-size: 17px;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 32px;
}

.diff-statement strong {
  color: var(--teal);
  font-weight: 800;
}

.diff-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.1);
  overflow: hidden;
}

.diff-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  background: rgba(255,255,255,0.03);
}

.diff-table thead th {
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.5);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 16px;
  text-align: left;
}

.diff-table tbody td {
  padding: 14px 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.65);
}

.diff-table .table-no {
  color: rgba(255,255,255,0.3);
  font-style: italic;
}

.diff-table .table-highlight {
  background: rgba(0,123,255,0.15);
  border-top: 1px solid rgba(0,123,255,0.3);
}

.diff-table .table-highlight td {
  color: #fff;
}

.table-my {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: #fff !important;
}

.table-my img {
  border-radius: 50%;
  flex-shrink: 0;
  display: inline-block;
}

.diff-table .table-yes {
  color: var(--teal) !important;
  font-weight: 700;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */

.how-section {
  padding: 96px 0;
  background: var(--off-white);
}

.steps-grid {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 56px;
}

.step-card {
  flex: 1;
  background: #fff;
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0,123,255,0.3);
}

.step-num {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.step-icon {
  font-size: 40px;
  margin-bottom: 16px;
  display: block;
}

.step-card h3 {
  font-size: 19px;
  font-weight: 800;
  color: var(--slate);
  margin-bottom: 10px;
  line-height: 1.3;
}

.step-card p {
  font-size: 15px;
  color: var(--slate-light);
  line-height: 1.7;
}

.step-arrow {
  font-size: 28px;
  color: var(--blue);
  opacity: 0.4;
  padding: 0 16px;
  flex-shrink: 0;
}

.steps-cta-block {
  text-align: center;
}

.steps-cta-note {
  margin-top: 14px;
  font-size: 14px;
  color: var(--slate-light);
}

/* ============================================================
   WHY US
   ============================================================ */

.why-section {
  padding: 96px 0;
  background: #fff;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: center;
}

.why-content .section-tag {
  display: block;
  margin-bottom: 12px;
}

.why-intro {
  font-size: 17px;
  color: var(--slate-mid);
  line-height: 1.75;
  margin-bottom: 36px;
}

.why-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.why-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.why-check {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(0,123,255,0.1);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 2px;
}

.why-list strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--slate);
  margin-bottom: 4px;
}

.why-list p {
  font-size: 14px;
  color: var(--slate-light);
  line-height: 1.65;
}

/* Feature Cards Stack */
.feat-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.feat-card {
  background: var(--off-white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.feat-card:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-sm);
  border-color: rgba(0,123,255,0.25);
}

.feat-icon {
  font-size: 28px;
  flex-shrink: 0;
  line-height: 1;
}

.feat-card strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--slate);
  margin-bottom: 4px;
}

.feat-card p {
  font-size: 13px;
  color: var(--slate-light);
  line-height: 1.6;
  margin: 0;
}

.feat-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(32,201,151,0.12);
  border: 1px solid rgba(32,201,151,0.3);
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 50px;
  margin-top: 4px;
  align-self: flex-start;
}

.feat-badge::before {
  content: '✓';
  font-weight: 900;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */

.testimonials-section {
  padding: 96px 0;
  background: var(--off-white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 24px;
  margin-bottom: 56px;
}

.testimonial-card {
  background: #fff;
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.testimonial-card--featured {
  background: linear-gradient(145deg, #07143c, #0d2870);
  border-color: rgba(0,123,255,0.3);
}

.testimonial-card--featured blockquote {
  color: rgba(255,255,255,0.9) !important;
}

.testimonial-stars {
  font-size: 18px;
  color: var(--warning);
  letter-spacing: 2px;
}

.testimonial-card--featured .testimonial-stars {
  color: var(--warning);
}

.testimonial-card blockquote {
  font-size: 15px;
  line-height: 1.75;
  color: var(--slate-mid);
  font-style: italic;
  flex: 1;
  quotes: none;
}

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

.t-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.t-avatar--teal {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
}

.testimonial-author strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--slate);
}

.testimonial-card--featured .testimonial-author strong {
  color: #fff;
}

.testimonial-author span {
  font-size: 12px;
  color: var(--slate-light);
}

.testimonial-card--featured .testimonial-author span {
  color: rgba(255,255,255,0.45);
}

/* Stats bar */
.testimonial-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  background: #fff;
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-xl);
  padding: 32px 48px;
}

.tstat strong {
  display: block;
  font-size: 28px;
  font-weight: 900;
  color: var(--blue);
  line-height: 1.2;
}

.tstat span {
  font-size: 13px;
  color: var(--slate-light);
  font-weight: 500;
}

.tstat-sep {
  width: 1px;
  height: 40px;
  background: var(--light-gray);
  flex-shrink: 0;
}

/* ============================================================
   PARTNERS SECTION
   ============================================================ */

.partners-section {
  padding: 96px 0;
  background: linear-gradient(160deg, #07143c 0%, #0a1e5c 60%, #07143c 100%);
}

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

.partners-body {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  margin-top: 16px;
}

.partners-quotes {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.partner-quote-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.partner-quote-card:hover {
  border-color: rgba(32,201,151,0.3);
  background: rgba(255,255,255,0.07);
}

.pq-avi {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
}

.pq-photo {
  width: 160px;
  height: 160px;
  object-fit: cover;
  object-position: top center;
  border-radius: 50%;
  margin-bottom: 16px;
  display: block;
  border: 3px solid rgba(0,123,255,0.4);
}

.partner-quote-card blockquote {
  font-size: 15px;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 14px;
  quotes: none;
}

.partner-bio {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 14px;
}

.partner-quote-card cite {
  font-size: 12px;
  font-weight: 700;
  color: var(--teal);
  font-style: normal;
}

/* ============================================================
   FINAL CTA
   ============================================================ */

.final-cta {
  position: relative;
  background: linear-gradient(135deg, #004494 0%, #007BFF 50%, #0056b3 100%);
  padding: 100px 0;
  overflow: hidden;
}

.final-cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 10% 50%, rgba(255,255,255,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 90% 30%, rgba(32,201,151,0.12) 0%, transparent 60%);
  pointer-events: none;
}

.final-cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.final-logo {
  height: 80px;
  width: auto;
  mix-blend-mode: screen;
  display: block;
  margin-bottom: 4px;
}

.final-cta-heading {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

.final-accent {
  color: #fff;
}

.final-cta-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 8px;
}

.final-cta-sub strong {
  color: #fff;
  font-weight: 800;
}

.final-cta-btns {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 4px;
}

.final-note {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}

.urgency-bar {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0,0,0,0.2);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50px;
  padding: 10px 24px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  margin-top: 8px;
}

.urgency-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
  animation: pulseDot 1.5s ease-in-out infinite;
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background: #07143c;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 48px 0 24px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo {
  height: 44px;
  width: auto;
  mix-blend-mode: screen;
  display: block;
}

.footer-store-btn--soon {
  opacity: 0.45;
  cursor: default;
  pointer-events: none;
}

.footer-name {
  font-size: 16px;
  color: #fff;
  font-weight: 400;
}

.footer-name strong {
  font-weight: 800;
}

.footer-tagline {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  margin-top: 2px;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #fff;
}

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

.footer-store-btn {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  padding: 8px 16px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  transition: all 0.2s;
}

.footer-store-btn:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.05);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 20px;
  text-align: center;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-badge {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-proof-row {
    justify-content: center;
  }

  .hero-cta-group {
    justify-content: center;
  }

  .hero-partners {
    justify-content: center;
  }

  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-visual {
    display: none;
  }

  .diff-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .diff-table-wrap {
    overflow-x: auto;
  }

  .partners-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .header-nav {
    display: none;
  }

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

  .steps-grid {
    flex-direction: column;
  }

  .step-arrow {
    transform: rotate(90deg);
    padding: 8px 0;
  }

  .trust-bar-inner {
    gap: 16px;
  }

  .trust-sep {
    display: none;
  }

  .tstat-sep {
    display: none;
  }

  .testimonial-stats {
    flex-direction: column;
    gap: 24px;
    text-align: center;
    padding: 32px 24px;
  }

  .pain-bridge {
    padding: 32px 24px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .footer-links {
    gap: 16px;
  }

  section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .hero {
    padding-top: 100px;
    padding-bottom: 64px;
  }

  .hero-proof-row {
    flex-wrap: wrap;
    gap: 16px;
  }

  .proof-divider {
    display: none;
  }

  .final-cta-btns {
    flex-direction: column;
    align-items: stretch;
  }

  .final-cta-btns .btn {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-headline {
    font-size: 32px;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-cta-group .btn {
    justify-content: center;
  }

  .btn-xl {
    font-size: 15px;
    padding: 16px 28px;
  }
}
