/* ===== FitCove Website Styles ===== */

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

:root {
  --navy: #0a0f1c;
  --navy-light: #111827;
  --navy-card: #1a2236;
  --accent: #3B82F6;
  --accent-dark: #2563EB;
  --accent-glow: rgba(59, 130, 246, 0.15);
  --white: #ffffff;
  --gray-100: #f3f4f6;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-700: #374151;
  --radius: 12px;
  --radius-sm: 8px;
  --max-width: 1120px;
  --transition: 0.2s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--navy);
  color: var(--gray-100);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--accent-dark);
}

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

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

.section {
  padding: 80px 0;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
}

.section-subtitle {
  text-align: center;
  color: var(--gray-400);
  max-width: 600px;
  margin: 0 auto 48px;
  font-size: 1.1rem;
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 15, 28, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

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

.nav-logo {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}

.nav-logo span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: var(--gray-300);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color var(--transition);
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a.active {
  color: var(--accent);
}

/* Free Trial Banner */
.trial-banner {
  background: var(--accent);
  padding: 48px 0;
}

.trial-banner-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.trial-banner-heading {
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.trial-banner-btn {
  display: inline-block;
  background: #fff;
  color: var(--accent);
  font-size: 1rem;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 30px;
  text-decoration: none;
  transition: opacity 0.2s;
}

.trial-banner-btn:hover {
  opacity: 0.9;
}

/* Hamburger */
.nav-trial-btn {
  background: var(--accent);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 20px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
}

.nav-trial-btn:hover {
  background: var(--accent-dark);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray-300);
  margin: 6px 0;
  transition: all var(--transition);
  border-radius: 2px;
}

.nav-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* --- Hero --- */
.hero {
  padding: 140px 0 80px;
  text-align: center;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.hero h1 span {
  color: var(--accent);
}

.hero p {
  font-size: 1.2rem;
  color: var(--gray-400);
  max-width: 560px;
  margin: 0 auto 36px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: var(--navy);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 14px 32px;
  border-radius: 50px;
  transition: background var(--transition), transform var(--transition);
}

.hero-cta:hover {
  background: var(--accent-dark);
  color: var(--navy);
  transform: translateY(-1px);
}

.hero-badges {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--navy-card);
  color: var(--gray-300);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-badge svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
}

/* --- Phone Frame Screenshots --- */
.screenshot-section {
  padding: 0 0 60px;
}

.screenshot-grid {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.phone-frame {
  width: 240px;
  position: relative;
}

.phone-bezel {
  background: #1a1a2e;
  border-radius: 36px;
  padding: 12px;
  box-shadow:
    0 0 0 2px rgba(255, 255, 255, 0.08),
    0 20px 60px rgba(0, 0, 0, 0.4);
}

.phone-notch {
  width: 80px;
  height: 6px;
  background: #0a0f1c;
  border-radius: 3px;
  margin: 0 auto 8px;
}

.phone-screen {
  width: 100%;
  height: 440px;
  background: var(--navy-card);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
  font-size: 0.85rem;
  text-align: center;
  padding: 24px;
  overflow: hidden;
}

.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
}

.phone-label {
  text-align: center;
  color: var(--gray-400);
  font-size: 0.8rem;
  font-weight: 500;
  margin-top: 12px;
}

/* --- Features --- */
.features {
  background: var(--navy-light);
}

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

.feature-card {
  background: var(--navy-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 32px;
  transition: border-color var(--transition), transform var(--transition);
}

.feature-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-glow);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--white);
}

.feature-card p {
  color: var(--gray-400);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* --- How It Works --- */
.how-it-works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  counter-reset: step;
}

.step-card {
  text-align: center;
  counter-increment: step;
}

.step-number {
  width: 48px;
  height: 48px;
  background: var(--accent);
  color: var(--navy);
  font-weight: 800;
  font-size: 1.2rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.step-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--white);
}

.step-card p {
  color: var(--gray-400);
  font-size: 0.95rem;
}

/* --- Step Phone Mockups --- */
.step-phone {
  width: 240px;
  margin: 0 auto 24px;
}

.step-phone-bezel {
  background: #1a1a2e;
  border-radius: 32px;
  padding: 10px;
  box-shadow:
    0 0 0 2px rgba(255, 255, 255, 0.08),
    0 16px 48px rgba(0, 0, 0, 0.4);
}

.step-phone-notch {
  width: 64px;
  height: 6px;
  background: #0a0f1c;
  border-radius: 3px;
  margin: 0 auto 8px;
}

.step-phone-screen {
  width: 100%;
  height: 380px;
  background: var(--navy-card);
  border-radius: 22px;
  padding: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.step-phone-ui-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.step-phone-ui-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.step-phone-ui-row {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.04);
  border-radius: 10px;
  padding: 8px 10px;
}

.step-phone-ui-row.selected {
  background: var(--accent-glow);
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.step-phone-ui-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid var(--gray-500);
  flex-shrink: 0;
}

.step-phone-ui-dot.checked {
  background: var(--accent);
  border-color: var(--accent);
}

.step-phone-ui-text {
  font-size: 0.78rem;
  color: var(--gray-300);
  line-height: 1.2;
}

.step-phone-ui-text.accent {
  color: var(--accent);
  font-weight: 600;
}

.step-phone-ui-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.step-phone-ui-day {
  height: 28px;
  border-radius: 6px;
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  color: var(--gray-500);
}

.step-phone-ui-day.active {
  background: var(--accent);
  color: var(--navy);
  font-weight: 700;
}

.step-phone-ui-workout-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.step-phone-ui-workout-name {
  font-size: 0.78rem;
  color: var(--gray-300);
  font-weight: 500;
}

.step-phone-ui-workout-meta {
  font-size: 0.65rem;
  color: var(--gray-500);
  margin-top: 2px;
}

.step-phone-ui-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid var(--accent);
  flex-shrink: 0;
}

.step-phone-ui-check.done {
  background: var(--accent);
}

.step-phone-ui-btn {
  background: var(--accent);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 700;
  text-align: center;
  padding: 8px;
  border-radius: 10px;
  margin-top: auto;
}

/* --- Select Cards (onboarding mockup) --- */
.select-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: rgba(255,255,255,0.03);
  border: 1.5px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  margin-bottom: 6px;
}

.select-card.selected {
  background: rgba(59,130,246,0.08);
  border-color: var(--accent);
}

.select-card-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.select-card-text {
  flex: 1;
  min-width: 0;
}

.select-card-title {
  font-size: 0.8rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
}

.select-card-sub {
  font-size: 0.65rem;
  color: var(--gray-400);
  line-height: 1.2;
}

.select-card-check {
  flex-shrink: 0;
}

/* --- Run Stat Cards (run results mockup) --- */
.run-stat-card {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 8px 10px;
  text-align: center;
}

.run-stat-card.large {
  padding: 12px 10px;
}

.run-stat-label {
  font-size: 0.55rem;
  font-weight: 600;
  color: var(--gray-400);
  letter-spacing: 0.05em;
  margin-bottom: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.run-stat-value {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}

.run-stat-card.large .run-stat-value {
  font-size: 1.6rem;
}

.run-stat-unit {
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--gray-400);
}

/* --- Active Exercise Mockup --- */
.exercise-header {
  background: linear-gradient(180deg, rgba(59,130,246,0.12) 0%, var(--navy-card) 100%);
  border-radius: 22px 22px 0 0;
}

.set-header-row {
  display: grid;
  grid-template-columns: 32px 1fr 1fr 24px;
  gap: 4px;
  font-size: 0.55rem;
  font-weight: 600;
  color: var(--gray-500);
  letter-spacing: 0.05em;
  padding-bottom: 2px;
}

.set-row {
  display: grid;
  grid-template-columns: 32px 1fr 1fr 24px;
  gap: 4px;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.set-row.active {
  background: rgba(59,130,246,0.06);
  border-radius: 8px;
  padding: 8px 6px;
  margin: 0 -6px;
  border-bottom: none;
}

.set-num {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-400);
  text-align: center;
}

.set-val {
  font-size: 0.8rem;
  font-weight: 600;
  color: #fff;
}

.set-val.dim {
  color: var(--gray-500);
}

.set-input {
  font-size: 0.8rem;
  font-weight: 600;
  color: #fff;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid var(--accent);
  border-radius: 6px;
  padding: 4px 8px;
  text-align: center;
}

.set-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.15);
}

.set-check.done {
  background: var(--accent);
  border-color: var(--accent);
  position: relative;
}

.set-check.done::after {
  content: '';
  position: absolute;
  top: 4px;
  left: 6px;
  width: 5px;
  height: 8px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.set-row.done .set-val {
  color: var(--gray-400);
}

.exercise-nav-btn {
  flex: 1;
  text-align: center;
  padding: 8px;
  border-radius: 10px;
  font-size: 0.75rem;
  font-weight: 600;
}

.exercise-nav-btn.primary {
  background: var(--accent);
  color: var(--navy);
}

.exercise-nav-btn.secondary {
  background: rgba(255,255,255,0.06);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.12);
}

/* --- FAQ / Support --- */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-category {
  margin-bottom: 40px;
}

.faq-category h3 {
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.85rem;
}

.faq-category h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 16px;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--white);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  padding: 18px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color var(--transition);
}

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

.faq-question .chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  stroke: var(--gray-400);
  fill: none;
  stroke-width: 2;
  transition: transform var(--transition);
}

.faq-item.open .faq-question .chevron {
  transform: rotate(180deg);
}

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

.faq-answer-inner {
  padding: 0 0 18px;
  color: var(--gray-400);
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  max-height: 500px;
}

/* --- Contact Banner --- */
.contact-banner {
  background: var(--navy-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  max-width: 720px;
  margin: 40px auto 0;
}

.contact-banner h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--white);
}

.contact-banner p {
  color: var(--gray-400);
  margin-bottom: 20px;
}

.contact-banner a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--navy);
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 50px;
  transition: background var(--transition);
}

.contact-banner a:hover {
  background: var(--accent-dark);
  color: var(--navy);
}

/* --- Legal Pages --- */
.legal {
  padding: 120px 0 80px;
}

.legal-content {
  max-width: 720px;
  margin: 0 auto;
}

.legal-content h1 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.legal-content .last-updated {
  color: var(--gray-500);
  font-size: 0.9rem;
  margin-bottom: 40px;
}

.legal-content h2 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-top: 36px;
  margin-bottom: 12px;
  color: var(--white);
}

.legal-content p,
.legal-content li {
  color: var(--gray-400);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 12px;
}

.legal-content ul {
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-content li {
  margin-bottom: 6px;
}

table.privacy-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0 28px;
  font-size: 0.9rem;
  border: 2px solid #6b7280 !important;
}

table.privacy-table th,
table.privacy-table td {
  text-align: left;
  padding: 12px 16px;
  border: 1px solid #6b7280 !important;
}

table.privacy-table thead tr {
  background: rgba(59, 130, 246, 0.15);
}

table.privacy-table th {
  color: #fff;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

table.privacy-table tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.03);
}

table.privacy-table td {
  color: #9ca3af;
  line-height: 1.5;
}

table.privacy-table td:first-child {
  color: #d1d5db;
  font-weight: 500;
  white-space: nowrap;
}

.review-tag {
  display: inline-block;
  background: rgba(234, 179, 8, 0.15);
  color: #eab308;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 8px;
  vertical-align: middle;
}

/* --- Footer --- */
.footer {
  background: var(--navy-light);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 48px 0;
}

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

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

.footer-app-label {
  font-size: 0.85rem;
  color: var(--gray-400);
  margin: 0;
}

.footer-appstore-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 20px;
  text-decoration: none;
  transition: background 0.2s;
  width: fit-content;
}

.footer-appstore-btn:hover {
  background: var(--accent-dark);
}

.footer-bottom-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

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

.footer-social-icon {
  color: var(--gray-400);
  transition: color 0.2s;
  display: flex;
}

.footer-social-icon:hover {
  color: var(--white);
}

.footer-logo {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
}

.footer-logo span {
  color: var(--accent);
}

.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer-links a {
  color: var(--gray-400);
  font-size: 0.9rem;
  transition: color var(--transition);
}

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

.footer-copy {
  width: 100%;
  text-align: center;
  color: var(--gray-500);
  font-size: 0.85rem;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* --- Social Proof --- */
.social-proof {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  padding: 32px 0 48px;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gray-400);
  font-size: 0.9rem;
}

.proof-item svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.proof-item .stars {
  display: flex;
  gap: 2px;
}

.proof-item .stars svg {
  width: 14px;
  height: 14px;
  fill: #facc15;
}

.proof-divider {
  width: 1px;
  height: 24px;
  background: rgba(255, 255, 255, 0.1);
}

/* --- Homepage FAQ Preview --- */
.home-faq {
  background: var(--navy-light);
}

.home-faq .faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.home-faq .faq-more {
  text-align: center;
  margin-top: 32px;
}

.home-faq .faq-more a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color var(--transition);
}

.home-faq .faq-more a:hover {
  color: var(--accent-dark);
}

.home-faq .faq-more svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  transition: transform var(--transition);
}

.home-faq .faq-more a:hover svg {
  transform: translateX(3px);
}

/* --- Hero Secondary CTA --- */
.hero-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gray-300);
  font-weight: 600;
  font-size: 1.05rem;
  padding: 14px 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50px;
  transition: all var(--transition);
}

.hero-secondary:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.25);
}

/* --- Sticky CTA --- */
.sticky-cta {
  position: fixed;
  bottom: -80px;
  left: 0;
  right: 0;
  z-index: 90;
  background: rgba(10, 15, 28, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 12px 24px;
  transition: bottom 0.3s ease;
}

.sticky-cta.visible {
  bottom: 0;
}

.sticky-cta-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.sticky-cta-text {
  color: var(--gray-300);
  font-size: 0.95rem;
  font-weight: 500;
}

.sticky-cta-text strong {
  color: var(--white);
}

.sticky-cta a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 10px 24px;
  border-radius: 50px;
  white-space: nowrap;
  transition: background var(--transition);
}

.sticky-cta a:hover {
  background: var(--accent-dark);
  color: var(--navy);
}

/* --- Pricing --- */
.pricing {
  padding: 140px 0 80px;
}

.pricing-header {
  text-align: center;
  margin-bottom: 48px;
}

.pricing-header h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.pricing-header p {
  color: var(--gray-400);
  font-size: 1.1rem;
  max-width: 520px;
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--navy-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 36px;
  position: relative;
}

.pricing-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 40px rgba(59, 130, 246, 0.1);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.pricing-card .price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  margin: 16px 0 4px;
}

.pricing-card .price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray-400);
}

.pricing-card .price-note {
  color: var(--gray-500);
  font-size: 0.85rem;
  margin-bottom: 24px;
}

.pricing-features {
  list-style: none;
  margin-bottom: 28px;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--gray-300);
  font-size: 0.95rem;
  padding: 8px 0;
}

.pricing-features li svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 2;
}

.pricing-cta {
  display: block;
  text-align: center;
  background: var(--accent);
  color: var(--navy);
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 50px;
  transition: background var(--transition), transform var(--transition);
}

.pricing-cta:hover {
  background: var(--accent-dark);
  color: var(--navy);
  transform: translateY(-1px);
}

.pricing-cta.secondary {
  background: transparent;
  color: var(--gray-300);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.pricing-cta.secondary:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.25);
  background: transparent;
}

.pricing-faq {
  max-width: 720px;
  margin: 64px auto 0;
}

.pricing-faq h2 {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 32px;
}

/* --- Plans/Programs Section --- */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.plan-card {
  background: var(--navy-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  transition: border-color var(--transition), transform var(--transition);
}

.plan-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.plan-card-icon {
  width: 56px;
  height: 56px;
  background: var(--accent-glow);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.plan-card-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.plan-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.plan-card p {
  color: var(--gray-400);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 16px;
}

.plan-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
}

.plan-tag {
  background: rgba(255, 255, 255, 0.05);
  color: var(--gray-400);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 50px;
}

/* --- Testimonials --- */
.testimonials {
  background: var(--navy);
}

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

.testimonial-card {
  background: var(--navy-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 28px;
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
}

.testimonial-stars svg {
  width: 16px;
  height: 16px;
  fill: #facc15;
}

.testimonial-card blockquote {
  color: var(--gray-300);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 16px;
  font-style: normal;
}

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

.testimonial-avatar {
  width: 36px;
  height: 36px;
  background: var(--accent-glow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.85rem;
}

.testimonial-name {
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
}

.testimonial-detail {
  color: var(--gray-500);
  font-size: 0.8rem;
}

/* --- About Page --- */
.about-hero {
  padding: 140px 0 60px;
  text-align: center;
}

.about-hero h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.about-hero p {
  color: var(--gray-400);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto;
}

.about-section {
  padding: 60px 0;
}

.about-section h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--white);
}

.about-section p {
  color: var(--gray-400);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 16px;
  max-width: 720px;
}

.about-section.centered {
  text-align: center;
}

.about-section.centered p {
  margin-left: auto;
  margin-right: auto;
}

.about-principles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.about-principle {
  background: var(--navy-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 28px;
}

.about-principle h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.about-principle p {
  color: var(--gray-400);
  font-size: 0.93rem;
  margin-bottom: 0;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--navy);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
  }

  .nav-links.open {
    display: flex;
  }

  .hero {
    padding: 120px 0 60px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1.05rem;
  }

  .hero-badges {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

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

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .about-principles {
    grid-template-columns: 1fr;
  }

  .how-it-works-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding-bottom: 12px;
  }

  .step-card {
    flex: 0 0 85%;
    scroll-snap-align: center;
  }

  .screenshot-grid {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    flex-wrap: nowrap;
    padding-bottom: 12px;
  }

  .phone-frame {
    width: 200px;
    flex-shrink: 0;
    scroll-snap-align: center;
  }

  .phone-screen {
    height: 380px;
  }

  .phone-bezel {
    border-radius: 28px;
    padding: 10px;
  }

  .social-proof {
    gap: 16px;
  }

  .proof-divider {
    display: none;
  }

  .sticky-cta-text {
    display: none;
  }

  .sticky-cta-inner {
    justify-content: center;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  .section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .contact-banner {
    padding: 28px 20px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .screenshot-grid {
    gap: 12px;
  }

  .phone-frame {
    width: 140px;
  }

  .phone-screen {
    height: 260px;
  }

  .phone-bezel {
    border-radius: 22px;
    padding: 8px;
  }

  .phone-notch {
    width: 60px;
    height: 4px;
    margin-bottom: 6px;
  }
}
