/* ===== CRISTOFFANINI × SHAKERS HYBRID THEME ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:              #FAFAF8;
  --bg-warm:         #F3F0EA;
  --bg-card:         #FFFFFF;
  --bg-dark:         #1A1A1A;
  --accent:          #E4FF47;
  --accent-hover:    #D4EF2E;
  --accent-soft:     rgba(228, 255, 71, 0.35);
  --black:           #1A1A1A;
  --text:            #1A1A1A;
  --text-muted:      #5C5C5C;
  --border:          #E5E2DC;
  --radius:          12px;
  --radius-pill:     999px;
  --radius-md:       16px;
  --radius-lg:       20px;
  --font:            'Inter', system-ui, sans-serif;
  --font-serif:      'Fraunces', Georgia, serif;
  --header-h:        72px;
  --shadow:          0 4px 24px rgba(0, 0, 0, 0.06);
  --shadow-card:     0 2px 16px rgba(0, 0, 0, 0.04);
  --transition:      0.22s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  color: var(--text);
}

/* ===== HEADER (Cristoffanini) ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.header.scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-card);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font);
  color: var(--text);
}

.logo-icon {
  width: 34px;
  height: 38px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}

.logo-wordmark {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.05;
  gap: 1px;
}

.logo-wordmark strong {
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--text);
}

.logo-wordmark span {
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  color: var(--text-muted);
  text-indent: 0.08em;
}

/* Legacy text mark (admin / fallback) */
.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: var(--black);
  color: var(--accent);
  border-radius: 8px;
  font-family: var(--font);
  font-size: 0.72rem;
  font-weight: 800;
}

.logo-text { color: var(--text); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-links a:not(.btn) {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
}

.nav-links a:not(.btn):hover { color: var(--text); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), transform var(--transition), border-color var(--transition);
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--accent);
  color: var(--text);
  border-color: var(--accent);
}

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

.btn-dark {
  background: var(--black);
  color: #fff;
  border-color: var(--black);
}

.btn-dark:hover { background: #333; border-color: #333; }

.btn-secondary {
  background: var(--bg-card);
  color: var(--text);
  border-color: var(--border);
}

.btn-secondary:hover { border-color: var(--text); }

.btn-nav {
  padding: 10px 20px;
  font-size: 0.875rem;
  background: var(--black);
  color: #fff;
  border-color: var(--black);
}

.btn-nav:hover { background: #333; }

.btn-lg { padding: 14px 28px; }
.btn-xl { padding: 15px 32px; font-size: 1rem; }

/* ===== HERO — split Cristoffanini + Shakers toggle ===== */
.hero {
  padding: 56px 0 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding-bottom: 48px;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.hero-toggle {
  display: inline-flex;
  background: var(--bg-warm);
  border-radius: var(--radius-pill);
  padding: 4px;
  margin-bottom: 24px;
  border: 1px solid var(--border);
}

.hero-toggle-btn {
  padding: 9px 20px;
  border: none;
  border-radius: var(--radius-pill);
  background: transparent;
  font-family: var(--font);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
}

.hero-toggle-btn.active {
  background: #fff;
  color: var(--text);
  box-shadow: var(--shadow-card);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}

.hero-title-line { display: block; }

.hero-title-line--accent {
  display: inline-block;
  background: var(--accent);
  padding: 0 10px;
  border-radius: 6px;
  transform: rotate(-0.5deg);
}

.hero-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.125rem;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.5;
  max-width: 480px;
}

.hero-sub {
  font-size: 0.9375rem;
  color: var(--text-muted);
  max-width: 460px;
  margin-bottom: 24px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.hero-industries-line {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Hero visual — Cristoffanini photo column */
.hero-visual-card {
  position: relative;
  background: var(--bg-warm);
  border-radius: var(--radius-lg);
  padding: 20px;
  border: 1px solid var(--border);
}

.hero-visual-photos {
  position: relative;
  min-height: 340px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.hero-visual-photo {
  position: absolute;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 3px solid #fff;
  box-shadow: var(--shadow);
}

.hero-visual-photo--main {
  width: 72%;
  height: 88%;
  top: 0;
  left: 0;
  z-index: 2;
}

.hero-visual-photo--secondary {
  width: 48%;
  height: 55%;
  bottom: 0;
  right: 0;
  z-index: 3;
}

.hero-visual-badge {
  position: absolute;
  bottom: 36px;
  left: 28px;
  background: #fff;
  padding: 12px 16px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  z-index: 4;
}

.hero-visual-badge strong {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.hero-visual-badge span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.hero-trust {
  padding: 32px 0 40px;
  border-top: 1px solid var(--border);
  background: var(--bg-warm);
}

.hero-stats-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 48px;
}

.hero-stats-row div { text-align: center; }

.hero-stats-row strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.hero-stats-row span {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* ===== INDUSTRIES ===== */
.section-industries {
  padding: 48px 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
}

.industries-inner { text-align: center; }

.industries-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.industries-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 14px;
}

.industries-tags span {
  padding: 8px 16px;
  background: var(--bg-warm);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: 0.8125rem;
  font-weight: 600;
}

.industries-note {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* ===== SECTIONS ===== */
.section { padding: 88px 0; }
.section-warm { background: var(--bg-warm); }

.section-head { margin-bottom: 48px; max-width: 560px; }

.section-head--center {
  text-align: center;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.section-head h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.875rem, 3.5vw, 2.625rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 12px;
}

.section-head p { color: var(--text-muted); font-size: 1.05rem; }

.eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}

/* ===== SERVICE CARDS (Shakers tags + Cristoffanini cards) ===== */
.cards-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 640px;
  margin: 0 auto;
}

.sh-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.sh-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.sh-card--highlight {
  border-color: var(--text);
  background: linear-gradient(180deg, #fff 0%, #FFFEF5 100%);
}

.sh-card-tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--accent);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}

.sh-card-tag--muted {
  background: var(--bg-warm);
  color: var(--text-muted);
}

.sh-card h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.sh-card > p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  margin-bottom: 20px;
}

.sh-card-link {
  display: inline-block;
  margin-top: 8px;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.tag-list li {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 12px;
  background: var(--bg-warm);
  border-radius: var(--radius-pill);
  color: var(--text-muted);
}

.tag-list--sm li { font-size: 0.6875rem; padding: 5px 10px; }

/* ===== STATS / ENFOQUE ===== */
.section-stats {
  padding: 64px 0;
  background: var(--black);
  color: #fff;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-block p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.4;
}

/* ===== TEAM — Cristoffanini horizontal cards ===== */
.talent-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.talent-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: box-shadow var(--transition);
}

.talent-card:hover { box-shadow: var(--shadow); }

.talent-card--horizontal {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}

.talent-photo-wrap {
  flex-shrink: 0;
  width: 140px;
  height: 168px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-warm);
}

.talent-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.talent-card h3 {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.talent-role {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.talent-bio {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 12px 0;
}

.talent-card blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.9375rem;
  padding-left: 14px;
  border-left: 2px solid var(--text);
  margin: 14px 0;
  color: var(--text);
}

.talent-link {
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ===== PROCESS ===== */
.process-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.process-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
}

.process-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-soft);
  -webkit-text-stroke: 1px var(--text);
  margin-bottom: 12px;
  line-height: 1;
}

.process-card h3 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.process-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ===== WHY ===== */
.why-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.why-card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.why-lead {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.check-list li {
  position: relative;
  padding-left: 22px;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  font-weight: 700;
}

/* ===== TESTIMONIALS ===== */
.testimonials-toggle { margin: 0 auto 32px; display: flex; justify-content: center; }

.testimonials-panel { display: none; }
.testimonials-panel.active { display: block; }

.testimonials-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.testimonials-empty {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--text-muted);
  padding: 32px 16px;
  border: 1px dashed var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
}

.quote-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.quote-card--empty {
  border-style: dashed;
  opacity: 0.75;
}

.quote-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

.quote-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.quote-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--text-muted);
  overflow: hidden;
  flex-shrink: 0;
}

.quote-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quote-avatar-fallback {
  font-size: 0.875rem;
  line-height: 1;
}

.quote-author strong {
  display: block;
  font-size: 0.875rem;
}

.quote-author span {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* ===== CONTACT ===== */
.section-contact {
  background: var(--bg-warm);
  border-top: 1px solid var(--border);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.contact-copy { grid-column: 1 / -1; }

.contact-copy h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 16px;
}

.contact-copy > p {
  color: var(--text-muted);
  margin-bottom: 28px;
  max-width: 520px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.contact-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-form-box,
.calendly-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.contact-form-box h3,
.calendly-box h3 {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.contact-form-box > p,
.calendly-box > p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.contact-form { display: flex; flex-direction: column; gap: 14px; }

.form-row { display: flex; flex-direction: column; gap: 6px; }

.form-row label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.9375rem;
  background: var(--bg);
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--text);
}

.form-row textarea { resize: vertical; min-height: 80px; }
.form-submit { width: 100%; margin-top: 4px; }

/* ===== LANGUAGE SWITCH ===== */
.lang-switch {
  display: inline-flex;
  background: var(--bg-warm);
  border-radius: var(--radius-pill);
  padding: 3px;
  border: 1px solid var(--border);
}

.lang-switch-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  font-family: var(--font);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  text-decoration: none;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
}

.lang-switch-btn:hover {
  color: var(--text);
}

.lang-switch-btn.active {
  background: #fff;
  color: var(--text);
  box-shadow: var(--shadow-card);
  pointer-events: none;
}

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

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-inner .logo {
  font-family: var(--font);
}

/* ===== THANK YOU PAGE ===== */
.thank-you-page {
  min-height: calc(100vh - var(--header-h) - 120px);
  display: grid;
  place-items: center;
  padding: 48px 0 80px;
  background: var(--bg-warm);
}

.thank-you-inner {
  max-width: 560px;
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 32px;
  box-shadow: var(--shadow-card);
}

.thank-you-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.thank-you-inner h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  margin-bottom: 12px;
}

.thank-you-lead {
  font-size: 1.0625rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.thank-you-text {
  color: var(--text-muted);
  margin-bottom: 28px;
}

.footer-inner > p {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.footer-links a {
  font-size: 0.8125rem;
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ===== LEGAL PAGES ===== */
.legal-page {
  padding: 48px 0 80px;
  background: var(--bg);
  min-height: calc(100vh - var(--header-h) - 120px);
}

.legal-inner { max-width: 720px; }

.legal-inner h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  line-height: 1.15;
  margin: 8px 0 12px;
}

.legal-updated {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: 28px;
}

.legal-inner h2 {
  font-size: 1.125rem;
  margin: 28px 0 10px;
}

.legal-inner p,
.legal-inner li {
  color: var(--text-muted);
  margin-bottom: 12px;
}

.legal-inner ul {
  padding-left: 1.2rem;
  margin-bottom: 16px;
  list-style: disc;
}

.legal-inner a:not(.btn) {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-note {
  margin-top: 28px;
  padding: 14px 16px;
  background: var(--bg-warm);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.875rem;
}

.legal-page .btn {
  margin-top: 28px;
  text-decoration: none;
}

.legal-page .btn-primary {
  color: var(--text);
}

.legal-page .btn-primary:hover {
  color: var(--text);
}

.legal-page .btn-dark {
  background: var(--black);
  border-color: var(--black);
  color: #fff;
}

.legal-page .btn-dark:hover {
  background: #333;
  border-color: #333;
  color: #fff;
}

.header .lang-switch-btn {
  margin-left: auto;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 6px 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
}

.header .lang-switch-btn:hover { color: var(--text); }

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .hero-grid,
  .cards-row,
  .why-row,
  .contact-layout,
  .testimonials-row { grid-template-columns: 1fr; }

  .hero-grid { gap: 32px; }

  .hero-visual-photos { min-height: 280px; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .process-row { grid-template-columns: repeat(2, 1fr); }

  .talent-card--horizontal { flex-direction: column; }

  .talent-photo-wrap {
    width: 100%;
    height: 220px;
  }
}

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

  .nav-links {
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 16px 24px 24px;
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--transition), opacity var(--transition);
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-links li { border-bottom: 1px solid var(--border); }
  .nav-links li:last-child { border-bottom: none; padding-top: 8px; }
  .nav-links a:not(.btn):not(.lang-switch-btn) { display: block; padding: 14px 0; }
  .nav-links .btn { width: 100%; justify-content: center; }
  .nav-links .lang-switch { margin: 12px 0; justify-content: center; width: fit-content; }

  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .hero-stats-row { flex-direction: column; gap: 20px; }
  .process-row,
  .stats-grid { grid-template-columns: 1fr; }

  .footer-inner { flex-direction: column; text-align: center; }
}
