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

:root {
  --bg: #faf8f5;
  --surface: #ffffff;
  --primary: #5b7b6a;
  --primary-d: #4a6557;
  --secondary: #8b6b5b;
  --accent: #d4a574;
  --accent-l: #edd5b3;
  --text: #2d3436;
  --text-m: #636e72;
  --text-l: #9ba3a0;
  --border: rgba(91, 123, 106, 0.13);
  --shadow: 0 4px 24px rgba(91, 123, 106, 0.1);
  --shadow-lg: 0 16px 64px rgba(45, 52, 54, 0.12);
  --r: 16px;
  --r-sm: 10px;
  --r-lg: 24px;
  --r-xl: 36px;

  /* mood palette — app_colors.dart MoodAssets ile senkron */
  --m1: #556a82;
  --m2: #b58f8c;
  --m3: #b5a888;
  --m4: #8aad90;
  --m5: #58a872;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── UTILS ── */
.serif {
  font-family: "Fraunces", serif;
}
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}
.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(91, 123, 106, 0.1);
  border: 1px solid rgba(91, 123, 106, 0.18);
  border-radius: 100px;
  padding: 5px 14px;
  margin-bottom: 18px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 100px;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all 0.25s ease;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
}
.btn-primary:hover {
  background: var(--primary-d);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(91, 123, 106, 0.3);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}
.btn-outline:hover {
  background: rgba(91, 123, 106, 0.07);
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--text);
  color: #fff;
}
.btn-dark:hover {
  background: #1a1f1e;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(45, 52, 54, 0.25);
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 14px 0;
  transition:
    background 0.3s,
    box-shadow 0.3s;
}
nav.scrolled {
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.nav-logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.nav-logo-icon svg {
  width: 22px;
  height: 22px;
  fill: #fff;
}
.nav-logo-name {
  font-family: "Fraunces", serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-m);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 100px;
  transition: all 0.2s;
}
.nav-links a:hover {
  color: var(--text);
  background: rgba(0, 0, 0, 0.05);
}
.nav-cta {
  margin-left: 8px;
  font-size: 14px !important;
  padding: 9px 20px !important;
}

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-bg-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
}
.hero-bg-circle.c1 {
  width: 600px;
  height: 600px;
  background: var(--primary);
  top: -200px;
  right: -100px;
}
.hero-bg-circle.c2 {
  width: 400px;
  height: 400px;
  background: var(--accent);
  bottom: -100px;
  left: -80px;
}
.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-text h1 {
  font-family: "Fraunces", serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 22px;
  color: var(--text);
}
.hero-text h1 em {
  font-style: italic;
  color: var(--primary);
}
.hero-text p {
  font-size: 18px;
  color: var(--text-m);
  max-width: 440px;
  margin-bottom: 36px;
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  gap: 32px;
}
.hero-stat-num {
  font-family: "Fraunces", serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--text);
}
.hero-stat-label {
  font-size: 13px;
  color: var(--text-m);
  margin-top: 2px;
}

/* Phone mockup */
.hero-phone-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.phone-frame {
  width: 280px;
  height: 580px;
  background: var(--surface);
  border-radius: 44px;
  border: 2.5px solid rgba(0, 0, 0, 0.1);
  box-shadow:
    var(--shadow-lg),
    inset 0 0 0 1px rgba(255, 255, 255, 0.8);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.phone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 30px;
  background: var(--text);
  border-radius: 0 0 20px 20px;
  z-index: 10;
}
.phone-notch::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #222;
}
.phone-screen {
  position: absolute;
  inset: 0;
  background: var(--bg);
  padding: 52px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
}
.ps-greeting {
  font-size: 18px;
  font-family: "Fraunces", serif;
  color: var(--text);
  margin-bottom: 4px;
}
.ps-subtitle {
  font-size: 11px;
  color: var(--text-m);
  margin-bottom: 8px;
}
.ps-mood-card {
  background: var(--surface);
  border-radius: 14px;
  padding: 12px;
  border: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.ps-mood-label {
  font-size: 10px;
  color: var(--text-m);
  margin-bottom: 8px;
  font-weight: 600;
}
.ps-mood-row {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.ps-mood-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  cursor: default;
  transition: transform 0.2s;
}
.ps-mood-btn.active {
  transform: scale(1.18);
}
.ps-practice-card {
  background: linear-gradient(135deg, var(--primary), #4a6a59);
  border-radius: 14px;
  padding: 12px 14px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
}
.ps-practice-icon {
  font-size: 22px;
}
.ps-practice-num {
  font-family: "Fraunces", serif;
  font-size: 20px;
  font-weight: 600;
}
.ps-practice-label {
  font-size: 10px;
  opacity: 0.8;
}
.ps-tools-label {
  font-size: 10px;
  color: var(--text-m);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.ps-tools-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.ps-tool {
  background: var(--surface);
  border-radius: 10px;
  padding: 10px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 7px;
}
.ps-tool-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}
.ps-tool-name {
  font-size: 9px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.2;
}
.ps-tool-sub {
  font-size: 8px;
  color: var(--text-m);
  line-height: 1.2;
}

/* floating cards */
.float-card {
  position: absolute;
  background: var(--surface);
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(45, 52, 54, 0.14);
  padding: 12px 16px;
  border: 1px solid var(--border);
  animation: float 4s ease-in-out infinite;
}
.float-card.fc1 {
  left: -80px;
  top: 120px;
  animation-delay: 0s;
}
.float-card.fc2 {
  right: -70px;
  bottom: 140px;
  animation-delay: 2s;
}
.float-card-label {
  font-size: 10px;
  color: var(--text-m);
  margin-bottom: 4px;
}
.float-card-value {
  font-family: "Fraunces", serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 6px;
}
.float-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(91, 123, 106, 0.12);
  color: var(--primary);
  border-radius: 100px;
  padding: 3px 9px;
  font-size: 11px;
  font-weight: 600;
}

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

/* ── SECTION HEADER ── */
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}
.section-header h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 600;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.25;
}
.section-header p {
  font-size: 17px;
  color: var(--text-m);
  line-height: 1.7;
}

/* ── TRUST BAR ── */
#trust {
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-m);
  font-size: 14px;
  font-weight: 500;
}
.trust-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(91, 123, 106, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

/* ── FEATURES ── */
#features {
  padding: 100px 0;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: 32px;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.3s;
  background: linear-gradient(
    135deg,
    rgba(91, 123, 106, 0.04),
    rgba(212, 165, 116, 0.04)
  );
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.feature-card:hover::before {
  opacity: 1;
}
.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
}
.feature-card h3 {
  font-family: "Fraunces", serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text);
}
.feature-card p {
  font-size: 14.5px;
  color: var(--text-m);
  line-height: 1.7;
}
.feature-card.featured {
  background: linear-gradient(145deg, var(--primary), #4a6557);
  border-color: transparent;
  color: #fff;
}
.feature-card.featured h3 {
  color: #fff;
}
.feature-card.featured p {
  color: rgba(255, 255, 255, 0.8);
}
.feature-card.featured .feature-icon {
  background: rgba(255, 255, 255, 0.15);
}

/* ── MOOD SECTION ── */
#mood {
  padding: 100px 0;
  background: var(--surface);
}
.mood-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.mood-visual {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mood-row {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg);
  border-radius: var(--r);
  padding: 14px 18px;
  border: 1px solid var(--border);
  transition: all 0.25s;
}
.mood-row:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow);
}
.mood-emoji-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: contain;
  flex-shrink: 0;
}
.mood-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  flex-shrink: 0;
}
.mood-row-info {
  flex: 1;
}
.mood-row-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.mood-row-sub {
  font-size: 12px;
  color: var(--text-m);
  margin-top: 1px;
}
.mood-bar-wrap {
  flex: 1;
  height: 6px;
  background: var(--border);
  border-radius: 3px;
  overflow: hidden;
}
.mood-bar {
  height: 100%;
  border-radius: 3px;
  transition: width 1s ease;
}

.mood-text h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 600;
  margin-bottom: 18px;
  line-height: 1.25;
}
.mood-text p {
  font-size: 16px;
  color: var(--text-m);
  line-height: 1.75;
  margin-bottom: 20px;
}
.mood-feature-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
}
.mood-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-m);
}
.mood-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(91, 123, 106, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
  font-size: 11px;
  font-weight: 700;
}

/* ── ACT SECTION ── */
#act {
  padding: 100px 0;
}
.act-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.act-item {
  background: var(--surface);
  padding: 36px 28px;
  transition: background 0.25s;
}
.act-item:hover {
  background: #f5f3f0;
}
.act-num {
  font-family: "Fraunces", serif;
  font-size: 36px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 8px;
  opacity: 0.6;
}
.act-item h3 {
  font-family: "Fraunces", serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}
.act-item p {
  font-size: 13.5px;
  color: var(--text-m);
  line-height: 1.6;
}
.act-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  margin-top: 12px;
  padding: 3px 10px;
  border-radius: 100px;
}
.act-status.done {
  background: rgba(91, 123, 106, 0.12);
  color: var(--primary);
}
.act-status.soon {
  background: rgba(212, 165, 116, 0.15);
  color: #a07840;
}
.act-foot {
  text-align: center;
  margin-top: 28px;
  font-size: 14.5px;
  color: var(--text-m);
}
.act-foot strong {
  color: var(--primary);
  font-weight: 600;
}

/* ── MEDITATIONS ── */
#meditations {
  padding: 100px 0;
}
.med-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.med-card {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: 24px 22px;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}
.med-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.med-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.med-icon {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: rgba(144, 168, 208, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 23px;
}
.med-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}
.med-badge.free {
  background: rgba(91, 123, 106, 0.12);
  color: var(--primary);
}
.med-badge.premium {
  background: rgba(212, 165, 116, 0.18);
  color: #a07840;
}
.med-card h4 {
  font-family: "Fraunces", serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.med-card p {
  font-size: 13px;
  color: var(--text-m);
  line-height: 1.6;
  margin-bottom: 14px;
}
.med-dur {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--text-l);
}

/* ── TOOLS SHOWCASE ── */
#tools {
  padding: 100px 0;
  background: var(--surface);
}
.tools-scroll-wrap {
  position: relative;
}
.tools-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--surface);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: all 0.2s;
}
.tools-arrow:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.tools-arrow svg {
  width: 18px;
  height: 18px;
}
.tools-arrow-prev {
  left: -22px;
}
.tools-arrow-next {
  right: -22px;
}
.tools-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 16px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.tools-scroll::-webkit-scrollbar {
  display: none;
}
.tool-card {
  flex: 0 0 240px;
  background: var(--bg);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  border: 1px solid var(--border);
  scroll-snap-align: start;
  transition: all 0.3s;
}
.tool-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  background: var(--surface);
}
.tool-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 18px;
}
.tool-card h4 {
  font-family: "Fraunces", serif;
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}
.tool-card p {
  font-size: 13px;
  color: var(--text-m);
  line-height: 1.6;
}
.tool-card-duration {
  margin-top: 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  background: rgba(91, 123, 106, 0.1);
  border-radius: 100px;
  padding: 3px 10px;
  display: inline-block;
}

/* ── TESTIMONIALS ── */
#testimonials {
  padding: 100px 0;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: 28px;
  border: 1px solid var(--border);
  position: relative;
}
.testimonial-quote {
  font-size: 48px;
  font-family: "Fraunces", serif;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 12px;
  opacity: 0.5;
}
.testimonial-text {
  font-size: 15px;
  color: var(--text-m);
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}
.star {
  color: var(--accent);
  font-size: 14px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.author-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}
.author-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.author-detail {
  font-size: 12px;
  color: var(--text-m);
}

/* ── PRICING ── */
#pricing {
  padding: 100px 0;
  background: var(--surface);
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 780px;
  margin: 0 auto;
}
.pricing-card {
  background: var(--bg);
  border-radius: var(--r-lg);
  padding: 40px 36px;
  border: 1.5px solid var(--border);
  position: relative;
}
.pricing-card.popular {
  background: var(--surface);
  border-color: var(--primary);
  box-shadow:
    0 0 0 3px rgba(91, 123, 106, 0.08),
    var(--shadow-lg);
}
.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 5px 16px;
  border-radius: 100px;
  white-space: nowrap;
}
.pricing-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-m);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}
.pricing-price {
  font-family: "Fraunces", serif;
  font-size: 42px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}
.pricing-price span {
  font-size: 18px;
}
.pricing-period {
  font-size: 13px;
  color: var(--text-m);
  margin-bottom: 28px;
}
.pricing-yearly {
  font-size: 13px;
  color: var(--text-m);
  margin-top: -20px;
  margin-bottom: 28px;
}
.pricing-yearly strong {
  color: var(--text);
  font-weight: 600;
}
.pricing-yearly-save {
  display: inline-block;
  background: rgba(91, 123, 106, 0.12);
  color: var(--primary);
  font-weight: 600;
  border-radius: 100px;
  padding: 2px 10px;
  margin-right: 4px;
}
.pricing-note {
  text-align: center;
  margin-top: 28px;
  font-size: 13px;
  color: var(--text-l);
}
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-m);
}
.pricing-features li .check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(91, 123, 106, 0.12);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  flex-shrink: 0;
}
.pricing-features li.disabled {
  opacity: 0.45;
}
.pricing-features li.disabled .check {
  background: rgba(0, 0, 0, 0.06);
  color: var(--text-m);
}

/* ── CTA ── */
#cta {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, #1c2e26, #0f1a15);
  z-index: 0;
}
.cta-bg-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}
.cta-bg-circle.c1 {
  width: 500px;
  height: 500px;
  top: -200px;
  right: -100px;
}
.cta-bg-circle.c2 {
  width: 300px;
  height: 300px;
  bottom: -100px;
  left: 100px;
}
.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.cta-inner h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  color: #fff;
  margin-bottom: 18px;
  line-height: 1.25;
}
.cta-inner p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
  margin-bottom: 40px;
}
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-cta-app {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  padding: 14px 24px;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.25s;
  backdrop-filter: blur(8px);
}

.btn-cta-app:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
}
.btn-cta-app.is-soon {
  cursor: default;
  opacity: 0.85;
}
.btn-cta-app.is-soon:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: none;
}
.cta-note a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: underline;
}
.btn-cta-app-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}
.btn-cta-app-label {
  font-size: 11px;
  opacity: 0.8;
}
.btn-cta-app-name {
  font-size: 16px;
  font-weight: 700;
  margin-top: -2px;
}
.cta-note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 20px;
}
.download {
  border: 2px solid #ffffff;
}

/* ── FOOTER ── */
footer {
  padding: 48px 0;
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-logo {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.footer-name {
  font-family: "Fraunces", serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
}
.footer-sub {
  font-size: 12px;
  color: var(--text-m);
}
.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a {
  font-size: 13px;
  color: var(--text-m);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--primary);
}
.footer-copy {
  font-size: 13px;
  color: var(--text-l);
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }
  .hero-text p {
    max-width: 100%;
  }
  .hero-stats {
    justify-content: center;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-phone-wrap .float-card {
    display: none;
  }
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
  .act-grid {
    grid-template-columns: 1fr 1fr;
  }
  .med-grid {
    grid-template-columns: 1fr 1fr;
  }
  .mood-content {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
  .nav-links {
    display: none;
  }
}
@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
  .act-grid {
    grid-template-columns: 1fr;
  }
  .med-grid {
    grid-template-columns: 1fr;
  }
  .trust-inner {
    gap: 20px;
  }
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

/* ── Modals ──────────────────────────────────── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(45, 52, 54, 0.5);
  backdrop-filter: blur(4px);
  z-index: 900;
}
.modal-overlay.active {
  display: block;
}

.modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.96);
  width: min(640px, 92vw);
  max-height: 80vh;
  background: var(--surface);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  z-index: 901;
  padding: 48px 40px 40px;
  overflow: hidden;
  flex-direction: column;
  opacity: 0;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}
.modal.active {
  display: flex;
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: none;
  background: var(--bg);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-m);
  transition:
    background 0.15s,
    color 0.15s;
}
.modal-close:hover {
  background: var(--border);
  color: var(--text);
}
.modal-close svg {
  width: 16px;
  height: 16px;
}

.modal-title {
  font-family: "Fraunces", serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 24px;
  flex-shrink: 0;
}

.modal-body {
  overflow-y: auto;
  flex: 1;
  padding-right: 8px;
  color: var(--text-m);
  font-size: 0.9rem;
  line-height: 1.7;
}
.modal-body::-webkit-scrollbar {
  width: 4px;
}
.modal-body::-webkit-scrollbar-track {
  background: transparent;
}
.modal-body::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 4px;
}

.modal-body h3 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-top: 20px;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.modal-body p {
  margin-bottom: 12px;
}
.modal-body p:first-child {
  color: var(--text-l);
  font-size: 0.8rem;
  margin-bottom: 20px;
}
