/* ============================================================
   Você está bem? — Landing Page Styles
   Autor: Você está bem? Team
   ============================================================ */

/* ── RESET & VARIABLES ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:        #4DA6E8;
  --blue-dark:   #2A80C4;
  --teal:        #3DCBA8;
  --teal-dark:   #1FA882;
  --teal-light:  #7DE0C8;
  --sky:         #EAF6FF;
  --mint:        #E8FAF5;
  --cream:       #F5FBFF;
  --charcoal:    #1E2A38;
  --mid:         #5A6E80;
  --light:       #9BB0BF;
  --border:      rgba(77, 166, 232, 0.15);
  --shadow-blue: 0 8px 40px rgba(77, 166, 232, 0.18);
}

html { scroll-behavior: smooth; }

/* dm-serif-display-latin-400-normal */
@font-face {
  font-family: 'DM Serif Display';
  font-style: normal;
  font-weight: 400;
  src: url('../assets/fonts/dm-serif-display-v17-latin/dm-serif-display-v17-latin-regular.woff2') format('woff2');
  font-display: swap;
}

/* dm-sans-latin-400-normal */
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400;
  src: url('../assets/fonts/dm-sans-v17-latin/dm-sans-v17-latin-regular.woff2') format('woff2');
  font-display: swap;
}

/* dm-sans-latin-700-normal */
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 700;
  src: url('../assets/fonts/dm-sans-v17-latin/dm-sans-v17-latin-700.woff2') format('woff2');
  font-display: swap;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  overflow-x: hidden;
}

/* Noise texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

/* ── TYPOGRAPHY HELPERS ── */
h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.85rem, 3vw, 2.85rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--charcoal);
  margin-bottom: 18px;
}

h2 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--blue-dark), var(--teal-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 18px;
}

.section-tag::before {
  content: '';
  width: 18px;
  height: 1.5px;
  background: var(--teal);
  display: block;
}

.section-sub {
  font-size: clamp(0.9rem, 1.3vw, 1.04rem);
  color: var(--mid);
  line-height: 1.75;
  max-width: 520px;
  font-weight: 300;
}

/* ── SECTIONS ── */
section { padding: clamp(64px, 8vw, 110px) 5%; position: relative; z-index: 1; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  color: white;
  text-decoration: none;
  padding: 15px 30px;
  border-radius: 100px;
  font-size: 0.92rem;
  font-weight: 600;
  transition: all 0.25s;
  box-shadow: 0 4px 24px rgba(77, 166, 232, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(77, 166, 232, 0.4);
  filter: brightness(1.05);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--charcoal);
  text-decoration: none;
  padding: 15px 26px;
  border-radius: 100px;
  font-size: 0.92rem;
  font-weight: 500;
  border: 1.5px solid rgba(30, 42, 56, 0.18);
  transition: all 0.25s;
}

.btn-secondary:hover {
  border-color: var(--blue);
  color: var(--blue-dark);
  background: rgba(77, 166, 232, 0.05);
}

.btn-white {
  background: white;
  color: var(--blue-dark);
  text-decoration: none;
  padding: 15px 30px;
  border-radius: 100px;
  font-size: 0.92rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.25s;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.btn-white:hover { background: var(--cream); transform: translateY(-2px); }

.btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: white;
  text-decoration: none;
  padding: 15px 30px;
  border-radius: 100px;
  font-size: 0.92rem;
  font-weight: 500;
  border: 1.5px solid rgba(255, 255, 255, 0.28);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.25s;
}

.btn-ghost:hover { background: rgba(255, 255, 255, 0.2); }

.store-icon { width: 22px; height: 22px; flex-shrink: 0; }

.store-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.store-label {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  opacity: 0.7;
  text-transform: uppercase;
  line-height: 1;
}

.store-name {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 14px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(245, 251, 255, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo img { width: 34px; height: 34px; object-fit: contain; }
.nav-logo-text { font-family: 'DM Serif Display', serif; font-size: 1.15rem; color: var(--blue-dark); letter-spacing: -0.02em; }
.nav-logo-text span { color: var(--teal-dark); }

.nav-links { display: flex; gap: 32px; list-style: none; align-items: center; }
.nav-links a { text-decoration: none; font-size: 0.875rem; font-weight: 500; color: var(--mid); transition: color 0.2s; }
.nav-links a:hover { color: var(--teal-dark); }

.nav-cta {
  background: linear-gradient(135deg, var(--blue), var(--teal)) !important;
  color: white !important;
  padding: 10px 22px;
  border-radius: 100px;
  font-size: 0.85rem !important;
  box-shadow: 0 4px 16px rgba(77, 166, 232, 0.3);
}

.nav-ham { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.nav-ham span { display: block; width: 22px; height: 2px; background: var(--charcoal); border-radius: 2px; transition: 0.3s; }

.mobile-menu {
  display: none;
  position: fixed;
  top: 63px; left: 0; right: 0;
  background: rgba(245, 251, 255, 0.97);
  backdrop-filter: blur(16px);
  padding: 20px 5%;
  border-bottom: 1px solid var(--border);
  z-index: 99;
  flex-direction: column;
  gap: 0;
}

.mobile-menu.open { display: flex; }
.mobile-menu a { text-decoration: none; font-size: 1rem; font-weight: 500; color: var(--mid); padding: 14px 0; border-bottom: 1px solid var(--border); }
.mobile-menu .m-cta { background: linear-gradient(135deg, var(--blue), var(--teal)); color: white; text-align: center; padding: 14px; border-radius: 100px; border: none; margin-top: 12px; font-weight: 600; }

/* ── HERO ── */
.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: clamp(100px, 12vw, 140px) 5% clamp(60px, 8vw, 90px);
  gap: clamp(40px, 6vw, 80px);
  position: relative;
  overflow: hidden;
}

.bg-blob { position: absolute; border-radius: 50%; filter: blur(90px); pointer-events: none; }
.blob1 {
  width: clamp(300px, 45vw, 560px); height: clamp(300px, 45vw, 560px);
  background: radial-gradient(circle, rgba(77, 166, 232, 0.2) 0%, transparent 70%);
  top: -15%; right: -8%;
}
.blob2 {
  width: clamp(200px, 30vw, 380px); height: clamp(200px, 30vw, 380px);
  background: radial-gradient(circle, rgba(61, 203, 168, 0.2) 0%, transparent 70%);
  bottom: 5%; left: -5%;
}

.hero-content { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(61, 203, 168, 0.1);
  color: var(--teal-dark);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
  border: 1px solid rgba(61, 203, 168, 0.2);
}

.hero-badge img { width: 16px; height: 16px; object-fit: contain; }

h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.3rem, 4.2vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--charcoal);
  margin-bottom: 22px;
}

h1 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--blue-dark), var(--teal-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  color: var(--mid);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 40px;
  font-weight: 300;
}

.hero-wellbeing { display: flex; flex-direction: column; gap: 10px; margin-bottom: 36px; }
.wb-item { display: flex; align-items: center; gap: 12px; font-size: 0.9rem; color: var(--mid); font-weight: 400; }
.wb-dot {
  width: 28px; height: 28px;
  background: linear-gradient(135deg, rgba(77, 166, 232, 0.12), rgba(61, 203, 168, 0.12));
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
  border: 1px solid rgba(77, 166, 232, 0.1);
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

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

.phone-wrap { position: relative; animation: float 5.5s ease-in-out infinite; }

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

.phone-shell {
  width: clamp(210px, 26vw, 256px);
  background: #1a1f2e;
  border-radius: 44px;
  padding: 10px;
  box-shadow: 0 32px 80px rgba(30, 42, 56, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.07);
}

.phone-screen-img { width: 100%; border-radius: 36px; display: block; }

.float-badge {
  position: absolute;
  background: white;
  border-radius: 16px;
  padding: 9px 14px;
  box-shadow: 0 6px 28px rgba(30, 42, 56, 0.12);
  font-size: 0.74rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  border: 1px solid var(--border);
}

.fb1 { top: 24px; right: -90px; animation: float 6s ease-in-out infinite 1s; }
.fb2 { bottom: 80px; left: -95px; animation: float 5s ease-in-out infinite 0.5s; }
.float-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); flex-shrink: 0; }
.float-dot.red { background: #E06060; }

/* ── STATS ── */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin: 0 5% 90px;
  background: var(--border);
  border-radius: 24px;
  overflow: hidden;
}

.stat-item { background: white; padding: clamp(28px, 4vw, 44px) clamp(20px, 3vw, 36px); text-align: center; }

.stat-num {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  background: linear-gradient(135deg, var(--blue-dark), var(--teal-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label { font-size: 0.88rem; color: var(--mid); line-height: 1.5; }

/* ── WELLBEING SECTION ── */
.wellbeing-section { background: white; padding: clamp(64px, 8vw, 110px) 5%; }

.wb-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; }

.wb-card {
  border-radius: 24px;
  padding: clamp(28px, 4vw, 40px);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.wb-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-blue); }
.wb-card.teal  { background: linear-gradient(135deg, rgba(61, 203, 168, 0.06), rgba(61, 203, 168, 0.02)); }
.wb-card.blue  { background: linear-gradient(135deg, rgba(77, 166, 232, 0.06), rgba(77, 166, 232, 0.02)); }
.wb-card.warm  { background: linear-gradient(135deg, rgba(245, 180, 100, 0.07), rgba(245, 180, 100, 0.02)); }

.wb-bg-num { position: absolute; font-family: 'DM Serif Display', serif; font-size: 7rem; color: rgba(77, 166, 232, 0.05); right: 16px; top: 8px; line-height: 1; }

.wb-icon-wrap { width: 52px; height: 52px; border-radius: 18px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 20px; position: relative; z-index: 1; }
.wi-teal { background: rgba(61, 203, 168, 0.15); }
.wi-blue { background: rgba(77, 166, 232, 0.15); }
.wi-warm { background: rgba(245, 180, 100, 0.15); }

.wb-card h3 { font-family: 'DM Serif Display', serif; font-size: 1.25rem; margin-bottom: 10px; color: var(--charcoal); position: relative; z-index: 1; }
.wb-card p  { font-size: 0.88rem; color: var(--mid); line-height: 1.7; position: relative; z-index: 1; }

/* ── HOW IT WORKS ── */
.how { background: var(--cream); }

.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 52px;
  background: var(--border);
  border-radius: 28px;
  overflow: hidden;
}

.how-step { background: white; padding: clamp(32px, 5vw, 50px) clamp(22px, 4vw, 38px); position: relative; }
.how-num  { font-family: 'DM Serif Display', serif; font-size: 5rem; color: rgba(77, 166, 232, 0.40); line-height: 1; position: absolute; top: 20px; right: 24px; pointer-events: none; }

.how-icon {
  width: 50px; height: 50px;
  background: linear-gradient(135deg, rgba(77, 166, 232, 0.1), rgba(61, 203, 168, 0.1));
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 20px;
  border: 1px solid rgba(77, 166, 232, 0.1);
}

.how-step h3 { font-family: 'DM Serif Display', serif; font-size: 1.25rem; margin-bottom: 10px; color: var(--charcoal); }
.how-step p  { font-size: 0.88rem; color: var(--mid); line-height: 1.7; }

/* ── APP SHOWCASE ── */
.showcase { background: linear-gradient(160deg, #EBF6FF 0%, #E5FAF4 100%); padding: clamp(64px, 8vw, 110px) 5%; }

.showcase-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}

.showcase-phone { display: flex; justify-content: center; }

.showcase-shell {
  width: clamp(200px, 24vw, 240px);
  background: #1a1f2e;
  border-radius: 44px;
  padding: 10px;
  box-shadow: 0 28px 70px rgba(30, 42, 56, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.07);
}

.showcase-shell img { width: 100%; border-radius: 36px; display: block; }

.showcase-content { position: relative; z-index: 1; }

.feature-list    { display: flex; flex-direction: column; gap: 20px; margin-top: 36px; }
.feat-row        { display: flex; align-items: flex-start; gap: 16px; }
.feat-row-icon   { width: 44px; height: 44px; flex-shrink: 0; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }
.fri-green { background: rgba(61, 203, 168, 0.15); }
.fri-blue  { background: rgba(77, 166, 232, 0.15); }
.fri-warm  { background: rgba(245, 180, 100, 0.15); }

.feat-row-text h4 { font-family: 'DM Serif Display', serif; font-size: 1.05rem; color: var(--charcoal); margin-bottom: 4px; }
.feat-row-text p  { font-size: 0.85rem; color: var(--mid); line-height: 1.65; }

/* ── FEATURES ── */
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 52px;
}

.feature-card {
  background: white;
  border-radius: 24px;
  padding: clamp(26px, 4vw, 38px);
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover  { transform: translateY(-4px); box-shadow: var(--shadow-blue); }
.feature-card.wide   { grid-column: span 2; }
.feature-card.wide .feat-inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(22px, 4vw, 40px); }

.feat-icon {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, rgba(77, 166, 232, 0.1), rgba(61, 203, 168, 0.1));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 16px;
  border: 1px solid rgba(77, 166, 232, 0.1);
}

.feature-card h3 { font-family: 'DM Serif Display', serif; font-size: 1.15rem; margin-bottom: 9px; }
.feature-card p  { font-size: 0.87rem; color: var(--mid); line-height: 1.7; }

/* ── FLOW SECTION ── */
.flow-section { background: var(--charcoal); }
.flow-section .section-tag        { color: var(--teal-light); }
.flow-section .section-tag::before{ background: var(--teal-light); }
.flow-section h2                  { color: white; }
.flow-section .section-sub        { color: rgba(255, 255, 255, 0.5); }

.flow-diagram {
  display: flex;
  align-items: stretch;
  margin-top: 52px;
  border-radius: 24px;
  overflow: hidden;
  gap: 1px;
  background: rgba(255, 255, 255, 0.06);
}

.flow-node {
  flex: 1;
  background: #1E2A38;
  padding: clamp(26px, 4vw, 38px) clamp(18px, 3vw, 28px);
  position: relative;
  transition: background 0.3s;
}

.flow-node:hover { background: #253346; }

.flow-arrow {
  position: absolute;
  right: -11px; top: 50%;
  transform: translateY(-50%);
  width: 22px; height: 22px;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.6rem;
  color: white;
  z-index: 2;
}

.flow-icon-wrap { width: 40px; height: 40px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.05rem; margin-bottom: 16px; }
.fn-blue   { background: rgba(77, 166, 232, 0.2); }
.fn-green  { background: rgba(61, 203, 168, 0.9); }
.fn-yellow { background: rgba(245, 213, 80, 0.15); }
.fn-red    { background: rgba(224, 96, 96, 0.2); }

.flow-node h4 { font-family: 'DM Serif Display', serif; font-size: 1rem; color: white; margin-bottom: 7px; }
.flow-node p  { font-size: 0.78rem; color: rgba(255, 255, 255, 0.4); line-height: 1.6; }

/* ── FAQ ── */
.faq-section { background: var(--cream); }

.faq-list {
  max-width: 720px;
  margin: 52px auto 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: white;
  border-radius: 18px;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow 0.25s;
}

.faq-item:has(.faq-question[aria-expanded="true"]) {
  box-shadow: var(--shadow-blue);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 26px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--charcoal);
  text-align: left;
  transition: color 0.2s;
}

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

.faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(77, 166, 232, 0.12), rgba(61, 203, 168, 0.12));
  border: 1px solid var(--border);
  position: relative;
  transition: transform 0.3s, background 0.2s;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--blue-dark);
  border-radius: 2px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.faq-icon::before { width: 10px; height: 1.5px; }
.faq-icon::after  { width: 1.5px; height: 10px; transition: transform 0.3s; }

.faq-question[aria-expanded="true"] .faq-icon {
  background: linear-gradient(135deg, rgba(77, 166, 232, 0.2), rgba(61, 203, 168, 0.2));
  transform: rotate(45deg);
}

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

.faq-answer.open {
  max-height: 200px;
  padding-bottom: 22px;
}

.faq-answer p {
  padding: 0 26px;
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.75;
}

/* ── TESTIMONIALS ── */
.testimonials { background: white; }

.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 52px; }

.testi-card { background: var(--cream); border-radius: 24px; padding: clamp(22px, 4vw, 34px); border: 1px solid var(--border); }

.testi-stars  { color: #F5A623; font-size: 0.8rem; margin-bottom: 13px; letter-spacing: 2px; }
.testi-text   { font-family: 'DM Serif Display', serif; font-style: italic; font-size: 0.98rem; line-height: 1.55; color: var(--charcoal); margin-bottom: 20px; }
.testi-author { display: flex; align-items: center; gap: 10px; }
.testi-avatar { width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.85rem; font-weight: 600; color: white; flex-shrink: 0; }

.av1 { background: linear-gradient(135deg, var(--blue), var(--blue-dark)); }
.av2 { background: linear-gradient(135deg, var(--teal), var(--teal-dark)); }
.av3 { background: linear-gradient(135deg, #6BBCE0, #3A8CB8); }

.testi-name { font-size: 0.82rem; font-weight: 600; color: var(--charcoal); }
.testi-loc  { font-size: 0.70rem; color: var(--light); }

/* ── CTA SECTION ── */
.cta-section {
  text-align: center;
  padding: clamp(80px, 10vw, 130px) 5%;
  background: linear-gradient(150deg, var(--blue-dark) 0%, #1A6E6A 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  /* background:
    radial-gradient(ellipse at 25% 50%, rgba(77, 166, 232, 0.25) 0%, transparent 55%),
    radial-gradient(ellipse at 75% 50%, rgba(61, 203, 168, 0.20) 0%, transparent 55%); */
}

.cta-logo { display: flex; align-items: center; justify-content: center; margin-bottom: 32px; position: relative; z-index: 1; }
.cta-logo img { width: 58px; height: 58px; object-fit: contain; filter: drop-shadow(0 4px 16px rgba(0,0,0,0.2)); }

.cta-section .section-tag { color: rgba(255,255,255,0.6); justify-content: center; position: relative; z-index: 1; }
.cta-section .section-tag::before { background: rgba(255,255,255,0.4); }
.cta-section h2            { color: white; max-width: 560px; margin: 0 auto 20px; position: relative; z-index: 1; }
.cta-section .section-sub  { color: rgba(255,255,255,0.6); max-width: 460px; margin: 0 auto 48px; position: relative; z-index: 1; }

.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* ── FOOTER ── */
footer {
  background: #111820;
  color: rgba(255, 255, 255, 0.4);
  padding: clamp(36px, 5vw, 52px) 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo      { display: flex; align-items: center; gap: 10px; }
.footer-logo img  { width: 28px; height: 28px; object-fit: contain; opacity: 0.85; }
.footer-logo-text { font-family: 'DM Serif Display', serif; font-size: 1rem; color: rgba(255,255,255,0.75); }
.footer-logo-text span { color: var(--teal-light); }

.footer-links     { display: flex; gap: clamp(14px, 2.5vw, 28px); flex-wrap: wrap; }
.footer-links a   { color: rgba(255,255,255,0.35); text-decoration: none; font-size: 0.8rem; transition: color 0.2s; }
.footer-links a:hover { color: rgba(255,255,255,0.75); }

.footer-legal { font-size: 0.75rem; }

.footer-legal a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: rgba(255, 255, 255, 0.75);
}
/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible     { opacity: 1; transform: none; }
.reveal-delay-1     { transition-delay: 0.12s; }
.reveal-delay-2     { transition-delay: 0.24s; }

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

@media (max-width: 1024px) {
  .fb1, .fb2 { display: none; }

  .flow-diagram { flex-direction: column; }
  .flow-arrow   { display: none; }
  .how-grid     { grid-template-columns: 1fr; }
  .wb-grid      { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  nav { padding: 14px 4%; }
  .nav-links { display: none; }
  .nav-ham   { display: flex; }

  .hero {
    grid-template-columns: 1fr;
    padding: 86px 4% 52px;
    text-align: center;
    gap: 44px;
  }

  .hero-visual { order: -1; }
  .hero-sub    { max-width: 100%; }
  .hero-wellbeing { align-items: center; }
  .hero-actions   { justify-content: center; }

  .stats { grid-template-columns: 1fr; margin: 0 4% 64px; }

  section,
  .wellbeing-section,
  .showcase { padding: 60px 4%; }

  .showcase-inner { grid-template-columns: 1fr; gap: 44px; }
  .showcase-phone { order: -1; }

  .features-grid  { grid-template-columns: 1fr; }
  .feature-card.wide { grid-column: span 1; }
  .feature-card.wide .feat-inner { grid-template-columns: 1fr; }

  .testi-grid { grid-template-columns: 1fr; }
  .wb-grid    { grid-template-columns: 1fr; }

  .phone-shell { width: clamp(190px, 55vw, 230px); }
}

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

  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn-primary,
  .btn-secondary { justify-content: center; }

  .cta-section { padding: 72px 4%; }
  .cta-actions { flex-direction: column; align-items: center; }
  .btn-white,
  .btn-ghost { width: 100%; max-width: 320px; justify-content: center; }

  .footer-links { justify-content: center; }
  footer { flex-direction: column; text-align: center; align-items: center; }
}
