/*
Theme Name: Frontal Consulting
Theme URI: https://frontalconsulting.cl
Author: Frontal Consulting
Author URI: https://frontalconsulting.cl
Description: Tema personalizado para Frontal Consulting — Consultoría en Estrategia Comercial & Producto Digital. Sprints de 7 días, hitos concretos. Diseño con paleta tipo Mercedes (negro azulado + turquesa) y modelo de bloques estáticos.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: frontal-consulting
Tags: business, one-column, custom-menu, custom-logo, featured-images, threaded-comments, translation-ready
*/

/* ============================================
   FRONTAL CONSULTING — SISTEMA MERCEDES
   ============================================ */

:root {
  --bg-base: #00021A;
  --bg-alt: #000D24;
  --surface: #001F3F;
  --border: #003366;
  --accent: #00D2BE;
  --accent-hover: #00B8A6;
  --silver: #C0C8D4;
  --text: #FFFFFF;
  --text-muted: #8A9BB5;

  --max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg-base);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

/* CONTAINER */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 768px) {
  .container { padding: 0 40px; }
}

@media (min-width: 1280px) {
  .container { padding: 0 24px; }
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-base);
  transition: border-color 0.2s ease;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  border-bottom-color: var(--border);
}

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

.site-header__logo {
  display: flex;
  align-items: center;
}

.site-header__logo img {
  height: 28px;
  width: auto;
  display: block;
}

@media (min-width: 768px) {
  .site-header__logo img { height: 32px; }
}

.site-footer__logo {
  height: 38px;
  width: auto;
  margin-bottom: 18px;
  display: block;
}

.site-header__nav {
  display: none;
  align-items: center;
  gap: 32px;
}

.site-header__nav a {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: color 0.15s ease;
}

.site-header__nav a:hover,
.site-header__nav a.is-active {
  color: var(--text);
}

.site-header__cta {
  display: none;
}

.site-header__hamburger {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 3px;
}

.site-header__hamburger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--text);
  position: relative;
}
.site-header__hamburger span::before,
.site-header__hamburger span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 18px;
  height: 1.5px;
  background: var(--text);
}
.site-header__hamburger span::before { top: -6px; }
.site-header__hamburger span::after  { top: 6px; }

@media (min-width: 900px) {
  .site-header__nav { display: flex; }
  .site-header__cta { display: inline-flex; }
  .site-header__hamburger { display: none; }
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  inset: 72px 0 0 0;
  background: var(--bg-base);
  border-top: 1px solid var(--border);
  padding: 24px 20px;
  z-index: 99;
  display: none;
  flex-direction: column;
  gap: 4px;
}

.mobile-menu.is-open {
  display: flex;
}

.mobile-menu a {
  font-size: 18px;
  font-weight: 500;
  color: var(--text);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.mobile-menu .btn {
  margin-top: 16px;
  align-self: flex-start;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.005em;
  padding: 14px 28px;
  border-radius: 3px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
  min-height: 44px;
  white-space: nowrap;
  text-align: center;
}

.btn--primary {
  background: var(--accent);
  color: var(--bg-base);
}
.btn--primary:hover {
  background: var(--accent-hover);
}

.btn--secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--silver);
}
.btn--secondary:hover {
  background: rgba(255,255,255,0.05);
  border-color: var(--text);
}

.btn--lg {
  font-size: 15px;
  padding: 18px 36px;
}

.btn--sm {
  font-size: 13px;
  padding: 10px 20px;
}

.btn__arrow {
  display: inline-block;
  transition: transform 0.15s ease;
}
.btn:hover .btn__arrow {
  transform: translateX(3px);
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
.label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--silver);
  font-family: 'Inter', system-ui, sans-serif;
  font-stretch: condensed;
}

.h-hero {
  font-size: clamp(48px, 8vw, 92px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: var(--text);
}

.h-section {
  font-size: clamp(32px, 5vw, 50px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--text);
}

.h-card {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.015em;
}

.subtitle {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 640px;
}

@media (min-width: 768px) {
  .subtitle { font-size: 20px; }
}

.body {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-muted);
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: 64px 0;
}

@media (min-width: 768px) {
  .section { padding: 100px 0; }
}

@media (min-width: 1280px) {
  .section { padding: 120px 0; }
}

.section--alt {
  background: var(--bg-alt);
}

.section--surface {
  background: var(--surface);
}

.section__head {
  margin-bottom: 56px;
  max-width: 760px;
}

.section__head .label {
  margin-bottom: 16px;
  display: inline-block;
}

.section__head .subtitle {
  margin-top: 20px;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero { padding: 120px 0 140px; }
}

.hero__diagonal {
  position: absolute;
  top: 30%;
  left: -10%;
  width: 70%;
  height: 1px;
  background: var(--accent);
  opacity: 0.18;
  transform: rotate(-18deg);
  pointer-events: none;
}

.hero__diagonal--2 {
  top: auto;
  bottom: 22%;
  left: 40%;
  width: 50%;
  opacity: 0.1;
  background: var(--silver);
}

.hero__label {
  margin-bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.hero__label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--accent);
  display: inline-block;
}

.hero__title {
  margin-bottom: 24px;
  max-width: 14ch;
}

.hero__title em {
  font-style: normal;
  color: var(--accent);
}

.hero__subtitle {
  margin-bottom: 40px;
  max-width: 580px;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 600px) {
  .hero__ctas .btn {
    width: 100%;
  }
}

/* Hero animation */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.6s ease-out forwards;
}
.fade-up-1 { animation-delay: 0.05s; }
.fade-up-2 { animation-delay: 0.18s; }
.fade-up-3 { animation-delay: 0.32s; }
.fade-up-4 { animation-delay: 0.46s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   GRID / CARDS
   ============================================ */
.grid {
  display: grid;
  gap: 20px;
}

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

@media (min-width: 720px) {
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  position: relative;
  cursor: default;
}

.card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 210, 190, 0.08), 0 2px 0 0 var(--accent) inset;
}

.card__index {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--silver);
  font-family: 'Inter', sans-serif;
  display: flex;
  align-items: center;
  gap: 10px;
}

.card__index::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.card__name {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--accent);
  line-height: 1.15;
}

.card__pain {
  font-size: 16px;
  color: var(--text);
  font-weight: 500;
  line-height: 1.55;
}

.card__solution {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

.card__cta {
  margin-top: auto;
  padding-top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

.card__cta:hover { color: var(--accent); }

.card__cta svg { transition: transform 0.15s; }
.card__cta:hover svg { transform: translateX(4px); }

/* ============================================
   SPRINT INFOGRAPHIC
   ============================================ */
.sprints {
  position: relative;
}

.sprints__steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 64px;
}

@media (min-width: 900px) {
  .sprints__steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
  }
}

.sprint-step {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 28px;
  border-radius: 4px;
  position: relative;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, z-index 0s 0.25s;
  cursor: default;
}

.sprint-step:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 210, 190, 0.10);
  z-index: 2;
  transition-delay: 0s;
}

.sprint-step:hover .sprint-step__dot {
  transform: scale(1.5);
}

.sprint-step__dot {
  transition: transform 0.25s ease;
}

@media (min-width: 900px) {
  .sprint-step {
    border-radius: 0;
    border-right-width: 0;
  }
  .sprint-step:first-child { border-radius: 4px 0 0 4px; }
  .sprint-step:last-child  {
    border-radius: 0 4px 4px 0;
    border-right-width: 1px;
  }
}

.sprint-step__num {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--silver);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.sprint-step__dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

.sprint-step__name {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 8px;
}

.sprint-step__meta {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.sprint-step__desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-muted);
}

/* MILESTONES */
.milestones {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 32px;
}

@media (min-width: 768px) {
  .milestones { padding: 44px; }
}

.milestones__head {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.milestones__title {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--text);
}

.milestones__subtitle {
  font-size: 13px;
  color: var(--text-muted);
}

.milestones__row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (min-width: 768px) {
  .milestones__row {
    flex-direction: row;
    gap: 0;
    align-items: stretch;
  }
}

.milestone {
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  position: relative;
  transition: transform 0.25s ease;
}

.milestone:hover { transform: translateY(-3px); }
.milestone:hover .milestone__num {
  border-color: var(--accent);
  background: rgba(0, 210, 190, 0.06);
}
.milestone__num { transition: border-color 0.25s ease, background 0.25s ease; }

@media (min-width: 768px) {
  .milestone {
    flex-direction: column;
    padding: 16px 24px 0 0;
  }
  .milestone:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 22px;
    right: 0;
    width: 18px;
    height: 1px;
    background: var(--border);
    transform: rotate(-25deg);
    transform-origin: right center;
  }
}

.milestone__num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--silver);
  margin-bottom: 12px;
}

.milestone__num strong {
  color: var(--accent);
  font-size: 16px;
  font-weight: 700;
  display: block;
  letter-spacing: 0;
}

.milestone__body { flex: 1; }

.milestone__label {
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--accent);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.milestone__label::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

.milestone__text {
  font-size: 14px;
  color: var(--text);
  font-weight: 500;
  line-height: 1.45;
}

/* PLANS PILLS */
.plans {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
  margin-bottom: 32px;
}

.plan-pill {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--silver);
  border: 1px solid var(--border);
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--bg-base);
}

.plan-pill--accent {
  color: var(--accent);
  border-color: var(--accent);
}

.freedom {
  margin-top: 40px;
  padding: 28px;
  border-left: 2px solid var(--accent);
  background: rgba(0, 210, 190, 0.04);
  border-radius: 0 4px 4px 0;
}

.freedom__quote {
  font-size: 18px;
  line-height: 1.45;
  color: var(--text);
  font-weight: 500;
  letter-spacing: -0.01em;
}

.freedom__quote em {
  font-style: normal;
  color: var(--accent);
}

/* ============================================
   ABOUT BRIEF (home)
   ============================================ */
.about-brief {
  background: var(--surface);
}

.about-brief__inner {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
  align-items: center;
}

@media (min-width: 900px) {
  .about-brief__inner {
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
  }
}

.about-brief__visual {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.founder {
  background: var(--bg-base);
  border: 1px solid var(--border);
  aspect-ratio: 3 / 4;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.founder:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.founder::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, transparent 0%, transparent 60%, rgba(0,210,190,0.04) 100%);
  pointer-events: none;
}

.founder__initials {
  font-size: 64px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.04em;
  line-height: 1;
}

.founder__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.founder__role {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
  text-align: left;
}

.final-cta__diagonal {
  position: absolute;
  top: 50%;
  right: -5%;
  width: 60%;
  height: 1px;
  background: var(--silver);
  opacity: 0.15;
  transform: rotate(-12deg);
  pointer-events: none;
}

.final-cta__title {
  margin-bottom: 32px;
  max-width: 18ch;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--bg-base);
  border-top: 1px solid var(--border);
  padding: 56px 0 32px;
}

.site-footer__grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .site-footer__grid {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
  }
}

.site-footer h5 {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 16px;
  font-weight: 600;
}

.site-footer p,
.site-footer a {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

.site-footer a:hover { color: var(--text); }

.site-footer__col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.site-footer__bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

/* ============================================
   SERVICES PAGE
   ============================================ */
.service-block {
  padding: 56px 0;
  border-top: 1px solid var(--border);
}

.service-block:first-of-type { border-top: 0; }

.service-block__inner {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
}

@media (min-width: 900px) {
  .service-block__inner {
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
  }
}

.service-block__index {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.service-block__index::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--accent);
}

.service-block__name {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--accent);
  line-height: 1.05;
  margin-bottom: 16px;
}

.service-block__sprints {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--silver);
  border: 1px solid var(--border);
  padding: 6px 12px;
  border-radius: 3px;
  margin-bottom: 24px;
}

.service-block__pain {
  font-size: 18px;
  color: var(--text);
  line-height: 1.55;
  margin-bottom: 18px;
  font-weight: 500;
}

.service-block__desc {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 28px;
}

.service-block__hitos {
  list-style: none;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-block__hitos li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  color: var(--text);
  line-height: 1.5;
}

.service-block__hitos li strong {
  color: var(--accent);
  font-weight: 600;
  flex-shrink: 0;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  width: 80px;
  padding-top: 4px;
}

.service-block__hitos li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  margin-top: 9px;
  flex-shrink: 0;
}

/* CATALOG */
.catalog {
  border-top: 1px solid var(--border);
}

.catalog__item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  transition: padding 0.25s ease, background 0.25s ease;
  margin: 0 -16px;
  padding-left: 16px;
  padding-right: 16px;
  border-radius: 3px;
}

.catalog__item:hover {
  background: rgba(0, 210, 190, 0.03);
  padding-left: 24px;
}
.catalog__item:hover .catalog__name { color: var(--accent); }
.catalog__name { transition: color 0.25s ease; }

@media (min-width: 768px) {
  .catalog__item {
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: baseline;
  }
}

.catalog__name {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
}

.catalog__desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-hero {
  padding: 80px 0 60px;
}

@media (min-width: 768px) {
  .about-hero { padding: 120px 0 80px; }
}

.about-founders {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 56px;
}

@media (min-width: 768px) {
  .about-founders {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

.about-founder {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 32px;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.about-founder:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 210, 190, 0.08);
}

.about-founder__photo {
  aspect-ratio: 4 / 5;
  background: var(--bg-base);
  border: 1px solid var(--border);
  border-radius: 4px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.about-founder__photo::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px; right: -1px; bottom: -1px;
  background:
    linear-gradient(135deg, transparent 70%, rgba(0,210,190,0.06) 100%);
  pointer-events: none;
}

.about-founder__initials {
  font-size: clamp(72px, 12vw, 120px);
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.05em;
  line-height: 1;
}

.about-founder__name {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.015em;
  margin-bottom: 4px;
}

.about-founder__role {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.about-founder__bio {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.about-pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 32px;
}

@media (min-width: 768px) {
  .about-pillars { grid-template-columns: repeat(3, 1fr); }
}

.pillar {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 28px;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.pillar:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 210, 190, 0.08);
}

.pillar__num {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  font-weight: 600;
}

.pillar__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.015em;
  margin-bottom: 10px;
}

.pillar__body {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
}

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 64px;
  }
}

.contact-info__item {
  padding: 20px 0;
  border-top: 1px solid var(--border);
}

.contact-info__item:last-child { border-bottom: 1px solid var(--border); }

.contact-info__label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 6px;
}

.contact-info__value {
  font-size: 16px;
  color: var(--text);
}

.contact-info__value a:hover { color: var(--accent); }

.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 32px;
}

@media (min-width: 768px) {
  .contact-form { padding: 40px; }
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.field label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--silver);
  font-weight: 600;
}

.field input,
.field select,
.field textarea {
  font-family: inherit;
  font-size: 15px;
  color: var(--text);
  background: var(--bg-base);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.15s ease;
  width: 100%;
  min-height: 48px;
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
}

.field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--silver) 50%),
                    linear-gradient(135deg, var(--silver) 50%, transparent 50%);
  background-position: calc(100% - 18px) 22px, calc(100% - 13px) 22px;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 36px;
}

.contact-form .btn {
  width: 100%;
  margin-top: 8px;
}

@media (min-width: 768px) {
  .contact-form .btn { width: auto; }
}

/* ============================================
   COMO TRABAJAMOS
   ============================================ */
.method-step {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding: 40px 0;
  border-top: 1px solid var(--border);
  transition: background 0.25s ease;
}

.method-step:hover {
  background: linear-gradient(90deg, rgba(0,210,190,0.03) 0%, transparent 60%);
}
.method-step:hover .method-step__num {
  transform: translateX(4px);
}
.method-step__num { transition: transform 0.3s ease; }

@media (min-width: 768px) {
  .method-step {
    grid-template-columns: 200px 1fr;
    gap: 64px;
    padding: 56px 0;
  }
}

.method-step__num {
  font-size: 56px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.03em;
}

.method-step__num small {
  display: block;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--silver);
  font-weight: 500;
  margin-top: 8px;
}

.method-step__title {
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.method-step__meta {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  font-weight: 500;
}

.method-step__body {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ============================================
   UTILITIES
   ============================================ */
.diag-line {
  display: block;
  width: 60px;
  height: 1px;
  background: var(--accent);
  transform: rotate(-20deg);
  margin: 20px 0;
  opacity: 0.5;
}

.text-accent { color: var(--accent); }
.text-muted  { color: var(--text-muted); }

/* RESPONSIVE TYPE TUNING */
@media (max-width: 600px) {
  .h-hero    { font-size: clamp(40px, 11vw, 56px); letter-spacing: -0.025em; }
  .h-section { font-size: clamp(28px, 8vw, 36px); }
  .subtitle  { font-size: 16px; }
  .section   { padding: 56px 0; }
  .section__head { margin-bottom: 36px; }
  .hero      { padding: 56px 0 72px; }
}
