:root {
  --black: #050505;
  --black-soft: #111413;
  --turquoise: #0ab39d;
  --turquoise-dark: #078a7b;
  --white: #ffffff;
  --off-white: #f3f6f5;
  --gray: #7f8986;
  --line: rgba(5, 5, 5, 0.12);
  --max-width: 1180px;
  --radius: 22px;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.15);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--black);
  background: var(--white);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
.container { width: min(var(--max-width), calc(100% - 40px)); margin-inline: auto; }
.skip-link { position: fixed; top: -100px; left: 12px; z-index: 999; background: var(--turquoise); padding: 10px 14px; font-weight: 800; }
.skip-link:focus { top: 12px; }

.topbar { background: var(--turquoise); color: var(--black); font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.topbar__inner { min-height: 34px; display: flex; align-items: center; justify-content: center; gap: 18px; }
.topbar a { border-bottom: 1px solid currentColor; }

.site-header { position: absolute; top: 34px; left: 0; width: 100%; z-index: 50; transition: .3s ease; }
.site-header.scrolled { position: fixed; top: 0; background: rgba(5, 5, 5, .92); backdrop-filter: blur(14px); border-bottom: 1px solid rgba(255,255,255,.1); }
.nav-wrap { min-height: 88px; display: flex; align-items: center; justify-content: space-between; }
.brand { width: min(230px, 34vw); padding: 0; background: transparent; border-radius: 0; display: flex; align-items: center; }
.brand img, .brand .custom-logo { width: auto; max-width: 100%; height: auto; max-height: 58px; object-fit: contain; object-position: left center; }
.main-nav { display: flex; align-items: center; gap: 28px; color: var(--white); font-size: 13px; font-weight: 750; text-transform: uppercase; letter-spacing: .06em; }
.main-nav a:not(.nav-cta) { position: relative; }
.main-nav a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; bottom: -8px; width: 0; height: 2px; background: var(--turquoise); transition: width .25s ease; }
.main-nav a:hover::after { width: 100%; }
.nav-cta { background: var(--turquoise); color: var(--black); padding: 13px 20px; border-radius: 999px; }
.menu-toggle { display: none; width: 46px; height: 46px; background: transparent; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; padding: 12px; }
.menu-toggle span { display: block; height: 2px; background: var(--white); margin: 5px 0; }

.hero { position: relative; min-height: 900px; overflow: hidden; background: var(--black); color: var(--white); padding: 190px 0 90px; }
.hero-slides, .hero-slide { position: absolute; inset: 0; }
.hero-slides { z-index: 0; }
.hero-slide { background-size: cover; background-repeat: no-repeat; opacity: 0; transform: scale(1.02); transition: opacity 1.1s ease, transform 7s ease; }
.hero-slide::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.64), rgba(0,0,0,.28) 58%, rgba(0,0,0,.42)); }
.hero-slide.active { opacity: 1; transform: scale(1); }
.hero::before { content: ""; position: absolute; z-index: 1; inset: 0; background: radial-gradient(circle at 72% 35%, rgba(10,179,157,.16), transparent 34%), linear-gradient(110deg, rgba(255,255,255,.04), transparent 40%); pointer-events: none; }
.hero__mesh { position: absolute; z-index: 1; inset: 0; opacity: .16; background-image: linear-gradient(rgba(255,255,255,.15) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.15) 1px, transparent 1px); background-size: 70px 70px; mask-image: linear-gradient(to bottom, black, transparent 82%); }
.hero__track { position: absolute; z-index: 1; border: 2px solid rgba(10,179,157,.42); border-radius: 50%; transform: rotate(-18deg); }
.hero__track--one { width: 900px; height: 360px; right: -250px; bottom: 100px; }
.hero__track--two { width: 740px; height: 270px; right: -150px; bottom: 150px; }
.hero__content { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 900px); gap: 0; align-items: center; }
.hero__copy { max-width: 900px; }
.hero__copy h1 { margin: 16px 0 26px; font-size: clamp(58px, 7vw, 104px); line-height: .92; letter-spacing: -.055em; text-transform: uppercase; max-width: 760px; }
.hero__copy h1 span { color: var(--turquoise); }
.hero__copy > p { max-width: 650px; color: rgba(255,255,255,.72); font-size: 20px; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; color: var(--turquoise); font-size: 12px; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 32px; height: 2px; background: currentColor; }
.eyebrow--dark { color: var(--black); }
.eyebrow--black { color: var(--black); }
.hero__actions { display: flex; gap: 14px; margin-top: 36px; }
.btn { display: inline-flex; justify-content: center; align-items: center; min-height: 54px; padding: 0 24px; border-radius: 999px; border: 1px solid transparent; font-size: 13px; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; transition: transform .2s ease, background .2s ease, color .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--turquoise); color: var(--black); }
.btn--primary:hover { background: #12c9b0; }
.btn--ghost { border-color: rgba(255,255,255,.28); color: var(--white); }
.btn--ghost:hover { background: var(--white); color: var(--black); }
.btn--outline { border-color: rgba(255,255,255,.22); color: var(--white); }
.btn--outline:hover { border-color: var(--turquoise); color: var(--turquoise); }
.hero__meta { display: flex; gap: 36px; margin-top: 56px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.14); }
.hero__meta div { display: flex; flex-direction: column; }
.hero__meta strong { font-size: 24px; color: var(--white); }
.hero__meta span { font-size: 12px; color: rgba(255,255,255,.48); text-transform: uppercase; letter-spacing: .08em; }

/* Blog */
.inner-header { position: relative; top: auto; background: var(--black); border-bottom: 1px solid rgba(255,255,255,.12); }
.inner-header.scrolled { position: sticky; top: 0; }
.blog-hero { padding: 105px 0 85px; background: var(--black); color: var(--white); overflow: hidden; position: relative; }
.blog-hero::after { content: ""; position: absolute; width: 700px; height: 260px; right: -170px; bottom: -150px; border: 2px solid rgba(10,179,157,.38); border-radius: 50%; transform: rotate(-12deg); }
.blog-hero h1 { max-width: 850px; margin: 18px 0 20px; font-size: clamp(50px, 7vw, 94px); line-height: .94; letter-spacing: -.055em; text-transform: uppercase; }
.blog-hero h1 span { color: var(--turquoise); }
.blog-hero p { max-width: 640px; color: rgba(255,255,255,.65); font-size: 19px; }
.blog-content { padding: 95px 0 120px; background: var(--off-white); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.post-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); transition: transform .25s ease, box-shadow .25s ease; }
.post-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.post-card__image { display: block; aspect-ratio: 16/10; overflow: hidden; background: linear-gradient(135deg, #111, #073b35); }
.post-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.post-card:hover .post-card__image img { transform: scale(1.04); }
.post-card__body { padding: 26px; }
.post-card__meta { display: flex; flex-wrap: wrap; gap: 5px 12px; color: var(--turquoise-dark); font-size: 11px; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
.post-card__meta > *:not(:last-child)::after { content: "·"; margin-left: 12px; color: #8a9390; }
.post-card__meta a:hover { color: var(--black); }
.post-card h2 { margin: 12px 0; font-size: 27px; line-height: 1.08; letter-spacing: -.025em; text-transform: uppercase; }
.post-card p { color: #66706d; }
.post-card__link { display: inline-flex; margin-top: 8px; color: var(--turquoise-dark); font-size: 12px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.blog-pagination { margin-top: 55px; }
.blog-pagination .nav-links { display: flex; gap: 8px; flex-wrap: wrap; }
.blog-pagination .page-numbers { min-width: 42px; height: 42px; padding: 0 13px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 999px; background: var(--white); font-weight: 800; }
.blog-pagination .current, .blog-pagination a:hover { background: var(--turquoise); border-color: var(--turquoise); }
.article-shell { padding: 90px 0 120px; background: var(--off-white); }
.article { max-width: 820px; margin: 0 auto; }
.article__meta { display: flex; flex-wrap: wrap; gap: 6px 14px; color: var(--turquoise-dark); font-size: 12px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.article__meta > *:not(:last-child)::after { content: "·"; margin-left: 14px; color: #8a9390; }
.article__meta a:hover { color: var(--black); }
.article h1 { margin: 14px 0 30px; font-size: clamp(44px, 6vw, 76px); line-height: .98; letter-spacing: -.045em; text-transform: uppercase; }
.article__image { width: 100%; aspect-ratio: 16/9; margin: 0 0 42px; border-radius: var(--radius); overflow: hidden; background: #dfe5e3; }
.article__image img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.article__content { font-size: 18px; color: #303735; }
.article__content h2, .article__content h3 { margin-top: 42px; line-height: 1.1; }
.article__content a { color: var(--turquoise-dark); text-decoration: underline; }
.article-back { margin-top: 50px; }
.comments-area { margin-top: 75px; padding-top: 65px; border-top: 1px solid var(--line); }
.comments-heading h2, .comment-reply-title { margin: 14px 0 30px; font-size: clamp(30px, 4vw, 46px); line-height: 1; letter-spacing: -.035em; text-transform: uppercase; }
.comment-list { list-style: none; padding: 0; margin: 0 0 55px; }
.comment-list .comment { margin: 0 0 18px; }
.comment-body { position: relative; padding: 26px; border: 1px solid var(--line); border-radius: 18px; background: var(--white); }
.comment-author { display: flex; align-items: center; gap: 14px; font-weight: 850; }
.comment-author .avatar { border-radius: 50%; }
.comment-metadata { margin: 8px 0 16px 72px; color: #77817e; font-size: 12px; }
.comment-content { color: #434b49; }
.comment-content p:last-child { margin-bottom: 0; }
.reply { margin-top: 14px; color: var(--turquoise-dark); font-size: 12px; font-weight: 900; text-transform: uppercase; }
.comment-list .children { list-style: none; margin: 18px 0 0 38px; padding: 0; }
.comment-notes, .logged-in-as { color: #697370; font-size: 14px; }
.comment-form label { display: block; margin-bottom: 7px; font-size: 12px; font-weight: 850; letter-spacing: .06em; text-transform: uppercase; }
.comment-form input:not([type="submit"]), .comment-form textarea { width: 100%; padding: 14px 15px; border: 1px solid #d4dcda; border-radius: 12px; background: var(--white); outline: none; }
.comment-form input:focus, .comment-form textarea:focus { border-color: var(--turquoise); box-shadow: 0 0 0 3px rgba(10,179,157,.12); }
.comment-form-author, .comment-form-email, .comment-form-url { width: calc(50% - 8px); display: inline-block; vertical-align: top; }
.comment-form-email { margin-left: 12px; }
.comment-form-url { width: 100%; }
.comment-form-cookies-consent { display: flex; align-items: flex-start; gap: 8px; }
.comment-form-cookies-consent input { width: auto !important; margin-top: 5px; }
.comment-form-cookies-consent label { text-transform: none; letter-spacing: 0; font-weight: 500; }
.blog-footer { padding: 35px 0; background: var(--black); color: rgba(255,255,255,.65); border-top: 1px solid rgba(255,255,255,.12); }
.blog-footer__inner { display: flex; justify-content: space-between; gap: 25px; align-items: center; font-size: 13px; }
.blog-footer a { color: var(--turquoise); font-weight: 800; }
.hero__visual { position: relative; min-height: 560px; }
.hero__logo-ring { width: 450px; aspect-ratio: 1; position: absolute; top: 40px; right: -20px; border-radius: 50%; border: 1px solid rgba(255,255,255,.15); background: radial-gradient(circle at 50% 50%, rgba(10,179,157,.18), rgba(255,255,255,.02) 55%, transparent 56%); box-shadow: 0 0 0 38px rgba(255,255,255,.025), 0 0 0 78px rgba(255,255,255,.018); display: grid; place-items: center; }
.hero__logo-ring img { width: 58%; filter: drop-shadow(0 20px 35px rgba(0,0,0,.35)); }
.pace-card { position: absolute; width: 225px; padding: 18px 20px; background: rgba(12,16,15,.82); border: 1px solid rgba(255,255,255,.14); backdrop-filter: blur(16px); border-radius: 18px; box-shadow: var(--shadow); }
.pace-card span, .pace-card small { display: block; }
.pace-card span { color: var(--turquoise); font-size: 10px; letter-spacing: .14em; font-weight: 900; }
.pace-card strong { display: block; margin: 5px 0 2px; font-size: 17px; }
.pace-card small { color: rgba(255,255,255,.55); }
.pace-card--top { top: 60px; left: -10px; }
.pace-card--bottom { right: -10px; bottom: 30px; }
.hero__ticker { position: absolute; z-index: 3; left: 0; bottom: 0; width: 100%; overflow: hidden; border-top: 1px solid rgba(255,255,255,.12); background: rgba(0,0,0,.26); }
.hero__ticker-track { display: flex; width: max-content; padding: 17px 0; color: rgba(255,255,255,.35); font-weight: 900; letter-spacing: .18em; font-size: 12px; animation: ticker 38s linear infinite; will-change: transform; }
.hero__ticker-track span { flex: 0 0 auto; white-space: nowrap; padding-right: 28px; }
@keyframes ticker { to { transform: translateX(-50%); } }

.section { padding: 120px 0; }
.section--light { background: var(--off-white); }
.section--dark { background: var(--black); color: var(--white); }
.section--turquoise { background: var(--turquoise); color: var(--black); }
.split-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 110px; }
.section-heading h2, .section-intro h2, .contact-copy h2 { margin: 16px 0 20px; font-size: clamp(44px, 5.5vw, 78px); line-height: .98; letter-spacing: -.05em; text-transform: uppercase; }
.section-heading p { max-width: 520px; color: #5f6966; font-size: 17px; }
.manifesto .lead { margin-top: 0; font-size: 29px; line-height: 1.25; font-weight: 750; letter-spacing: -.02em; }
.manifesto p:not(.lead) { max-width: 690px; color: #59625f; font-size: 17px; }
.text-link { display: inline-flex; gap: 14px; align-items: center; margin-top: 20px; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; font-size: 12px; }
.text-link span { color: var(--turquoise-dark); font-size: 22px; transition: transform .2s ease; }
.text-link:hover span { transform: translateX(5px); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 90px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.stats-grid article { min-height: 170px; padding: 26px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); display: flex; flex-direction: column; justify-content: space-between; }
.stats-grid strong { font-size: 58px; letter-spacing: -.05em; }
.stats-grid strong::after { content: "+"; color: var(--turquoise-dark); font-size: .55em; vertical-align: top; }
.stats-grid span { color: #67716e; font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }
.section-intro { display: grid; grid-template-columns: 1.25fr .75fr; gap: 80px; align-items: end; margin-bottom: 60px; }
.section-intro > p { margin: 0 0 10px; color: rgba(255,255,255,.6); font-size: 17px; }
.section-intro--dark > p { color: #59625f; }
.method-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid rgba(255,255,255,.12); }
.method-card { position: relative; min-height: 470px; padding: 30px; border-right: 1px solid rgba(255,255,255,.12); overflow: hidden; transition: background .25s ease, transform .25s ease; }
.method-card:last-child { border-right: 0; }
.method-card:hover { background: rgba(10,179,157,.08); transform: translateY(-6px); }
.method-card__number { position: absolute; right: 22px; top: 19px; color: rgba(255,255,255,.25); font-size: 12px; }
.method-card__icon { width: 74px; height: 74px; border: 1px solid rgba(10,179,157,.55); border-radius: 50%; display: grid; place-items: center; color: var(--turquoise); font-size: 25px; font-weight: 900; margin: 45px 0 72px; }
.method-card h3 { margin: 0 0 14px; font-size: 28px; text-transform: uppercase; }
.method-card p { color: rgba(255,255,255,.58); }
.method-card ul { list-style: none; padding: 0; margin: 24px 0 0; }
.method-card li { padding: 8px 0; border-top: 1px solid rgba(255,255,255,.08); color: rgba(255,255,255,.74); font-size: 13px; }
.training-banner { overflow: hidden; }
.training-banner__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: start; }
.training-banner h2 { margin: 16px 0 0; font-size: clamp(44px, 5vw, 76px); line-height: .98; letter-spacing: -.05em; text-transform: uppercase; }
.levels { border-top: 2px solid var(--black); }
.levels div { display: grid; grid-template-columns: 50px 150px 1fr; align-items: center; padding: 24px 0; border-bottom: 1px solid rgba(0,0,0,.28); }
.levels span { font-size: 12px; font-weight: 900; }
.levels strong { font-size: 20px; text-transform: uppercase; }
.levels small { font-size: 14px; }
.calendar-tabs { display: inline-flex; padding: 5px; background: #e5eae8; border-radius: 999px; margin-bottom: 36px; }
.tab-button { border: 0; background: transparent; padding: 13px 20px; border-radius: 999px; font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .06em; }
.tab-button.active { background: var(--black); color: var(--white); }
.schedule-grid { display: grid; gap: 12px; }
.schedule-grid article { display: grid; grid-template-columns: 150px 1fr; gap: 30px; align-items: center; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; transition: transform .2s ease, box-shadow .2s ease; }
.schedule-grid article:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(0,0,0,.07); }
.schedule-day { min-height: 100px; display: flex; flex-direction: column; justify-content: center; align-items: center; background: var(--black); color: var(--white); border-radius: 15px; }
.schedule-day span { color: var(--turquoise); font-weight: 900; font-size: 12px; letter-spacing: .1em; }
.schedule-day strong { font-size: 25px; }
.schedule-grid h3 { margin: 7px 0 4px; font-size: 26px; text-transform: uppercase; }
.schedule-grid p { margin: 0 0 8px; color: #59625f; }
.schedule-grid small { color: #7d8784; }
.tag { display: inline-block; color: var(--turquoise-dark); font-size: 10px; font-weight: 900; letter-spacing: .12em; }
.events-grid { display: grid; gap: 12px; }
.event-card { display: grid; grid-template-columns: 100px 1fr 44px; gap: 24px; align-items: center; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 28px; }
.event-date { display: flex; flex-direction: column; width: 72px; height: 72px; justify-content: center; align-items: center; border: 2px solid var(--turquoise); border-radius: 50%; font-weight: 900; font-size: 11px; }
.event-date strong { font-size: 27px; line-height: 1; }
.event-card small { color: var(--turquoise-dark); font-weight: 900; letter-spacing: .08em; }
.event-card h3 { margin: 4px 0; text-transform: uppercase; font-size: 25px; }
.event-card p { margin: 0; color: #59625f; }
.event-card > a { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: var(--black); color: var(--turquoise); font-size: 22px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.price-card { position: relative; padding: 36px; border: 1px solid rgba(255,255,255,.15); border-radius: var(--radius); background: #0c0f0e; }
.price-card--featured { background: var(--turquoise); color: var(--black); transform: translateY(-18px); }
.price-card__label { color: var(--turquoise); font-size: 10px; font-weight: 900; letter-spacing: .14em; }
.price-card--featured .price-card__label { color: var(--black); }
.price-card__badge { position: absolute; top: 18px; right: 18px; background: var(--black); color: var(--white); padding: 7px 10px; border-radius: 999px; font-size: 9px; font-weight: 900; letter-spacing: .08em; }
.price-card h3 { font-size: 32px; text-transform: uppercase; margin: 12px 0 5px; }
.price { margin: 0 0 28px; font-size: 42px; font-weight: 900; letter-spacing: -.04em; }
.price > span { font-size: 20px; vertical-align: top; }
.price small { font-size: 12px; color: rgba(255,255,255,.52); letter-spacing: 0; }
.price-card--featured .price small { color: rgba(0,0,0,.58); }
.price-card ul { list-style: none; padding: 0; margin: 30px 0 34px; }
.price-card li { padding: 12px 0; border-top: 1px solid rgba(255,255,255,.1); font-size: 14px; color: rgba(255,255,255,.72); }
.price-card--featured li { border-color: rgba(0,0,0,.2); color: rgba(0,0,0,.78); }
.price-card .btn { width: 100%; }
.price-card--featured .btn--primary { background: var(--black); color: var(--white); }
.team-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: 90px; align-items: start; }
.team-cards { display: grid; gap: 18px; }
.team-card { display: grid; grid-template-columns: 210px 1fr; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.team-card__photo { min-height: 250px; display: grid; place-items: center; position: relative; overflow: hidden; background: var(--black); }
.team-card__photo.has-photo { background-size: cover; background-position: center; }
.team-card__photo.has-photo::before, .team-card__photo.has-photo::after, .team-card__photo.has-photo span { display: none; }
.team-card__photo::before, .team-card__photo::after { content: ""; position: absolute; border-radius: 50%; }
.team-card__photo::before { width: 220px; height: 220px; border: 30px solid var(--turquoise); opacity: .8; transform: translate(40px, -30px); }
.team-card__photo::after { width: 150px; height: 150px; border: 2px solid rgba(255,255,255,.35); transform: translate(-45px, 55px); }
.team-card__photo--two::before { transform: translate(-40px, 40px); }
.team-card__photo--two::after { transform: translate(50px, -60px); }
.team-card__photo span { position: relative; z-index: 2; color: var(--white); font-size: 52px; font-weight: 900; font-style: italic; }
.team-card > div:last-child { padding: 35px; align-self: center; }
.team-card small { color: var(--turquoise-dark); font-weight: 900; letter-spacing: .1em; }
.team-card h3 { margin: 8px 0; font-size: 26px; text-transform: uppercase; }
.team-card p { margin: 0; color: #65706c; }
.testimonials { background: var(--white); }
.slider-controls { display: flex; gap: 8px; justify-content: flex-end; }
.slider-controls button { width: 48px; height: 48px; border: 1px solid var(--line); border-radius: 50%; background: var(--white); font-size: 20px; }
.slider-controls button:hover { background: var(--black); color: var(--white); }
.testimonial-slider { min-height: 340px; background: var(--turquoise); border-radius: 30px; overflow: hidden; }
.testimonial { display: none; min-height: 420px; padding: 55px 65px; grid-template-columns: 190px 1fr; gap: 44px; align-items: center; }
.testimonial.active { display: grid; animation: fade .35s ease; }
.testimonial__photo { width: 190px; height: 190px; border-radius: 50%; object-fit: cover; background: rgba(0,0,0,.13); border: 4px solid rgba(255,255,255,.7); box-shadow: 0 18px 40px rgba(0,0,0,.16); }
.testimonial__content { min-width: 0; }
.testimonial p { max-width: 980px; margin: 0; font-size: clamp(28px, 4vw, 52px); line-height: 1.08; font-weight: 800; letter-spacing: -.035em; }
.testimonial div { display: flex; flex-direction: column; margin-top: 40px; }
.testimonial strong { text-transform: uppercase; }
.testimonial span { font-size: 13px; opacity: .7; }
@keyframes fade { from { opacity: .25; transform: translateY(8px); } }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 270px; gap: 12px; }
.gallery-item { position: relative; margin: 0; border-radius: 18px; overflow: hidden; background: #111; }
.gallery-item.has-photo { background-size: cover; background-position: center; }
.gallery-item.has-photo::before, .gallery-item.has-photo::after { display: none; }
.gallery-item--wide { grid-column: span 2; }
.gallery-item figcaption { position: absolute; inset: auto 0 0; z-index: 3; padding: 70px 24px 22px; background: linear-gradient(transparent, rgba(0,0,0,.82)); }
.gallery-item figcaption span { display: block; color: var(--turquoise); font-size: 10px; font-weight: 900; letter-spacing: .13em; }
.gallery-item figcaption strong { display: block; margin-top: 4px; font-size: 20px; text-transform: uppercase; }
.art::before, .art::after { content: ""; position: absolute; transition: transform .5s ease; }
.art:hover::before { transform: scale(1.08) rotate(-4deg); }
.art:hover::after { transform: scale(1.05) rotate(3deg); }
.art--1 { background: radial-gradient(circle at 25% 25%, rgba(10,179,157,.9), transparent 28%), linear-gradient(135deg,#202422,#050505); }
.art--1::before { width: 430px; height: 190px; border: 26px solid rgba(255,255,255,.84); border-radius: 50%; right: -70px; top: 20px; transform: rotate(-13deg); }
.art--1::after { width: 350px; height: 140px; border: 10px solid var(--turquoise); border-radius: 50%; right: -20px; top: 60px; transform: rotate(-13deg); }
.art--2 { background: linear-gradient(135deg, var(--turquoise), #04796c); }
.art--2::before { width: 170px; height: 170px; background: var(--black); border-radius: 50%; top: 35px; left: 55px; box-shadow: 70px 45px 0 rgba(255,255,255,.9), -35px 80px 0 rgba(0,0,0,.38); }
.art--3 { background: repeating-linear-gradient(115deg, #060606 0 25px, #101413 25px 50px); }
.art--3::before { inset: 40px 25px; border: 2px solid var(--turquoise); border-radius: 50%; transform: rotate(-12deg); }
.art--3::after { width: 70px; height: 70px; border-radius: 50%; background: var(--white); right: 42px; top: 48px; }
.art--4 { background: linear-gradient(160deg, #222 0 45%, var(--turquoise) 46% 58%, #090909 59%); }
.art--4::before { width: 180px; height: 180px; border-radius: 50%; border: 3px solid rgba(255,255,255,.7); left: -45px; top: -15px; }
.art--5 { background: radial-gradient(circle at 75% 35%, rgba(10,179,157,.8), transparent 25%), linear-gradient(120deg,#0b0c0c,#242b29); }
.art--5::before { width: 120%; height: 160px; border: 18px solid var(--white); border-radius: 50%; left: -10%; bottom: -60px; transform: rotate(-5deg); opacity: .9; }
.art--5::after { width: 95%; height: 120px; border: 6px solid var(--turquoise); border-radius: 50%; left: 3%; bottom: -24px; transform: rotate(-5deg); }
.faq-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: 100px; }
.accordion { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item button { width: 100%; padding: 24px 0; background: transparent; border: 0; display: flex; justify-content: space-between; text-align: left; font-weight: 800; font-size: 18px; }
.faq-item b { color: var(--turquoise-dark); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .25s ease; }
.faq-answer p { overflow: hidden; margin: 0; color: #5f6966; }
.faq-item.active .faq-answer { grid-template-rows: 1fr; }
.faq-item.active .faq-answer p { padding-bottom: 24px; }
.contact-section { position: relative; overflow: hidden; background: var(--black); color: var(--white); padding: 130px 0; }
.contact-bg { position: absolute; inset: 0; background: radial-gradient(circle at 10% 15%, rgba(10,179,157,.22), transparent 25%), linear-gradient(120deg, transparent 60%, rgba(10,179,157,.08)); }
.contact-bg::after { content: ""; position: absolute; width: 800px; height: 280px; border: 3px solid rgba(10,179,157,.28); border-radius: 50%; right: -280px; bottom: -20px; transform: rotate(-20deg); }
.contact-grid { position: relative; z-index: 2; display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; }
.contact-copy p { color: rgba(255,255,255,.63); font-size: 18px; max-width: 560px; }
.contact-details { display: grid; gap: 16px; margin-top: 45px; }
.contact-details a { display: flex; flex-direction: column; }
.contact-details span { color: var(--turquoise); font-size: 10px; font-weight: 900; letter-spacing: .14em; }
.contact-form { background: var(--white); color: var(--black); padding: 38px; border-radius: 26px; box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form label { display: grid; gap: 8px; margin-bottom: 16px; font-size: 11px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.contact-form input, .contact-form textarea, .contact-form select { width: 100%; border: 1px solid #d8dfdc; background: #f7f9f8; border-radius: 12px; padding: 14px 15px; outline: none; text-transform: none; letter-spacing: 0; }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { border-color: var(--turquoise); box-shadow: 0 0 0 3px rgba(10,179,157,.12); }
.contact-form .btn { border: 0; }
.form-status { min-height: 20px; margin: 12px 0 0; color: var(--turquoise-dark); font-size: 13px; font-weight: 750; }
.site-footer { background: #020202; color: var(--white); padding: 75px 0 26px; border-top: 1px solid rgba(255,255,255,.08); }
.footer-grid { display: grid; grid-template-columns: 1.3fr .7fr .7fr 1.1fr; gap: 60px; }
.footer-brand img { width: 150px; height: 110px; object-fit: contain; object-position: left center; }
.footer-brand p, .newsletter p { color: rgba(255,255,255,.48); }
.footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; gap: 10px; }
.footer-grid span { color: var(--turquoise); font-size: 10px; font-weight: 900; letter-spacing: .15em; margin-bottom: 8px; }
.footer-grid a { color: rgba(255,255,255,.72); font-size: 14px; }
.footer-grid a:hover { color: var(--white); }
.newsletter form { display: grid; grid-template-columns: 1fr 46px; border-bottom: 1px solid rgba(255,255,255,.28); }
.newsletter input { background: transparent; border: 0; color: var(--white); padding: 12px 0; outline: none; }
.newsletter button { border: 0; background: transparent; color: var(--turquoise); font-size: 22px; }
.footer-bottom { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 25px; margin-top: 70px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.08); color: rgba(255,255,255,.42); font-size: 12px; }
.footer-credit a { color: rgba(255,255,255,.72); font-weight: 800; transition: color .2s ease; }
.footer-credit a:hover { color: var(--turquoise); }
.footer-back { justify-self: end; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1050px) {
  .main-nav { gap: 16px; font-size: 11px; }
  .hero__content { grid-template-columns: 1fr; }
  .hero__visual { min-height: 430px; }
  .hero__logo-ring { left: 50%; right: auto; transform: translateX(-50%); width: 390px; }
  .pace-card--top { left: 8%; }
  .pace-card--bottom { right: 8%; }
  .method-grid { grid-template-columns: repeat(2, 1fr); }
  .method-card:nth-child(2) { border-right: 0; }
  .method-card:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.12); }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card--featured { transform: none; }
  .team-layout, .faq-layout, .contact-grid { grid-template-columns: 1fr; gap: 55px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  .topbar__inner span { display: none; }
  .site-header { top: auto; background: linear-gradient(to bottom, rgba(5,5,5,.68), rgba(5,5,5,.12) 72%, transparent); }
  .site-header.scrolled { top: 0; background: rgba(5,5,5,.94); }
  .site-header.inner-header { background: var(--black); }
  .nav-wrap { min-height: 92px; }
  .brand { width: min(170px, 46vw); }
  .brand img, .brand .custom-logo { max-height: 66px; }
  .menu-toggle { display: block; }
  .main-nav { position: fixed; inset: 0; background: rgba(5,5,5,.98); display: flex; flex-direction: column; justify-content: center; gap: 24px; font-size: 22px; transform: translateX(100%); transition: transform .3s ease; }
  .main-nav.open { transform: translateX(0); }
  .nav-cta { min-width: 200px; text-align: center; }
  .menu-toggle { position: relative; z-index: 55; }
  .hero { min-height: 930px; padding-top: 160px; }
  .hero__copy h1 { font-size: clamp(52px, 14vw, 78px); }
  .hero__copy > p { font-size: 17px; }
  .hero__meta { gap: 18px; }
  .hero__meta strong { font-size: 20px; }
  .split-grid, .section-intro, .training-banner__grid { grid-template-columns: 1fr; gap: 36px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .levels div { grid-template-columns: 40px 1fr; }
  .levels small { grid-column: 2; margin-top: 4px; }
  .schedule-grid article { grid-template-columns: 115px 1fr; }
  .team-card { grid-template-columns: 150px 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item--wide { grid-column: span 2; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 26px, var(--max-width)); }
  .section { padding: 88px 0; }
  .hero { min-height: 970px; }
  .hero__actions { flex-direction: column; }
  .hero__meta { display: grid; grid-template-columns: repeat(3, 1fr); }
  .hero__visual { min-height: 360px; }
  .hero__logo-ring { width: 285px; }
  .pace-card { width: 185px; padding: 14px; }
  .pace-card--top { left: 0; top: 30px; }
  .pace-card--bottom { right: 0; bottom: 0; }
  .section-heading h2, .section-intro h2, .contact-copy h2 { font-size: 45px; }
  .manifesto .lead { font-size: 24px; }
  .stats-grid { grid-template-columns: 1fr 1fr; margin-top: 55px; }
  .stats-grid article { min-height: 140px; padding: 18px; }
  .stats-grid strong { font-size: 44px; }
  .method-grid { grid-template-columns: 1fr; }
  .method-card { min-height: auto; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
  .method-card:last-child { border-bottom: 0; }
  .method-card__icon { margin-bottom: 40px; }
  .calendar-tabs { width: 100%; border-radius: 18px; }
  .tab-button { flex: 1; padding: 12px 8px; }
  .schedule-grid article, .event-card { grid-template-columns: 1fr; }
  .schedule-day { min-height: 82px; flex-direction: row; gap: 10px; }
  .event-card > a { display: none; }
  .price-card { padding: 28px; }
  .team-card { grid-template-columns: 1fr; }
  .team-card__photo { min-height: clamp(280px, 82vw, 360px); }
  .team-card__photo.has-photo, .gallery-item.has-photo { background-position: var(--mobile-image-position, center top); }
  .testimonial { min-height: 360px; padding: 38px 28px; grid-template-columns: 1fr; gap: 22px; align-items: start; }
  .testimonial__photo { width: 110px; height: 110px; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: clamp(280px, 78vw, 340px); }
  .gallery-item--wide { grid-column: auto; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { display: flex; gap: 12px; flex-direction: column; align-items: flex-start; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-hero { padding: 75px 0 65px; }
  .blog-content, .article-shell { padding: 70px 0 85px; }
  .blog-footer__inner { align-items: flex-start; flex-direction: column; }
  .comment-form-author, .comment-form-email { width: 100%; display: block; margin-left: 0; }
  .comment-list .children { margin-left: 16px; }
}

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

/* Calculadora de zonas — Metodología Torres Running */
.tr-calculator-page { background: var(--black); }
.tr-calc-hero { position: relative; overflow: hidden; min-height: 900px; padding: 190px 0 105px; color: var(--white); background: radial-gradient(circle at 18% 45%, rgba(10,179,157,.16), transparent 30%), #050505; }
.tr-calc-grid { position: absolute; inset: 0; opacity: .45; background-image: linear-gradient(rgba(10,179,157,.055) 1px, transparent 1px), linear-gradient(90deg, rgba(10,179,157,.055) 1px, transparent 1px); background-size: 42px 42px; mask-image: linear-gradient(to bottom, #000, transparent 96%); }
.tr-calc-hero::before { content: ""; position: absolute; width: 640px; height: 640px; left: -250px; top: 190px; border: 1px solid rgba(10,179,157,.22); border-radius: 50%; box-shadow: 0 0 0 85px rgba(10,179,157,.025), 0 0 0 170px rgba(10,179,157,.018); }
.tr-calc-hero__inner { position: relative; display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(55px, 7vw, 110px); align-items: center; }
.tr-calc-intro h1 { margin: 22px 0 30px; font-size: clamp(58px, 6.6vw, 100px); line-height: .88; letter-spacing: -.065em; }
.tr-calc-intro h1 span { color: var(--turquoise); }
.tr-calc-intro > p { max-width: 600px; color: rgba(255,255,255,.68); font-size: 19px; line-height: 1.55; }
.tr-calc-principle { display: grid; gap: 7px; max-width: 590px; margin-top: 38px; padding: 25px 0 25px 28px; border-left: 2px solid var(--turquoise); }
.tr-calc-principle strong { font-size: 16px; }
.tr-calc-principle span { color: rgba(255,255,255,.5); font-size: 13px; line-height: 1.55; }
.tr-calc-card { width: 100%; min-height: 600px; padding: clamp(28px, 3.2vw, 46px); border: 1px solid rgba(10,179,157,.38); border-radius: 20px; background: linear-gradient(145deg, rgba(24,28,27,.98), rgba(10,13,12,.99)); box-shadow: 0 35px 100px rgba(0,0,0,.45), inset 0 1px rgba(255,255,255,.05); }
.tr-step[hidden], .tr-results[hidden], .tr-recorded-field[hidden] { display: none !important; }
.tr-step__head { display: grid; gap: 8px; margin-bottom: 30px; padding-bottom: 21px; border-bottom: 1px solid rgba(255,255,255,.1); }
.tr-step__head span { color: var(--turquoise); font-size: 10px; font-weight: 900; letter-spacing: .16em; }
.tr-step__head strong { font-size: clamp(26px, 2.4vw, 38px); line-height: 1.05; letter-spacing: -.035em; }
.tr-field { display: grid; gap: 9px; }
.tr-field > span, .tr-question legend { color: #e1e5e4; font-size: 14px; font-weight: 700; line-height: 1.45; }
.tr-field > div { position: relative; }
.tr-field input { width: 100%; height: 59px; padding: 0 70px 0 18px; color: var(--white); border: 1px solid #424c49; border-radius: 9px; outline: 0; background: #111513; font-size: 22px; font-weight: 800; }
.tr-field input:focus { border-color: var(--turquoise); box-shadow: 0 0 0 3px rgba(10,179,157,.14); }
.tr-field small { position: absolute; right: 18px; top: 50%; transform: translateY(-50%); color: #7e8986; font-size: 11px; font-weight: 700; }
.tr-recorded-field { margin-top: 22px; }
.tr-field-error { min-height: 20px; margin: 8px 0 0; color: #ff8179; font-size: 12px; }
.tr-question { margin: 0; padding: 0 0 23px; border: 0; }
.tr-question + .tr-question { padding-top: 19px; border-top: 1px solid rgba(255,255,255,.08); }
.tr-question legend { width: 100%; margin-bottom: 14px; }
.tr-choice-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 9px; }
.tr-choice-row label { cursor: pointer; }
.tr-choice-row input { position: absolute; opacity: 0; pointer-events: none; }
.tr-choice-row span { display: grid; place-items: center; height: 44px; color: rgba(255,255,255,.68); border: 1px solid #3d4543; border-radius: 7px; background: #101311; font-size: 12px; font-weight: 800; transition: .18s ease; }
.tr-choice-row input:checked + span { color: var(--black); border-color: var(--turquoise); background: var(--turquoise); }
.tr-choice-row input:focus-visible + span { outline: 2px solid var(--white); outline-offset: 2px; }
.tr-maf-questions { max-height: 410px; overflow-y: auto; padding-right: 8px; scrollbar-color: var(--turquoise) #202523; }
.tr-calc-button { width: 100%; height: 56px; margin-top: 18px; cursor: pointer; display: flex; align-items: center; justify-content: space-between; padding: 0 23px; color: var(--black); border: 0; border-radius: 999px; background: var(--turquoise); font-size: 12px; font-weight: 900; letter-spacing: .11em; transition: transform .2s ease, background .2s ease; }
.tr-calc-button:hover { transform: translateY(-2px); background: #14c9b0; }
.tr-calc-button span { font-size: 22px; }
.tr-step-actions { display: grid; grid-template-columns: auto 1fr; gap: 15px; align-items: end; }
.tr-back { height: 56px; padding: 0 8px; cursor: pointer; color: rgba(255,255,255,.6); border: 0; background: transparent; font-size: 11px; font-weight: 900; letter-spacing: .08em; }
.tr-result-summary { display: grid; grid-template-columns: repeat(3, 1fr); margin-bottom: 12px; border: 1px solid rgba(255,255,255,.11); border-radius: 10px; }
.tr-result-summary article { display: grid; grid-template-columns: auto 1fr; align-items: baseline; padding: 17px; border-right: 1px solid rgba(255,255,255,.1); }
.tr-result-summary article:last-child { border-right: 0; }
.tr-result-summary span { grid-column: 1 / -1; color: #86918d; font-size: 8px; font-weight: 900; letter-spacing: .1em; }
.tr-result-summary strong { color: var(--turquoise); font-size: 31px; letter-spacing: -.05em; }
.tr-result-summary small { margin-left: 5px; color: var(--turquoise); font-size: 9px; font-weight: 800; }
.tr-result-origin { margin: 12px 0 18px; color: #8f9996; font-size: 11px; line-height: 1.45; }
.tr-zones { display: grid; gap: 6px; }
.tr-zone { display: grid; grid-template-columns: 42px 1fr auto; gap: 12px; align-items: center; min-height: 63px; padding: 10px 13px; border: 1px solid rgba(255,255,255,.1); border-left: 3px solid var(--zone-color); border-radius: 8px; background: rgba(255,255,255,.025); }
.tr-zone > strong { color: var(--zone-color); font-size: 19px; }
.tr-zone h3 { margin: 0 0 2px; color: var(--white); font-size: 13px; }
.tr-zone p { margin: 0; color: #77817e; font-size: 9px; line-height: 1.35; }
.tr-zone > b { font-size: 12px; white-space: nowrap; }
.tr-zone--1 { --zone-color: #ffffff; }.tr-zone--2 { --zone-color: #61c8ff; }.tr-zone--3 { --zone-color: #0ab39d; }.tr-zone--4 { --zone-color: #ff9f2f; }.tr-zone--5 { --zone-color: #ff5349; }
.tr-result-note { margin-top: 17px; padding: 17px 18px; border-left: 2px solid var(--turquoise); background: rgba(10,179,157,.06); }
.tr-result-note strong { font-size: 12px; }.tr-result-note p { margin: 5px 0 0; color: #8d9794; font-size: 10px; line-height: 1.45; }
.tr-restart { display: block; margin: 18px auto 0; cursor: pointer; color: var(--turquoise); border: 0; background: transparent; font-size: 10px; font-weight: 900; letter-spacing: .1em; }
.tr-results.is-visible .tr-zone { animation: tr-zone-in .45s ease both; }.tr-results.is-visible .tr-zone:nth-child(2) { animation-delay: .05s; }.tr-results.is-visible .tr-zone:nth-child(3) { animation-delay: .1s; }.tr-results.is-visible .tr-zone:nth-child(4) { animation-delay: .15s; }.tr-results.is-visible .tr-zone:nth-child(5) { animation-delay: .2s; }
@keyframes tr-zone-in { from { opacity: 0; transform: translateY(8px); } }
.tr-method-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); }
.tr-method-grid article { min-height: 260px; padding: 27px; border-right: 1px solid var(--line); }
.tr-method-grid article:last-child { border-right: 0; }
.tr-method-grid span { color: var(--turquoise-dark); font-size: 11px; font-weight: 900; }
.tr-method-grid h3 { margin: 70px 0 11px; font-size: 23px; text-transform: uppercase; }
.tr-method-grid p { margin: 0; color: #606a67; font-size: 14px; line-height: 1.55; }
.tr-method-copy { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; margin: 65px 0 45px; }
.tr-method-copy p { margin: 0; color: #505956; font-size: 16px; line-height: 1.72; }
.tr-disclaimer { display: grid; grid-template-columns: 180px 1fr; gap: 35px; padding: 30px; color: var(--white); background: var(--black); }
.tr-disclaimer strong { color: var(--turquoise); font-size: 12px; letter-spacing: .13em; text-transform: uppercase; }.tr-disclaimer p { margin: 0; color: rgba(255,255,255,.63); line-height: 1.6; }
.tr-coach-validation h2 { margin: 17px 0 15px; font-size: clamp(48px, 6vw, 82px); line-height: .94; letter-spacing: -.05em; text-transform: uppercase; }
.tr-validation-lead { max-width: 650px; color: rgba(255,255,255,.55); }
.tr-validation-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 55px; border: 1px solid rgba(255,255,255,.13); }
.tr-validation-grid article { min-height: 280px; padding: 30px; border-right: 1px solid rgba(255,255,255,.13); }
.tr-validation-grid article:last-child { border-right: 0; }.tr-validation-grid span { color: var(--turquoise); font-size: 11px; font-weight: 900; }.tr-validation-grid h3 { margin: 80px 0 12px; font-size: 30px; }.tr-validation-grid p { margin: 0; color: rgba(255,255,255,.55); font-size: 14px; line-height: 1.58; }

@media (max-width: 820px) {
  .tr-calc-hero { padding: 155px 0 80px; }
  .tr-calc-hero__inner { grid-template-columns: 1fr; gap: 55px; }
  .tr-calc-intro h1 { font-size: clamp(55px, 14vw, 74px); }
  .tr-calc-card { min-height: 0; padding: 25px 18px; border-radius: 14px; }
  .tr-result-summary { grid-template-columns: 1fr; }
  .tr-result-summary article { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.1); }
  .tr-result-summary article:last-child { border-bottom: 0; }
  .tr-zone { grid-template-columns: 37px 1fr; }
  .tr-zone > b { grid-column: 2; }
  .tr-method-grid, .tr-validation-grid { grid-template-columns: 1fr; }
  .tr-method-grid article, .tr-validation-grid article { min-height: 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .tr-method-grid h3, .tr-validation-grid h3 { margin-top: 35px; }
  .tr-method-copy { grid-template-columns: 1fr; gap: 25px; }
  .tr-disclaimer { grid-template-columns: 1fr; gap: 12px; }
}

@media (max-width: 470px) {
  .tr-step-actions { grid-template-columns: 1fr; }
  .tr-back { order: 2; }
  .tr-calc-button { margin-top: 10px; }
}
.contact-form__website{position:absolute!important;left:-9999px!important;width:1px!important;height:1px!important;overflow:hidden!important}
