:root {
  --bg: #050b07;
  --bg-2: #08120c;
  --surface: #0b1710;
  --surface-2: #0f2015;
  --surface-light: #f7f9f7;
  --white: #ffffff;
  --ink: #111713;
  --muted: #aeb8b1;
  --muted-dark: #667069;
  --green: #4ce64f;
  --green-2: #1cbd45;
  --green-dark: #0b6f2b;
  --border-dark: rgba(94, 133, 104, .25);
  --border-light: #e5ebe6;
  --shadow: 0 18px 60px rgba(0, 0, 0, .12);
  --radius: 20px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
}

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

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.material-symbols-rounded {
  font-variation-settings:
    "FILL" 0,
    "wght" 500,
    "GRAD" 0,
    "opsz" 24;
}

/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 11, 7, .92);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  min-height: 72px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  color: #071309;
  font-weight: 900;
  border-radius: 10px 10px 4px 10px;
  background: linear-gradient(135deg, #19be40, #81ff62);
  box-shadow: 0 0 28px rgba(76, 230, 79, .22);
  transform: skewX(-8deg);
}

.brand-name {
  color: var(--white);
  letter-spacing: -.02em;
}

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
}

.main-nav a {
  color: #d5ddd7;
  font-size: 14px;
  font-weight: 600;
  transition: color .2s ease;
}

.main-nav a:hover {
  color: var(--green);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  border: 0;
  color: var(--white);
  background: transparent;
}

/* BUTTONS */

.btn {
  min-height: 44px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform .2s ease,
    background .2s ease,
    border-color .2s ease;
}

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

.btn-primary {
  color: #061208;
  background: linear-gradient(135deg, var(--green), #56ef57);
  box-shadow: 0 9px 28px rgba(62, 221, 73, .18);
}

.btn-primary:hover {
  background: #63f466;
}

.btn-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .02);
}

.btn-outline-light {
  color: var(--white);
  border-color: rgba(97, 239, 103, .65);
  background: rgba(7, 18, 10, .35);
}

.btn-small {
  min-height: 40px;
  padding-inline: 16px;
}

.btn-large {
  min-height: 52px;
  padding-inline: 26px;
}

/* HERO */

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--bg);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 76% 42%, rgba(20, 137, 49, .32), transparent 27%),
    linear-gradient(90deg, #050b07 0%, #071009 47%, rgba(5, 11, 7, .76) 68%, #050b07 100%),
    url("https://images.unsplash.com/photo-1581009146145-b5ef050c2e1e?auto=format&fit=crop&w=1800&q=86")
    78% 35% / min(760px, 58vw) auto no-repeat;
  opacity: .96;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 45%, rgba(5, 11, 7, .94) 86%),
    radial-gradient(circle at 72% 50%, transparent 0 14%, rgba(5, 11, 7, .18) 38%, rgba(5, 11, 7, .78) 85%);
}

.hero-content {
  position: relative;
  min-height: 650px;
  display: flex;
  align-items: center;
  padding-block: 70px 125px;
}

.hero-copy {
  max-width: 590px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
}

.eyebrow-green {
  color: var(--green-dark);
}

.hero h1 {
  margin: 0;
  max-width: 560px;
  font-size: clamp(52px, 7vw, 88px);
  line-height: .96;
  letter-spacing: -.055em;
}

.hero h1 span {
  color: var(--green);
}

.hero-lead {
  max-width: 560px;
  margin: 24px 0 0;
  color: #c8d1ca;
  font-size: 17px;
  line-height: 1.7;
}

.hero-actions {
  margin-top: 30px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-trust {
  position: relative;
  margin-top: -100px;
  padding: 22px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border-dark);
  border-radius: 18px 18px 0 0;
  background: rgba(5, 15, 8, .82);
  backdrop-filter: blur(14px);
}

.trust-item {
  min-height: 72px;
  padding: 4px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-right: 1px solid rgba(255, 255, 255, .08);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item .material-symbols-rounded {
  color: var(--green);
  font-size: 27px;
}

.trust-item strong,
.trust-item small {
  display: block;
}

.trust-item strong {
  margin-bottom: 4px;
  font-size: 14px;
}

.trust-item small {
  color: #9ead9f;
  line-height: 1.45;
}

/* SECTIONS */

.section {
  padding: 92px 0;
}

.section-light {
  background: var(--white);
}

.section-soft {
  background:
    radial-gradient(circle at 10% 20%, rgba(49, 190, 71, .06), transparent 30%),
    #f4f7f4;
}

.section-heading {
  max-width: 700px;
  margin-bottom: 42px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.trainer-cta h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 54px);
  letter-spacing: -.04em;
}

.section-heading p:not(.eyebrow),
.trainer-lead {
  margin: 12px 0 0;
  color: var(--muted-dark);
  font-size: 16px;
  line-height: 1.7;
}

.section-action {
  margin-top: 32px;
  text-align: center;
}

/* SPORTS */

.sports-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.sport-card {
  min-height: 132px;
  padding: 18px 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 13px;
  text-align: center;
  border: 1px solid var(--border-light);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 28px rgba(22, 48, 28, .05);
  transition:
    border-color .2s ease,
    transform .2s ease,
    box-shadow .2s ease;
}

.sport-card:hover {
  transform: translateY(-4px);
  border-color: rgba(28, 189, 69, .45);
  box-shadow: 0 15px 36px rgba(22, 48, 28, .10);
}

.sport-card .material-symbols-rounded {
  color: var(--green-2);
  font-size: 38px;
}

.sport-card strong {
  font-size: 14px;
}

.sport-card-more {
  background: #f8fbf8;
}

/* STEPS */

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.step-card {
  position: relative;
  padding: 28px 24px 30px;
  border: 1px solid #e2e8e3;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 36px rgba(16, 34, 20, .05);
}

.step-card:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 56px;
  right: -20px;
  width: 22px;
  border-top: 2px dashed rgba(23, 181, 60, .34);
}

.step-icon {
  position: relative;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--green-dark);
  background: #eef8ef;
}

.step-icon .material-symbols-rounded {
  font-size: 29px;
}

.step-icon b {
  position: absolute;
  right: -4px;
  bottom: -4px;
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  color: #fff;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--green-dark);
  font-size: 11px;
}

.step-card h3 {
  margin: 22px 0 8px;
  font-size: 18px;
}

.step-card p {
  margin: 0;
  color: var(--muted-dark);
  line-height: 1.6;
  font-size: 14px;
}

/* TRAINER CTA */

.trainer-cta {
  overflow: hidden;
  padding: 92px 0;
  color: #fff;
  background:
    radial-gradient(circle at 78% 52%, rgba(36, 199, 69, .17), transparent 24%),
    linear-gradient(135deg, #061008, #09170d 64%, #061008);
}

.trainer-cta-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 70px;
}

.trainer-lead {
  max-width: 630px;
  color: #b8c4bb;
}

.trainer-benefits {
  margin: 26px 0 30px;
  padding: 0;
  display: grid;
  gap: 12px;
  list-style: none;
}

.trainer-benefits li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #e0e7e1;
}

.trainer-benefits .material-symbols-rounded {
  color: var(--green);
  font-size: 20px;
}

.trainer-panel {
  min-height: 410px;
  display: grid;
  place-items: center;
}

.phone-shell {
  width: 260px;
  padding: 10px;
  border: 1px solid #24392a;
  border-radius: 38px;
  background: #020503;
  box-shadow: 0 32px 90px rgba(0, 0, 0, .55);
  transform: rotate(2deg);
}

.phone-top {
  width: 90px;
  height: 18px;
  margin: 0 auto 7px;
  border-radius: 0 0 12px 12px;
  background: #000;
}

.phone-screen {
  min-height: 435px;
  padding: 18px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 10%, rgba(76, 230, 79, .12), transparent 27%),
    #09110c;
}

.mini-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.brand-mark.mini {
  width: 24px;
  height: 24px;
  border-radius: 7px 7px 3px 7px;
  font-size: 11px;
}

.mini-label {
  margin: 38px 0 6px;
  color: #9daa9f;
  font-size: 11px;
}

.mini-money {
  display: block;
  color: var(--green);
  font-size: 34px;
}

.mini-chart {
  height: 90px;
  margin: 22px 0;
  display: flex;
  align-items: end;
  gap: 8px;
}

.mini-chart span {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(#54f45b, #0d7e30);
}

.mini-chart span:nth-child(1) { height: 38%; }
.mini-chart span:nth-child(2) { height: 54%; }
.mini-chart span:nth-child(3) { height: 47%; }
.mini-chart span:nth-child(4) { height: 72%; }
.mini-chart span:nth-child(5) { height: 88%; }

.mini-stat {
  padding: 10px 0;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, .08);
  color: #a9b5ac;
  font-size: 12px;
}

.mini-stat strong {
  color: #fff;
}

.phone-screen button {
  width: 100%;
  min-height: 42px;
  margin-top: 20px;
  border: 0;
  border-radius: 9px;
  color: #061208;
  background: var(--green);
  font-size: 12px;
  font-weight: 800;
}

/* FOOTER */

.site-footer {
  padding: 64px 0 26px;
  color: #dce4de;
  background:
    radial-gradient(circle at 12% 100%, rgba(28, 189, 69, .10), transparent 35%),
    #040a06;
  border-top: 1px solid rgba(255, 255, 255, .05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(4, 1fr);
  gap: 42px;
}

.footer-grid section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-brand {
  margin-bottom: 16px;
}

.footer-intro {
  max-width: 260px;
  margin: 0 0 14px;
  color: #89978d;
  font-size: 13px;
  line-height: 1.65;
}

.footer-email {
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
}

.footer-grid h3 {
  margin: 5px 0 16px;
  color: #fff;
  font-size: 14px;
}

.footer-grid section > a:not(.brand):not(.footer-email) {
  margin: 0 0 11px;
  color: #9aa79d;
  font-size: 13px;
  transition: color .2s ease;
}

.footer-grid section > a:hover {
  color: var(--green);
}

.socials {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 9px;
}

.socials a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: #cad3cc;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 50%;
  background: rgba(255, 255, 255, .035);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .015);
  transition:
    color .2s ease,
    border-color .2s ease,
    background .2s ease,
    transform .2s ease,
    box-shadow .2s ease;
}

.socials a:hover {
  color: var(--green);
  border-color: rgba(76, 230, 79, .42);
  background: rgba(76, 230, 79, .08);
  box-shadow: 0 8px 24px rgba(28, 189, 69, .12);
  transform: translateY(-2px);
}

.socials a:focus-visible {
  outline: 3px solid rgba(76, 230, 79, .22);
  outline-offset: 3px;
}

.socials .bi {
  display: block;
  font-size: 16px;
  line-height: 1;
}

.footer-bottom {
  margin-top: 48px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  color: #6f7c72;
  border-top: 1px solid rgba(255, 255, 255, .08);
  font-size: 12px;
}

/* TOAST */

.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  z-index: 100;
  max-width: calc(100% - 40px);
  padding: 12px 16px;
  color: #e9f0ea;
  border: 1px solid rgba(76, 230, 79, .28);
  border-radius: 10px;
  background: #0b1710;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 12px);
  transition: .2s ease;
  font-size: 13px;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

/* RESPONSIVE */

@media (max-width: 1040px) {
  .main-nav {
    gap: 15px;
  }

  .nav-actions .btn-ghost {
    display: none;
  }

  .sports-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1.3fr repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .nav-wrap {
    grid-template-columns: auto auto 1fr;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .main-nav {
    position: absolute;
    top: 72px;
    left: 20px;
    right: 20px;
    padding: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 14px;
    background: #071009;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .35);
  }

  .main-nav.open {
    display: flex;
  }

  .nav-actions {
    justify-self: end;
  }

  .hero-bg {
    background:
      radial-gradient(circle at 75% 26%, rgba(20, 137, 49, .25), transparent 30%),
      linear-gradient(90deg, #050b07, rgba(5, 11, 7, .72)),
      url("https://images.unsplash.com/photo-1581009146145-b5ef050c2e1e?auto=format&fit=crop&w=1200&q=82")
      72% 20% / cover no-repeat;
    opacity: .56;
  }

  .hero-content {
    min-height: 610px;
  }

  .hero-copy {
    max-width: 620px;
  }

  .hero-trust {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .trust-item:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, .08);
  }

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

  .step-card:nth-child(2)::after {
    display: none;
  }

  .trainer-cta-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .trainer-panel {
    min-height: auto;
  }
}

@media (max-width: 600px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .nav-wrap {
    min-height: 66px;
  }

  .brand-name {
    font-size: 14px;
  }

  .brand-mark {
    width: 30px;
    height: 30px;
  }

  .nav-actions .btn-primary {
    min-height: 38px;
    padding-inline: 12px;
    font-size: 12px;
  }

  .hero-content {
    min-height: 570px;
    padding-top: 56px;
  }

  .hero h1 {
    font-size: clamp(48px, 15vw, 68px);
  }

  .hero-lead {
    font-size: 15px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-trust {
    grid-template-columns: 1fr;
    margin-top: -70px;
    padding: 12px;
  }

  .trust-item {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .sports-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .sport-card {
    min-height: 112px;
    padding-inline: 6px;
  }

  .sport-card .material-symbols-rounded {
    font-size: 32px;
  }

  .section {
    padding: 70px 0;
  }

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

  .step-card::after {
    display: none;
  }

  .trainer-cta {
    padding: 70px 0;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 34px 22px;
  }

  .footer-grid section:first-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }
}


/* BRANDING V2 — galutiniai Treniruoteka assetai */
.brand-image-link {
  line-height: 0;
}

.brand-logo {
  display: block;
  width: 172px;
  height: 42px;
  object-fit: contain;
  object-position: left center;
}

.footer-logo {
  width: 182px;
  height: 46px;
}

.mini-brand-mark {
  width: 27px;
  height: 27px;
  object-fit: contain;
}

@media (max-width: 600px) {
  .brand-logo {
    width: 142px;
    height: 36px;
  }

  .footer-logo {
    width: 164px;
    height: 42px;
  }
}


/* ABOUT PAGE */

.brand-logo-img {
  display: block;
  width: 150px;
  max-height: 38px;
  object-fit: contain;
  object-position: left center;
}

.active-link {
  color: var(--green) !important;
}

.about-hero {
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 76% 48%, rgba(43, 192, 67, .18), transparent 30%),
    linear-gradient(135deg, #050b07 0%, #071209 62%, #061008 100%);
}

.about-hero-grid {
  min-height: 570px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 72px;
  padding-block: 78px;
}

.about-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(46px, 6.5vw, 78px);
  line-height: .98;
  letter-spacing: -.055em;
}

.about-hero-lead {
  max-width: 690px;
  margin: 24px 0 0;
  color: #bcc8bf;
  font-size: 17px;
  line-height: 1.75;
}

.about-brand-panel {
  position: relative;
  min-height: 360px;
  display: grid;
  place-items: center;
}

.about-brand-panel img {
  position: relative;
  z-index: 3;
  width: min(210px, 55%);
  filter: drop-shadow(0 20px 45px rgba(76, 230, 79, .22));
}

.about-brand-orbit {
  position: absolute;
  border: 1px solid rgba(76, 230, 79, .18);
  border-radius: 50%;
}

.orbit-one {
  width: 330px;
  height: 330px;
}

.orbit-two {
  width: 230px;
  height: 230px;
  border-color: rgba(76, 230, 79, .36);
}

.about-two-col {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 80px;
  align-items: start;
}

.about-two-col .section-heading {
  margin-bottom: 0;
}

.about-copy {
  max-width: 720px;
  color: #4e5a51;
  font-size: 18px;
  line-height: 1.85;
}

.about-copy p {
  margin-top: 0;
}

.about-copy p + p {
  margin-top: 22px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.value-card {
  min-height: 250px;
  padding: 26px;
  border: 1px solid var(--border-light);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 36px rgba(16, 34, 20, .05);
}

.value-card .material-symbols-rounded {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: var(--green-dark);
  border-radius: 14px;
  background: #ecf7ed;
  font-size: 27px;
}

.value-card h3 {
  margin: 24px 0 9px;
  font-size: 19px;
}

.value-card p {
  margin: 0;
  color: var(--muted-dark);
  font-size: 14px;
  line-height: 1.7;
}

.trust-section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 85px;
  align-items: center;
}

.trust-section-grid h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 54px);
  letter-spacing: -.04em;
}

.trust-copy {
  margin: 16px 0 0;
  max-width: 610px;
  color: var(--muted-dark);
  font-size: 17px;
  line-height: 1.75;
}

.trust-list {
  display: grid;
  gap: 12px;
}

.trust-list div {
  min-height: 74px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--border-light);
  border-radius: 14px;
  background: #fbfdfb;
}

.trust-list .material-symbols-rounded {
  color: var(--green-2);
}

.about-final-cta {
  padding: 72px 0;
  color: #fff;
  background:
    radial-gradient(circle at 82% 50%, rgba(49, 198, 107, .18), transparent 28%),
    #061008;
}

.about-final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.about-final-cta h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 52px);
  letter-spacing: -.04em;
}

.about-final-cta p:not(.eyebrow) {
  max-width: 650px;
  margin: 12px 0 0;
  color: #aebbb1;
  line-height: 1.7;
}

.about-final-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 12px;
}

@media (max-width: 900px) {
  .about-hero-grid,
  .about-two-col,
  .trust-section-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .about-brand-panel {
    min-height: 280px;
  }

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

  .about-final-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .brand-logo-img {
    width: 130px;
  }

  .about-hero-grid {
    min-height: auto;
    padding-block: 64px;
  }

  .about-brand-panel {
    min-height: 220px;
  }

  .orbit-one {
    width: 220px;
    height: 220px;
  }

  .orbit-two {
    width: 155px;
    height: 155px;
  }

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

  .about-final-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
  }
}

/* ABOUT v5 – „Kuo tikime“ lygiavimas */
.section-soft .section-heading:not(.centered) {
  max-width: 760px;
  margin-inline: 0;
  margin-bottom: 34px;
}


/* ABOUT v6 – „Kuo tikime“ tekstas dešinėje, kaip „Viskas vienoje vietoje“ */
.values-intro {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 34px;
}

.values-intro .section-heading {
  margin: 0;
  max-width: none;
}

.values-intro-copy {
  color: #4e5a51;
  font-size: 16px;
  line-height: 1.8;
}

.values-intro-copy p {
  margin: 2px 0 0;
  max-width: 720px;
}

@media (max-width: 900px) {
  .values-intro {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

/* FULL WEBSITE DRAFT PAGES */
.subpage-hero{overflow:hidden;color:#fff;background:radial-gradient(circle at 80% 45%,rgba(28,189,69,.18),transparent 30%),linear-gradient(135deg,#050b07,#08120c 70%,#050b07)}
.subpage-hero-grid{min-height:420px;display:grid;grid-template-columns:1.15fr .85fr;gap:60px;align-items:center;padding-block:70px}
.subpage-hero h1{max-width:820px;margin:0;font-size:clamp(44px,6vw,72px);line-height:1;letter-spacing:-.05em}
.subpage-lead{max-width:720px;margin:22px 0 0;color:#b9c5bc;font-size:17px;line-height:1.75}
.subpage-hero-icon{min-height:260px;display:grid;place-items:center}
.subpage-hero-icon .material-symbols-rounded{width:170px;height:170px;display:grid;place-items:center;color:var(--green);border:1px solid rgba(76,230,79,.20);border-radius:42px;background:rgba(76,230,79,.06);box-shadow:0 30px 80px rgba(0,0,0,.25);font-size:82px}
.feature-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}
.compact-cta{padding-block:70px}
.split-cta{display:flex;align-items:center;justify-content:space-between;gap:40px}
.contact-split{display:grid;grid-template-columns:1fr .8fr;gap:70px;align-items:start}
.subpage-copy{max-width:680px;color:var(--muted-dark);font-size:16px;line-height:1.75}
.contact-stack{display:grid;gap:14px}
.contact-card{padding:24px;display:block;border:1px solid var(--border-light);border-radius:18px;background:#fff;box-shadow:0 12px 36px rgba(16,34,20,.05)}
.contact-card .material-symbols-rounded{color:var(--green-2);font-size:30px}
.contact-card h3{margin:15px 0 7px}
.contact-card strong,.contact-card>a{color:var(--green-dark)}
.contact-card p{margin-bottom:0;color:var(--muted-dark);font-size:13px}
.faq-layout{display:grid;grid-template-columns:.42fr 1fr;gap:70px;align-items:start}
.faq-side h2{margin:0;font-size:clamp(34px,5vw,52px);letter-spacing:-.04em}
.faq-list{display:grid;gap:10px}
.faq-list details{padding:0 20px;border:1px solid var(--border-light);border-radius:14px;background:#fff}
.faq-list summary{padding:19px 0;cursor:pointer;font-weight:700}
.faq-list details p{margin:-2px 0 20px;color:var(--muted-dark);line-height:1.7}
.search-shell{display:grid;gap:28px}
.search-filters{padding:20px;display:grid;grid-template-columns:1fr 1fr auto;gap:12px;align-items:end;border:1px solid var(--border-light);border-radius:18px;background:#fff;box-shadow:0 12px 36px rgba(16,34,20,.05)}
.search-filters label{display:grid;gap:7px;color:var(--muted-dark);font-size:12px;font-weight:700}
.search-filters select{min-height:48px;padding-inline:13px;border:1px solid #dbe4dc;border-radius:10px;background:#fff}
.integration-state{min-height:310px;padding:50px 24px;display:grid;justify-items:center;align-content:center;text-align:center;border:1px dashed #cbd9cd;border-radius:20px;background:#f8fbf8}
.integration-state .material-symbols-rounded{color:var(--green-2);font-size:52px}
.integration-state h2{margin:16px 0 8px}
.integration-state p{max-width:680px;margin:0;color:var(--muted-dark);line-height:1.7}
.app-access-card{max-width:850px;padding:38px;display:grid;grid-template-columns:120px 1fr;gap:30px;align-items:center;border:1px solid var(--border-light);border-radius:22px;background:#fff;box-shadow:0 16px 46px rgba(16,34,20,.06)}
.app-access-mark{width:110px;height:110px;object-fit:contain}
.link-card{color:inherit}
.legal-layout{display:grid;grid-template-columns:280px 1fr;gap:58px;align-items:start}
.legal-note{position:sticky;top:100px;padding:20px;border:1px solid rgba(28,189,69,.24);border-radius:16px;background:#f0f8f1}
.legal-note .material-symbols-rounded{color:var(--green-dark)}
.legal-note strong{display:block;margin-top:10px}
.legal-note p{margin-bottom:0;color:var(--muted-dark);line-height:1.6;font-size:13px}
.legal-content{max-width:820px}
.legal-section{padding:0 0 28px;margin-bottom:28px;border-bottom:1px solid var(--border-light)}
.legal-section h2{margin:0 0 10px;font-size:24px}
.legal-section p{margin:0;color:var(--muted-dark);font-size:16px;line-height:1.8}
@media(max-width:900px){.subpage-hero-grid,.contact-split,.faq-layout,.legal-layout{grid-template-columns:1fr;gap:32px}.subpage-hero-icon{min-height:170px}.subpage-hero-icon .material-symbols-rounded{width:130px;height:130px;font-size:62px}.feature-grid{grid-template-columns:repeat(2,1fr)}.split-cta{align-items:flex-start;flex-direction:column}.legal-note{position:static}}
@media(max-width:600px){.subpage-hero-grid{min-height:auto;padding-block:58px}.subpage-hero-icon{display:none}.feature-grid{grid-template-columns:1fr}.search-filters{grid-template-columns:1fr}.app-access-card{grid-template-columns:1fr;padding:26px}.app-access-mark{width:82px;height:82px}}


/* V8 – pilnesnė svetainė */
.sports-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.rich-state {
  min-height: 240px;
}

.trainer-detail-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 70px;
  align-items: start;
}

.trainer-detail-grid h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 54px);
  letter-spacing: -.04em;
}

.requirements-list {
  display: grid;
  gap: 10px;
}

.requirement-row {
  min-height: 76px;
  padding: 15px 17px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  border: 1px solid var(--border-light);
  border-radius: 14px;
  background: #fff;
}

.requirement-row .material-symbols-rounded {
  color: var(--green-2);
  padding-top: 2px;
}

.requirement-row h3 {
  margin: 0 0 5px;
  font-size: 15px;
}

.requirement-row p {
  margin: 0;
  color: var(--muted-dark);
  font-size: 13px;
  line-height: 1.55;
}

.verification-box {
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 15px;
  align-items: center;
  border: 1px solid var(--border-light);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 14px 40px rgba(16,34,20,.05);
}

.verification-box > div:not(.verification-arrow) {
  text-align: center;
}

.verification-box .material-symbols-rounded {
  color: var(--green-2);
  font-size: 34px;
}

.verification-box strong {
  display: block;
  margin-top: 8px;
}

.verification-box p {
  margin: 7px 0 0;
  color: var(--muted-dark);
  font-size: 12px;
  line-height: 1.5;
}

.verification-arrow .material-symbols-rounded {
  color: #a8b5aa;
  font-size: 24px;
}

.pricing-panel {
  padding: 36px;
  display: grid;
  grid-template-columns: 1fr .7fr;
  gap: 45px;
  align-items: center;
  border: 1px solid var(--border-light);
  border-radius: 22px;
  background: #fff;
}

.pricing-panel h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 54px);
  letter-spacing: -.04em;
}

.pricing-panel p {
  color: var(--muted-dark);
  line-height: 1.7;
}

.pricing-example {
  padding: 24px;
  display: grid;
  gap: 8px;
  border-radius: 18px;
  color: #fff;
  background: var(--bg-2);
}

.pricing-example span,
.pricing-example small {
  color: #aab8ad;
}

.pricing-example strong {
  color: var(--green);
  font-size: 28px;
}

.auth-layout {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 60px;
  align-items: start;
}

.role-panel h2,
.auth-side-copy h2 {
  margin: 0 0 24px;
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: -.04em;
}

.role-card {
  width: 100%;
  padding: 18px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
  border: 1px solid var(--border-light);
  border-radius: 15px;
  background: #fff;
  cursor: pointer;
}

.role-card.selected {
  border-color: rgba(28,189,69,.55);
  box-shadow: 0 0 0 3px rgba(28,189,69,.08);
}

.role-card .material-symbols-rounded {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--green-dark);
  border-radius: 12px;
  background: #eef8ef;
}

.role-card strong,
.role-card small {
  display: block;
}

.role-card small {
  margin-top: 4px;
  color: var(--muted-dark);
  line-height: 1.45;
}

.trainer-web-note {
  margin-top: 18px;
  padding: 16px;
  display: flex;
  gap: 12px;
  border: 1px solid rgba(28,189,69,.24);
  border-radius: 14px;
  background: #f0f8f1;
}

.trainer-web-note .material-symbols-rounded {
  color: var(--green-dark);
}

.trainer-web-note p {
  margin: 0;
  color: #405047;
  font-size: 13px;
  line-height: 1.6;
}

.auth-card {
  padding: 30px;
  display: grid;
  gap: 16px;
  border: 1px solid var(--border-light);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 16px 46px rgba(16,34,20,.07);
}

.auth-card label:not(.check-row) {
  display: grid;
  gap: 7px;
  font-size: 13px;
  font-weight: 700;
}

.auth-card input:not([type="checkbox"]) {
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid #dbe4dc;
  border-radius: 10px;
  outline: none;
}

.auth-card input:focus {
  border-color: var(--green-2);
  box-shadow: 0 0 0 3px rgba(28,189,69,.08);
}

.check-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted-dark);
  font-size: 12px;
  line-height: 1.5;
}

.check-row a,
.auth-switch a,
.forgot-link {
  color: var(--green-dark);
  font-weight: 700;
}

.full-btn {
  width: 100%;
}

.auth-switch {
  margin: 0;
  text-align: center;
  color: var(--muted-dark);
  font-size: 13px;
}

.auth-login-layout {
  align-items: center;
}

.simple-checks {
  margin: 20px 0 0;
  padding: 0;
  display: grid;
  gap: 11px;
  list-style: none;
}

.simple-checks li,
.simple-checks > div {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  color: #526056;
  line-height: 1.55;
}

.simple-checks .material-symbols-rounded {
  color: var(--green-2);
  font-size: 20px;
}

.contact-topics {
  margin-top: 28px;
}

.help-grid {
  grid-template-columns: repeat(3, 1fr);
}

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

  .trainer-detail-grid,
  .auth-layout,
  .pricing-panel {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .verification-box {
    grid-template-columns: 1fr;
  }

  .verification-arrow {
    transform: rotate(90deg);
  }

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

@media (max-width: 600px) {
  .sports-grid,
  .help-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .auth-card {
    padding: 22px;
  }
}


/* V9 – SPORTO ŠAKŲ NAVIGACIJOS MENIU */

.nav-sports {
  position: relative;
  display: flex;
  align-items: stretch;
}

.nav-sports-trigger {
  height: 100%;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: inherit;
  border: 0;
  background: transparent;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.nav-sports-caret {
  font-size: 18px;
  transition: transform .18s ease;
}

.sports-mega-menu {
  position: fixed;
  z-index: 120;
  top: var(--header-height, 72px);
  left: 0;
  right: 0;
  padding: 0 20px 22px;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
}

.nav-sports:hover .sports-mega-menu,
.nav-sports:focus-within .sports-mega-menu,
.nav-sports.is-open .sports-mega-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-sports:hover .nav-sports-caret,
.nav-sports:focus-within .nav-sports-caret,
.nav-sports.is-open .nav-sports-caret {
  transform: rotate(180deg);
}

.sports-mega-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 22px;
  border: 1px solid rgba(76, 230, 79, .18);
  border-radius: 0 0 22px 22px;
  background: rgba(5, 11, 7, .985);
  box-shadow: 0 26px 70px rgba(0, 0, 0, .34);
}

.sports-mega-head {
  margin-bottom: 15px;
  padding-bottom: 15px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid rgba(255,255,255,.09);
}

.sports-mega-head small {
  display: block;
  margin-bottom: 5px;
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.sports-mega-head strong {
  color: #fff;
  font-size: 17px;
}

.sports-all-link {
  flex: 0 0 auto;
  color: var(--green) !important;
  font-size: 13px;
  font-weight: 800;
}

.sports-menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.sports-menu-item {
  min-height: 54px;
  padding: 10px 12px !important;
  display: grid !important;
  grid-template-columns: 34px 1fr auto;
  gap: 10px;
  align-items: center;
  color: #f6faf7 !important;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 11px;
  background: rgba(255,255,255,.025);
  font-size: 13px !important;
  font-weight: 650 !important;
  transition: border-color .15s ease, background .15s ease, transform .15s ease;
}

.sports-menu-item:hover,
.sports-menu-item:focus {
  border-color: rgba(76,230,79,.42);
  background: rgba(76,230,79,.075);
  transform: translateY(-1px);
}

.sports-menu-item > .material-symbols-rounded:first-child {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--green);
  border-radius: 10px;
  background: rgba(76,230,79,.10);
  font-size: 21px;
}

.sports-menu-chevron {
  color: var(--green);
  font-size: 17px;
}

/* V9 – trenerių paieškos filtrai */

.search-context {
  padding: 4px 2px 8px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.search-context h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 46px);
  letter-spacing: -.04em;
}

.search-context p:not(.eyebrow) {
  max-width: 760px;
  margin: 9px 0 0;
  color: var(--muted-dark);
  line-height: 1.65;
}

.clear-search-link {
  flex: 0 0 auto;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 750;
}

.search-filters-v9 {
  grid-template-columns: 1fr 1fr .85fr auto;
}

.search-filters-v9 input[type="date"] {
  min-height: 48px;
  padding: 0 13px;
  border: 1px solid #dbe4dc;
  border-radius: 10px;
  background: #fff;
  font: inherit;
}

.search-results-preview {
  min-height: 180px;
  padding: 30px;
  display: flex;
  gap: 18px;
  align-items: center;
  border: 1px dashed #cbd9cd;
  border-radius: 20px;
  background: #f8fbf8;
}

.search-results-icon {
  flex: 0 0 auto;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  color: var(--green-dark);
  border-radius: 16px;
  background: #eaf7ec;
}

.search-results-icon .material-symbols-rounded {
  font-size: 32px;
}

.search-results-preview h3 {
  margin: 0 0 8px;
  font-size: 22px;
}

.search-results-preview p {
  max-width: 780px;
  margin: 0;
  color: var(--muted-dark);
  line-height: 1.7;
}

@media (max-width: 900px) {
  .sports-menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .search-filters-v9 {
    grid-template-columns: 1fr 1fr;
  }

  .search-context {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 760px) {
  .main-nav .nav-sports {
    display: block;
    width: 100%;
  }

  .nav-sports-trigger {
    width: 100%;
    min-height: 46px;
    justify-content: space-between;
  }

  .sports-mega-menu {
    position: static;
    width: 100%;
    max-height: 0;
    padding: 0;
    overflow: hidden;
    visibility: visible;
    opacity: 1;
    transform: none;
    pointer-events: none;
    transition: max-height .25s ease;
  }

  .nav-sports:hover .sports-mega-menu,
  .nav-sports:focus-within .sports-mega-menu {
    max-height: 0;
    pointer-events: none;
  }

  .nav-sports.is-open .sports-mega-menu {
    max-height: 900px;
    pointer-events: auto;
  }

  .sports-mega-inner {
    width: 100%;
    margin: 0;
    padding: 12px 0 6px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .sports-mega-head {
    display: none;
  }

  .sports-menu-grid {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .sports-menu-item {
    min-height: 48px;
    border-color: rgba(255,255,255,.07);
  }
}

@media (max-width: 600px) {
  .search-filters-v9 {
    grid-template-columns: 1fr;
  }

  .search-results-preview {
    align-items: flex-start;
    flex-direction: column;
  }
}


/* V10 – viršutinės navigacijos aktyvumo ir spalvų pataisymas */

.main-nav .nav-sports-trigger {
  color: #f3f7f4 !important;
  opacity: 1 !important;
}

.main-nav .nav-sports-trigger:hover,
.main-nav .nav-sports:focus-within .nav-sports-trigger,
.main-nav .nav-sports.is-open .nav-sports-trigger,
.main-nav .nav-sports.nav-sports-active .nav-sports-trigger {
  color: var(--green) !important;
}

/* Rasti trenerį puslapyje neturi klaidingai šviesti „Kaip tai veikia“. */
.main-nav > a:not(.active-link) {
  color: #f3f7f4;
}

.main-nav > a:not(.active-link):hover,
.main-nav > a:not(.active-link):focus {
  color: var(--green);
}

/* Active spalva paliekama tik realiai aktyviai skilčiai. */
.main-nav > a.active-link {
  color: var(--green) !important;
}


/* V11 – APP-ONLY REGISTRACIJA / REZERVACIJOS CTA */

.app-download-backdrop {
  position: fixed;
  z-index: 9998;
  inset: 0;
  display: none;
  place-items: center;
  padding: 22px;
  background: rgba(0, 0, 0, .72);
  backdrop-filter: blur(7px);
}

.app-download-backdrop.show {
  display: grid;
}

.app-download-modal {
  position: relative;
  width: min(720px, 100%);
  overflow: hidden;
  border: 1px solid rgba(76,230,79,.20);
  border-radius: 24px;
  color: #fff;
  background:
    radial-gradient(circle at 90% 10%, rgba(76,230,79,.16), transparent 34%),
    #07100a;
  box-shadow: 0 30px 100px rgba(0,0,0,.48);
}

.app-download-modal-inner {
  padding: 34px;
}

.app-download-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  color: #fff;
  background: rgba(255,255,255,.04);
  cursor: pointer;
}

.app-download-head {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 18px;
  align-items: center;
  padding-right: 42px;
}

.app-download-mark {
  width: 74px;
  height: 74px;
  object-fit: contain;
}

.app-download-head h2 {
  margin: 0;
  font-size: clamp(26px, 4vw, 38px);
  letter-spacing: -.04em;
}

.app-download-head p {
  margin: 8px 0 0;
  color: #aebbb1;
  line-height: 1.6;
}

.app-download-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr 170px;
  gap: 12px;
}

.app-store-button,
.qr-placeholder {
  min-height: 96px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 16px;
  background: rgba(255,255,255,.035);
}

.app-store-button {
  color: #fff;
  cursor: default;
}

.app-store-button .material-symbols-rounded {
  color: var(--green);
  font-size: 34px;
}

.app-store-button small,
.qr-placeholder small {
  display: block;
  margin-bottom: 3px;
  color: #91a097;
  font-size: 11px;
}

.app-store-button strong {
  display: block;
  font-size: 16px;
}

.qr-placeholder {
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.qr-placeholder .material-symbols-rounded {
  color: var(--green);
  font-size: 34px;
}

.app-download-status {
  margin: 18px 0 0;
  color: #91a097;
  font-size: 12px;
  line-height: 1.6;
}

.app-booking-note {
  padding: 18px 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  border: 1px solid rgba(28,189,69,.22);
  border-radius: 16px;
  background: #f0f8f1;
}

.app-booking-note .material-symbols-rounded {
  color: var(--green-dark);
}

.app-booking-note strong {
  display: block;
}

.app-booking-note p {
  margin: 6px 0 0;
  color: var(--muted-dark);
  font-size: 13px;
  line-height: 1.6;
}

@media (max-width: 700px) {
  .app-download-modal-inner {
    padding: 28px 22px 22px;
  }

  .app-download-head {
    grid-template-columns: 56px 1fr;
  }

  .app-download-mark {
    width: 56px;
    height: 56px;
  }

  .app-download-grid {
    grid-template-columns: 1fr;
  }

  .qr-placeholder {
    display: none;
  }
}


/* V12 – REALŪS SUPABASE TRENERIŲ DUOMENYS */

.live-results-head {
  margin: 10px 0 2px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.live-results-head h3 {
  margin: 0;
  font-size: 22px;
}

.live-results-head span {
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 800;
}

.live-state-card {
  min-height: 180px;
  padding: 30px;
  display: flex;
  gap: 18px;
  align-items: center;
  border: 1px dashed #cbd9cd;
  border-radius: 20px;
  background: #f8fbf8;
}

.live-state-card > .material-symbols-rounded {
  color: var(--green-2);
  font-size: 42px;
}

.live-state-card h3 {
  margin: 0 0 7px;
  font-size: 20px;
}

.live-state-card p {
  margin: 0;
  color: var(--muted-dark);
}

.live-state-error {
  border-color: rgba(190, 46, 46, .25);
  background: #fff7f7;
}

.live-state-error > .material-symbols-rounded {
  color: #b82d2d;
}

.live-state-error .btn {
  margin-top: 16px;
}

.live-spinner {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border: 4px solid rgba(28, 189, 69, .17);
  border-top-color: var(--green-2);
  border-radius: 50%;
  animation: live-spin .8s linear infinite;
}

@keyframes live-spin {
  to { transform: rotate(360deg); }
}

.web-trainer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.web-trainer-card {
  min-width: 0;
  display: grid;
  grid-template-columns: 190px 1fr;
  overflow: hidden;
  border: 1px solid var(--border-light);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 13px 42px rgba(16, 34, 20, .06);
}

.web-trainer-photo {
  position: relative;
  min-height: 270px;
  overflow: hidden;
  display: grid;
  place-items: center;
  color: var(--green-dark);
  background:
    radial-gradient(circle at 70% 20%, rgba(28,189,69,.16), transparent 30%),
    #edf6ef;
}

.web-trainer-photo > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.web-trainer-photo > .material-symbols-rounded {
  font-size: 76px;
}

.trainer-verified-badge {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 7px 9px;
  display: inline-flex;
  gap: 5px;
  align-items: center;
  border-radius: 999px;
  color: #fff;
  background: rgba(7, 16, 10, .88);
  font-size: 11px;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.trainer-verified-badge .material-symbols-rounded {
  color: var(--green);
  font-size: 16px;
}

.web-trainer-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.web-trainer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.web-trainer-top h3 {
  margin: 0;
  font-size: 21px;
}

.web-trainer-top h3 a {
  color: #0b120d;
}

.trainer-headline {
  margin: 5px 0 0;
  color: var(--muted-dark);
  font-size: 13px;
  line-height: 1.5;
}

.trainer-price {
  flex: 0 0 auto;
  text-align: right;
}

.trainer-price small {
  display: block;
  color: #79867c;
  font-size: 10px;
}

.trainer-price strong {
  color: var(--green-dark);
  font-size: 18px;
}

.trainer-meta-row {
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  color: #536057;
  font-size: 12px;
}

.trainer-meta-row > span {
  display: inline-flex;
  gap: 5px;
  align-items: center;
}

.trainer-meta-row .material-symbols-rounded {
  color: var(--green-2);
  font-size: 17px;
}

.trainer-sport-pills {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.trainer-sport-pills span {
  padding: 6px 8px;
  border: 1px solid #dbe7dd;
  border-radius: 999px;
  background: #f7faf7;
  font-size: 10px;
  font-weight: 750;
}

.trainer-availability-pill {
  margin-top: 13px;
  padding: 9px 11px;
  display: inline-flex;
  align-self: flex-start;
  gap: 6px;
  align-items: center;
  border-radius: 10px;
  color: #126628;
  background: #edf8ef;
  font-size: 11px;
  font-weight: 750;
}

.trainer-availability-pill .material-symbols-rounded {
  font-size: 17px;
}

.web-trainer-footer {
  margin-top: auto;
  padding-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #748078;
  font-size: 11px;
}

/* Public trainer profile */

.profile-loading-state {
  min-height: 540px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 15px;
  text-align: center;
  background: #f7faf7;
}

.profile-loading-state > .material-symbols-rounded {
  color: var(--green-2);
  font-size: 48px;
}

.profile-loading-state h2,
.profile-loading-state p {
  margin: 0;
}

.live-profile-hero {
  color: #fff;
  background:
    radial-gradient(circle at 80% 35%, rgba(28,189,69,.18), transparent 30%),
    linear-gradient(135deg, #050b07, #08120c 70%, #050b07);
}

.live-profile-hero-grid {
  min-height: 430px;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 56px;
  align-items: center;
  padding-block: 54px;
}

.live-profile-photo {
  width: fit-content;
  max-width: 340px;
  max-height: 330px;
  overflow: hidden;
  display: inline-grid;
  place-items: center;
  justify-self: start;
  border: 1px solid rgba(76,230,79,.18);
  border-radius: 26px;
  color: var(--green);
  background: rgba(76,230,79,.06);
}

.live-profile-photo img {
  display: block;
  width: auto;
  height: auto;
  max-width: 340px;
  max-height: 330px;
  object-fit: contain;
  object-position: center;
  border-radius: 25px;
  image-rendering: auto;
}

.live-profile-photo > .material-symbols-rounded {
  font-size: 90px;
}

.live-profile-name-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.live-profile-name-row h1 {
  margin: 0;
  font-size: clamp(42px, 6vw, 70px);
  line-height: 1;
  letter-spacing: -.05em;
}

.live-profile-name-row .eyebrow {
  margin-bottom: 10px;
}

.live-verified {
  flex: 0 0 auto;
  padding: 8px 10px;
  display: inline-flex;
  gap: 6px;
  align-items: center;
  border: 1px solid rgba(76,230,79,.22);
  border-radius: 999px;
  color: var(--green);
  background: rgba(76,230,79,.07);
  font-size: 11px;
  font-weight: 800;
}

.live-verified .material-symbols-rounded {
  font-size: 17px;
}

.live-profile-headline {
  max-width: 760px;
  margin: 17px 0 0;
  color: #c2cdc4;
  font-size: 18px;
  line-height: 1.6;
}

.live-profile-location {
  margin-top: 18px;
  display: flex;
  gap: 7px;
  align-items: center;
  color: #aebbb1;
  font-size: 13px;
}

.live-profile-location .material-symbols-rounded {
  color: var(--green);
  font-size: 19px;
}

.live-profile-stats {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.live-profile-stats > div {
  padding: 15px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 14px;
  background: rgba(255,255,255,.025);
}

.live-profile-stats strong,
.live-profile-stats span {
  display: block;
}

.live-profile-stats strong {
  color: var(--green);
  font-size: 22px;
}

.live-profile-stats span {
  margin-top: 4px;
  color: #93a098;
  font-size: 10px;
}

.live-profile-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 56px;
  align-items: start;
}

.profile-section-block {
  padding-bottom: 46px;
  margin-bottom: 46px;
  border-bottom: 1px solid var(--border-light);
}

.profile-section-block:last-child {
  border-bottom: 0;
}

.profile-section-block h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 46px);
  letter-spacing: -.04em;
}

.profile-body-copy {
  max-width: 830px;
  margin: 17px 0 0;
  color: var(--muted-dark);
  font-size: 16px;
  line-height: 1.8;
  white-space: pre-line;
}

.profile-tags {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.profile-tags span {
  padding: 8px 10px;
  border: 1px solid #d7e5da;
  border-radius: 999px;
  background: #f5faf6;
  font-size: 11px;
  font-weight: 750;
}

.web-services-list {
  margin-top: 22px;
  display: grid;
  gap: 12px;
}

.web-service-card {
  padding: 18px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  border: 1px solid var(--border-light);
  border-radius: 16px;
  background: #fff;
}

.web-service-main {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.web-service-main > .material-symbols-rounded {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--green-dark);
  border-radius: 12px;
  background: #edf8ef;
}

.web-service-main small {
  color: #768279;
}

.web-service-main h3 {
  margin: 4px 0 0;
  font-size: 18px;
}

.web-service-main p {
  margin: 7px 0 0;
  color: var(--muted-dark);
  font-size: 13px;
  line-height: 1.55;
}

.web-service-action {
  flex: 0 0 auto;
  display: grid;
  gap: 10px;
  justify-items: end;
}

.web-service-action strong {
  color: var(--green-dark);
  font-size: 18px;
}

.profile-timeline {
  margin-top: 22px;
  display: grid;
  gap: 11px;
}

.profile-timeline article {
  padding: 17px;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 13px;
  border: 1px solid var(--border-light);
  border-radius: 15px;
  background: #fff;
}

.profile-timeline article > .material-symbols-rounded {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--green-dark);
  border-radius: 11px;
  background: #edf8ef;
}

.profile-timeline h3 {
  margin: 0;
  font-size: 16px;
}

.profile-timeline p,
.profile-timeline small,
.profile-timeline div {
  color: var(--muted-dark);
}

.profile-timeline p {
  margin: 4px 0;
  font-size: 12px;
}

.profile-timeline small {
  display: block;
  font-size: 11px;
}

.profile-timeline article div div {
  margin-top: 8px;
  font-size: 12px;
  line-height: 1.6;
}

.credential-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.credential-card {
  padding: 16px;
  display: flex;
  gap: 12px;
  border: 1px solid var(--border-light);
  border-radius: 15px;
  background: #fff;
}

.credential-card > .material-symbols-rounded {
  color: var(--green-dark);
}

.credential-card h3,
.credential-card p {
  margin: 0;
}

.credential-card p {
  margin-top: 4px;
  color: var(--muted-dark);
  font-size: 12px;
}

.credential-card strong {
  margin-top: 9px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--green-dark);
  font-size: 11px;
}

.credential-card strong .material-symbols-rounded {
  font-size: 15px;
}

.language-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.language-grid article {
  padding: 15px;
  display: flex;
  gap: 11px;
  align-items: center;
  border: 1px solid var(--border-light);
  border-radius: 14px;
  background: #fff;
}

.language-grid .material-symbols-rounded {
  color: var(--green-dark);
}

.language-grid strong,
.language-grid small {
  display: block;
}

.language-grid small {
  margin-top: 3px;
  color: var(--muted-dark);
}

.web-review-list {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.web-review-card {
  padding: 17px;
  border: 1px solid var(--border-light);
  border-radius: 15px;
  background: #fff;
}

.web-review-head {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}

.review-stars {
  color: #e6a600;
  letter-spacing: 1px;
}

.web-review-head time {
  color: #89938b;
  font-size: 10px;
}

.web-review-card p {
  margin: 11px 0 0;
  color: var(--muted-dark);
  line-height: 1.6;
}

.profile-empty-note {
  margin-top: 18px;
  padding: 18px;
  border: 1px dashed #ccd9ce;
  border-radius: 14px;
  color: var(--muted-dark);
  background: #f8fbf8;
}

.live-profile-aside {
  position: sticky;
  top: 100px;
}

.profile-app-card {
  padding: 24px;
  border: 1px solid var(--border-light);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 14px 42px rgba(16,34,20,.07);
}

.profile-app-card img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.profile-app-card h3 {
  margin: 2px 0 9px;
  font-size: 24px;
}

.profile-app-card p:not(.eyebrow) {
  color: var(--muted-dark);
  line-height: 1.65;
}

.profile-app-card .btn {
  width: 100%;
  margin-top: 10px;
}

@media (max-width: 1050px) {
  .web-trainer-grid {
    grid-template-columns: 1fr;
  }

  .live-profile-layout {
    grid-template-columns: 1fr;
  }

  .live-profile-aside {
    position: static;
  }
}

@media (max-width: 760px) {
  .web-trainer-card {
    grid-template-columns: 1fr;
  }

  .web-trainer-photo {
    min-height: 250px;
    max-height: 320px;
  }

  .live-profile-hero-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .live-profile-photo {
    max-width: 360px;
  }

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

  .credential-grid,
  .language-grid,
  .web-review-list {
    grid-template-columns: 1fr;
  }

  .web-service-card {
    align-items: stretch;
    flex-direction: column;
  }

  .web-service-action {
    justify-items: stretch;
  }

  .web-service-action .btn {
    width: 100%;
  }
}


/* V13 – miesto rodymas trenerio kortelėje ir profilyje */

.trainer-meta-row-city {
  align-items: center;
}

.trainer-meta-row-city .trainer-city {
  color: #172219;
}

.trainer-meta-row-city .trainer-city strong {
  font-weight: 800;
}

.trainer-meta-row-city .trainer-base-location {
  color: #6f7b72;
}

.live-profile-location-stack {
  align-items: flex-start;
  flex-direction: column;
  gap: 8px;
}

.live-profile-location-stack > span {
  display: inline-flex;
  gap: 7px;
  align-items: center;
}

.live-profile-location-stack strong {
  color: #e9f1eb;
  font-weight: 800;
}


/* V14 – trenerio darbo dienos ir realūs laisvi laikai */

.web-service-card {
  transition:
    border-color .18s ease,
    box-shadow .18s ease,
    transform .18s ease;
}

.web-service-card.is-selected-service {
  border-color: rgba(28, 189, 69, .55);
  box-shadow: 0 0 0 3px rgba(28, 189, 69, .08);
}

.availability-service-summary {
  margin-top: 20px;
  padding: 16px 18px;
  display: flex;
  gap: 13px;
  align-items: center;
  border: 1px solid #d9e7dc;
  border-radius: 15px;
  background: #f8fbf8;
}

.availability-service-summary > .material-symbols-rounded {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--green-dark);
  border-radius: 12px;
  background: #eaf7ed;
}

.availability-service-summary small,
.availability-service-summary strong,
.availability-service-summary p {
  display: block;
}

.availability-service-summary small {
  color: #7b877d;
  font-size: 10px;
}

.availability-service-summary strong {
  margin-top: 2px;
  font-size: 16px;
}

.availability-service-summary p {
  margin: 3px 0 0;
  color: var(--muted-dark);
  font-size: 12px;
}

.availability-date-toolbar {
  margin-top: 16px;
  display: grid;
  grid-template-columns: minmax(220px, 300px) auto;
  gap: 10px;
  align-items: end;
}

.availability-date-toolbar label > span {
  margin-bottom: 6px;
  display: block;
  color: #67736a;
  font-size: 11px;
  font-weight: 700;
}

.availability-date-toolbar input {
  width: 100%;
  min-height: 48px;
  padding: 0 13px;
  border: 1px solid #d7e1d9;
  border-radius: 10px;
  background: #fff;
  font: inherit;
}

.availability-legend {
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  color: #647067;
  font-size: 10px;
}

.availability-legend > span {
  display: inline-flex;
  gap: 6px;
  align-items: center;
}

.legend-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.legend-free {
  background: #1cbd45;
}

.legend-full {
  background: #e2a20d;
}

.legend-off {
  background: #9da6a0;
}

.availability-week {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
}

.availability-loading-inline {
  grid-column: 1 / -1;
  min-height: 116px;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  color: var(--muted-dark);
  border: 1px dashed #cfdbd1;
  border-radius: 14px;
  background: #f8fbf8;
}

.availability-loading-inline .live-spinner {
  width: 27px;
  height: 27px;
  border-width: 3px;
}

.availability-day-card {
  min-height: 108px;
  padding: 12px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border: 1px solid #dde5df;
  border-radius: 14px;
  color: #3d4940;
  background: #fff;
  cursor: pointer;
  transition:
    border-color .16s ease,
    box-shadow .16s ease,
    transform .16s ease,
    background .16s ease;
}

.availability-day-card:hover {
  transform: translateY(-1px);
}

.availability-day-card strong {
  color: #0e1710;
  font-size: 14px;
}

.availability-day-weekday {
  text-transform: capitalize;
  color: #7a867d;
  font-size: 10px;
  font-weight: 700;
}

.availability-day-card small {
  margin-top: 3px;
  font-size: 9px;
  font-weight: 800;
}

.availability-day-card.is-available {
  border-color: rgba(28,189,69,.32);
  color: #11762c;
  background: #f1fbf3;
}

.availability-day-card.is-available small {
  color: #11802f;
}

.availability-day-card.is-full {
  border-color: rgba(226,162,13,.30);
  background: #fffbef;
}

.availability-day-card.is-full small {
  color: #9c6b00;
}

.availability-day-card.is-off {
  background: #f5f6f5;
}

.availability-day-card.is-off small {
  color: #7a837d;
}

.availability-day-card.is-error {
  border-color: rgba(184,45,45,.20);
  background: #fff7f7;
}

.availability-day-card.is-selected {
  border-color: #1cbd45;
  box-shadow: 0 0 0 3px rgba(28,189,69,.12);
}

.availability-times-shell {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid #dde6df;
  border-radius: 16px;
  background: #fff;
}

.availability-times-shell h3 {
  margin: 0 0 13px;
  font-size: 17px;
}

.availability-time-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.availability-time-button {
  min-width: 76px;
  padding: 10px 13px;
  border: 1px solid #cfe0d2;
  border-radius: 10px;
  color: #153b1d;
  background: #f5fbf6;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.availability-time-button:hover,
.availability-time-button.is-selected {
  border-color: #1cbd45;
  color: #0d5d22;
  background: #e8f9ec;
}

.availability-message {
  padding: 15px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  border-radius: 12px;
  background: #f7faf7;
}

.availability-message > .material-symbols-rounded {
  color: #8b711a;
}

.availability-message-off > .material-symbols-rounded {
  color: #78827b;
}

.availability-message strong {
  display: block;
  font-size: 13px;
}

.availability-message p {
  margin: 4px 0 0;
  color: var(--muted-dark);
  font-size: 11px;
  line-height: 1.55;
}

.availability-booking-bar {
  margin-top: 14px;
  padding: 14px 15px;
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(28,189,69,.22);
  border-radius: 14px;
  background: #f2faf4;
}

.availability-selection {
  min-width: 0;
  display: flex;
  gap: 8px;
  align-items: center;
  color: #46604c;
  font-size: 11px;
}

.availability-selection > .material-symbols-rounded {
  flex: 0 0 auto;
  color: var(--green-dark);
  font-size: 20px;
}

.availability-booking-bar .btn:disabled {
  opacity: .55;
  cursor: not-allowed;
}

.availability-footnote {
  margin: 10px 0 0;
  color: #79837c;
  font-size: 10px;
}

@media (max-width: 900px) {
  .availability-week {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .availability-date-toolbar {
    grid-template-columns: 1fr;
  }

  .availability-week {
    display: flex;
    overflow-x: auto;
    padding-bottom: 5px;
    scroll-snap-type: x proximity;
  }

  .availability-day-card {
    min-width: 108px;
    scroll-snap-align: start;
  }

  .availability-booking-bar {
    align-items: stretch;
    flex-direction: column;
  }

  .availability-booking-bar .btn {
    width: 100%;
  }
}


/* V14 typography consistency – profilio kortelių pavadinimai */
.profile-timeline h3,
.credential-card h3,
.web-service-main h3 {
  font-weight: 800;
  color: #0e1710;
}


/* V15 – MOBILE / NAV RESPONSIVE FIX (2026-08-11)
   - vienoda viršutinės navigacijos tipografija
   - atskiras Sporto šakų meniu scroll telefone
   - apsauga nuo netyčinio horizontalaus puslapio išsiplėtimo
   - patogesnis trenerio profilis ir bendri mobile blokai
*/

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

@supports (overflow: clip) {
  html,
  body {
    overflow-x: clip;
  }
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body,
main,
header,
footer,
section,
.container,
.nav-wrap,
.main-nav,
.nav-actions {
  min-width: 0;
}

img,
svg,
video,
canvas,
iframe {
  max-width: 100%;
}

img,
video {
  height: auto;
}

input,
select,
textarea,
button {
  max-width: 100%;
}

.container > *,
[class*="-grid"] > *,
.live-profile-layout > *,
.web-service-card > *,
.web-service-main > *,
.web-review-head > * {
  min-width: 0;
}

.footer-email,
.profile-body-copy,
.web-review-card p,
.web-service-main p {
  overflow-wrap: anywhere;
}

/* „Sporto šakos“ turi atrodyti kaip kiti pagrindinės navigacijos punktai. */
.main-nav .nav-sports-trigger {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0;
}

@media (max-width: 820px) {
  .site-header {
    --header-height: 66px;
  }

  .nav-wrap {
    position: relative;
    gap: 14px;
  }

  /* Pats mobilus meniu telpa į ekraną ir nebestumia viso puslapio. */
  .main-nav {
    top: 100%;
    max-height: calc(100dvh - 78px);
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .main-nav > a,
  .main-nav .nav-sports-trigger {
    width: 100%;
    min-height: 46px;
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
  }

  .main-nav .nav-sports {
    display: block;
    width: 100%;
    min-width: 0;
  }

  .main-nav .nav-sports-trigger {
    justify-content: space-between;
  }

  .sports-mega-menu {
    position: static;
    width: 100%;
    max-height: 0;
    padding: 0;
    overflow: hidden;
    visibility: visible;
    opacity: 1;
    transform: none;
    pointer-events: none;
    transition: max-height .24s ease;
  }

  .nav-sports:hover .sports-mega-menu,
  .nav-sports:focus-within .sports-mega-menu {
    max-height: 0;
    overflow: hidden;
    pointer-events: none;
  }

  /* Atidarius scrollinasi būtent sporto šakų sąrašas, ne puslapis už jo. */
  .nav-sports.is-open .sports-mega-menu {
    max-height: min(58dvh, 520px);
    overflow-y: auto;
    overflow-x: hidden;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
    pointer-events: auto;
    scrollbar-gutter: stable;
  }

  .sports-mega-inner {
    width: 100%;
    margin: 0;
    padding: 10px 0 6px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .sports-mega-head {
    display: none;
  }

  .sports-menu-grid {
    grid-template-columns: 1fr;
    gap: 6px;
    min-width: 0;
  }

  .sports-menu-item {
    width: 100%;
    min-width: 0;
    min-height: 48px;
  }
}

@media (max-width: 600px) {
  .container {
    width: calc(100% - 28px);
    max-width: var(--container);
  }

  .main-nav {
    left: 14px;
    right: 14px;
    padding: 14px;
  }

  .hero h1,
  .about-hero h1,
  .subpage-hero h1,
  .live-profile-name-row h1 {
    overflow-wrap: break-word;
  }

  .live-profile-hero-grid {
    min-height: auto;
    padding-block: 38px;
  }

  .live-profile-name-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .live-profile-name-row h1 {
    font-size: clamp(36px, 12vw, 50px);
  }

  .live-profile-headline {
    font-size: 16px;
  }

  .live-profile-photo {
    width: 100%;
    max-width: 100%;
    max-height: none;
  }

  .live-profile-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .profile-section-block {
    margin-bottom: 30px;
    padding-bottom: 30px;
  }

  .profile-section-block h2 {
    font-size: clamp(28px, 8.5vw, 38px);
  }

  .profile-body-copy {
    font-size: 15px;
    line-height: 1.7;
  }

  .web-review-card {
    padding: 14px;
  }

  .web-review-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .web-service-main {
    min-width: 0;
  }

  .about-hero-grid {
    padding-block: 54px;
  }

  .about-copy,
  .trust-copy,
  .subpage-lead {
    font-size: 15px;
  }
}

@media (max-width: 420px) {
  .nav-wrap {
    gap: 8px;
  }

  .brand-logo,
  .brand-logo-img {
    width: 116px;
    height: auto;
    max-height: 32px;
  }

  .nav-actions .btn-primary {
    min-height: 36px;
    padding-inline: 10px;
    font-size: 11px;
  }

  .sports-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sport-card {
    min-width: 0;
  }

  .hero h1 {
    font-size: clamp(42px, 14vw, 58px);
  }

  .section-heading h2,
  .trainer-cta h2,
  .about-final-cta h2,
  .trust-section-grid h2 {
    overflow-wrap: break-word;
  }
}

/* =========================================================
   TRENIRUOTEKA – TRAINER PROFILE DETAILS v2
   Patirtis / Kvalifikacija / Kalbos / Atsiliepimai atskirai
   ========================================================= */

.profile-details-intro {
  max-width: 720px;
  margin: 12px 0 0;
  color: var(--muted-dark);
  line-height: 1.7;
}

.profile-detail-menu {
  margin-top: 24px;
  display: grid;
  gap: 10px;
}

.profile-detail-link {
  width: 100%;
  min-width: 0;
  padding: 16px 17px;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 24px;
  align-items: center;
  gap: 13px;
  border: 1px solid var(--border-light);
  border-radius: 15px;
  color: var(--ink);
  background: #fff;
  text-align: left;
  cursor: pointer;
  transition:
    border-color .2s ease,
    box-shadow .2s ease,
    transform .2s ease,
    background .2s ease;
}

.profile-detail-link:hover {
  border-color: rgba(28, 189, 69, .38);
  background: #fbfefb;
  box-shadow: 0 10px 28px rgba(18, 55, 27, .06);
  transform: translateY(-1px);
}

.profile-detail-link:focus-visible,
.profile-detail-back:focus-visible {
  outline: 3px solid rgba(28, 189, 69, .22);
  outline-offset: 2px;
}

.profile-detail-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--green-dark);
  border-radius: 12px;
  background: #edf8ef;
  font-size: 23px;
}

.profile-detail-copy {
  min-width: 0;
}

.profile-detail-copy strong,
.profile-detail-copy small {
  display: block;
}

.profile-detail-copy strong {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.35;
}

.profile-detail-copy small {
  margin-top: 4px;
  overflow: hidden;
  color: var(--muted-dark);
  font-size: 12px;
  line-height: 1.4;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.profile-detail-chevron {
  justify-self: end;
  color: #9aa59d;
  font-size: 22px;
}

.profile-detail-panels {
  margin-top: 0;
}

.profile-detail-panel[hidden] {
  display: none !important;
}

.profile-detail-panel.is-active {
  display: block;
  animation: profile-detail-in .18s ease;
}

@keyframes profile-detail-in {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.profile-detail-panel-head {
  margin-bottom: 20px;
}

.profile-detail-panel-head > div {
  margin-top: 18px;
}

.profile-detail-panel-head .eyebrow {
  margin-bottom: 8px;
}

.profile-detail-panel-head h3 {
  margin: 0;
  font-size: clamp(27px, 4vw, 40px);
  line-height: 1.08;
  letter-spacing: -.035em;
}

.profile-detail-back {
  min-height: 40px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 0;
  color: var(--green-dark);
  background: transparent;
  font-weight: 800;
  cursor: pointer;
}

.profile-detail-back .material-symbols-rounded {
  font-size: 20px;
}

.profile-details-section.is-detail-open > .eyebrow,
.profile-details-section.is-detail-open > h2,
.profile-details-section.is-detail-open > .profile-details-intro {
  display: none;
}

/* Atsiliepimai turi būti kompaktiški, ypač telefone. */
.profile-detail-panel .web-review-list {
  margin-top: 0;
}

.profile-detail-panel .web-review-card {
  min-width: 0;
}

.profile-detail-panel .web-review-card p {
  font-size: 14px;
}

@media (max-width: 600px) {
  .profile-details-section {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
  }

  .profile-details-intro {
    margin-top: 9px;
    font-size: 14px;
    line-height: 1.55;
  }

  .profile-detail-menu {
    margin-top: 18px;
    gap: 8px;
  }

  .profile-detail-link {
    min-height: 66px;
    padding: 11px 12px;
    grid-template-columns: 38px minmax(0, 1fr) 20px;
    gap: 10px;
    border-radius: 13px;
  }

  .profile-detail-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    font-size: 21px;
  }

  .profile-detail-copy strong {
    font-size: 14px;
  }

  .profile-detail-copy small {
    margin-top: 2px;
    font-size: 11px;
  }

  .profile-detail-chevron {
    font-size: 20px;
  }

  .profile-detail-panel-head {
    margin-bottom: 14px;
  }

  .profile-detail-panel-head > div {
    margin-top: 12px;
  }

  .profile-detail-panel-head h3 {
    font-size: clamp(25px, 7.7vw, 34px);
  }

  .profile-detail-back {
    min-height: 36px;
    font-size: 13px;
  }

  .profile-detail-panel .profile-timeline,
  .profile-detail-panel .credential-grid,
  .profile-detail-panel .language-grid,
  .profile-detail-panel .web-review-list {
    margin-top: 14px;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .profile-detail-panel .profile-timeline article {
    padding: 12px;
    grid-template-columns: 36px 1fr;
    gap: 10px;
    border-radius: 12px;
  }

  .profile-detail-panel .profile-timeline article > .material-symbols-rounded {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    font-size: 20px;
  }

  .profile-detail-panel .profile-timeline h3 {
    font-size: 14px;
  }

  .profile-detail-panel .profile-timeline p,
  .profile-detail-panel .profile-timeline small,
  .profile-detail-panel .profile-timeline article div div {
    font-size: 11px;
  }

  .profile-detail-panel .credential-card,
  .profile-detail-panel .language-grid article {
    padding: 12px;
    border-radius: 12px;
  }

  .profile-detail-panel .web-review-card {
    padding: 12px;
    border-radius: 12px;
  }

  .profile-detail-panel .web-review-head {
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }

  .profile-detail-panel .review-stars {
    font-size: 13px;
  }

  .profile-detail-panel .web-review-card p {
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.5;
  }

  .profile-detail-panel .profile-empty-note {
    margin-top: 14px;
    padding: 14px;
    font-size: 13px;
  }
}


/* =========================================================
   V16 – HOMEPAGE FIRST-ACTION TRAINER SEARCH (2026-08-12)
   - header'yje neberodomas atskiras "Tapti treneriu" CTA
   - hero pirmame ekrane matoma reali sporto / miesto / datos paieška
   - forma perduoda sport, city ir date į rasti-treneri.html
   ========================================================= */

/* Visuose puslapiuose viršutiniame header'yje paliekame tik "Programėlė".
   "Treneriams" navigacijos punktas lieka pagrindiniame meniu. */
.site-header .nav-actions .btn-primary {
  display: none !important;
}

.hero-search-layout {
  position: relative;
  min-height: 680px;
  padding-block: 66px 132px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .72fr);
  gap: clamp(44px, 7vw, 100px);
  align-items: center;
}

.hero-search-layout .hero-copy {
  max-width: 590px;
}

.hero-search-layout .hero-lead {
  max-width: 540px;
}

.hero-search-card {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 460px;
  justify-self: end;
  padding: 28px;
  color: #0d1710;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 24px;
  background: rgba(255, 255, 255, .97);
  box-shadow:
    0 28px 80px rgba(0, 0, 0, .34),
    0 0 0 1px rgba(33, 204, 70, .06);
  backdrop-filter: blur(14px);
}

.hero-search-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(72, 240, 86, .28), transparent 38%);
  pointer-events: none;
}

.hero-search-head {
  margin-bottom: 20px;
}

.hero-search-head .eyebrow {
  margin-bottom: 8px;
}

.hero-search-head h2 {
  margin: 0;
  color: #09120c;
  font-size: clamp(27px, 2.3vw, 36px);
  line-height: 1.05;
  letter-spacing: -.035em;
}

.hero-search-head > p:last-child {
  margin: 10px 0 0;
  color: #667269;
  font-size: 14px;
  line-height: 1.55;
}

.hero-search-form {
  display: grid;
  gap: 10px;
}

.hero-search-field {
  min-height: 68px;
  padding: 10px 13px;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  border: 1px solid #d9e1da;
  border-radius: 14px;
  background: #fff;
  transition:
    border-color .18s ease,
    box-shadow .18s ease,
    transform .18s ease;
}

.hero-search-field:focus-within {
  border-color: #22c947;
  box-shadow: 0 0 0 4px rgba(34, 201, 71, .10);
  transform: translateY(-1px);
}

.hero-search-field > .material-symbols-rounded {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: #159b34;
  border-radius: 11px;
  background: #effaf1;
  font-size: 21px;
}

.hero-search-control {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.hero-search-control small {
  color: #7b867d;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.1;
}

.hero-search-control select,
.hero-search-control input {
  width: 100%;
  min-width: 0;
  height: 28px;
  padding: 0 28px 0 0;
  color: #101a13;
  border: 0;
  outline: 0;
  background: transparent;
  font: inherit;
  font-size: 15px;
  font-weight: 700;
}

.hero-search-control select {
  cursor: pointer;
}

.hero-search-control input[type="date"] {
  padding-right: 0;
  color-scheme: light;
}

.hero-search-submit {
  min-height: 56px;
  margin-top: 4px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: #061008;
  border: 0;
  border-radius: 13px;
  background: var(--green);
  box-shadow: 0 12px 30px rgba(56, 232, 92, .20);
  font: inherit;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform .18s ease,
    filter .18s ease,
    box-shadow .18s ease;
}

.hero-search-submit:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
  box-shadow: 0 16px 34px rgba(56, 232, 92, .26);
}

.hero-search-submit:active {
  transform: translateY(0);
}

.hero-search-submit .material-symbols-rounded {
  font-size: 21px;
}

.hero-search-note {
  margin: 14px 0 0;
  display: flex;
  align-items: center;
  gap: 7px;
  color: #708076;
  font-size: 11px;
  line-height: 1.45;
}

.hero-search-note .material-symbols-rounded {
  color: #159b34;
  font-size: 17px;
}

/* Truputį paryškiname trenerio nuotrauką už paieškos kortelės,
   bet forma vis tiek lieka pirmas interaktyvus akcentas. */
.hero-search-layout + .hero-trust {
  z-index: 3;
}

@media (max-width: 1040px) {
  .hero-search-layout {
    grid-template-columns: minmax(0, 1fr) minmax(330px, .82fr);
    gap: 38px;
  }

  .hero-search-card {
    max-width: 420px;
    padding: 24px;
  }

  .hero-search-layout .hero h1,
  .hero-search-layout h1 {
    font-size: clamp(48px, 7vw, 72px);
  }
}

@media (max-width: 820px) {
  .hero-search-layout {
    min-height: auto;
    padding-block: 30px 120px;
    grid-template-columns: 1fr;
    gap: 34px;
  }

  /* Telefone pirmiausia parodome paiešką. */
  .hero-search-card {
    order: -1;
    width: min(100%, 560px);
    max-width: none;
    justify-self: start;
    padding: 22px;
  }

  .hero-search-layout .hero-copy {
    max-width: 620px;
  }

  .hero-search-layout .hero-lead {
    max-width: 580px;
  }
}

@media (max-width: 600px) {
  .hero-search-layout {
    padding-top: 20px;
    padding-bottom: 98px;
    gap: 28px;
  }

  .hero-search-card {
    padding: 17px;
    border-radius: 19px;
  }

  .hero-search-head {
    margin-bottom: 15px;
  }

  .hero-search-head h2 {
    font-size: 28px;
  }

  .hero-search-head > p:last-child {
    font-size: 13px;
  }

  .hero-search-field {
    min-height: 62px;
    grid-template-columns: 34px minmax(0, 1fr);
    padding: 8px 11px;
  }

  .hero-search-field > .material-symbols-rounded {
    width: 34px;
    height: 34px;
    font-size: 19px;
  }

  .hero-search-control select,
  .hero-search-control input {
    font-size: 14px;
  }

  .hero-search-submit {
    min-height: 52px;
  }

  .hero-search-layout .hero h1,
  .hero-search-layout h1 {
    font-size: clamp(44px, 14vw, 62px);
  }
}

@media (max-width: 420px) {
  .hero-search-card {
    padding: 15px;
  }

  .hero-search-layout {
    gap: 24px;
  }
}


/* =========================================================
   V16.3 – APPROVED HOMEPAGE HERO
   2026-08-12
   Patvirtintas maketas:
   - sportuojantis vyras kairėje
   - pilna galva, daugiau erdvės virš galvos
   - tamsus žalias / juodas foto tonas
   - paieškos kortelė dešinėje
   - hero fonas užpildo visą plotį be juodų nukirstų zonų
   ========================================================= */

@media (min-width: 821px) {
  .hero-bg {
    background:
      radial-gradient(
        circle at 27% 30%,
        rgba(37, 168, 64, .17),
        transparent 30%
      ),
      linear-gradient(
        90deg,
        rgba(2, 9, 5, .68) 0%,
        rgba(3, 12, 7, .57) 27%,
        rgba(4, 15, 8, .44) 50%,
        rgba(3, 13, 7, .66) 76%,
        rgba(2, 9, 5, .90) 100%
      ),
      url("https://images.unsplash.com/photo-1581009146145-b5ef050c2e1e?auto=format&fit=crop&w=2200&q=86")
      50% 10% / cover no-repeat;
    opacity: .88;
  }

  .hero-bg::after {
    background:
      linear-gradient(
        180deg,
        rgba(2, 8, 5, .14) 0%,
        rgba(2, 8, 5, .16) 48%,
        rgba(2, 8, 5, .91) 100%
      ),
      radial-gradient(
        ellipse at 24% 36%,
        rgba(11, 91, 35, .10) 0%,
        rgba(2, 9, 5, .12) 35%,
        rgba(2, 9, 5, .58) 78%,
        rgba(2, 9, 5, .78) 100%
      );
  }

  .hero-search-layout {
    min-height: 690px;
    padding-block: 58px 132px;
    grid-template-columns: minmax(0, 1fr) minmax(370px, 455px);
    gap: clamp(54px, 6vw, 98px);
    align-items: center;
  }

  .hero-search-layout .hero-copy {
    max-width: 610px;
    justify-self: start;
  }

  .hero-search-layout .hero h1,
  .hero-search-layout h1 {
    max-width: 590px;
    font-size: clamp(52px, 5.6vw, 82px);
    text-shadow: 0 4px 28px rgba(0, 0, 0, .30);
  }

  .hero-search-layout .hero-lead {
    max-width: 555px;
    color: rgba(239, 246, 240, .84);
    text-shadow: 0 2px 18px rgba(0, 0, 0, .30);
  }

  .hero-search-card {
    max-width: 455px;
    justify-self: end;
    background:
      linear-gradient(
        145deg,
        rgba(224, 255, 229, .96) 0%,
        rgba(255, 255, 255, .985) 28%,
        rgba(255, 255, 255, .985) 100%
      );
    box-shadow:
      0 30px 90px rgba(0, 0, 0, .35),
      0 0 0 1px rgba(76, 230, 79, .07);
  }

  .hero-search-card::before {
    background:
      linear-gradient(
        135deg,
        rgba(76, 230, 79, .22),
        transparent 34%
      );
  }
}

@media (min-width: 821px) and (max-width: 1120px) {
  .hero-bg {
    background:
      radial-gradient(
        circle at 27% 28%,
        rgba(37, 168, 64, .15),
        transparent 29%
      ),
      linear-gradient(
        90deg,
        rgba(2, 9, 5, .73) 0%,
        rgba(3, 12, 7, .60) 31%,
        rgba(4, 15, 8, .49) 55%,
        rgba(3, 13, 7, .70) 80%,
        rgba(2, 9, 5, .91) 100%
      ),
      url("https://images.unsplash.com/photo-1581009146145-b5ef050c2e1e?auto=format&fit=crop&w=1800&q=84")
      50% 8% / cover no-repeat;
  }

  .hero-search-layout {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 405px);
    gap: 38px;
  }

  .hero-search-layout .hero h1,
  .hero-search-layout h1 {
    font-size: clamp(46px, 5.7vw, 66px);
  }

  .hero-search-card {
    max-width: 405px;
    padding: 23px;
  }
}

@media (max-width: 820px) {
  .hero-bg {
    background:
      linear-gradient(
        180deg,
        rgba(2, 9, 5, .62) 0%,
        rgba(2, 9, 5, .78) 58%,
        rgba(2, 9, 5, .94) 100%
      ),
      url("https://images.unsplash.com/photo-1581009146145-b5ef050c2e1e?auto=format&fit=crop&w=1200&q=82")
      48% 8% / cover no-repeat;
    opacity: .88;
  }

  .hero-bg::after {
    background:
      linear-gradient(
        180deg,
        rgba(2, 8, 5, .15),
        rgba(2, 8, 5, .74) 70%,
        rgba(2, 8, 5, .96)
      );
  }
}

/* =========================================================
   TRENIRUOTEKA – TRAINER PROFILE DETAILS v3 ACCORDION
   Kiekviena skiltis išsiskleidžia tiesiai po savo mygtuku.
   ========================================================= */

.profile-detail-menu {
  display: grid;
  gap: 10px;
}

.profile-detail-accordion-item {
  min-width: 0;
}

.profile-detail-accordion-item .profile-detail-link {
  position: relative;
  z-index: 1;
}

.profile-detail-link.is-active {
  border-color: rgba(28, 189, 69, .38);
  border-bottom-color: rgba(28, 189, 69, .18);
  border-radius: 15px 15px 0 0;
  background: #fbfefb;
  box-shadow: none;
  transform: none;
}

.profile-detail-link.is-active .profile-detail-icon {
  color: #087329;
  background: #e5f7e8;
}

.profile-detail-link.is-active .profile-detail-chevron {
  color: var(--green-dark);
}

.profile-detail-chevron {
  transition:
    color .18s ease,
    transform .18s ease;
}

.profile-detail-accordion-item .profile-detail-panel {
  margin: 0;
  padding: 22px 18px 20px;
  border: 1px solid rgba(28, 189, 69, .28);
  border-top: 0;
  border-radius: 0 0 15px 15px;
  background:
    linear-gradient(180deg, rgba(239, 249, 241, .72), rgba(255, 255, 255, .98) 54px),
    #fff;
}

.profile-detail-accordion-item .profile-detail-panel.is-active {
  display: block;
  animation: profile-detail-accordion-in .18s ease;
}

@keyframes profile-detail-accordion-in {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.profile-detail-accordion-item .profile-detail-panel-head {
  margin-bottom: 18px;
}

.profile-detail-accordion-item .profile-detail-panel-head > div {
  margin-top: 0;
}

.profile-detail-accordion-item .profile-detail-panel-head h3 {
  font-size: clamp(24px, 3vw, 32px);
}

.profile-detail-accordion-item .profile-detail-back {
  display: none !important;
}

.profile-detail-panels {
  display: none;
}

.profile-details-section.is-detail-open > .eyebrow,
.profile-details-section.is-detail-open > h2,
.profile-details-section.is-detail-open > .profile-details-intro {
  display: initial;
}

@media (max-width: 600px) {
  .profile-detail-link.is-active {
    border-radius: 13px 13px 0 0;
  }

  .profile-detail-accordion-item .profile-detail-panel {
    padding: 17px 13px 16px;
    border-radius: 0 0 13px 13px;
  }

  .profile-detail-accordion-item .profile-detail-panel-head {
    margin-bottom: 14px;
  }

  .profile-detail-accordion-item .profile-detail-panel-head h3 {
    font-size: clamp(23px, 7vw, 31px);
  }
}


/* V17 – RASTI TRENERĮ: kompaktiškas mobile UX
   Tik šiam puslapiui. Desktop/tablet išdėstymo nekeičia. */
@media (max-width: 600px) {
  .page-find-trainer .subpage-hero-grid {
    padding-block: 42px;
  }

  .page-find-trainer .subpage-hero h1 {
    font-size: 38px;
    line-height: .98;
  }

  .page-find-trainer .subpage-lead {
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.6;
  }

  .page-find-trainer .section {
    padding-block: 46px;
  }

  .page-find-trainer .search-shell {
    gap: 18px;
  }

  .page-find-trainer .search-context {
    gap: 10px;
  }

  .page-find-trainer .search-context h2 {
    font-size: 27px;
    line-height: 1.05;
  }

  .page-find-trainer .search-context p:not(.eyebrow) {
    margin-top: 7px;
    font-size: 13px;
    line-height: 1.5;
  }

  .page-find-trainer .clear-search-link {
    font-size: 12px;
  }

  .page-find-trainer .search-filters,
  .page-find-trainer .search-filters-v9 {
    padding: 14px;
    gap: 9px;
    border-radius: 15px;
  }

  .page-find-trainer .search-filters label {
    gap: 5px;
    font-size: 11px;
  }

  .page-find-trainer .search-filters select,
  .page-find-trainer .search-filters-v9 input[type="date"] {
    min-height: 44px;
    border-radius: 9px;
    font-size: 12px;
  }

  .page-find-trainer #trainer-search-button {
    min-height: 42px;
  }

  .page-find-trainer .app-booking-note {
    padding: 13px 14px;
    gap: 10px;
    border-radius: 14px;
  }

  .page-find-trainer .app-booking-note strong {
    font-size: 12px;
    line-height: 1.35;
  }

  .page-find-trainer .app-booking-note p {
    margin-top: 4px;
    font-size: 10.5px;
    line-height: 1.45;
  }

  .page-find-trainer .live-results-head {
    margin: 4px 0 0;
    gap: 10px;
  }

  .page-find-trainer .live-results-head h3 {
    font-size: 19px;
  }

  .page-find-trainer .live-results-head span {
    font-size: 11px;
  }

  /* 4 treneriai matomi kaip 2 x 2 kompaktiškas grid. */
  .page-find-trainer .web-trainer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .page-find-trainer .web-trainer-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(16, 34, 20, .055);
  }

  .page-find-trainer .web-trainer-photo {
    min-height: 0;
    max-height: none;
    aspect-ratio: 1.28 / 1;
  }

  .page-find-trainer .web-trainer-photo > .material-symbols-rounded {
    font-size: 48px;
  }

  .page-find-trainer .trainer-verified-badge {
    left: 7px;
    bottom: 7px;
    padding: 4px 6px;
    gap: 3px;
    font-size: 8px;
  }

  .page-find-trainer .trainer-verified-badge .material-symbols-rounded {
    font-size: 12px;
  }

  .page-find-trainer .web-trainer-body {
    flex: 1;
    padding: 10px;
  }

  .page-find-trainer .web-trainer-top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 5px;
  }

  .page-find-trainer .web-trainer-top h3 {
    font-size: 14px;
    line-height: 1.15;
    overflow-wrap: anywhere;
  }

  .page-find-trainer .trainer-headline {
    display: -webkit-box;
    margin-top: 3px;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    color: #68756b;
    font-size: 9.5px;
    line-height: 1.25;
  }

  .page-find-trainer .trainer-price small {
    font-size: 7.5px;
  }

  .page-find-trainer .trainer-price strong {
    font-size: 14px;
    white-space: nowrap;
  }

  .page-find-trainer .trainer-meta-row {
    margin-top: 7px;
    gap: 4px 6px;
    font-size: 9px;
    line-height: 1.2;
  }

  .page-find-trainer .trainer-meta-row .material-symbols-rounded {
    font-size: 12px;
  }

  /* Lokacijos pavadinimą kortelėje slepiame – miestas lieka matomas. */
  .page-find-trainer .trainer-base-location {
    display: none;
  }

  .page-find-trainer .trainer-sport-pills {
    margin-top: 7px;
    gap: 4px;
  }

  .page-find-trainer .trainer-sport-pills span {
    padding: 3px 5px;
    font-size: 8px;
    line-height: 1.1;
  }

  .page-find-trainer .trainer-sport-pills span:nth-child(n+3) {
    display: none;
  }

  .page-find-trainer .trainer-availability-pill {
    margin-top: 7px;
    padding: 5px 6px;
    gap: 4px;
    font-size: 8px;
    line-height: 1.2;
  }

  .page-find-trainer .trainer-availability-pill .material-symbols-rounded {
    font-size: 12px;
  }

  .page-find-trainer .web-trainer-footer {
    margin-top: auto;
    padding-top: 8px;
  }

  .page-find-trainer .web-trainer-footer > span {
    display: none;
  }

  .page-find-trainer .web-trainer-footer .btn {
    width: 100%;
    min-height: 34px;
    padding: 7px 5px;
    border-radius: 9px;
    font-size: 9.5px;
    line-height: 1.15;
  }

  /* „Rinkis pagal tai, kas svarbu tau“ – 4 blokai viename kompaktiškame 2 x 2 grid. */
  .page-find-trainer .section-soft .section-heading {
    margin-bottom: 20px;
  }

  .page-find-trainer .section-soft .section-heading h2 {
    font-size: 30px;
    line-height: 1.05;
  }

  .page-find-trainer .section-soft .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .page-find-trainer .section-soft .value-card {
    min-height: 150px;
    padding: 14px;
    border-radius: 14px;
  }

  .page-find-trainer .section-soft .value-card .material-symbols-rounded {
    width: 38px;
    height: 38px;
    border-radius: 11px;
    font-size: 21px;
  }

  .page-find-trainer .section-soft .value-card h3 {
    margin: 13px 0 6px;
    font-size: 15px;
    line-height: 1.15;
  }

  .page-find-trainer .section-soft .value-card p {
    font-size: 11px;
    line-height: 1.45;
  }
}


/* V18 – HOME / „Kaip tai veikia?“ kompaktiškas 2 x 2 mobile grid */
@media (max-width: 600px) {
  #kaip-veikia.section {
    padding-block: 48px;
  }

  #kaip-veikia .section-heading {
    margin-bottom: 22px;
  }

  #kaip-veikia .section-heading h2 {
    font-size: 30px;
    line-height: 1.05;
  }

  #kaip-veikia .section-heading > p:last-child {
    font-size: 13px;
    line-height: 1.45;
  }

  #kaip-veikia .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  #kaip-veikia .step-card {
    min-width: 0;
    min-height: 165px;
    padding: 15px 13px;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(16, 34, 20, .05);
  }

  #kaip-veikia .step-card::after {
    display: none;
  }

  #kaip-veikia .step-icon {
    width: 42px;
    height: 42px;
  }

  #kaip-veikia .step-icon .material-symbols-rounded {
    font-size: 21px;
  }

  #kaip-veikia .step-icon b {
    right: -5px;
    bottom: -5px;
    width: 20px;
    height: 20px;
    border-width: 2px;
    font-size: 9px;
  }

  #kaip-veikia .step-card h3 {
    margin: 14px 0 6px;
    font-size: 15px;
    line-height: 1.15;
  }

  #kaip-veikia .step-card p {
    font-size: 11px;
    line-height: 1.42;
  }
}

/* V19 – trenerio profilio kvalifikacijos kortelės:
   išsilavinimas ir sertifikatai naudoja vienodą kortelės tipografiją bei geometriją. */
.credential-card small {
  display: block;
  margin-top: 4px;
  color: var(--muted-dark);
  font-size: 12px;
  line-height: 1.45;
}

@media (max-width: 600px) {
  .profile-detail-panel .credential-card small {
    font-size: 11px;
  }
}

/* =========================================================
   V21 – TRAINER PROFILE MOBILE APP-LIKE TABS
   Apie / Patirtis / Sertifikatai ir kvalifikacijos / Atsiliepimai
   Kalbos rodomos papildomai profilio apačioje.
   Desktop paliekamas su dabartiniu accordion.
   ========================================================= */

.profile-detail-mobile-only,
.detail-label-mobile,
.mobile-profile-languages {
  display: none;
}

@media (max-width: 600px) {
  .section.section-light:has(.profile-details-section.is-mobile-tabs) {
    padding-top: 0;
  }

  .profile-about-section {
    display: none;
  }

  .profile-details-section.is-mobile-tabs {
    margin: 0;
    padding: 14px 0 22px;
    border-bottom: 1px solid var(--border-light);
  }

  .profile-details-section.is-mobile-tabs > .eyebrow,
  .profile-details-section.is-mobile-tabs > h2,
  .profile-details-section.is-mobile-tabs > .profile-details-intro {
    display: none;
  }

  .profile-details-section.is-mobile-tabs .profile-detail-mobile-only {
    display: inline-flex;
  }

  .profile-details-section.is-mobile-tabs .detail-label-desktop {
    display: none;
  }

  .profile-details-section.is-mobile-tabs .detail-label-mobile {
    display: inline;
  }

  .profile-details-section.is-mobile-tabs .profile-detail-menu {
    margin: 0 0 14px;
    padding: 0 0 3px;
    display: flex;
    align-items: center;
    gap: 8px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .profile-details-section.is-mobile-tabs .profile-detail-menu::-webkit-scrollbar {
    display: none;
  }

  .profile-details-section.is-mobile-tabs .profile-detail-link {
    width: auto;
    min-width: max-content;
    min-height: 34px;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex: 0 0 auto;
    border: 1px solid #dfe7e0;
    border-radius: 8px;
    color: #263229;
    background: #f4f6f4;
    box-shadow: none;
    transform: none;
  }

  .profile-details-section.is-mobile-tabs .profile-detail-link:hover {
    transform: none;
    box-shadow: none;
  }

  .profile-details-section.is-mobile-tabs .profile-detail-link.is-active {
    color: #063b18;
    border-color: rgba(28, 189, 69, .38);
    border-radius: 8px;
    background: rgba(76, 230, 79, .20);
  }

  .profile-details-section.is-mobile-tabs .profile-detail-icon,
  .profile-details-section.is-mobile-tabs .profile-detail-chevron,
  .profile-details-section.is-mobile-tabs .profile-detail-copy small {
    display: none;
  }

  .profile-details-section.is-mobile-tabs .profile-detail-copy strong {
    display: block;
    font-size: 11px;
    line-height: 1;
    white-space: nowrap;
  }

  .profile-details-section.is-mobile-tabs .profile-detail-panels {
    display: block;
    margin: 0;
  }

  .profile-details-section.is-mobile-tabs .profile-detail-panel {
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .profile-details-section.is-mobile-tabs .profile-detail-panel.is-active {
    display: block;
    animation: profile-mobile-tab-in .16s ease;
  }

  @keyframes profile-mobile-tab-in {
    from {
      opacity: 0;
      transform: translateY(4px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .profile-details-section.is-mobile-tabs .profile-detail-panel-head {
    margin: 0 0 11px;
    padding: 13px 13px 0;
  }

  .profile-details-section.is-mobile-tabs .profile-detail-panel-head > div {
    margin-top: 0;
  }

  .profile-details-section.is-mobile-tabs .profile-detail-panel-head .eyebrow {
    margin-bottom: 5px;
    font-size: 10px;
  }

  .profile-details-section.is-mobile-tabs .profile-detail-panel-head h3 {
    font-size: clamp(21px, 6vw, 27px);
    line-height: 1.08;
  }

  .profile-details-section.is-mobile-tabs
    .profile-detail-panel:not(.profile-detail-about-panel) {
    overflow: hidden;
    border: 1px solid #e1e8e2;
    border-radius: 14px;
    background: #fff;
  }

  .profile-details-section.is-mobile-tabs
    .profile-detail-panel:not(.profile-detail-about-panel)
    > .profile-timeline,
  .profile-details-section.is-mobile-tabs
    .profile-detail-panel:not(.profile-detail-about-panel)
    > .credential-grid,
  .profile-details-section.is-mobile-tabs
    .profile-detail-panel:not(.profile-detail-about-panel)
    > .web-review-list,
  .profile-details-section.is-mobile-tabs
    .profile-detail-panel:not(.profile-detail-about-panel)
    > .profile-empty-note {
    margin: 0 12px 12px;
  }

  .mobile-about-card {
    padding: 14px;
    border: 1px solid #e1e8e2;
    border-radius: 14px;
    background: #fff;
  }

  .mobile-about-card-title {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .mobile-about-card-title > .material-symbols-rounded {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    flex: 0 0 34px;
    color: var(--green-dark);
    border-radius: 9px;
    background: #edf8ef;
    font-size: 20px;
  }

  .mobile-about-card-title h3 {
    margin: 0;
    font-size: 18px;
    line-height: 1.2;
  }

  .mobile-about-card > p {
    margin: 11px 0 0;
    color: var(--muted-dark);
    font-size: 13px;
    line-height: 1.55;
  }

  .mobile-about-card .profile-tags {
    margin-top: 12px;
  }

  .mobile-profile-languages {
    display: block;
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
  }

  .mobile-profile-languages > .eyebrow {
    margin-bottom: 7px;
  }

  .mobile-profile-languages > h2 {
    margin-bottom: 13px;
    font-size: 24px;
  }

  .mobile-language-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .mobile-language-chips > span {
    min-width: 0;
    padding: 9px 11px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    border: 1px solid #dfe8e0;
    border-radius: 11px;
    background: #f8fbf8;
  }

  .mobile-language-chips strong {
    color: var(--ink);
    font-size: 12px;
  }

  .mobile-language-chips small {
    color: var(--muted-dark);
    font-size: 10px;
  }
}

/* =========================================================
   V22 – TRAINER PROFILE MOBILE DETAIL POLISH
   - mobile juostoje tik 4 tabai
   - specializacijos atskirai po „Apie trenerį“
   - patirties pavadinimai ryškūs kaip sertifikatų
   ========================================================= */
@media (max-width: 600px) {
  .profile-details-section.is-mobile-tabs
    .profile-detail-desktop-only,
  .profile-details-section.is-mobile-tabs
    [data-open-profile-detail="kalbos"] {
    display: none !important;
  }

  .profile-details-section.is-mobile-tabs
    [data-profile-detail-panel="apie"] {
    display: grid;
    gap: 10px;
  }

  .mobile-specializations-card {
    padding: 13px 14px 14px;
    border: 1px solid #e1e8e2;
    border-radius: 14px;
    background: #fff;
  }

  .mobile-specializations-card > .eyebrow {
    margin: 0 0 9px;
    font-size: 10px;
  }

  .mobile-specializations-card .profile-tags {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
  }

  .profile-details-section.is-mobile-tabs
    [data-profile-detail-panel="patirtis"]
    .profile-timeline h3 {
    margin: 0;
    color: #0e1710;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.18;
  }

  .profile-details-section.is-mobile-tabs
    [data-profile-detail-panel="patirtis"]
    .profile-timeline article {
    align-items: flex-start;
  }
}



/* =========================================================
   HOME: ATSILIEPIMŲ VIZIJA
   ========================================================= */
.home-proof-section {
  background:
    radial-gradient(circle at 18% 18%, rgba(44, 235, 74, 0.10), transparent 30%),
    radial-gradient(circle at 80% 78%, rgba(110, 75, 255, 0.14), transparent 28%),
    #f9fcf9;
}

.home-proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 52px;
  align-items: center;
}

.home-proof-visual {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-proof-phone {
  position: relative;
  width: 260px;
  border-radius: 38px;
  padding: 14px;
  background: linear-gradient(180deg, #111915 0%, #050806 100%);
  box-shadow: 0 30px 70px rgba(8, 17, 11, 0.18);
}

.home-proof-phone-top {
  width: 108px;
  height: 18px;
  margin: 0 auto 10px;
  border-radius: 0 0 14px 14px;
  background: #0a0f0b;
}

.home-proof-phone-screen {
  min-height: 458px;
  border-radius: 28px;
  padding: 18px;
  background:
    radial-gradient(circle at top right, rgba(44, 235, 74, 0.12), transparent 30%),
    #ffffff;
}

.home-proof-mini-header {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
}

.home-proof-mini-avatar,
.home-proof-floating-avatar {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 800;
}

.home-proof-mini-avatar {
  color: #ffffff;
  background: linear-gradient(135deg, #1fcf3d, #0e7a24);
}

.home-proof-mini-header strong,
.home-proof-mini-service strong,
.home-proof-floating-person strong,
.home-proof-copy strong {
  display: block;
  color: #0f1611;
}

.home-proof-mini-header span,
.home-proof-mini-rating small,
.home-proof-mini-service small,
.home-proof-floating-person small {
  display: block;
  color: #6c766f;
  font-size: 0.82rem;
}

.home-proof-mini-rating {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 18px;
  background: #f5faf5;
  border: 1px solid #e1ede3;
}

.home-proof-mini-rating span,
.home-proof-stars {
  color: #22c73e;
  letter-spacing: 0.14em;
  font-size: 1rem;
  font-weight: 800;
}

.home-proof-mini-review {
  margin-top: 14px;
  padding: 16px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid #e4ece6;
  box-shadow: 0 14px 28px rgba(14, 24, 16, 0.05);
}

.home-proof-mini-review p {
  margin: 0 0 10px;
  color: #1a241d;
  font-weight: 600;
  line-height: 1.6;
}

.home-proof-mini-service {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  margin-top: 12px;
  padding: 14px 16px;
  border-radius: 18px;
  background: #f8fbf8;
  border: 1px solid #e4ece6;
}

.home-proof-mini-service .material-symbols-rounded {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #eaf9ed;
  color: #1fcf3d;
  font-size: 22px;
}

.home-proof-floating-card {
  position: absolute;
  right: 0;
  width: min(100%, 320px);
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(223, 231, 225, 0.95);
  box-shadow: 0 24px 50px rgba(10, 19, 12, 0.10);
  backdrop-filter: blur(8px);
}

.home-proof-floating-card-top {
  top: 66px;
}

.home-proof-floating-card-bottom {
  bottom: 46px;
}

.home-proof-floating-card p {
  margin: 14px 0 18px;
  color: #17211a;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.65;
}

.home-proof-floating-person {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
}

.home-proof-floating-avatar {
  color: #1fcf3d;
  background: #eafbed;
}

.home-proof-copy h2 {
  margin-bottom: 14px;
}

.home-proof-lead {
  margin: 0 0 22px;
  color: #475148;
  font-size: 1.08rem;
  line-height: 1.75;
}

.home-proof-copy-block {
  margin-top: 22px;
}

.home-proof-copy-block h3 {
  margin-bottom: 8px;
  color: #111915;
  font-size: 2rem;
  line-height: 1.15;
}

.home-proof-copy-block p {
  margin: 0;
  color: #475148;
  line-height: 1.75;
  font-size: 1.04rem;
}

.home-proof-copy-highlight {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid #dfe8e1;
}

.home-proof-copy-highlight .material-symbols-rounded {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: #eafbed;
  color: #1fcf3d;
  font-size: 24px;
}

@media (max-width: 1080px) {
  .home-proof-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .home-proof-copy {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
  }

  .home-proof-copy-highlight {
    text-align: left;
  }
}

@media (max-width: 820px) {
  .home-proof-visual {
    min-height: auto;
    padding-top: 10px;
    flex-direction: column;
    gap: 18px;
  }

  .home-proof-floating-card {
    position: static;
    width: 100%;
    max-width: 420px;
  }
}

@media (max-width: 560px) {
  .home-proof-phone {
    width: 100%;
    max-width: 310px;
  }

  .home-proof-phone-screen {
    min-height: auto;
  }

  .home-proof-copy-block h3 {
    font-size: 1.7rem;
  }

  .home-proof-floating-card {
    padding: 18px;
    border-radius: 20px;
  }
}



/* =========================================================
   HOME: FINAL ATSILIEPIMŲ SHOWCASE V4
   ========================================================= */
.testimonials-showcase {
  overflow: hidden;
  background:
    radial-gradient(circle at 22% 50%, rgba(44, 235, 74, 0.11), transparent 34%),
    radial-gradient(circle at 86% 84%, rgba(44, 235, 74, 0.05), transparent 28%),
    #fbfdfb;
}

.testimonials-showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(420px, 0.88fr);
  gap: 72px;
  align-items: center;
  min-height: 650px;
}

.testimonials-copy-top {
  grid-column: 2;
  grid-row: 1;
  align-self: end;
}

.testimonial-bubbles {
  grid-column: 1;
  grid-row: 1 / span 2;
}

.testimonials-copy-bottom {
  grid-column: 2;
  grid-row: 2;
  align-self: start;
}

.testimonial-bubbles {
  position: relative;
  min-height: 610px;
}

.testimonial-bubbles::before,
.testimonial-bubbles::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.testimonial-bubbles::before {
  width: 620px;
  height: 620px;
  left: -70px;
  top: 0;
  border: 1px solid rgba(40, 196, 65, 0.06);
  box-shadow:
    0 0 0 80px rgba(40, 196, 65, 0.018),
    0 0 0 160px rgba(40, 196, 65, 0.012);
}

.testimonial-bubbles::after {
  width: 360px;
  height: 360px;
  left: 115px;
  top: 128px;
  background: rgba(40, 196, 65, 0.045);
  filter: blur(52px);
}

.testimonial-bubble {
  position: absolute;
  z-index: 1;
  width: 286px;
  height: 286px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 29px 25px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(222, 232, 224, 0.92);
  box-shadow: 0 24px 54px rgba(12, 29, 16, 0.075);
  text-align: center;
}

.testimonial-bubble-one {
  left: 12px;
  top: 4px;
}

.testimonial-bubble-two {
  left: 330px;
  top: 76px;
}

.testimonial-bubble-three {
  left: 0;
  top: 324px;
}

.testimonial-bubble-four {
  left: 310px;
  top: 388px;
}

.testimonial-avatar {
  width: 88px;
  height: 88px;
  flex: 0 0 88px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #ffffff;
  box-shadow: 0 7px 18px rgba(12, 29, 16, 0.10);
}

.testimonial-stars {
  margin-top: 10px;
  color: #19bd36;
  font-size: 1.03rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  line-height: 1;
}

.testimonial-bubble blockquote {
  max-width: 220px;
  margin: 12px 0 11px;
  color: #18221b;
  font-size: 0.90rem;
  font-weight: 500;
  line-height: 1.48;
}

.testimonial-bubble strong {
  color: #101712;
  font-size: 0.93rem;
  font-weight: 800;
}

.testimonials-copy {
  max-width: 590px;
}

.testimonials-copy-block h2 {
  margin: 0;
  color: #101712;
  font-size: clamp(2.8rem, 4.35vw, 4.55rem);
  font-weight: 850;
  letter-spacing: -0.045em;
  line-height: 1.03;
}

.testimonials-copy-block p {
  max-width: 570px;
  margin: 24px 0 0;
  color: #455048;
  font-size: 1.14rem;
  line-height: 1.72;
}

.testimonials-divider {
  display: block;
  width: 96px;
  height: 4px;
  margin: 44px 0 46px;
  border-radius: 999px;
  background: rgba(31, 207, 61, 0.40);
}

@media (max-width: 1180px) {
  .testimonials-showcase-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    min-height: 0;
  }

  .testimonials-copy-top,
  .testimonial-bubbles,
  .testimonials-copy-bottom {
    grid-column: 1;
    grid-row: auto;
  }

  .testimonial-bubbles {
    width: 650px;
    max-width: 100%;
    min-height: 615px;
    margin: 0 auto;
  }

  .testimonials-copy {
    max-width: 760px;
    margin: 0 auto;
    padding-bottom: 12px;
    text-align: center;
  }

  .testimonials-copy-block p {
    margin-left: auto;
    margin-right: auto;
  }

  .testimonials-divider {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 720px) {
  .testimonials-showcase-grid {
    gap: 42px;
  }

  .testimonial-bubbles {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    min-height: 0;
  }

  .testimonial-bubbles::before,
  .testimonial-bubbles::after {
    display: none;
  }

  .testimonial-bubble {
    position: static;
    width: 100%;
    height: auto;
    min-height: 250px;
    border-radius: 32px;
    padding: 22px 18px;
  }

  .testimonial-avatar {
    width: 72px;
    height: 72px;
    flex-basis: 72px;
  }

  .testimonial-bubble blockquote {
    font-size: 0.84rem;
  }

  .testimonials-copy-block h2 {
    font-size: clamp(2.35rem, 10vw, 3.5rem);
  }

  .testimonials-copy-block p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .testimonial-bubbles {
    grid-template-columns: 1fr;
  }

  .testimonial-bubble {
    max-width: 330px;
    min-height: 278px;
    margin: 0 auto;
    border-radius: 50%;
  }
}

/* =========================================================
   HOME: ATSILIEPIMŲ SHOWCASE V6 — MOBILE ORDER FIX
   Desktop layout intentionally unchanged.
   ========================================================= */
@media (max-width: 720px) {
  .testimonials-showcase {
    overflow: hidden;
  }

  .testimonials-showcase-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }

  .testimonials-copy-top,
  .testimonial-bubbles,
  .testimonials-copy-bottom {
    grid-column: 1;
    grid-row: auto;
  }

  .testimonials-copy-top {
    order: 1;
  }

  .testimonial-bubbles {
    order: 2;
    width: 100%;
    max-width: 100%;
    min-height: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    align-items: stretch;
  }

  .testimonial-bubble {
    position: static;
    width: 100%;
    max-width: none;
    aspect-ratio: 1 / 1;
    height: auto;
    min-height: 0;
    margin: 0;
    padding: 12px 10px 13px;
    border-radius: 50%;
    overflow: hidden;
  }

  .testimonial-avatar {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    border-width: 3px;
    box-shadow: 0 5px 13px rgba(12, 29, 16, 0.10);
  }

  .testimonial-stars {
    margin-top: 6px;
    font-size: 0.75rem;
    letter-spacing: 0.07em;
  }

  .testimonial-bubble blockquote {
    max-width: 145px;
    margin: 7px auto 7px;
    font-size: 0.66rem;
    line-height: 1.30;
    overflow-wrap: anywhere;
  }

  .testimonial-bubble strong {
    font-size: 0.74rem;
    line-height: 1.1;
  }

  .testimonials-copy {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding-bottom: 0;
    text-align: left;
  }

  .testimonials-copy-top {
    order: 1;
  }

  .testimonials-copy-bottom {
    order: 3;
  }

  .testimonials-copy-block h2 {
    font-size: clamp(2.25rem, 11vw, 3.15rem);
    line-height: 0.98;
  }

  .testimonials-copy-block p {
    max-width: none;
    margin-top: 18px;
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .testimonials-divider {
    width: 72px;
    height: 3px;
    margin: 4px 0 18px;
  }
}

@media (max-width: 390px) {
  .testimonial-bubbles {
    gap: 9px;
  }

  .testimonial-bubble {
    padding: 10px 8px 11px;
  }

  .testimonial-avatar {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }

  .testimonial-stars {
    font-size: 0.70rem;
  }

  .testimonial-bubble blockquote {
    max-width: 132px;
    font-size: 0.62rem;
    line-height: 1.27;
  }

  .testimonial-bubble strong {
    font-size: 0.70rem;
  }
}


/* =========================================================
   HOME HERO V17 — MOBILE COPY FIRST
   2026-09-01
   Mobile only: headline/intro above search card.
   Desktop remains unchanged.
   ========================================================= */
@media (max-width: 820px) {
  .hero-search-layout {
    padding-top: 26px;
    gap: 26px;
  }

  .hero-search-layout .hero-copy {
    order: -1;
    width: 100%;
    max-width: 620px;
    justify-self: start;
  }

  .hero-search-card {
    order: 0;
    margin-top: 2px;
  }
}

@media (max-width: 600px) {
  .hero-search-layout {
    padding-top: 24px;
    gap: 24px;
  }

  .hero-search-layout .hero-copy .eyebrow {
    margin-bottom: 10px;
  }

  .hero-search-layout .hero-lead {
    margin-top: 18px;
  }
}

/* =========================================================
   HOME HERO V23 — MINIMAL GREEN BANNER
   2026-09-01
   Tik hero fono pakeitimas. Visa kita palikta nepakeista.
   ========================================================= */
.hero-bg {
  background:
    radial-gradient(circle at 18% 48%, rgba(76, 230, 79, .08), transparent 34%),
    linear-gradient(
      90deg,
      rgba(2, 8, 5, .58) 0%,
      rgba(2, 8, 5, .34) 45%,
      rgba(2, 8, 5, .42) 72%,
      rgba(2, 8, 5, .56) 100%
    ),
    url("assets/web/hero/treniruoteka-hero-minimal-green-4k.webp")
    50% 50% / cover no-repeat;
  opacity: 1;
}

.hero-bg::after {
  background:
    linear-gradient(
      180deg,
      rgba(1, 6, 3, .08) 0%,
      rgba(1, 6, 3, .12) 54%,
      rgba(1, 6, 3, .82) 100%
    ),
    radial-gradient(circle at 16% 20%, rgba(35, 170, 65, .07), transparent 36%);
}

@media (max-width: 820px) {
  .hero-bg {
    background:
      linear-gradient(
        180deg,
        rgba(2, 8, 5, .26) 0%,
        rgba(2, 8, 5, .32) 50%,
        rgba(2, 8, 5, .66) 100%
      ),
      url("assets/web/hero/treniruoteka-hero-minimal-green-mobile.webp")
      50% 50% / cover no-repeat;
    opacity: 1;
  }

  .hero-bg::after {
    background:
      linear-gradient(
        180deg,
        rgba(1, 6, 3, .04) 0%,
        rgba(1, 6, 3, .10) 48%,
        rgba(1, 6, 3, .76) 100%
      );
  }
}

