/*
Theme Name: GDomingos — Fitness Coach Portfolio
Theme URI: https://gdomingos.com
Author: Gabriel Domingos
Description: Custom portfolio for AI-powered web design services for online fitness coaches & personal trainers.
Version: 2.0
*/

/* ============================================================
   1. RESET + BASE
   ============================================================ */
*,
*::before,
*::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }

/* ============================================================
   2. TOKENS
   ============================================================ */
:root {
  /* surfaces */
  --bg:        #FFFFFF;
  --surface:   #F8FAFC;
  --surface-2: #F1F5F9;
  --line:      #E2E8F0;

  /* ink */
  --ink:       #0A0E1A;
  --ink-2:     #1E293B;
  --ink-3:     #334155;
  --muted:     #64748B;
  --soft:      #94A3B8;

  /* accents — fitness energy */
  --lime:      #A3E635;
  --lime-2:    #84CC16;
  --lime-soft: #ECFCCB;

  --orange:    #F97316;
  --orange-2:  #EA580C;
  --orange-soft:#FFEDD5;

  --blue:      #06B6D4;
  --red:       #EF4444;

  /* shadows */
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, .06);
  --shadow:    0 8px 24px rgba(15, 23, 42, .08);
  --shadow-lg: 0 20px 48px rgba(15, 23, 42, .14);
  --shadow-xl: 0 30px 80px rgba(10, 14, 26, .25);

  /* radii */
  --r-sm: 8px;
  --r:    14px;
  --r-lg: 20px;
  --r-xl: 28px;

  /* layout */
  --wrap: 1200px;
  --gutter: clamp(20px, 4vw, 40px);

  /* motion */
  --ease: cubic-bezier(.2,.7,.2,1);
}

/* ============================================================
   3. TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 {
  margin: 0 0 .5em;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4.4rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 3rem); letter-spacing: -0.025em; }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); letter-spacing: -0.015em; }
h4 { font-size: 1.05rem; font-weight: 700; }

p  { margin: 0 0 1em; color: var(--ink-3); }
.lead { font-size: clamp(1.05rem, 1.4vw, 1.25rem); color: var(--ink-3); line-height: 1.55; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--lime-soft);
  color: var(--ink-2);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 999px;
  background: var(--lime-2);
  box-shadow: 0 0 0 4px rgba(132, 204, 22, .2);
}

.section-head { max-width: 760px; margin: 0 auto 56px; text-align: center; }
.section-head .eyebrow { margin-bottom: 18px; }

/* ============================================================
   4. LAYOUT HELPERS
   ============================================================ */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

section { padding: clamp(72px, 10vw, 120px) 0; position: relative; }
.section--surface  { background: var(--surface); }
.section--ink      { background: var(--ink); color: #E2E8F0; }
.section--ink h1, .section--ink h2, .section--ink h3, .section--ink h4 { color: #fff; }
.section--ink p   { color: rgba(226, 232, 240, .75); }

/* ============================================================
   5. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .98rem;
  letter-spacing: -0.01em;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
  white-space: nowrap;
}

.btn svg { width: 18px; height: 18px; }

.btn--primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 8px 20px rgba(249, 115, 22, .35);
}
.btn--primary:hover {
  background: var(--orange-2);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(249, 115, 22, .45);
}

.btn--lime {
  background: var(--lime);
  color: var(--ink);
  box-shadow: 0 8px 20px rgba(132, 204, 22, .35);
}
.btn--lime:hover {
  background: var(--lime-2);
  color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(132, 204, 22, .45);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line);
}
.btn--ghost:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
  transform: translateY(-2px);
}

.btn--ghost-light {
  background: rgba(255,255,255,.05);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.18);
}
.btn--ghost-light:hover {
  background: #fff;
  color: var(--ink);
  transform: translateY(-2px);
}

.btn--lg { padding: 18px 32px; font-size: 1.05rem; }

/* ============================================================
   6. HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.site-header.scrolled {
  background: rgba(255, 255, 255, .94);
  border-bottom-color: var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--ink);
  font-size: 1.05rem;
}
.brand__mark {
  width: 34px; height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--lime) 0%, var(--orange) 100%);
  display: grid; place-items: center;
  color: var(--ink);
  font-weight: 900;
  font-size: 1.05rem;
  box-shadow: var(--shadow-sm);
}

.nav { display: flex; align-items: center; gap: 32px; }
.nav a {
  font-size: .95rem;
  font-weight: 600;
  color: var(--ink-3);
  transition: color .2s var(--ease);
}
.nav a:hover { color: var(--ink); }

.nav__cta { margin-left: 8px; }

.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #fff;
  align-items: center; justify-content: center;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  display: block;
  width: 18px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .25s var(--ease), opacity .25s var(--ease);
}
.nav-toggle span { position: relative; }
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after  { position: absolute; top:  6px; }

@media (max-width: 880px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: absolute;
    top: 72px; left: 16px; right: 16px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: 18px;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    box-shadow: var(--shadow);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: transform .25s var(--ease), opacity .25s var(--ease);
  }
  .nav a { padding: 10px 12px; border-radius: 10px; }
  .nav a:hover { background: var(--surface); }
  .nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav__cta { margin: 4px 0 0; }
  .nav__cta .btn { width: 100%; }
}

/* ============================================================
   7. HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 160px 0 90px;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 10%, rgba(163, 230, 53, .18), transparent 55%),
    radial-gradient(circle at 5% 90%, rgba(249, 115, 22, .12), transparent 55%),
    linear-gradient(180deg, #FAFBFC 0%, #FFFFFF 100%);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; gap: 48px; }
}

.hero h1 { margin-bottom: 22px; }
.hero h1 .accent {
  background: linear-gradient(120deg, var(--orange) 0%, var(--lime-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__sub { font-size: clamp(1.05rem, 1.4vw, 1.2rem); color: var(--ink-3); margin-bottom: 30px; max-width: 540px; }

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

.hero__trust {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 38px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}
.hero__avatars { display: flex; }
.hero__avatars span {
  width: 38px; height: 38px;
  border-radius: 999px;
  border: 2px solid #fff;
  margin-left: -10px;
  background: linear-gradient(135deg, #94A3B8, #64748B);
  display: grid; place-items: center;
  color: #fff;
  font-weight: 700;
  font-size: .8rem;
  box-shadow: var(--shadow-sm);
}
.hero__avatars span:first-child { margin-left: 0; }
.hero__avatars span:nth-child(2){ background: linear-gradient(135deg, var(--lime), var(--lime-2)); color: var(--ink); }
.hero__avatars span:nth-child(3){ background: linear-gradient(135deg, var(--orange), var(--orange-2)); }
.hero__avatars span:nth-child(4){ background: linear-gradient(135deg, #06B6D4, #0E7490); }

.hero__trust-text { font-size: .92rem; color: var(--ink-3); }
.hero__trust-text strong { color: var(--ink); display: block; font-size: 1rem; margin-bottom: 2px; }

/* Hero visual mock */
.hero__visual {
  position: relative;
  height: 540px;
}
@media (max-width: 980px) { .hero__visual { height: 460px; } }

.mock {
  position: absolute;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
}
.mock--main {
  inset: 20px 0 20px 40px;
  z-index: 2;
  transform: rotate(-1.2deg);
}
.mock--card {
  width: 220px;
  bottom: 30px;
  left: -20px;
  z-index: 3;
  background: #fff;
  border-radius: var(--r);
  padding: 18px;
  box-shadow: var(--shadow-lg);
  transform: rotate(2deg);
  border: 1px solid var(--line);
}
.mock--card .label { font-size: .72rem; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; font-weight: 700; }
.mock--card .stat { font-size: 2rem; font-weight: 800; color: var(--ink); margin: 6px 0 4px; letter-spacing: -.02em; }
.mock--card .stat .up { color: var(--lime-2); }
.mock--card .desc { font-size: .82rem; color: var(--muted); margin: 0; }
.mock--card .spark { display: flex; align-items: flex-end; gap: 4px; height: 30px; margin-top: 12px; }
.mock--card .spark i {
  flex: 1;
  background: linear-gradient(180deg, var(--lime) 0%, var(--lime-2) 100%);
  border-radius: 3px;
  display: block;
}

.mock--badge {
  width: 200px;
  top: 0;
  right: -10px;
  z-index: 3;
  background: var(--ink);
  color: #fff;
  border-radius: var(--r);
  padding: 16px 18px;
  box-shadow: var(--shadow-lg);
  transform: rotate(3deg);
  border: 1px solid var(--ink-2);
}
.mock--badge .row { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.mock--badge .dot { width: 8px; height: 8px; border-radius: 999px; background: var(--lime); box-shadow: 0 0 0 4px rgba(163, 230, 53, .25); }
.mock--badge .row span { font-size: .78rem; color: rgba(255,255,255,.7); font-weight: 600; letter-spacing: .05em; text-transform: uppercase; }
.mock--badge h4 { color: #fff; margin: 0 0 2px; font-size: 1rem; }
.mock--badge p { color: rgba(255,255,255,.65); font-size: .82rem; margin: 0; }

@media (max-width: 980px) {
  .mock--main  { inset: 10px 20px 10px 20px; }
  .mock--card  { left: 0; bottom: 0; width: 200px; }
  .mock--badge { right: 0; top: 0; width: 180px; }
}

/* ============================================================
   8. STATS BAR
   ============================================================ */
.stats {
  background: var(--ink);
  color: #fff;
  padding: 36px 0;
  border-top: 1px solid var(--ink-2);
  border-bottom: 1px solid var(--ink-2);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stats__num {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--lime);
  line-height: 1;
}
.stats__label {
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  margin-top: 6px;
  font-weight: 500;
}
@media (max-width: 720px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 28px 18px; }
}

/* ============================================================
   9. PROBLEM
   ============================================================ */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 980px) { .problem-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .problem-grid { grid-template-columns: 1fr; } }

.problem-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 28px 24px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.problem-card__icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--orange-soft);
  color: var(--orange-2);
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.problem-card__icon svg { width: 24px; height: 24px; }
.problem-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.problem-card p { font-size: .92rem; margin: 0; color: var(--ink-3); }

/* ============================================================
   10. CASE STUDIES
   ============================================================ */
.case {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: var(--shadow-sm);
}
.case:last-child { margin-bottom: 0; }

.case__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
@media (max-width: 980px) { .case__top { grid-template-columns: 1fr; } }

.case__viewer {
  position: relative;
  background: linear-gradient(135deg, #F1F5F9 0%, #E2E8F0 100%);
  padding: 32px;
  min-height: 420px;
  display: grid;
  place-items: center;
}

.case__frames {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 4 / 3;
}

.case__frame {
  position: absolute;
  inset: 0;
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #fff;
  opacity: 0;
  transform: scale(.97);
  transition: opacity .4s var(--ease), transform .4s var(--ease);
  pointer-events: none;
}
.case__frame.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}
.case__frame svg { width: 100%; height: 100%; display: block; }

.case__badge {
  position: absolute;
  top: 18px; left: 18px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  z-index: 5;
  transition: background .3s var(--ease);
}
.case__badge.is-after { background: var(--lime-2); color: var(--ink); }

.case__toggle {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px;
  box-shadow: var(--shadow);
  z-index: 5;
}
.case__toggle button {
  padding: 8px 18px;
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 700;
  color: var(--muted);
  transition: background .25s var(--ease), color .25s var(--ease);
}
.case__toggle button.active {
  background: var(--ink);
  color: #fff;
}
.case__toggle button.active[data-state="after"] {
  background: var(--lime-2);
  color: var(--ink);
}

.case__body {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.case__name {
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 8px;
}
.case__body h3 { margin-bottom: 16px; font-size: clamp(1.4rem, 2.2vw, 1.8rem); }

.case__quote {
  font-size: .98rem;
  color: var(--ink-3);
  line-height: 1.6;
  margin-bottom: 24px;
}

.case__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 24px;
  padding: 20px;
  background: var(--surface);
  border-radius: var(--r);
}
.metric__num {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -.02em;
  line-height: 1.1;
}
.metric__num .up { color: var(--lime-2); }
.metric__label {
  font-size: .75rem;
  color: var(--muted);
  margin-top: 4px;
  font-weight: 500;
  line-height: 1.3;
}

.case__changes {
  list-style: none;
  margin: 0;
  padding: 0;
}
.case__changes li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: .94rem;
  color: var(--ink-2);
}
.case__changes li::before {
  content: "";
  flex-shrink: 0;
  width: 20px; height: 20px;
  border-radius: 999px;
  background: var(--lime-soft) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2384CC16' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/12px no-repeat;
  margin-top: 1px;
}

/* ============================================================
   11. APPROACH
   ============================================================ */
.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 980px) { .approach-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .approach-grid { grid-template-columns: 1fr; } }

.approach-card {
  position: relative;
  padding: 32px 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.approach-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: transparent;
}

.approach-card__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: grid; place-items: center;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--lime-soft), #fff);
  color: var(--lime-2);
  border: 1px solid var(--line);
  transition: transform .35s var(--ease);
}
.approach-card:hover .approach-card__icon { transform: rotate(-6deg) scale(1.05); }
.approach-card__icon svg { width: 26px; height: 26px; }

.approach-card:nth-child(2) .approach-card__icon,
.approach-card:nth-child(5) .approach-card__icon {
  background: linear-gradient(135deg, var(--orange-soft), #fff);
  color: var(--orange-2);
}

.approach-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.approach-card p  { font-size: .94rem; margin: 0; color: var(--ink-3); }

/* ============================================================
   12. WHY US — comparison
   ============================================================ */
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 12px;
}
@media (max-width: 880px) { .compare { grid-template-columns: 1fr; } }

.compare__col {
  border-radius: var(--r-lg);
  padding: 36px 30px;
}
.compare__col--bad {
  background: var(--surface);
  border: 1px solid var(--line);
}
.compare__col--good {
  background: var(--ink);
  color: #fff;
  border: 1px solid var(--ink-2);
  position: relative;
  overflow: hidden;
}
.compare__col--good::before {
  content: "";
  position: absolute;
  top: -40%; right: -30%;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(163,230,53,.18), transparent 60%);
  pointer-events: none;
}

.compare__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.compare__col--good .compare__head { border-bottom-color: rgba(255,255,255,.12); }

.compare__tag {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 6px;
  background: rgba(239, 68, 68, .12);
  color: var(--red);
}
.compare__col--good .compare__tag {
  background: rgba(163, 230, 53, .15);
  color: var(--lime);
}

.compare__col h3 { margin: 0; font-size: 1.2rem; }
.compare__col--good h3 { color: #fff; }

.compare__list { list-style: none; padding: 0; margin: 0; }
.compare__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  font-size: .98rem;
  color: var(--ink-2);
  border-bottom: 1px dashed var(--line);
}
.compare__list li:last-child { border-bottom: 0; }

.compare__col--good .compare__list li {
  color: rgba(255,255,255,.88);
  border-bottom-color: rgba(255,255,255,.08);
}

.compare__list li::before {
  content: "";
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 999px;
  margin-top: 1px;
  background: rgba(239, 68, 68, .12) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23EF4444' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><line x1='18' y1='6' x2='6' y2='18'/><line x1='6' y1='6' x2='18' y2='18'/></svg>") center/12px no-repeat;
}

.compare__col--good .compare__list li::before {
  background: rgba(163, 230, 53, .15) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23A3E635' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/12px no-repeat;
}

/* ============================================================
   13. DELIVERABLES
   ============================================================ */
.delivery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 980px) { .delivery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .delivery-grid { grid-template-columns: 1fr; } }

.delivery {
  padding: 22px 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  transition: transform .25s var(--ease), border-color .25s var(--ease);
}
.delivery:hover {
  transform: translateY(-3px);
  border-color: var(--lime-2);
}
.delivery__check {
  width: 32px; height: 32px;
  border-radius: 999px;
  background: var(--lime-soft);
  color: var(--lime-2);
  display: grid; place-items: center;
  margin-bottom: 14px;
}
.delivery__check svg { width: 16px; height: 16px; }
.delivery h4 { margin: 0 0 4px; font-size: .98rem; }
.delivery p { font-size: .85rem; margin: 0; color: var(--muted); }

/* device showcase */
.devices {
  margin-top: 64px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}
.device {
  background: var(--ink);
  border-radius: 18px;
  padding: 12px;
  box-shadow: var(--shadow-lg);
  flex-shrink: 0;
}
.device__screen {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
}
.device--desktop { width: 420px; }
.device--desktop .device__screen { aspect-ratio: 16/10; }
.device--tablet  { width: 220px; }
.device--tablet  .device__screen { aspect-ratio: 3/4; }
.device--phone   { width: 130px; border-radius: 22px; padding: 8px; }
.device--phone   .device__screen { aspect-ratio: 9/19; border-radius: 14px; }

.device__screen svg { width: 100%; height: 100%; }

@media (max-width: 720px) {
  .device--desktop { width: 100%; max-width: 320px; }
  .device--tablet  { width: 160px; }
  .device--phone   { width: 100px; }
}

/* ============================================================
   14. CTA SECTION
   ============================================================ */
.cta {
  background:
    radial-gradient(circle at 20% 0%, rgba(163, 230, 53, .12), transparent 50%),
    radial-gradient(circle at 100% 100%, rgba(249, 115, 22, .10), transparent 50%),
    var(--ink);
  color: #fff;
  text-align: center;
}
.cta h2 { color: #fff; max-width: 720px; margin: 0 auto 16px; }
.cta p  { color: rgba(255,255,255,.72); max-width: 600px; margin: 0 auto 36px; font-size: 1.1rem; }

.cta__buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.cta__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: .9rem;
  color: rgba(255,255,255,.65);
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.1);
  max-width: 640px;
  margin: 0 auto;
}
.cta__meta span { display: inline-flex; align-items: center; gap: 8px; }
.cta__meta .pulse {
  width: 8px; height: 8px;
  border-radius: 999px;
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(163, 230, 53, .25);
}

/* ============================================================
   15. FOOTER
   ============================================================ */
.footer {
  background: #050810;
  color: rgba(255,255,255,.7);
  padding: 60px 0 28px;
  font-size: .92rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 880px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 520px) { .footer__grid { grid-template-columns: 1fr; gap: 28px; } }

.footer h5 {
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 14px;
  font-weight: 700;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { padding: 5px 0; }
.footer ul a { transition: color .2s var(--ease); }
.footer ul a:hover { color: var(--lime); }

.footer__brand p { color: rgba(255,255,255,.6); font-size: .92rem; margin: 14px 0 0; max-width: 320px; }

.footer__social { display: flex; gap: 10px; }
.footer__social a {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  display: grid; place-items: center;
  transition: background .2s var(--ease), border-color .2s var(--ease);
}
.footer__social a:hover { background: var(--lime); border-color: var(--lime); color: var(--ink); }
.footer__social svg { width: 16px; height: 16px; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .82rem;
  color: rgba(255,255,255,.5);
}

/* ============================================================
   17. ABOUT ME (personal section)
   ============================================================ */
.about {
  background: var(--surface);
  position: relative;
  overflow: hidden;
}
.about__grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 880px) {
  .about__grid { grid-template-columns: 1fr; gap: 40px; }
}

.about__photo-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
  max-width: 380px;
  margin: 0 auto;
}
.about__photo {
  position: absolute;
  inset: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, #1E293B 0%, #0A0E1A 100%);
}
.about__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.about__photo-fallback {
  display: grid;
  place-items: center;
  width: 100%; height: 100%;
  background:
    radial-gradient(circle at 30% 25%, rgba(163,230,53,.35), transparent 55%),
    radial-gradient(circle at 75% 80%, rgba(249,115,22,.30), transparent 55%),
    linear-gradient(135deg, #1E293B 0%, #0A0E1A 100%);
  color: #fff;
  font-weight: 900;
  font-size: clamp(5rem, 12vw, 9rem);
  letter-spacing: -.04em;
  font-family: 'Inter', sans-serif;
  position: relative;
}
.about__photo-fallback::after {
  content: "Replace with your photo at /assets/gabriel.jpg";
  position: absolute;
  bottom: 16px; left: 16px; right: 16px;
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .04em;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
}

/* Floating label on photo */
.about__chip {
  position: absolute;
  z-index: 3;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
}
.about__chip--top {
  top: -16px; right: -22px;
  transform: rotate(3deg);
}
.about__chip--bot {
  bottom: -20px; left: -22px;
  transform: rotate(-3deg);
}
.about__chip-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--lime-soft);
  color: var(--lime-2);
  display: grid; place-items: center;
}
.about__chip-icon svg { width: 18px; height: 18px; }
.about__chip--bot .about__chip-icon { background: var(--orange-soft); color: var(--orange-2); }
.about__chip-text {
  font-size: .75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 700;
  line-height: 1.1;
}
.about__chip-text strong {
  display: block;
  color: var(--ink);
  font-size: 1rem;
  text-transform: none;
  letter-spacing: -.01em;
  margin-top: 2px;
}

@media (max-width: 880px) {
  .about__chip--top { top: -10px; right: 8px; }
  .about__chip--bot { bottom: -14px; left: 8px; }
}

.about__copy h2 { margin-bottom: 22px; }
.about__copy p {
  font-size: 1.04rem;
  line-height: 1.7;
  color: var(--ink-2);
  margin-bottom: 18px;
}
.about__copy p strong { color: var(--ink); }

.about__sig {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 14px;
  padding: 12px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .95rem;
  color: var(--ink-2);
}
.about__sig strong { color: var(--ink); margin-right: 4px; }
.about__sig em {
  color: var(--lime-2);
  font-style: normal;
  font-weight: 700;
}

/* ============================================================
   18. BACKGROUND CREDIBILITY STRIP
   ============================================================ */
.cred {
  background: var(--ink);
  color: #fff;
  padding: 56px 0;
  border-top: 1px solid var(--ink-2);
  border-bottom: 1px solid var(--ink-2);
  position: relative;
  overflow: hidden;
}
.cred::before {
  content: "";
  position: absolute;
  top: -50%; left: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(163,230,53,.10), transparent 60%);
  pointer-events: none;
}
.cred__inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: center;
  position: relative;
}
@media (max-width: 880px) {
  .cred__inner { grid-template-columns: 1fr; gap: 28px; }
}

.cred__lead { font-size: 1.05rem; color: rgba(255,255,255,.78); line-height: 1.6; margin: 0; }
.cred__lead strong { color: #fff; }

.cred__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 720px) { .cred__items { grid-template-columns: repeat(2, 1fr); gap: 20px 14px; } }

.cred__item {
  padding: 14px 0;
}
.cred__item-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--lime);
  letter-spacing: -.02em;
  line-height: 1;
}
.cred__item-label {
  font-size: .82rem;
  color: rgba(255,255,255,.6);
  margin-top: 6px;
}

/* ============================================================
   19. COMPARISON TABLE (Why Coaches Choose Me)
   ============================================================ */
.vs {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-top: 12px;
}
.vs__row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-bottom: 1px solid var(--line);
}
.vs__row:last-child { border-bottom: 0; }

.vs__cell {
  padding: 18px 24px;
  font-size: .96rem;
  color: var(--ink-2);
  display: flex;
  align-items: center;
  gap: 12px;
}
.vs__cell:nth-child(1) {
  font-weight: 700;
  color: var(--ink);
  background: var(--surface);
  border-right: 1px solid var(--line);
}
.vs__cell:nth-child(2) {
  color: var(--muted);
  border-right: 1px solid var(--line);
}
.vs__cell:nth-child(3) {
  background: rgba(163, 230, 53, 0.06);
  color: var(--ink-2);
  font-weight: 600;
  position: relative;
}

.vs__head {
  background: var(--ink) !important;
}
.vs__head .vs__cell {
  color: #fff !important;
  background: transparent !important;
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 18px 24px;
  border-color: rgba(255,255,255,.08) !important;
}
.vs__head .vs__cell:nth-child(3) {
  color: var(--lime) !important;
}

.vs__icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 999px;
  display: grid; place-items: center;
}
.vs__icon--no {
  background: rgba(239, 68, 68, .12);
  color: var(--red);
}
.vs__icon--yes {
  background: rgba(132, 204, 22, .15);
  color: var(--lime-2);
}
.vs__icon svg { width: 12px; height: 12px; }

@media (max-width: 720px) {
  .vs__row { grid-template-columns: 1fr; }
  .vs__cell { border-right: 0 !important; padding: 14px 20px; }
  .vs__cell:nth-child(1) { padding-bottom: 6px; font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }
  .vs__cell:nth-child(2) { padding-top: 6px; padding-bottom: 6px; }
  .vs__cell:nth-child(2)::before {
    content: "Other agencies — ";
    font-weight: 700;
    color: var(--red);
    margin-right: 4px;
  }
  .vs__cell:nth-child(3)::before {
    content: "With me — ";
    font-weight: 700;
    color: var(--lime-2);
    margin-right: 4px;
  }
  .vs__head .vs__cell { display: none; }
  .vs__head .vs__cell:nth-child(1) { display: flex; padding: 18px 20px; font-size: .82rem; }
}

/* ============================================================
   16. REVEAL ANIMATIONS
   ============================================================ */
.reveal { opacity: 1; }
html.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
html.js .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  html.js .reveal { opacity: 1; transform: none; }
}
