/* ═══════════════════════════════════════════════
   bmore — styles.css · V6 Full Glassmorphism
   DM Serif Display + Manrope
   ═══════════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
  --bg:          #0e1117;
  --bg-alt:      #141820;
  --surface:     #1a1f2b;
  --brand:       #5AAFE0;
  --brand-dark:  #3D94C8;
  --brand-light: #e4f2fb;
  --text:        #f1f5f9;
  --text-dim:    #94a3b8;
  --text-light:  #7888a0;
  --border:      rgba(255, 255, 255, 0.08);
  --border-hover:rgba(255, 255, 255, 0.15);

  --glass-bg:    rgba(255, 255, 255, 0.06);
  --glass-bg-strong: rgba(255, 255, 255, 0.1);
  --glass-border:rgba(255, 255, 255, 0.12);
  --glass-blur:  16px;

  --font-display:'DM Serif Display', Georgia, serif;
  --font-body:   'Manrope', system-ui, sans-serif;

  --container:   min(1200px, 90vw);
  --space-section: clamp(5rem, 9vw, 8rem);
  --radius:      8px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --ease:        cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── FONTS (self-hosted) ── */
@font-face {
  font-family: 'DM Serif Display';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(assets/fonts/dm-serif-display-normal-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'DM Serif Display';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(assets/fonts/dm-serif-display-normal-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'DM Serif Display';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url(assets/fonts/dm-serif-display-italic-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'DM Serif Display';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url(assets/fonts/dm-serif-display-italic-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url(assets/fonts/manrope-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url(assets/fonts/manrope-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: clamp(0.938rem, 0.85rem + 0.4vw, 1.063rem);
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

.container { width: var(--container); margin: 0 auto; }

/* ── GLASS CARD (base) ── */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
}

/* ── SECTION BACKGROUNDS ── */
.has-bg {
  position: relative;
  overflow: hidden;
}

.section-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.section-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.section-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(14, 17, 23, 0.85) 0%,
    rgba(14, 17, 23, 0.7) 50%,
    rgba(14, 17, 23, 0.8) 100%
  );
}

.section-overlay--light {
  background: linear-gradient(
    135deg,
    rgba(14, 17, 23, 0.88) 0%,
    rgba(14, 17, 23, 0.75) 50%,
    rgba(14, 17, 23, 0.85) 100%
  );
}

/* ── SECTION GLASS CARDS ── */
.section-glass {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 5vw, 4rem);
}

.section-glass--dark {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* ── NAV ── */
#nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: background 0.4s, padding 0.4s, box-shadow 0.4s;
}
#nav.scrolled {
  background: rgba(14, 17, 23, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.75rem 0;
  box-shadow: 0 1px 0 var(--border);
}

.nav-inner {
  width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img { height: 36px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--text-dim);
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--text); }

.nav-cta {
  color: #fff !important;
  background: var(--brand) !important;
  padding: 0.5rem 1.25rem !important;
  border-radius: 100px !important;
  font-weight: 600 !important;
  transition: background 0.3s, transform 0.2s !important;
}
.nav-cta:hover {
  background: var(--brand-dark) !important;
  transform: translateY(-1px);
}

/* hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  background: none; border: none;
  cursor: pointer;
  padding: 4px;
  width: 28px; height: 28px;
}
.nav-toggle span {
  display: block;
  height: 1.5px;
  background: var(--text);
  border-radius: 1px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.active span:first-child { transform: translateY(3.75px) rotate(45deg); }
.nav-toggle.active span:last-child  { transform: translateY(-3.75px) rotate(-45deg); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.938rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 4px 16px rgba(90, 175, 224, 0.25);
}
.btn-primary:hover {
  background: var(--brand-dark);
  box-shadow: 0 8px 30px rgba(90, 175, 224, 0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border-hover);
}
.btn-ghost:hover {
  border-color: var(--brand);
  color: var(--brand);
}

.btn-ghost-light {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.15);
}

.btn-lg {
  padding: 1.125rem 2.5rem;
  font-size: 1.063rem;
}

/* ── EYEBROW ── */
.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 0.75rem;
}

/* ── SECTIONS ── */
.section {
  padding: var(--space-section) 0;
  position: relative;
}

.section h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 3rem;
}

.section-cta {
  margin-top: 3rem;
}

.section-intro {
  color: var(--text-dim);
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  max-width: 600px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}

/* ── REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ═══════════ HERO ═══════════ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.hero .section-bg img {
  object-position: center 30%;
}

.hero .section-overlay {
  background: linear-gradient(
    to bottom,
    rgba(14, 17, 23, 0.3) 0%,
    rgba(14, 17, 23, 0.4) 30%,
    rgba(14, 17, 23, 0.65) 60%,
    rgba(14, 17, 23, 0.85) 100%
  );
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  min-height: calc(100vh - 6rem);
  min-height: calc(100dvh - 6rem);
  padding-top: 6rem;
  padding-bottom: 2rem;
}

.hero-content.glass-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  padding: clamp(2.5rem, 5vw, 4.5rem);
  max-width: 860px;
  border-radius: var(--radius-xl);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.hero-eyebrow {
  color: var(--brand) !important;
  margin-bottom: 1.25rem;
  font-size: 0.7rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  font-weight: 400;
  line-height: 1.12;
  margin-bottom: 1.25rem;
  color: #fff;
}

.hero-line { display: block; }

.hero-accent {
  font-style: italic;
  color: var(--brand);
}

.hero-sub {
  font-size: clamp(0.95rem, 1.1vw, 1.063rem);
  color: rgba(255, 255, 255, 0.7);
  max-width: 520px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-trust span {
  font-size: 0.813rem;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
}

/* ── HERO PILLARS (glass bar) ── */
.hero-pillars-wrap {
  position: relative;
  z-index: 2;
  padding: 0;
  margin-top: auto;
  transform: translateY(50%);
}

.hero-pillars.glass-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-radius: var(--radius-xl);
  padding: 2rem 2.5rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2);
}

.hero-pillar {
  text-align: center;
  padding: 0.5rem 1rem;
}

.hero-pillar svg {
  color: var(--brand);
  margin: 0 auto 0.75rem;
  width: 28px;
  height: 28px;
}

.hero-pillar h3 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 0.35rem;
}

.hero-pillar p {
  font-size: 0.813rem;
  color: var(--text-dim);
  line-height: 1.5;
}

.hero-pillar-divider {
  width: 1px;
  height: 50px;
  background: var(--border);
}

/* ═══════════ S2 — SERVICES / PILLARS ═══════════ */
.services {
  padding-top: calc(var(--space-section) + 4rem);
}

.pillars {
  margin-top: 2rem;
}

.pillar {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  padding: 2.5rem 0;
}

.pillar-num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 400;
  color: var(--brand);
  opacity: 0.4;
  line-height: 1;
  min-width: 3rem;
}

.pillar-content h3 {
  font-family: var(--font-display);
  font-size: clamp(1.375rem, 2vw, 1.75rem);
  font-weight: 400;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.pillar-content p {
  color: var(--text-dim);
  max-width: 540px;
  line-height: 1.75;
}

.pillar-divider-line {
  height: 1px;
  background: var(--border);
}

/* ═══════════ S3 — PROBLEMS ═══════════ */
.problems-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.problem-card.glass-card {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  transition: border-color 0.3s, transform 0.3s;
}

.problem-card.glass-card:hover {
  border-color: rgba(90, 175, 224, 0.2);
  transform: translateY(-2px);
}

.problem-card h3 {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 1.5vw, 1.375rem);
  font-weight: 400;
  color: var(--text);
  margin-bottom: 1rem;
}

.problem-card blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--brand);
  padding-left: 1rem;
  border-left: 2px solid rgba(90, 175, 224, 0.3);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.problem-card p {
  font-size: 0.938rem;
  color: var(--text-dim);
  line-height: 1.75;
}

/* ═══════════ S4 — PROCESS / STEPS ═══════════ */
.steps {
  display: grid;
  gap: 0;
  margin-top: 1rem;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.step:first-child { border-top: 1px solid rgba(255, 255, 255, 0.08); }

.step-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 400;
  color: var(--brand);
  opacity: 0.4;
  line-height: 1;
  min-width: 3rem;
}

.step-content h3 {
  font-family: var(--font-display);
  font-size: clamp(1.375rem, 2vw, 1.75rem);
  font-weight: 400;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.step-content p {
  color: var(--text-dim);
  max-width: 540px;
  line-height: 1.75;
}

/* ═══════════ S5 — ABOUT ═══════════ */
.about {
  background: var(--bg-alt);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 5vw, 6rem);
  align-items: center;
}

.about-photo-frame.glass-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  padding: 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.about-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  aspect-ratio: 4/5;
  border-radius: calc(var(--radius-xl) - 4px);
}

.about-text h2 {
  margin-bottom: 0.5rem;
}

.about-role {
  color: var(--text-dim);
  font-size: 0.938rem;
  margin-bottom: 1.5rem;
}

.about-quote.glass-card {
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 1.5vw, 1.375rem);
  font-weight: 400;
  font-style: italic;
  color: var(--text);
  padding: 1.5rem 2rem;
  margin-bottom: 1.75rem;
  border-left: 3px solid var(--brand);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  line-height: 1.6;
}

.about-text p {
  color: var(--text-dim);
  margin-bottom: 1.25rem;
  line-height: 1.75;
}

.about-text strong {
  color: var(--text);
}

/* ═══════════ S6 — DIFFERENTIATORS ═══════════ */
.differentiators {
  background: var(--bg);
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.diff-item.glass-card {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}

.diff-item.glass-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(90, 175, 224, 0.2);
  transform: translateY(-4px);
}

.diff-item h3 {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 1.8vw, 1.5rem);
  font-weight: 400;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.diff-item p {
  color: var(--text-dim);
  line-height: 1.75;
  font-size: 0.938rem;
}

/* ═══════════ S7 — FAQ ═══════════ */
.faq {
  background: var(--bg-alt);
}

.faq-list.glass-card {
  max-width: 760px;
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

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

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 1.5vw, 1.25rem);
  font-weight: 400;
  cursor: pointer;
  list-style: none;
  color: var(--text);
  transition: color 0.3s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--brand);
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 1rem;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item summary:hover { color: var(--brand); }

.faq-item p {
  padding: 0 0 1.5rem;
  color: var(--text-dim);
  line-height: 1.75;
}

/* ═══════════ IMPACT BLOCK ═══════════ */
.impact-block {
  background: var(--bg);
  text-align: center;
  padding: clamp(5rem, 10vw, 8rem) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.impact-text {
  max-width: 720px;
  margin: 0 auto;
}

.impact-text p {
  font-family: var(--font-display);
  font-size: clamp(1.375rem, 2.5vw, 2rem);
  font-weight: 400;
  line-height: 1.4;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.impact-text p:last-child {
  margin-bottom: 0;
}

.impact-text strong {
  color: var(--brand);
}

/* ═══════════ S6 — RESULTS ═══════════ */
.results {
  background: var(--bg-alt);
}

/* ═══════════ TESTIMONIALS ═══════════ */
.testimonials {
  background: var(--bg);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.wa-bubble.glass-card {
  padding: 1.5rem 1.75rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg) var(--radius-lg) var(--radius-lg) 4px;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}

.wa-bubble.glass-card:hover {
  border-color: rgba(37, 211, 102, 0.3);
  transform: translateY(-2px);
}

.wa-bubble::before {
  content: '';
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' fill='%2325D366' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.004 0h-.008C7.174 0 0 7.176 0 16.004c0 3.5 1.128 6.742 3.046 9.376L1.054 31.28l6.156-1.964A15.9 15.9 0 0016.004 32C24.826 32 32 24.826 32 16.004S24.826 0 16.004 0z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.35;
}

.wa-text {
  font-size: 0.938rem;
  color: var(--text);
  line-height: 1.75;
  font-style: italic;
}

.wa-meta {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #25D366;
  opacity: 0.7;
}

.results h2 strong {
  color: var(--brand);
  font-weight: 400;
  font-size: 1.15em;
}

/* ═══════════ S8 — CTA FINAL ═══════════ */
.cta-final {
  text-align: center;
  padding: clamp(6rem, 12vw, 10rem) 0;
}

.cta-glass {
  max-width: 700px;
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 4vw, 4rem);
}

.cta-final h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.cta-copy {
  color: var(--text-dim);
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.cta-micro {
  margin-top: 1.5rem;
  font-size: 0.813rem;
  color: var(--text-light);
}

/* ── CONTACT FORM ── */
.contact-form {
  max-width: 480px;
  margin: 0 auto 1.5rem;
  text-align: left;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label,
.form-group legend {
  display: block;
  font-size: 0.813rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-dim);
  margin-bottom: 0.5rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"] {
  width: 100%;
  padding: 0.875rem 1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.3s, background 0.3s;
}

.form-group input:focus {
  outline: none;
  border-color: var(--brand);
  background: rgba(255, 255, 255, 0.09);
}

.form-group input::placeholder {
  color: var(--text-light);
  opacity: 0.6;
}

.form-radio-group {
  border: none;
  padding: 0;
}

.form-radio-group legend {
  font-size: 0.813rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-dim);
  margin-bottom: 0.75rem;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  margin-bottom: 0.5rem;
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s;
}

.radio-option:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.07);
}

.radio-option input[type="radio"] {
  accent-color: var(--brand);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.radio-option span {
  font-size: 0.938rem;
  color: var(--text);
}

.btn-full {
  width: 100%;
  text-align: center;
  margin-top: 0.5rem;
}

/* ═══════════ FOOTER ═══════════ */
.footer {
  background: #080a0e;
  color: #e5e7eb;
  padding: 4rem 0 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-logo-img { height: 36px; width: auto; margin-bottom: 1rem; }

.footer-brand p {
  color: rgba(255,255,255,0.35);
  font-size: 0.875rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.35);
  transition: color 0.3s;
}
.footer-links a:hover { color: #fff; }

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-contact a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.35);
  transition: color 0.3s;
}
.footer-contact a:hover { color: #fff; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
}
.footer-bottom p {
  font-size: 0.813rem;
  color: rgba(255,255,255,0.2);
}
.footer-legal {
  display: flex;
  gap: 1.5rem;
}
.footer-legal a {
  font-size: 0.813rem;
  color: rgba(255,255,255,0.2);
  transition: color 0.3s;
}
.footer-legal a:hover { color: #fff; }

/* ═══════════ WHATSAPP FLOAT ═══════════ */
.wa-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 900;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.25);
  transition: transform 0.2s, box-shadow 0.2s;
}
.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35);
}

/* ═══════════ MOBILE ═══════════ */
@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(14, 17, 23, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    z-index: 999;
  }
  .nav-links.open {
    opacity: 1;
    pointer-events: all;
  }
  .nav-links a { font-size: 1.25rem; color: var(--text); }

  .hero-inner {
    min-height: auto;
    padding-top: 12vh;
    padding-bottom: 1rem;
  }

  .hero-content.glass-card {
    padding: 1.25rem;
    max-width: 100%;
    border-radius: var(--radius-lg);
  }

  .hero h1 {
    font-size: 1.65rem;
    line-height: 1.15;
    margin-bottom: 0.5rem;
  }

  .hero-sub {
    font-size: 0.85rem;
    margin-bottom: 1rem;
  }

  .hero-ctas {
    flex-direction: column;
    gap: 0.6rem;
  }

  .hero-ctas .btn {
    text-align: center;
    justify-content: center;
    padding: 0.65rem 1.25rem;
    font-size: 0.85rem;
  }

  .hero-pillars.glass-card {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    padding: 1.5rem;
  }

  .hero-pillar-divider { display: none; }

  .hero-pillars-wrap {
    transform: translateY(0);
    padding: 0 0 2rem;
    margin-top: 1.5rem;
  }

  .services {
    padding-top: var(--space-section);
  }

  .section-glass {
    padding: 1.5rem;
    border-radius: var(--radius-lg);
  }

  .pillar {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .diff-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .problems-list {
    grid-template-columns: 1fr;
  }

  .hero-trust {
    flex-direction: column;
    gap: 0.25rem;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
  }
  .hero-trust span {
    font-size: 0.75rem;
  }

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

  .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-photo { order: -1; }
  .about-photo-frame { max-width: 360px; margin: 0 auto; }

  .about-quote.glass-card {
    text-align: left;
  }

  .faq-list.glass-card {
    padding: 0.5rem 1.25rem;
  }

  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}
