/* =====================================================
   Sports Therapy Coordination — v3 (MOCKUP 2)
   Paleta: azul predominante + blanco + verde oscuro como acento
   ===================================================== */

:root {
  /* Azul — protagonista */
  --blue:         #1669D0;
  --blue-dark:    #0C2F5A;   /* hero, footer, secciones oscuras */
  --blue-mid:     #1255AE;   /* footer secundario, hover */
  --blue-light:   #EBF2FC;   /* fondos de sección tinted */
  --blue-border:  rgba(22,105,208,.15);

  /* Verde — acento escaso */
  --green-dark:   #0A1F13;   /* detalles puntuales */
  --green-accent: #1A5C2E;   /* íconos, marcadores, hover — verde fuerte */
  --green-light:  #E4F2E8;   /* fondo muy suave si se necesita */

  /* Aliases para que el CSS funcione igual que el mockup verde */
  --green-mid:    var(--blue-mid);
  --green-border: var(--blue-border);

  --white:        #FFFFFF;
  --off-white:    #F6FAFF;   /* blanco con toque azul */
  --text:         #1A1A2E;
  --text-mid:     #5A5966;
  --text-light:   rgba(255,255,255,.78);

  --font-body:    'Inter', system-ui, sans-serif;
  --font-head:    'Fraunces', Georgia, serif;

  --r-card: 10px;
  --r-btn:  6px;
  --shadow: 0 4px 20px rgba(12,47,90,.12);
  --shadow-hover: 0 10px 40px rgba(12,47,90,.20);
  --ease:   cubic-bezier(.22,.61,.36,1);
  --dur:    550ms;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); -webkit-font-smoothing: antialiased; }
img  { max-width: 100%; height: auto; display: block; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }

/* --- Type --- */
h1, h2, h3 { font-family: var(--font-head); font-weight: 400; line-height: 1.18; color: var(--blue-dark); }
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.7rem); }
h3 { font-size: 1.15rem; font-weight: 500; }
strong { font-weight: 600; }
em { font-style: italic; color: inherit; }

p { font-size: 1.0625rem; line-height: 1.72; color: var(--text-mid); }

.stc-container { max-width: 1180px; margin: 0 auto; padding: 0 1.5rem; }

/* --- Sections --- */
.stc-section { padding: 96px 0; }
.stc-section--white  { background: var(--white); }
.stc-section--tinted { background: var(--blue-light); }
.stc-section--dark   { background: var(--blue-dark); }
.stc-section--mid    { background: var(--blue-mid); }
.stc-section--blue   { background: var(--blue-dark); }

.stc-section-header { text-align: center; max-width: 660px; margin: 0 auto 4rem; }
.stc-section-header--light h2 { color: var(--white); }
.stc-section-header--light .stc-eyebrow { color: rgba(255,255,255,.5); }
.stc-section-header--light p { color: var(--text-light); }

/* --- Eyebrow --- */
.stc-eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green-accent);
  margin-bottom: .9rem;
}

/* --- Divider --- */
.stc-rule { width: 40px; height: 2px; background: var(--green-accent); margin: 1.25rem auto 0; border: none; }
.stc-rule--left { margin: 1.25rem 0 0; }

/* --- Buttons --- */
.stc-btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-body); font-size: .9rem; font-weight: 500; letter-spacing: .01em;
  border-radius: var(--r-btn); padding: .75rem 1.5rem;
  border: 1.5px solid transparent; cursor: pointer;
  transition: background .2s, border-color .2s, color .2s, transform .18s, box-shadow .2s;
  white-space: nowrap;
}
.stc-btn:hover { transform: translateY(-1px); }

.stc-btn--primary  { background: var(--blue); color: var(--white); border-color: var(--blue); }
.stc-btn--primary:hover { background: var(--blue-mid); border-color: var(--blue-mid); box-shadow: 0 5px 20px rgba(26,79,133,.35); }

.stc-btn--outline  { background: transparent; color: var(--white); border-color: rgba(255,255,255,.4); }
.stc-btn--outline:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.7); }

.stc-btn--ghost-dark { background: transparent; color: var(--green-dark); border-color: rgba(15,42,28,.3); }
.stc-btn--ghost-dark:hover { background: var(--green-light); border-color: var(--green-accent); }

.stc-btn--white  { background: var(--white); color: var(--blue-mid); border-color: var(--white); }
.stc-btn--white:hover { background: var(--blue-light); box-shadow: var(--shadow-hover); }

.stc-btn--sm  { padding: .5rem 1.1rem; font-size: .83rem; }
.stc-btn--lg  { padding: .9rem 2rem; font-size: .95rem; }
.stc-btn--xl  { padding: 1.05rem 2.4rem; font-size: 1rem; }

/* ====================================================
   NAV
   ==================================================== */
.stc-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.97); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(15,42,28,.08);
  transition: box-shadow .3s;
}
.stc-nav.is-scrolled { box-shadow: 0 2px 16px rgba(15,42,28,.10); }
.stc-nav__inner { display: flex; align-items: center; gap: 2rem; height: 66px; }

.stc-nav__brand { display: flex; flex-direction: row; align-items: baseline; flex-shrink: 0; gap: .28rem; white-space: nowrap; }
.stc-nav__brand-main   { font-family: var(--font-head); font-weight: 600; font-size: 1.2rem; color: #111111; letter-spacing: .005em; }
.stc-nav__brand-accent { font-family: var(--font-head); font-weight: 600; font-size: 1.2rem; color: var(--blue); letter-spacing: .005em; }

.stc-nav__links { display: flex; gap: 2rem; margin-left: auto; }
.stc-nav__links a { font-size: .87rem; font-weight: 400; color: var(--text-mid); transition: color .2s; position: relative; }
.stc-nav__links a::after { content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 1.5px; background: var(--blue); transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease); }
.stc-nav__links a:hover { color: var(--green-dark); }
.stc-nav__links a:hover::after { transform: scaleX(1); }

.stc-nav__actions { display: flex; align-items: center; gap: .85rem; flex-shrink: 0; }

.stc-lang-toggle {
  background: var(--blue-light); border: 1px solid var(--blue-border); border-radius: 4px;
  padding: .32rem .7rem; font-size: .78rem; font-weight: 600; color: var(--blue);
  cursor: pointer; display: flex; align-items: center; gap: .35rem; letter-spacing: .07em;
  font-family: var(--font-body); transition: background .2s;
}
.stc-lang-toggle:hover { background: #d0e4f7; }
.stc-lang-toggle__sep { opacity: .35; }
.stc-lang-toggle .active { color: var(--blue); }

.stc-nav__burger { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 34px; height: 34px; background: none; border: none; cursor: pointer; margin-left: auto; }
.stc-nav__burger span { display: block; height: 1.5px; background: var(--green-dark); border-radius: 2px; transition: transform .3s, opacity .3s; }
.stc-nav__burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.stc-nav__burger.is-open span:nth-child(2) { opacity: 0; }
.stc-nav__burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.stc-nav__mobile { display: none; flex-direction: column; background: var(--white); border-top: 1px solid var(--green-light); padding: 1rem 1.5rem 1.5rem; }
.stc-nav__mobile.is-open { display: flex; }
.stc-nav__mobile a { padding: .75rem 0; font-size: .95rem; color: var(--text); border-bottom: 1px solid var(--green-light); }
.stc-nav__mobile .stc-btn { margin-top: 1rem; justify-content: center; }

/* ====================================================
   HERO
   ==================================================== */
.stc-hero {
  position: relative;
  background: linear-gradient(145deg, var(--blue-dark) 0%, #1255AE 100%);
  overflow: hidden;
}
.stc-hero__overlay {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse at 80% 30%, rgba(22,105,208,.25) 0%, transparent 55%),
    radial-gradient(ellipse at 5% 85%,  rgba(15,42,28,.35)   0%, transparent 50%);
}
/* subtle texture */
.stc-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.018'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.stc-hero__inner {
  display: grid; grid-template-columns: 1fr 480px;
  align-items: center; gap: 4rem;
  padding-top: 96px; padding-bottom: 0;
  min-height: 85vh;
  position: relative; z-index: 1;
}
.stc-hero__content { padding-bottom: 80px; }

.stc-hero__kicker {
  font-family: var(--font-body); font-size: .72rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.45); margin-bottom: 1.5rem;
}

.stc-hero__headline {
  color: var(--white); margin-bottom: 1.5rem;
  font-size: clamp(2.6rem, 5vw, 4rem); line-height: 1.1;
  font-family: var(--font-head); font-weight: 300;
}
.stc-hero__headline em   { font-style: italic; color: var(--white); opacity: .9; }
.stc-hero__headline mark {
  background: none;
  color: var(--white);
  border-bottom: 2px solid rgba(26,79,133,.7);
  padding-bottom: 1px;
}

.stc-hero__sub {
  color: rgba(255,255,255,.68); font-size: 1.0625rem; line-height: 1.72;
  margin-bottom: .75rem; max-width: 480px;
}
.stc-hero__sub-note {
  color: rgba(255,255,255,.42); font-size: .85rem; margin-bottom: 2.5rem;
  max-width: 480px; font-style: italic;
}

.stc-hero__ctas { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }

/* Hero image side */
.stc-hero__image { align-self: flex-end; position: relative; }
.stc-hero__img-block {
  width: 100%; aspect-ratio: 480/580;
  background: linear-gradient(160deg, rgba(26,79,133,.12), rgba(45,104,71,.08));
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px 10px 0 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .75rem; color: rgba(255,255,255,.2); font-size: .8rem; text-align: center;
}
.stc-hero__img-label { font-size: .75rem; letter-spacing: .05em; }

/* Trust strip */
.stc-hero__trust {
  padding: 1.4rem 0;
  border-top: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  position: relative; z-index: 1;
}
.stc-trust-strip { display: flex; flex-wrap: nowrap; align-items: center; gap: 0 2.5rem; justify-content: center; }
.stc-trust-item  {
  display: flex; align-items: center; gap: .55rem;
  font-size: .88rem; font-weight: 500; color: rgba(255,255,255,.88);
  letter-spacing: .01em;
}
.stc-trust-item svg { color: var(--green-accent); opacity: 1; flex-shrink: 0; }
.stc-trust-sep   { color: rgba(255,255,255,.25); font-size: 1.1rem; flex-shrink: 0; }

/* ====================================================
   SERVICES
   ==================================================== */
.stc-cards { display: grid; gap: 1.5rem; }
.stc-cards--3 { grid-template-columns: repeat(3, 1fr); }

.stc-card {
  background: var(--white); border: 1px solid rgba(15,42,28,.09);
  border-radius: var(--r-card); padding: 2.25rem 2rem;
  transition: transform .3s var(--ease), box-shadow .3s, border-color .3s;
  position: relative; overflow: hidden;
}
.stc-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--green-accent), var(--blue));
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease);
}
.stc-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); border-color: rgba(15,42,28,.15); }
.stc-card:hover::after { transform: scaleX(1); }

.stc-card__icon {
  width: 44px; height: 44px; margin-bottom: 1.5rem;
  color: var(--blue); opacity: .85;
  transition: color .25s, opacity .25s;
}
.stc-card:hover .stc-card__icon { color: var(--green-accent); opacity: 1; }

.stc-card__label {
  display: block; font-size: .7rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--green-accent); margin-bottom: .4rem;
}
.stc-card h3 { color: var(--blue-dark); margin-bottom: .7rem; font-size: 1.1rem; }
.stc-card p  { font-size: .93rem; }

/* ====================================================
   WHY US
   ==================================================== */
.stc-why { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.stc-why__img-block {
  width: 100%; aspect-ratio: 1/1.1;
  background: var(--blue-light); border: 1px solid var(--blue-border);
  border-radius: var(--r-card); display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: .75rem; color: var(--blue); font-size: .82rem; text-align: center;
}
.stc-why__content .stc-eyebrow { text-align: left; }
.stc-why__content h2 { margin-bottom: 2.5rem; }
.stc-why__list { display: flex; flex-direction: column; gap: 1.75rem; margin-top: .5rem; }
.stc-why__list li { display: flex; gap: 1.25rem; align-items: flex-start; }
.stc-why__line { width: 1.5px; background: var(--green-border); flex-shrink: 0; height: auto; align-self: stretch; margin-top: .3rem; display: none; }
.stc-why__num  { display: none; }
.stc-why__marker {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green-accent); flex-shrink: 0; margin-top: .55rem;
  box-shadow: 0 0 0 3px rgba(45,104,71,.18);
}
.stc-why__list strong { display: block; color: var(--blue-dark); font-size: .97rem; font-weight: 600; margin-bottom: .3rem; }
.stc-why__list p { font-size: .92rem; }

/* ====================================================
   EVENTS
   ==================================================== */
.stc-events { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }

.stc-event {
  display: grid; grid-template-columns: 1fr auto;
  gap: 1.5rem; align-items: center;
  border-radius: var(--r-card); overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  position: relative;
  min-height: 120px;
  transition: border-color .25s, transform .25s;
}
.stc-event:hover { border-color: rgba(255,255,255,.22); transform: translateX(3px); }

/* Flyer background layer — user replaces gradient with url(flyer.jpg) center/cover */
.stc-event__bg {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(135deg, rgba(12,47,90,.97) 0%, rgba(18,85,174,.9) 100%);
  /* WHEN ADDING FLYER:
     background: linear-gradient(rgba(12,47,90,.6),rgba(12,47,90,.6)), url('flyer-fip.jpg') center/cover no-repeat;
  */
}

.stc-event__body {
  padding: 1.5rem 2rem; position: relative; z-index: 1;
}
.stc-event__sport-label {
  font-size: .68rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.4); margin-bottom: .4rem;
}
.stc-event__name {
  font-family: var(--font-head); font-weight: 400; font-size: 1.15rem;
  color: var(--white); margin-bottom: .4rem;
  display: flex; align-items: baseline; gap: .7rem; flex-wrap: wrap;
}
.stc-event__badge {
  font-family: var(--font-body); font-size: .68rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  background: var(--blue); color: var(--white);
  padding: .18rem .55rem; border-radius: 3px; vertical-align: middle;
}
.stc-event__meta {
  display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap;
  font-size: .83rem; color: rgba(255,255,255,.5); margin-bottom: .4rem;
}
.stc-event__date { font-weight: 500; color: rgba(255,255,255,.75); }
.stc-event__desc { font-size: .875rem; color: rgba(255,255,255,.58); }
.stc-event__cta  { padding: 1.5rem 2rem; position: relative; z-index: 1; flex-shrink: 0; }

.stc-events__note {
  text-align: center; color: rgba(255,255,255,.4); font-size: .875rem; font-style: italic;
}

/* ====================================================
   EXPERIENCE (replaces "Who we've worked with")
   ==================================================== */
.stc-experience { }

.stc-exp-intro {
  max-width: 720px;
  margin: 0 auto 3.5rem;
  text-align: center;
}
.stc-exp-intro p { font-size: 1.075rem; line-height: 1.78; }

.stc-exp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }

.stc-exp-card {
  border: 1px solid rgba(15,42,28,.09); border-radius: var(--r-card);
  padding: 1.75rem 1.5rem;
  background: var(--white);
  transition: transform .3s var(--ease), box-shadow .3s;
}
.stc-exp-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.stc-exp-card__icon { color: var(--green-accent); margin-bottom: 1rem; }
.stc-exp-card__sport {
  font-size: .7rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--green-accent); margin-bottom: .4rem;
}
.stc-exp-card h3 { font-size: 1.05rem; color: var(--blue-dark); margin-bottom: .5rem; }
.stc-exp-card p  { font-size: .875rem; }

/* ====================================================
   FOR TEAMS
   ==================================================== */
.stc-teams { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.stc-teams__content .stc-eyebrow { color: rgba(255,255,255,.45); }
.stc-teams__content h2 { color: var(--white); margin-bottom: 1.5rem; font-weight: 300; }
.stc-teams__content p  { color: rgba(255,255,255,.72); margin-bottom: 2rem; font-size: 1.025rem; }
.stc-teams__chips { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2.5rem; }
.stc-teams__chips li {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.8); border-radius: 4px;
  padding: .38rem .85rem; font-size: .82rem; font-weight: 400; letter-spacing: .01em;
}
.stc-teams__img-block {
  width: 100%; aspect-ratio: 1/1.05;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-card); display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: .75rem; color: rgba(255,255,255,.25); font-size: .8rem; text-align: center;
}

/* ====================================================
   ABOUT DANIEL
   ==================================================== */
.stc-about { display: grid; grid-template-columns: 280px 1fr; gap: 5rem; align-items: start; }

.stc-about__photo {
  position: sticky; top: 90px;
}
.stc-about__img-block {
  width: 100%; aspect-ratio: 3/4;
  background: var(--blue-light); border: 1px solid var(--blue-border);
  border-radius: var(--r-card); display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: .75rem;
  color: var(--blue); font-size: .8rem; text-align: center;
}
.stc-about__img-icon { font-size: 3rem; opacity: .3; }

.stc-about__body {}
.stc-about__body .stc-eyebrow { text-align: left; }
.stc-about__body h2 { margin-bottom: 1.5rem; font-size: clamp(1.7rem, 3vw, 2.3rem); }

.stc-about__body p { margin-bottom: 1.25rem; }
.stc-about__body p:last-of-type { margin-bottom: 2rem; }

.stc-about__tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2rem; }
.stc-about__tags li {
  background: var(--blue-light); border: 1px solid var(--blue-border);
  border-radius: 4px; padding: .35rem .85rem;
  font-size: .82rem; color: var(--blue-dark); font-weight: 500;
}

.stc-about__link {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .87rem; color: var(--blue); font-weight: 500;
  border-bottom: 1px solid rgba(26,79,133,.3);
  padding-bottom: 2px; transition: border-color .2s, color .2s;
}
.stc-about__link:hover { color: var(--blue-mid); border-color: var(--blue-mid); }
.stc-about__link svg { transition: transform .2s; }
.stc-about__link:hover svg { transform: translateX(3px); }

/* ====================================================
   FINAL CTA
   ==================================================== */
.stc-cta-final {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-mid) 100%);
  padding: 110px 0; text-align: center; position: relative; overflow: hidden;
}
.stc-cta-final::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(45,104,71,.2), transparent 60%);
  pointer-events: none;
}
.stc-cta-final__inner { max-width: 600px; margin: 0 auto; position: relative; z-index: 1; }
.stc-cta-final .stc-eyebrow { color: rgba(255,255,255,.4); }
.stc-cta-final h2 { color: var(--white); font-size: clamp(2rem, 4vw, 3rem); font-weight: 300; margin-bottom: .75rem; }
.stc-cta-final h2 em { font-style: italic; opacity: .8; }
.stc-cta-final p { color: rgba(255,255,255,.5); font-size: .9rem; margin-bottom: 2.5rem; font-style: italic; }

/* ====================================================
   FOOTER
   ==================================================== */
.stc-footer { background: var(--blue-dark); padding: 56px 0 0; }
.stc-footer__inner {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem; padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
  align-items: start;
}

.stc-footer__brand { }
.stc-footer__brand-name { display: flex; flex-direction: column; gap: 0; margin-bottom: .75rem; }
.stc-footer__brand-main   { font-family: var(--font-head); font-size: 1.15rem; font-weight: 300; color: rgba(255,255,255,.85); }
.stc-footer__brand-accent { font-family: var(--font-head); font-size: 1.15rem; font-weight: 500; color: var(--white); }
.stc-footer__brand-sub {
  margin-top: .6rem;
}
.stc-footer__brand-sub a {
  font-size: .85rem; color: rgba(255,255,255,.5);
  border-bottom: 1px solid rgba(255,255,255,.2); padding-bottom: 1px;
  transition: color .2s, border-color .2s;
}
.stc-footer__brand-sub a:hover { color: rgba(255,255,255,.85); border-color: rgba(255,255,255,.5); }
.stc-footer__brand-desc { margin-top: 1rem; font-size: .85rem; color: rgba(255,255,255,.4); line-height: 1.6; }

.stc-footer__nav h4 {
  font-family: var(--font-body); font-size: .7rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.35);
  margin-bottom: 1rem; font-style: normal;
}
.stc-footer__nav ul { display: flex; flex-direction: column; gap: .55rem; }
.stc-footer__nav a { font-size: .875rem; color: rgba(255,255,255,.55); transition: color .2s; }
.stc-footer__nav a:hover { color: rgba(255,255,255,.9); }

.stc-footer__contact h4 {
  font-family: var(--font-body); font-size: .7rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.35);
  margin-bottom: 1rem;
}
.stc-footer__contact p { font-size: .875rem; color: rgba(255,255,255,.45); margin-bottom: 1.25rem; line-height: 1.5; }

.stc-footer__bottom { padding: 1.25rem 0; }
.stc-footer__bottom-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: .75rem; }
.stc-footer__copyright { font-size: .78rem; color: rgba(255,255,255,.28); }
.stc-footer__massages-link {
  font-size: .78rem; color: rgba(255,255,255,.4); transition: color .2s;
  border-bottom: 1px solid rgba(255,255,255,.18); padding-bottom: 1px;
}
.stc-footer__massages-link:hover { color: rgba(255,255,255,.8); }

/* ====================================================
   WHATSAPP FLOAT
   ==================================================== */
.stc-wa-float {
  position: fixed; bottom: 1.75rem; right: 1.75rem; z-index: 200;
  width: 58px; height: 58px; border-radius: 50%; background: #25D366;
  display: flex; align-items: center; justify-content: center; color: var(--white);
  box-shadow: 0 4px 18px rgba(37,211,102,.4);
  transition: transform .25s var(--ease), box-shadow .25s;
}
.stc-wa-float:hover { transform: scale(1.08); box-shadow: 0 6px 26px rgba(37,211,102,.55); }
.stc-wa-float::before {
  content: ''; position: absolute; inset: 0; border-radius: 50%; background: #25D366;
  animation: wa-pulse 2.8s ease-out infinite;
}
@keyframes wa-pulse { 0%{transform:scale(1);opacity:.45} 70%{transform:scale(1.5);opacity:0} 100%{transform:scale(1.5);opacity:0} }
.stc-wa-float svg { position: relative; z-index: 1; }

/* ====================================================
   SCROLL REVEAL
   ==================================================== */
.stc-reveal { opacity: 0; transform: translateY(24px); transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease); }
.stc-reveal.is-visible { opacity: 1; transform: translateY(0); }
.stc-reveal--delay-1 { transition-delay: 80ms; }
.stc-reveal--delay-2 { transition-delay: 160ms; }
.stc-reveal--delay-3 { transition-delay: 240ms; }
.stc-reveal--delay-4 { transition-delay: 320ms; }

/* ====================================================
   RESPONSIVE
   ==================================================== */
@media (max-width: 1024px) {
  .stc-cards--3 { grid-template-columns: 1fr 1fr; }
  .stc-exp-grid { grid-template-columns: 1fr 1fr; }
  .stc-why, .stc-teams, .stc-about { gap: 3rem; }
}
@media (max-width: 820px) {
  .stc-hero__inner { grid-template-columns: 1fr; min-height: auto; padding-top: 64px; gap: 2.5rem; }
  .stc-hero__content { padding-bottom: 0; }
  .stc-hero__image { display: none; }
  .stc-why { grid-template-columns: 1fr; }
  .stc-why__img-block { display: none; }
  .stc-teams { grid-template-columns: 1fr; }
  .stc-teams__img-block { display: none; }
  .stc-about { grid-template-columns: 1fr; }
  .stc-about__photo { position: static; max-width: 240px; }
  .stc-footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .stc-section { padding: 72px 0; }
  .stc-nav__links, .stc-nav__actions .stc-btn { display: none; }
  .stc-nav__burger { display: flex; }
  .stc-cards--3, .stc-exp-grid { grid-template-columns: 1fr; }
  .stc-trust-sep { display: none; }
  .stc-event { grid-template-columns: 1fr; }
  .stc-event__cta { display: none; }
  .stc-footer__inner { grid-template-columns: 1fr; }
  .stc-footer__bottom-inner { flex-direction: column; text-align: center; }
}