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

:root {
  --bg:            #ffffff;
  --bg-surface:    #f5f5f3;
  --bg-card:       #ffffff;
  --bg-card-hover: #f5f5f3;
  --border:        rgba(0,0,0,0.08);
  --border-strong: rgba(0,0,0,0.15);
  --text-primary:  #111110;
  --text-secondary:#6b6b68;
  --text-tertiary: #b0b0ac;
  --accent:        rgb(1,157,152);
  --accent-hover:  rgb(1,175,170);
  --accent-muted:  rgba(1,157,152,0.08);
  --accent-border: rgba(1,157,152,0.25);
  --green:         #1a9e6e;
  --green-muted:   rgba(26,158,110,0.10);
  --blue:          #2a7de1;
  --blue-muted:    rgba(42,125,225,0.10);
  --radius-sm:     8px;
  --radius:        14px;
  --radius-lg:     20px;
  --font-display:  'Bricolage Grotesque', sans-serif;
  --font-body:     'DM Sans', sans-serif;
  --max-w:         1100px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

 
/* ── UTILITIES ─────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section    { padding: 100px 0; }
.section-sm { padding: 60px 0; }

.label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--accent); font-weight: 500; margin-bottom: 20px;
}
.label::before {
  content: ''; display: block; width: 20px; height: 1px; background: var(--accent);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 500;
  line-height: 1.15;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 540px;
  line-height: 1.7;
  margin-top: 16px;
}

.divider {
  border: none;
  border-top: 1px solid var(--border);
}

/* NAV */
 


/* ── NAV ───────────────────────────────────── */
 
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 0;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}
nav.scrolled {
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 17px; font-weight: 500;
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: -0.01em;
}

.nav-brand{font-family:var(--font-display);font-size:15px;font-weight:700;letter-spacing:-0.03em;color:var(--ink);text-decoration:none}
.nav-brand span{color:var(--accent)} 

/* .nav-logo span { color: var(--accent); } */
.nav-logo img { max-width: 200px; padding-top: 10px;}

.nav-links {
  display: flex; align-items: center; gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 14px; color: var(--text-secondary);
  text-decoration: none; transition: color 0.2s;
}
.nav-links a:hover { color: var(--text-primary); }

.btn-nav {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--accent); color: #ffffff;
  font-size: 13px; font-weight: 500;
  padding: 9px 20px; border-radius: var(--radius-sm);
  text-decoration: none; transition: background 0.2s;
}
.btn-nav:hover { background: var(--accent-hover); }

.nav-mobile-btn { display: none; background: none; border: none; cursor: pointer; color: var(--text-primary); }
.nav-cta-mobile { display: none; }

/* ── HERO ──────────────────────────────────── */
#hero {
  padding: 110px 0 25px;
  position: relative; overflow: hidden;
}
#hero::before {
  content: '';
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(1,157,152,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
}
@media (min-width: 900px) {  
.hero-photo-wrap {
 
 border-radius: var(--radius-lg);
 display: block;
 position: relative; z-index: 1; 
 background-image: url('https://jesusdelgado.dev/blog/wp-content/uploads/2025/10/home-fix.png'); 
 background-size: cover; 
 background-position: center center; 
 background-repeat: no-repeat; 
 min-height: 800px;
 /*top: -135px;*/
 margin: 0;
 padding: 0;
 /*background-color: red;*/
}
.hero-photo {  
} 
.hero-photo-bg {
  position: absolute;
  inset: 16px -16px -16px 16px;
  background: var(--accent-muted);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius-lg);
  z-index: 0;
} }

.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent-muted);
  border: 1px solid var(--accent-border);
  color: var(--accent);
  font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px;
  margin-bottom: 32px;
}
.hero-tag::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); flex-shrink: 0;
  animation: pulse 2s ease infinite;
} 
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 68px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.03em;
  max-width: 800px;
  margin-bottom: 24px;
}
.hero-title em {
  font-style: normal;
  color: var(--accent);
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 44px;
}

.hero-ctas {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: #ffffff;
  font-size: 15px; font-weight: 500;
  padding: 14px 28px; border-radius: var(--radius-sm);
  text-decoration: none; transition: all 0.2s;
}
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-1px); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--text-secondary); font-size: 15px;
  padding: 14px 20px; text-decoration: none;
  transition: color 0.2s;
}
.btn-secondary:hover { color: var(--text-primary); }
.btn-secondary svg { opacity: 0.5; transition: opacity 0.2s; }
.btn-secondary:hover svg { opacity: 1; }

.hero-stats {
  display: flex; align-items: center; gap: 48px;
  margin-top: 72px; padding-top: 48px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap; gap: 32px;
}
.hero-stat {}
.hero-stat-number {
  font-family: var(--font-display);
  font-size: 36px; font-weight: 500;
  color: var(--text-primary); letter-spacing: -0.02em;
  line-height: 1;
}
.hero-stat-label {
  font-size: 13px; color: var(--text-secondary); margin-top: 4px;
}
.hero-stat-divider {
  width: 1px; height: 50px; background: var(--border);
}

/* ── PAIN ──────────────────────────────────── */
#pain { background: var(--bg-surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.pain-list { list-style: none; margin-top: 40px; display: flex; flex-direction: column; gap: 0; }
.pain-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.pain-item:first-child { border-top: 1px solid var(--border); }
.pain-num {
  font-family: var(--font-display);
  font-size: 12px; font-weight: 500;
  color: var(--text-tertiary); flex-shrink: 0;
  padding-top: 3px; min-width: 20px;
}
.pain-text {
  font-size: 15px; color: var(--text-secondary); line-height: 1.6;
}
.pain-text strong { color: var(--text-primary); font-weight: 500; }

.pain-visual {
  position: sticky; top: 100px;
}
.pain-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.pain-card-title {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 500;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.pain-card-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.pain-card-item:last-child { border-bottom: none; }
.status-dot {
  width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
}
.status-dot.red    { background: #e05555; box-shadow: 0 0 6px rgba(224,85,85,0.5); }
.status-dot.green  { background: var(--green); box-shadow: 0 0 6px rgba(90,170,130,0.4); }
.status-dot.yellow { background: var(--accent); box-shadow: 0 0 6px rgba(201,169,110,0.4); }
.pain-card-item-label { color: var(--text-secondary); flex: 1; }
.pain-card-item-val   { font-size: 13px; }
.pain-card-item-val.red    { color: #e07070; }
.pain-card-item-val.green  { color: var(--green); }
.pain-card-item-val.yellow { color: var(--accent); }

/* ── VALUE ─────────────────────────────────── */
#value {}
.value-header { max-width: 600px; margin-bottom: 64px; }
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.value-card {
  background: var(--bg-surface);
  padding: 36px 32px;
  transition: background 0.2s;
}
.value-card:hover { background: var(--bg-card); }
.value-icon {
  width: 44px; height: 44px;
  background: var(--accent-muted);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  font-size: 20px;
}
.value-card-title {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.value-card-text { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }

/* ── PLANS ─────────────────────────────────── */
#planes { background: var(--bg-surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.plans-header { text-align: center; max-width: 600px; margin: 0 auto 64px; }
.plans-header .label { justify-content: center; }
.plans-header .label::before { display: none; }
.plans-header .label::after {
  content: ''; display: block; width: 20px; height: 1px; background: var(--accent);
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: start;
}

.plan-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex; flex-direction: column; gap: 24px;
  transition: border-color 0.2s;
}
.plan-card:hover { border-color: var(--border-strong); }
.plan-card.featured {
  border-color: var(--accent-border);
  background: var(--bg-card);
  position: relative;
}
.plan-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #ffffff;
  font-size: 11px; font-weight: 500; letter-spacing: 0.05em;
  padding: 4px 14px; border-radius: 100px;
  white-space: nowrap;
}

.plan-header {}
.plan-name {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 500;
  letter-spacing: -0.01em; margin-bottom: 8px;
}
.plan-price {
  font-family: var(--font-display);
  font-size: 40px; font-weight: 500;
  letter-spacing: -0.03em; line-height: 1;
  margin-bottom: 8px;
}
.plan-price sup { font-size: 20px; vertical-align: super; }
.plan-price span { font-size: 14px; font-weight: 400; color: var(--text-secondary); letter-spacing: 0; }
.plan-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

.plan-channel {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  font-size: 13px; color: var(--text-secondary);
}
.plan-channel svg { opacity: 0.6; flex-shrink: 0; }

.plan-features { display: flex; flex-direction: column; gap: 10px; }
.plan-feature {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; line-height: 1.5;
}
.feat-icon { flex-shrink: 0; margin-top: 2px; }
.feat-icon.yes { color: var(--green); }
.feat-icon.no  { color: var(--text-tertiary); }
.feat-icon.star{ color: var(--accent); }
.feat-text     { color: var(--text-secondary); }
.feat-text.highlight { color: var(--text-primary); }

.plan-cta-btn {
  display: block; text-align: center;
  padding: 13px 20px; border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 500; text-decoration: none;
  border: 1px solid var(--border-strong);
  color: var(--text-primary);
  background: transparent;
  transition: all 0.2s; cursor: pointer;
}
.plan-cta-btn:hover { background: var(--bg-card-hover); border-color: var(--border-strong); }
.plan-cta-btn.primary {
  background: var(--accent); color: #ffffff;
  border-color: transparent;
}
.plan-cta-btn.primary:hover { background: var(--accent-hover); }

.plans-fine-print {
  margin-top: 32px; text-align: center;
  font-size: 12px; color: var(--text-tertiary);
  max-width: 680px; margin-left: auto; margin-right: auto;
  line-height: 1.7;
}

/* ── ABOUT ─────────────────────────────────── */
#about {}
.about-grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 80px; align-items: center;
}
.about-text .section-subtitle { max-width: 100%; }
.about-metrics {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2px; margin-top: 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.about-metric {
  background: var(--bg-surface);
  padding: 24px;
}
.about-metric-num {
  font-family: var(--font-display);
  font-size: 36px; font-weight: 500;
  letter-spacing: -0.02em; line-height: 1;
  color: var(--text-primary);
}
.about-metric-label {
  font-size: 13px; color: var(--text-secondary); margin-top: 4px;
}
.about-visual { position: relative; }
.about-card-main {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.about-card-title {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 500;
  letter-spacing: -0.01em; margin-bottom: 24px;
}
.timeline { display: flex; flex-direction: column; gap: 0; }
.timeline-item {
  display: flex; gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.timeline-item:last-child { border-bottom: none; }
.timeline-year {
  font-size: 12px; color: var(--accent);
  font-weight: 500; min-width: 36px; padding-top: 2px;
}
.timeline-text { font-size: 14px; color: var(--text-secondary); line-height: 1.5; }
.timeline-text strong { color: var(--text-primary); font-weight: 500; }

/* ── LOGOS ─────────────────────────────────── */
#logos { background: var(--bg-surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.logos-label {
  text-align: center; font-size: 13px;
  color: var(--text-tertiary); margin-bottom: 40px;
  letter-spacing: 0.04em; text-transform: uppercase;
}
.logos-strip {
  display: flex; align-items: center; justify-content: center;
  gap: 48px; flex-wrap: wrap;
}
.logo-item {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 500;
  color: var(--text-tertiary);
  letter-spacing: -0.01em;
  transition: color 0.2s; 
}
.logo-item:hover { color: var(--text-secondary); }
.logo-item img { border-radius: 10px;} 

/* ── TESTIMONIALS ──────────────────────────── */
#testimonios {}
.test-header { margin-bottom: 56px; }
.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.test-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex; flex-direction: column; gap: 20px;
}
.test-stars { display: flex; gap: 4px; }
.test-star { color: var(--accent); font-size: 14px; }
.test-quote {
  font-size: 15px; color: var(--text-secondary);
  line-height: 1.7; flex: 1;
  font-style: italic;
}
.test-author { display: flex; align-items: center; gap: 12px; }
.test-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--accent-muted);
  border: 1px solid var(--accent-border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 14px; font-weight: 500; color: var(--accent);
  flex-shrink: 0;
}
.test-name { font-size: 14px; font-weight: 500; color: var(--text-primary); }
.test-company { font-size: 12px; color: var(--text-tertiary); }

/* ── FAQ ───────────────────────────────────── */
#faq { background: var(--bg-surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.faq-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; cursor: pointer; gap: 16px;
  font-size: 15px; font-weight: 500; color: var(--text-primary);
  background: none; border: none; width: 100%; text-align: left;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--accent); }
.faq-icon {
  flex-shrink: 0; transition: transform 0.3s ease;
  color: var(--text-tertiary);
}
.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--accent); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  font-size: 14px; color: var(--text-secondary); line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 200px; padding-bottom: 20px; }

/* ── FINAL CTA ─────────────────────────────── */
#cta {
  text-align: center; padding: 120px 0;
  position: relative; overflow: hidden;
}
#cta::before {
  content: '';
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(1,157,152,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.cta-availability {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-muted);
  border: 1px solid rgba(90,170,130,0.3);
  color: var(--green);
  font-size: 12px; padding: 5px 14px; border-radius: 100px;
  margin-bottom: 32px; letter-spacing: 0.04em; text-transform: uppercase;
}
.cta-availability::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--green); flex-shrink: 0;
  animation: pulse 2s ease infinite;
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 500; letter-spacing: -0.03em;
  max-width: 700px; margin: 0 auto 20px;
  line-height: 1.1;
}
.cta-subtitle {
  font-size: 17px; color: var(--text-secondary);
  max-width: 480px; margin: 0 auto 44px;
  line-height: 1.7;
}

/* ── CONTACT ───────────────────────────────── */
#contacto {  padding: 100px 0; border-top: 1px solid var(--border); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 80px; align-items: start;
}
.contact-info { padding-top: 8px; }
.contact-detail {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 20px;
}
.contact-icon {
  width: 36px; height: 36px;
  background: var(--bg-surface); border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--accent); font-size: 16px;
}
.contact-detail-text { font-size: 14px; color: var(--text-secondary); line-height: 1.5; }
.contact-detail-text strong { display: block; color: var(--text-primary); font-weight: 500; margin-bottom: 2px; }
.contact-detail-text a { color: var(--text-secondary); text-decoration: none; transition: color 0.2s; }
.contact-detail-text a:hover { color: var(--accent); }

.contact-form {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 13px; color: var(--text-secondary); margin-bottom: 8px; }
.form-input {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 14px; color: var(--text-primary);
  font-family: var(--font-body);
  transition: border-color 0.2s;
  outline: none;
}
.form-input:focus { border-color: var(--accent-border); }
.form-input::placeholder { color: var(--text-tertiary); }
textarea.form-input { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit {
  width: 100%;
  background: var(--accent); color: #ffffff;
  border: none; border-radius: var(--radius-sm);
  padding: 14px; font-size: 15px; font-weight: 500;
  font-family: var(--font-body); cursor: pointer;
  transition: background 0.2s;
}
.form-submit:hover { background: var(--accent-hover); }
.form-note { font-size: 12px; color: var(--text-tertiary); margin-top: 12px; }

/* ── FOOTER ────────────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  padding: 36px 0;
}
.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 15px; font-weight: 500;
  color: var(--text-secondary);
}
.footer-logo span { color: var(--accent); }
.footer-links-group {
  display: flex; flex-direction: column; gap: 10px; align-items: flex-end;
}
.footer-links {
  display: flex; gap: 20px; list-style: none; flex-wrap: wrap; justify-content: flex-end;
}
.footer-links a {
  font-size: 13px; color: var(--text-tertiary);
  text-decoration: none; transition: color 0.2s;
}
.footer-links a:hover { color: var(--text-secondary); }
.footer-copy { font-size: 13px; color: var(--text-tertiary); }

.google-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.google-badge-logo {
  display: flex; align-items: center; gap: 3px;
  font-size: 13px; font-weight: 600; letter-spacing: -0.01em;
}
.g-blue   { color: #4285F4; }
.g-red    { color: #EA4335; }
.g-yellow { color: #FBBC05; }
.g-green  { color: #34A853; }
.google-badge-sep {
  width: 1px; height: 18px; background: var(--border);
}
.google-badge-stars { display: flex; gap: 2px; }
.google-badge-star  { color: #FBBC05; font-size: 14px; line-height: 1; }
.google-badge-score {
  font-size: 13px; font-weight: 600; color: var(--text-primary);
}
.google-badge-count {
  font-size: 12px; color: var(--text-secondary);
}
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── RESPONSIVE ────────────────────────────── */
@media (max-width: 900px) {
  .pain-grid, .about-grid, .faq-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .pain-visual { position: static; }
  .value-grid { grid-template-columns: 1fr; }
  .plans-grid { grid-template-columns: 1fr; }
  .test-grid  { grid-template-columns: 1fr; }
  .nav-links  { display: none; }
  .nav-mobile-btn { display: block; }
  .btn-nav { display: none; }
  .nav-cta-mobile { display: block; }
  nav.open {
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    border-bottom-color: var(--border);
  }
  nav.open .nav-links {
    display: flex; flex-direction: column; align-items: stretch; gap: 0;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 4px 0 12px;
  }
  nav.open .nav-links a {
    display: block; padding: 14px 24px; font-size: 16px;
    border-bottom: 1px solid var(--border);
  }
  nav.open .nav-links li:last-child a { border-bottom: none; }
  nav.open .nav-cta-mobile a {
    color: var(--accent); font-weight: 600;
  }
  #hero { padding: 140px 0 80px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-photo-wrap { order: -1; max-width: 320px; margin: 0 auto; }
  .hero-stats { gap: 24px; }
  .hero-stat-divider { display: none; }
  .about-metrics { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .logos-strip { gap: 28px; }
}
@media (max-width: 600px) {
  .section { padding: 70px 0; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .plans-grid { gap: 12px; }
  .about-metrics { grid-template-columns: 1fr; }
}

/* ── PORTFOLIO ───────────────────────── */
.portfolio-header { text-align: center; margin-bottom: 48px; }
.portfolio-cta { text-align: center; margin-top: 40px; }
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.portfolio-item {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-surface);
  aspect-ratio: 4/3;
}
.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.portfolio-item a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.portfolio-item a::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(1,157,152,0.18);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.portfolio-item a:hover img { transform: scale(1.04); }
.portfolio-item a:hover::after { opacity: 1; }
@media (max-width: 900px) {
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .portfolio-grid { grid-template-columns: 1fr; }
}