:root {
  --yellow: #f5c518;
  --yellow-deep: #d4a017;
  --yellow-soft: #ffe9a3;
  --black: #0f0f10;
  --ink: #171717;
  --charcoal: #222226;
  --muted: #5f5f64;
  --line: #ececec;
  --paper: #f5f5f3;
  --white: #ffffff;
  --shadow: 0 16px 40px rgba(15, 15, 16, 0.1);
  --shadow-soft: 0 8px 24px rgba(15, 15, 16, 0.06);
  --radius: 16px;
  --radius-sm: 10px;
  --header: 82px;
  --max: 1320px;
  --font-display: "Oswald", sans-serif;
  --font-body: "Inter", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  font-size: 18px;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  width: 100%;
  font-size: 1.05rem;
}

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

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

ul {
  list-style: none;
}

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

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -40px;
  background: var(--yellow);
  color: var(--black);
  padding: 8px 14px;
  z-index: 10000;
  font-weight: 700;
}

.skip-link:focus {
  top: 12px;
}

.section {
  padding: 88px 0;
}

.section.tight {
  padding: 64px 0;
}

.section-kicker {
  color: var(--yellow-deep);
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.92rem;
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 5vw, 4rem);
  line-height: 1.12;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.section-title span {
  color: var(--yellow-deep);
}

.section-copy {
  color: var(--muted);
  max-width: 68ch;
  font-size: 1.12rem;
}

.section-head {
  display: grid;
  gap: 14px;
  margin-bottom: 42px;
}

.section-head.center {
  text-align: center;
  justify-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 28px;
  border: 0;
  border-radius: 8px;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.25s var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: var(--yellow);
  color: var(--black);
}

.btn-primary:hover {
  background: var(--yellow-deep);
  transform: translateY(-1px);
}

.btn-dark {
  background: var(--black);
  color: var(--white);
}

.btn-dark:hover {
  background: #2a2a2e;
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
  border-color: var(--yellow);
  color: var(--yellow);
}

.btn-full {
  width: 100%;
}

.topbar {
  background: var(--black);
  color: #d7d7d7;
  font-size: 0.95rem;
}

.topbar-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.topbar a:hover {
  color: var(--yellow);
}

.topbar-contacts,
.topbar-social {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

@media (max-width: 1100px) {
  .topbar-contacts a:nth-child(3),
  .topbar-contacts a:nth-child(4) {
    display: none;
  }
}

.icon-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.logo-bar {
  background: var(--white);
  padding: 16px 16px 12px;
  display: flex;
  justify-content: center;
  border-bottom: 1px solid var(--line);
}

.logo-bar .site-logo {
  width: 230px;
  max-width: 58vw;
  height: auto;
  display: block;
}

.site-logo {
  width: 210px;
  max-width: 58vw;
  height: auto;
  display: block;
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(17, 17, 17, 0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 0;
}

.brand-compact {
  display: none;
  align-items: center;
}

.brand-compact img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  background: #fff;
  border-radius: 50%;
}

.footer .brand img,
.footer .site-logo {
  width: 150px;
  max-width: 70%;
  height: auto;
}

.footer .brand-text {
  display: none;
}

.brand-text {
  display: none;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 4px;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.nav a {
  color: #f2f2f2;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 14px;
  border-radius: 8px;
}

.nav a:hover,
.nav a.active {
  color: var(--yellow);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-phone {
  color: var(--white);
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  text-align: right;
}

.header-phone small {
  color: #bdbdbd;
  font-size: 0.72rem;
}

@media (max-width: 1200px) {
  .header-phone {
    display: none;
  }
}

.header-phone strong {
  color: var(--yellow);
  font-size: 1.05rem;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: transparent;
  color: var(--white);
  border-radius: 10px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--white);
  margin: 4px auto;
}

.mobile-panel {
  display: none;
}

.hero {
  position: relative;
  min-height: min(90vh, 900px);
  color: var(--white);
  display: grid;
  align-items: end;
  overflow: hidden;
  width: 100%;
}

.hero-media,
.page-hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img,
.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media::after,
.page-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 10, 10, 0.88) 0%, rgba(10, 10, 10, 0.55) 48%, rgba(10, 10, 10, 0.28) 100%),
    linear-gradient(180deg, rgba(10, 10, 10, 0.18), rgba(10, 10, 10, 0.55));
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 140px 0 160px;
  max-width: 860px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6.1rem);
  line-height: 0.95;
  text-transform: uppercase;
  margin: 12px 0 22px;
}

.hero p {
  color: #e8e8e8;
  font-size: 1.18rem;
  max-width: 58ch;
  margin-bottom: 32px;
}

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

.feature-strip {
  position: relative;
  z-index: 2;
  margin-top: -72px;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.feature-card {
  padding: 32px 28px;
  min-height: 148px;
  color: var(--white);
}

.feature-card:nth-child(1) { background: #151515; }
.feature-card:nth-child(2) { background: var(--yellow-deep); color: var(--black); }
.feature-card:nth-child(3) { background: var(--yellow); color: var(--black); }

.feature-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  margin-bottom: 12px;
  background: var(--yellow);
  color: var(--black);
}

.feature-card:nth-child(2) .feature-num,
.feature-card:nth-child(3) .feature-num {
  background: var(--black);
  color: var(--white);
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.about-collage {
  position: relative;
  min-height: 520px;
  overflow: hidden;
}

.about-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-main {
  height: 500px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-float {
  position: absolute;
  width: 42%;
  height: 160px;
  border-radius: 18px 80px 18px 18px;
  overflow: hidden;
  border: 6px solid var(--white);
  box-shadow: var(--shadow);
}

.about-float.one {
  top: 18px;
  right: 12px;
}

.about-float.two {
  bottom: 36px;
  right: 28px;
  border-radius: 80px 18px 18px 18px;
}

.about-accent {
  position: absolute;
  left: -16px;
  bottom: -16px;
  width: 46%;
  height: 140px;
  background: var(--yellow);
  border-radius: 18px;
  z-index: -1;
}

.about-copy h2 {
  margin-bottom: 16px;
}

.about-copy p {
  color: var(--muted);
  margin-bottom: 14px;
  font-size: 1.08rem;
}

.vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 26px;
}

.vision-card {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 22px;
  border: 1px solid var(--line);
}

.vision-card h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  margin-bottom: 8px;
}

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

.training-card {
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--line);
  transition: 0.28s var(--ease);
}

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

.training-card .media {
  height: 210px;
  overflow: hidden;
}

.training-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.45s var(--ease);
}

.training-card:hover img {
  transform: scale(1.06);
}

.training-card .body {
  padding: 20px 20px 24px;
}

.training-card h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.training-card p {
  color: var(--muted);
  font-size: 1.02rem;
}

.gallery {
  background: #161616;
  color: var(--white);
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  min-height: 220px;
  cursor: pointer;
  border: 0;
  padding: 0;
  background: none;
  width: 100%;
}

.gallery-item:first-child,
.gallery-item:nth-child(6) {
  grid-column: span 2;
  min-height: 280px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s var(--ease);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.45));
}

.testimonials {
  background: var(--paper);
}

.testimonial-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.testimonial-card {
  background: var(--white);
  border-radius: 18px;
  padding: 28px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--line);
}

.stars {
  color: var(--yellow-deep);
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.testimonial-card p {
  color: #333;
  margin-bottom: 22px;
  font-size: 1.08rem;
}

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

.avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--black);
  color: var(--yellow);
  display: grid;
  place-items: center;
  font-weight: 800;
}

.person strong {
  display: block;
}

.person span {
  color: var(--muted);
  font-size: 0.86rem;
}

.cta-banner {
  position: relative;
  overflow: hidden;
  color: var(--white);
  padding: 72px 0;
}

.cta-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) brightness(0.38);
}

.cta-banner .container {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 4.6vw, 3.8rem);
  text-transform: uppercase;
}

.contact-split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.contact-panel {
  background: var(--black);
  color: var(--white);
  border-radius: 22px;
  padding: 34px;
}

.contact-panel h2 {
  font-family: var(--font-display);
  text-transform: uppercase;
  margin: 8px 0 18px;
  font-size: 2.4rem;
}

.contact-list {
  display: grid;
  gap: 16px;
  font-size: 1.08rem;
}

.contact-list a,
.contact-list span {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: #ececec;
}

.contact-list b {
  color: var(--yellow);
}

.form {
  display: grid;
  gap: 14px;
}

.form label {
  display: grid;
  gap: 6px;
  font-weight: 600;
  font-size: 0.9rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form input,
.form textarea,
.form select {
  width: 100%;
  border: 1px solid #dedede;
  border-radius: 12px;
  padding: 16px 18px;
  background: var(--white);
  outline: none;
  font-size: 1.02rem;
}

.form input:focus,
.form textarea:focus,
.form select:focus {
  border-color: var(--yellow-deep);
  box-shadow: 0 0 0 4px rgba(245, 197, 24, 0.18);
}

.form textarea {
  min-height: 140px;
  resize: vertical;
}

.form-success {
  display: none;
  background: #eefaf0;
  border: 1px solid #b7e4c0;
  color: #1b4332;
  padding: 16px;
  border-radius: 12px;
}

.form.sent .form-success {
  display: block;
}

.form.sent .form-fields {
  display: none;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.blog-card {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: 0.25s var(--ease);
  color: inherit;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.blog-card .body {
  padding: 20px;
}

.blog-card time {
  color: var(--yellow-deep);
  font-size: 0.82rem;
  font-weight: 700;
}

.blog-card h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  margin: 8px 0 10px;
  font-size: 1.4rem;
}

.blog-card p {
  color: var(--muted);
}

.footer {
  background: #111;
  color: #d8d8d8;
  padding-top: 64px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 42px;
}

.footer h3 {
  color: var(--white);
  font-family: var(--font-display);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer p,
.footer a {
  color: #cfcfcf;
}

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

.footer-links,
.footer-contact {
  display: grid;
  gap: 10px;
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #222;
  color: var(--yellow);
}

.subscribe {
  display: flex;
  gap: 8px;
}

.subscribe input {
  flex: 1;
  min-width: 0;
  border: 0;
  border-radius: 8px;
  padding: 12px 14px;
}

.subscribe button {
  background: var(--yellow);
  border: 0;
  border-radius: 8px;
  padding: 0 14px;
  font-weight: 800;
  cursor: pointer;
}

.copyright {
  border-top: 1px solid #2a2a2a;
  padding: 18px 0;
  font-size: 0.9rem;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1100;
  background: #25d366;
  color: white;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.35);
}

.whatsapp-float::before {
  content: "💬";
}

.page-hero {
  position: relative;
  min-height: 380px;
  color: white;
  display: grid;
  align-items: center;
  overflow: hidden;
  width: 100%;
}

.page-hero-media {
  filter: grayscale(0.85);
}

.page-hero-media::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.62));
}

.page-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 84px 0;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5rem);
  text-transform: uppercase;
  color: var(--yellow);
}

.breadcrumb {
  margin-top: 8px;
  color: #eee;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.92rem;
}

.breadcrumb a:hover {
  color: var(--yellow);
}

.info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 36px;
}

.info-card {
  background: var(--paper);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid var(--line);
}

.info-card h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.info-card a {
  display: block;
  color: var(--ink);
  font-weight: 600;
}

.info-card a:hover {
  color: var(--yellow-deep);
}

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

.stat-card {
  background: var(--black);
  color: white;
  padding: 28px;
  border-radius: 16px;
}

.stat-card strong {
  display: block;
  color: var(--yellow);
  font-family: var(--font-display);
  font-size: 2.4rem;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.why-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: white;
}

.faq {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: white;
}

.faq-item button {
  width: 100%;
  text-align: left;
  background: white;
  border: 0;
  padding: 20px 22px;
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.faq-item .answer {
  display: none;
  padding: 0 22px 20px;
  color: var(--muted);
  font-size: 1.05rem;
}

.faq-item.open .answer {
  display: block;
}

.split-faq {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: start;
}

.article {
  max-width: 760px;
  margin: 0 auto;
}

.article h1 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 12px;
}

.article p,
.article li {
  margin-bottom: 16px;
  color: #333;
}

.article ul {
  padding-left: 20px;
  list-style: disc;
}

.article img {
  width: 100%;
  border-radius: 16px;
  margin: 24px 0;
  max-height: 420px;
  object-fit: cover;
}

.certificate-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.result-box {
  display: none;
  margin-top: 16px;
  padding: 16px;
  border-radius: 12px;
}

.result-box.show {
  display: block;
}

.result-box.ok {
  background: #eefaf0;
  border: 1px solid #b7e4c0;
}

.result-box.warn {
  background: #fff6e5;
  border: 1px solid #ffd28a;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  display: none;
  place-items: center;
  z-index: 2000;
  padding: 24px;
}

.lightbox.open {
  display: grid;
}

.lightbox img {
  max-width: min(1100px, 100%);
  max-height: 86vh;
  border-radius: 12px;
}

.lightbox button {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--yellow);
  border: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-weight: 800;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: rise 0.7s var(--ease) forwards;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1100px) {
  .training-grid,
  .blog-grid,
  .testimonial-track,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-grid,
  .about-grid,
  .contact-split,
  .certificate-box,
  .cta-banner .container {
    grid-template-columns: 1fr;
  }

  .cta-banner .container {
    display: grid;
  }
}

@media (max-width: 900px) {
  html {
    font-size: 16px;
  }

  .nav,
  .header-cta .btn {
    display: none;
  }

  .header-phone {
    display: flex !important;
  }

  .header-phone small {
    display: none;
  }

  .brand-compact {
    display: flex;
  }

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

  .mobile-panel.open {
    display: block;
    background: #111;
    padding: 8px 20px 20px;
  }

  .mobile-panel a {
    display: block;
    color: white;
    padding: 14px 0;
    border-bottom: 1px solid #2a2a2a;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }

  .mobile-panel a.active {
    color: var(--yellow);
  }

  .feature-grid,
  .vision-grid,
  .info-cards,
  .stats,
  .why-grid,
  .form-row,
  .split-faq {
    grid-template-columns: 1fr;
  }

  .about-collage {
    min-height: 420px;
  }

  .about-main {
    height: 380px;
  }

  .site-logo {
    width: 160px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(var(--max), calc(100% - 24px));
  }

  .topbar-inner {
    justify-content: center;
    text-align: center;
  }

  .topbar-social {
    display: none;
  }

  .topbar-contacts a:nth-child(n + 2) {
    display: none;
  }

  .section {
    padding: 56px 0;
  }

  .hero-content {
    padding: 80px 0 120px;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .training-grid,
  .blog-grid,
  .testimonial-track,
  .footer-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item,
  .gallery-item:first-child,
  .gallery-item:nth-child(6) {
    grid-column: auto;
    min-height: 220px;
  }

  .whatsapp-float span {
    display: none;
  }

  .whatsapp-float {
    width: 54px;
    height: 54px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }

  .subscribe {
    flex-direction: column;
  }

  .copyright {
    flex-direction: column;
  }

  .site-logo {
    width: 140px;
  }

  .page-hero-content {
    padding: 64px 0;
  }
}
