/* ============================================================
   FONTS
   ============================================================ */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/inter-400-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/inter-500-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/lato-400-latin.woff2') format('woff2');
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Inter', 'Lato', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #111111;
  background: #ffffff;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --teal:        #00a8b5;
  --teal-light:  #00d7e8;
  --teal-dark:   #007983;
  --dark:        #111111;
  --dark-2:      #1a1a1a;
  --gray-light:  #e6e6e6;
  --white:       #ffffff;
  --text-muted:  #b8c0cc;
  --max-width:   1200px;
  --nav-height:  80px;
  --radius:      8px;
  --transition:  0.25s ease;
}

/* ============================================================
   UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.section-pad {
  padding: 80px 0;
}
.section-pad-sm {
  padding: 56px 0;
}
.text-center { text-align: center; }
.text-white  { color: var(--white); }
.text-teal   { color: var(--teal-light); }
.text-muted  { color: var(--text-muted); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  padding: 16px 36px;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  border: none;
  text-align: center;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-primary {
  background: var(--teal);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--teal-dark);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
}
.btn-dark {
  background: var(--dark);
  color: var(--white);
}
.btn-dark:hover {
  background: #333;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(17, 17, 17, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background var(--transition);
}
.site-header.scrolled {
  background: rgba(17, 17, 17, 0.98);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
}
.nav__logo img {
  height: 48px;
  width: auto;
  filter: brightness(0) invert(1);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__links a {
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  font-weight: 500;
  transition: color var(--transition);
  letter-spacing: 0.01em;
}
.nav__links a:hover,
.nav__links a.active {
  color: var(--teal-light);
}
.nav__cta {
  padding: 10px 24px;
  font-size: 14px;
}
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

/* ============================================================
   HERO — VIDEO BACKGROUND
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-height);
}
.hero__video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 80, 90, 0.55) 100%
  );
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero__text {
  color: var(--white);
}
.hero__eyebrow {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 16px;
}
.hero__title {
  font-size: clamp(30px, 3.8vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--white);
}
.hero__subtitle {
  font-size: 20px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  font-style: italic;
}
.hero__cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.hero__card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 24px 28px;
  color: var(--white);
  transition: background var(--transition);
}
.hero__card:hover {
  background: rgba(255,255,255,0.13);
}
.hero__card-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--teal-light);
  margin-bottom: 6px;
}
.hero__card-text {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}

/* ============================================================
   STEPS SECTION (white bg)
   ============================================================ */
.steps {
  background: #f0fafb;
}
.steps__intro {
  text-align: center;
  margin-bottom: 60px;
}
.steps__intro h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
}
.steps__intro .choice {
  font-size: 18px;
  color: #444;
}
.steps__intro .choice em {
  color: var(--teal);
  font-style: normal;
  font-weight: 600;
}
.steps__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.step-card {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--radius);
  border: 1px solid #eee;
  transition: box-shadow var(--transition), transform var(--transition);
}
.step-card:hover {
  box-shadow: 0 8px 32px rgba(0,168,181,0.12);
  transform: translateY(-4px);
}
.step-card__icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 24px;
}
.step-card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.step-card__text {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* ============================================================
   TRANSFORM SECTION (dark bg)
   ============================================================ */
.transform {
  background: var(--dark);
  color: var(--white);
}
.transform__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.transform__text h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 28px;
  line-height: 1.2;
}
.transform__list {
  margin-bottom: 36px;
}
.transform__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 17px;
  color: rgba(255,255,255,0.85);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.transform__list li::before {
  content: '';
  width: 8px;
  height: 8px;
  min-width: 8px;
  background: var(--teal-light);
  border-radius: 50%;
}
.journey__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.journey-card {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: border-color var(--transition);
}
.journey-card:hover {
  border-color: var(--teal);
}
.journey-card__number {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--teal-light);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.journey-card__title {
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}
.journey-card__text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}
.journey-card--featured {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(0,168,181,0.2), rgba(0,215,232,0.1));
  border-color: var(--teal);
  text-align: center;
}

/* ============================================================
   CANDIDACY + POOL SECTION (dark bg)
   ============================================================ */
.candidacy {
  background: var(--dark-2);
  color: var(--white);
}
.candidacy__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.candidacy__left h2 {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 700;
  margin-bottom: 12px;
}
.candidacy__left .sub {
  color: var(--text-muted);
  margin-bottom: 32px;
  font-size: 16px;
}
.candidacy__list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.candidacy__list li::before {
  content: '✓';
  color: var(--teal-light);
  font-weight: 700;
  font-size: 16px;
  margin-top: 1px;
  flex-shrink: 0;
}
.candidacy__cta {
  margin-top: 36px;
}
.pool__right h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}
.pool__diagram {
  position: relative;
  background: linear-gradient(180deg, rgba(0,168,181,0.15) 0%, rgba(0,168,181,0.05) 100%);
  border: 1px solid rgba(0,168,181,0.3);
  border-radius: 12px;
  padding: 32px;
  margin-bottom: 24px;
  overflow: hidden;
}
.pool__shallow {
  background: rgba(0,215,232,0.15);
  border-radius: 8px;
  padding: 16px 20px;
  margin-bottom: 12px;
  border-left: 4px solid var(--teal-light);
}
.pool__deep {
  background: rgba(0,100,115,0.3);
  border-radius: 8px;
  padding: 20px;
  border-left: 4px solid var(--teal);
}
.pool__label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 6px;
}
.pool__text {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
}
.pool__conclusion {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  font-style: italic;
}
.pool__conclusion strong {
  color: var(--teal-light);
  font-style: normal;
}

/* ============================================================
   VIDEO BREAK / CTA SECTION
   ============================================================ */
.video-cta {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.video-cta__video-wrap {
  position: absolute;
  inset: 0;
}
.video-cta__video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-cta__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,100,110,0.7) 100%);
}
.video-cta__content {
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: center;
  color: var(--white);
}
.video-cta__content h2 {
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 700;
  margin-bottom: 20px;
}
.video-cta__content p {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  margin: 0 auto 32px;
}

/* ============================================================
   TESTIMONIALS (teal bg)
   ============================================================ */
.testimonials {
  background: var(--teal);
  color: var(--white);
}
.testimonials__header {
  text-align: center;
  margin-bottom: 56px;
}
.testimonials__header h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  margin-bottom: 12px;
}
.testimonials__header p {
  font-size: 17px;
  color: rgba(255,255,255,0.85);
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.testimonial-card {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  padding: 36px;
  backdrop-filter: blur(8px);
  transition: background var(--transition);
}
.testimonial-card:hover {
  background: rgba(255,255,255,0.18);
}
.testimonial-card__stars {
  color: #FFD700;
  font-size: 20px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.testimonial-card__quote {
  font-size: 18px;
  font-style: italic;
  line-height: 1.7;
  color: var(--white);
  margin-bottom: 24px;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-card__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.4);
}
.testimonial-card__name {
  font-weight: 600;
  font-size: 15px;
}
.testimonial-card__role {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
}

/* ============================================================
   CONTACT FORM SECTION (teal bg, slightly darker)
   ============================================================ */
.contact {
  background: var(--teal-dark);
  color: var(--white);
}
.contact__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: start;
}
.contact__form-wrap h2 {
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 700;
  margin-bottom: 32px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  transition: border-color var(--transition), background var(--transition);
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.45);
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--teal-light);
  background: rgba(255,255,255,0.15);
}
.form-group textarea {
  min-height: 120px;
  resize: vertical;
}
.form__submit {
  margin-top: 8px;
}
.contact__info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}
.contact__info .tagline {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
  line-height: 1.6;
}
.contact__detail {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 14px;
}
.contact__detail-icon {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--dark);
  color: var(--white);
  padding: 56px 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 32px;
}
.footer__brand img {
  height: 42px;
  filter: brightness(0) invert(1);
  margin-bottom: 16px;
}
.footer__brand p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 300px;
}
.footer__col h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 16px;
}
.footer__col a,
.footer__col p {
  display: block;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 10px;
  transition: color var(--transition);
}
.footer__col a:hover {
  color: var(--white);
}
.footer__newsletter {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}
.footer__newsletter input {
  flex: 1;
  padding: 10px 14px;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.06);
  color: var(--white);
  font-size: 14px;
  outline: none;
}
.footer__newsletter input::placeholder {
  color: rgba(255,255,255,0.35);
}
.footer__newsletter input:focus {
  border-color: var(--teal);
}
.footer__newsletter button {
  padding: 10px 18px;
  background: var(--teal);
  color: var(--white);
  border: none;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--transition);
}
.footer__newsletter button:hover {
  background: var(--teal-dark);
}
.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.footer__social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 16px;
  transition: background var(--transition), color var(--transition);
}
.footer__social a:hover {
  background: var(--teal);
  color: var(--white);
}
.footer__bottom {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
}

/* ============================================================
   COACHING PAGE — HERO
   ============================================================ */
.coaching-hero {
  padding-top: var(--nav-height);
  background: var(--dark);
  color: var(--white);
  min-height: 70vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.coaching-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/coaching-hero.jpg') center/cover no-repeat;
  opacity: 0.25;
}
.coaching-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
}
.coaching-hero__eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 16px;
}
.coaching-hero__title {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 24px;
}
.coaching-hero__body {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 600px;
}
.coaching-hero__body em {
  color: var(--teal-light);
  font-style: normal;
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services {
  background: var(--white);
}
.services__header {
  text-align: center;
  margin-bottom: 60px;
}
.services__header h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--dark);
}
.services__header h2 em {
  color: var(--teal);
  font-style: normal;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.service-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid #eee;
  transition: box-shadow var(--transition), transform var(--transition);
}
.service-card:hover {
  box-shadow: 0 8px 40px rgba(0,168,181,0.15);
  transform: translateY(-4px);
}
.service-card__img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.service-card__body {
  padding: 28px 24px;
}
.service-card__title {
  font-size: 19px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.service-card__text {
  font-size: 14px;
  color: #666;
  line-height: 1.65;
}

/* ============================================================
   COACHING TESTIMONIAL SECTION
   ============================================================ */
.coaching-testimonial {
  background: var(--dark);
  color: var(--white);
  text-align: center;
}
.coaching-testimonial__quote {
  font-size: clamp(20px, 3vw, 28px);
  font-style: italic;
  line-height: 1.65;
  max-width: 680px;
  margin: 0 auto 28px;
  color: rgba(255,255,255,0.9);
}
.coaching-testimonial__stars {
  color: #FFD700;
  font-size: 22px;
  letter-spacing: 3px;
  margin-bottom: 16px;
}
.coaching-testimonial__author {
  font-size: 16px;
  font-weight: 600;
  color: var(--teal-light);
}

/* ============================================================
   PAGE TRANSITION FADE
   ============================================================ */
.page-fade {
  animation: fadeIn 0.4s ease;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 1024px) {
  .steps__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero__cards {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .hero__card {
    flex: 1 1 200px;
  }
  .transform__inner,
  .candidacy__inner,
  .contact__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --nav-height: 64px;
  }
  .section-pad { padding: 56px 0; }

  .nav__links {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgba(17,17,17,0.98);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .nav__links.open {
    display: flex;
  }
  .nav__toggle {
    display: flex;
  }
  .nav__toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .nav__toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .nav__toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero__inner { grid-template-columns: 1fr; }
  .hero__cards { flex-direction: column; }

  .steps__grid { grid-template-columns: 1fr; }
  .journey__cards { grid-template-columns: 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .services__grid { grid-template-columns: 1fr; }

  .footer__grid { grid-template-columns: 1fr; }
  .footer__newsletter { flex-direction: column; }

  .contact__inner { grid-template-columns: 1fr; }
  .candidacy__inner { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 30px; }
  .btn { padding: 14px 28px; }
}
