/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { font-family: 'Manrope', sans-serif; font-weight: 400; font-size: 16px; line-height: 1.5; color: #000; background: #fff; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
img { max-width: 100%; display: block; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

/* ===== TYPOGRAPHY ===== */
.h1 { font-weight: 500; font-size: 72px; line-height: 1.2em; letter-spacing: -0.05em; }
.h2 { font-weight: 500; font-size: 52px; line-height: 1.3em; letter-spacing: -0.03em; text-align: center; }
.h3 { font-weight: 500; font-size: 32px; line-height: 1.3em; letter-spacing: -0.03em; }
.h3-sm { font-weight: 500; font-size: 20px; line-height: 1.4em; letter-spacing: -0.02em; }
.paragraph { font-weight: 400; font-size: 16px; line-height: 1.5em; }
.paragraph-sm { font-weight: 400; font-size: 14px; line-height: 1.5em; }
.btn-text { font-weight: 500; font-size: 16px; line-height: 1.5em; }
.logo-text { font-weight: 700; font-size: 16px; line-height: 1.5em; }
.stat-number { font-family: 'Bebas Neue', sans-serif; font-weight: 400; font-size: 72px; line-height: 1em; letter-spacing: -0.03em; }

/* ===== COLOR VARIABLES ===== */
:root {
  --black: #000;
  --white: #fff;
  --gold: rgb(245, 182, 20);
  --white-50: rgba(255, 255, 255, 0.5);
  --black-50: rgba(0, 0, 0, 0.5);
  --very-light-grey: rgb(234, 234, 234);
  --almost-white: rgb(245, 245, 245);
  --light-grey: rgb(153, 153, 153);
  --medium-grey: rgb(102, 102, 102);
}

/* ===== CONTAINER ===== */
.container { max-width: 1120px; margin: 0 auto; width: 100%; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex; align-items: center; gap: 16px;
  background: var(--white); color: var(--black);
  border-radius: 24px; height: 48px; padding: 0 4px 0 24px;
  font-weight: 500; font-size: 16px; line-height: 1.5; white-space: nowrap;
  overflow: hidden; transition: background 0.3s ease;
}
.btn-primary:hover { background: rgb(223, 223, 223); }
.btn-primary .btn-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--black); display: flex; align-items: center; justify-content: center;
}
.btn-primary .btn-icon svg { width: 16px; height: 16px; transition: transform 0.3s ease; }
.btn-primary .btn-icon svg path { stroke: var(--white); }
.btn-primary:hover .btn-icon svg { transform: translate(2px, -2px); }

.btn-dark {
  display: inline-flex; align-items: center; gap: 16px;
  background: var(--black); color: var(--white);
  border-radius: 24px; height: 48px; padding: 0 4px 0 24px;
  font-weight: 500; font-size: 16px; line-height: 1.5; white-space: nowrap;
  overflow: hidden; transition: background 0.3s ease;
}
.btn-dark:hover { background: rgb(51, 51, 51); }
.btn-dark .btn-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--white); display: flex; align-items: center; justify-content: center;
}
.btn-dark .btn-icon svg { width: 16px; height: 16px; transition: transform 0.3s ease; }
.btn-dark .btn-icon svg path { stroke: var(--black); }
.btn-dark:hover .btn-icon svg { transform: translate(2px, -2px); }

.btn-coaching {
  display: inline-flex; align-items: center; gap: 16px;
  background: rgb(242, 242, 242); color: var(--black);
  border-radius: 24px; height: 48px; padding: 0 4px 0 24px;
  font-weight: 500; font-size: 16px; line-height: 1.5; white-space: nowrap;
  overflow: hidden; transition: background 0.3s ease;
}
.btn-coaching:hover { background: rgb(223, 223, 223); }
.btn-coaching .btn-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--black); display: flex; align-items: center; justify-content: center;
}
.btn-coaching .btn-icon svg { width: 16px; height: 16px; color: var(--white); transition: transform 0.3s ease; }
.btn-coaching:hover .btn-icon svg { transform: translate(2px, -2px); }

.btn-secondary {
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255, 255, 255, 0.15); border: none; border-radius: 24px;
  height: 40px; padding: 0 20px;
  color: var(--white); font-weight: 500; font-size: 16px; line-height: 1.5;
  overflow: hidden; transition: background 0.3s ease;
}
.btn-secondary:hover { background: rgba(255, 255, 255, 0.25); }

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  padding: 20px 40px; transition: background 0.3s;
}
.navbar.scrolled { background: rgba(0,0,0,0.85); backdrop-filter: blur(10px); }
.navbar .container { display: flex; align-items: center; justify-content: space-between; }
.nav-left { display: flex; align-items: center; gap: 24px; }
.nav-logo { display: flex; align-items: center; gap: 8px; }
.nav-logo img { width: 24px; height: 24px; }
.nav-logo span { font-weight: 700; font-size: 16px; color: var(--white); }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { color: var(--white-50); font-weight: 500; font-size: 16px; transition: color 0.2s; }
.nav-links a:hover { color: var(--white); }
.nav-separator { width: 2px; height: 24px; background: var(--white-50); }
.nav-right { display: flex; align-items: center; gap: 24px; }
.hamburger { display: none; flex-direction: column; gap: 6px; width: 24px; cursor: pointer; }
.hamburger span { display: block; height: 2px; background: var(--white); border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }

/* ===== HERO SECTION ===== */
.hero {
  position: relative; min-height: 100vh; min-height: 800px;
  display: flex; align-items: flex-end; padding: 0 40px 80px 40px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-video {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.05);
}
.hero-video.animate { transform: scale(1); transition: transform 2s cubic-bezier(0.12, 0.23, 0.5, 1); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.8) 100%);
}
.hero-content {
  position: relative; z-index: 1; width: 100%; max-width: 1120px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 64px;
}
.hero-text { max-width: 544px; display: flex; flex-direction: column; gap: 24px; }
.hero-subtitle { color: var(--white); font-weight: 500; font-size: 16px; line-height: 1.5; display: flex; align-items: center; gap: 16px; }
.hero-dash { display: inline-block; width: 48px; height: 2px; background: var(--white); flex-shrink: 0; }
.hero-title { color: var(--white); font-family: 'Bebas Neue', sans-serif; text-transform: uppercase; }
.hero-desc { color: var(--white-50); font-weight: 400; font-size: 16px; line-height: 1.5; }
.hero-reviews { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; border-left: 2px solid var(--gold); padding-left: 16px; }
.hero-stars { display: flex; gap: 2px; }
.hero-stars svg { width: 16px; height: 16px; fill: var(--gold); }
.hero-reviews-text { color: var(--white-50); font-size: 14px; }

/* Hero entrance animations */
.hero-anim { opacity: 0.001; transform: translateY(20px); }
.hero-anim.visible {
  opacity: 1; transform: translateY(0);
  transition: opacity 0.5s cubic-bezier(0.44, 0, 0.56, 1), transform 0.5s cubic-bezier(0.44, 0, 0.56, 1);
}

/* ===== TRUST SECTION ===== */
.trust { padding: 120px 40px 100px 40px; }
.trust .container { display: flex; flex-direction: column; gap: 82px; max-width: 1120px; }
.trust-row { display: flex; gap: 13px; align-items: center; justify-content: center; }
.trust-image { flex: 0 0 625px; border-radius: 16px; overflow: hidden; }
.trust-image img { width: 100%; height: auto; }
.trust-text { flex: 0 0 auto; max-width: 430px; display: flex; flex-direction: column; justify-content: center; }
.trust-heading {
  font-family: 'Manrope', sans-serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.3em;
  letter-spacing: -0.03em;
  color: var(--black);
}
.trust-heading .gradient-text {
  display: inline-block;
  background-image: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 204%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.trust-author {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--black);
  margin-top: 16px;
  opacity: 0.6;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 64px;
  width: 100%;
}
.stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
  padding-top: 48px;
}
.stat-item::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0;
  border-top: 2px solid rgb(225, 225, 225);
}
.stat-item .stat-number { color: var(--black); }
.stat-item .stat-label { color: var(--light-grey); font-size: 14px; font-weight: 400; }

/* ===== COACHING SECTION ===== */
.coaching { padding: 100px 40px 40px 40px; }
.coaching-header { text-align: center; margin-bottom: 64px; }
.coaching-header .h2 { margin-bottom: 16px; }
.coaching-header p { color: var(--medium-grey); max-width: 560px; margin: 0 auto; text-align: center; }
.coaching-cards { display: flex; flex-direction: column; gap: 100px; }
.coaching-card {
  position: sticky; top: 32px;
  background: var(--white); border-radius: 32px; padding: 16px;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.05);
  display: flex; gap: 64px; align-items: stretch;
}
.coaching-card-img { flex: 1; border-radius: 24px; overflow: hidden; position: relative; }
.coaching-card-img img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; }
.coaching-card-content {
  flex: 1; display: flex; flex-direction: column; justify-content: center;
  padding: 64px 0px; gap: 40px; align-items: flex-start;
}
.coaching-card-top { display: flex; flex-direction: column; gap: 8px; }
.coaching-card-top .label { color: var(--light-grey); font-size: 14px; }
.coaching-card-top .h3 { color: var(--black); }
.coaching-features { display: flex; flex-direction: column; gap: 16px; }
.coaching-feature {
  display: flex; align-items: center; gap: 12px;
  font-size: 16px; color: var(--black);
}
.coaching-feature .check-icon {
  width: 20px; height: 20px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.coaching-feature .check-icon svg { width: 100%; height: 100%; }

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
  padding: 160px 40px; display: flex; flex-direction: column; align-items: center;
  background: var(--white);
}
.testimonial-wrapper {
  max-width: 1120px; width: 100%; display: flex; justify-content: center;
}
.testimonial-inner {
  width: 736px; max-width: 100%; display: flex; flex-direction: column;
  align-items: center; gap: 32px;
}
.testimonial-top {
  display: flex; flex-direction: column; align-items: center; gap: 24px; width: 100%;
}
.testimonial-stars { line-height: 0; }
.testimonial-stars svg { display: block; }
.testimonial-quote {
  font-weight: 500; font-size: 32px; line-height: 1.3em; letter-spacing: -0.02em;
  color: var(--black); text-align: center; margin: 0;
  transition: opacity 0.3s;
}
.testimonial-author-text {
  font-size: 16px; font-weight: 400; color: var(--black); text-align: center;
  transition: opacity 0.3s;
}
.testimonial-avatars {
  display: flex; flex-direction: row; gap: 8px; justify-content: center; align-items: center;
}
.testimonial-avatar {
  cursor: pointer; border-radius: 50%; overflow: hidden;
  transition: width 0.3s, height 0.3s;
  width: 40px; height: 40px;
}
.testimonial-avatar img {
  width: 100%; height: 100%; border-radius: 50%; object-fit: cover;
  display: block;
}
.testimonial-avatar.active { width: 48px; height: 48px; }

/* ===== ABOUT SECTION ===== */
.about { padding: 100px 40px 60px 40px; background: var(--black); }
.about .container { display: grid; grid-template-columns: 544px 544px; gap: 32px; max-width: 1120px; margin: 0 auto; }
.about-left { display: flex; flex-direction: column; }
.about-block {
  min-height: 80vh; display: flex; flex-direction: column; justify-content: center;
  padding-bottom: 100px;
}
.about-text {
  font-size: 32px; font-weight: 500; color: var(--white);
  line-height: 1.3em; letter-spacing: -0.02em; margin: 0;
}
.about-right {
  position: sticky; top: 0; height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: 32px 0 32px 96px;
}
.about-images { position: relative; width: 100%; height: 0; padding-bottom: 125%; }
.about-images img {
  position: absolute; width: 100%; height: 100%; object-fit: cover; border-radius: 16px;
  transition: opacity 0.6s ease;
}
.about-images img.img-a { z-index: 3; }
.about-images img.img-b { z-index: 2; }
.about-images img.img-c { z-index: 1; }
.about-images img.hidden { opacity: 0; }

/* ===== FAQ SECTION ===== */
.faq { padding: 160px 40px; display: flex; flex-direction: column; align-items: center; }
.faq .container { display: flex; flex-direction: column; align-items: center; }
.faq .label { color: var(--medium-grey); font-size: 16px; font-weight: 400; margin-bottom: 16px; }
.faq .h2 { margin-bottom: 64px; text-align: center; }
.faq-list { max-width: 736px; margin: 0 auto; display: flex; flex-direction: column; gap: 8px; }
.faq-item { border-bottom: 1px solid var(--very-light-grey); padding: 24px 0; }
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer; gap: 16px; width: 100%;
}
.faq-question .h3-sm { flex: 1; text-align: left; }
.faq-icon {
  width: 32px; height: 32px; flex-shrink: 0;
  background: var(--almost-white); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.faq-icon .line-h, .faq-icon .line-v {
  position: absolute; background: var(--black); border-radius: 1px;
}
.faq-icon .line-h { width: 14px; height: 2px; }
.faq-icon .line-v { width: 2px; height: 14px; transition: transform 0.3s; }
.faq-item.open .faq-icon .line-v { transform: rotate(90deg); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.open .faq-answer { max-height: 300px; padding-top: 16px; }
.faq-answer p { color: var(--medium-grey); font-size: 14px; line-height: 1.5; }

/* ===== CTA SECTION ===== */
.cta {
  padding: 160px 40px; position: relative; overflow: hidden;
  background: var(--black); text-align: center;
}
.cta-bg {
  position: absolute; inset: 0;
  background-image: url('https://framerusercontent.com/images/jvdVI7oW19QcgbXleKvE8w4qg.png');
  background-size: cover; background-position: center;
}
.cta-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.6); }
.cta-content { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 32px; }
.cta-text { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.cta-text .h2 { color: var(--white); }
.cta-text p { color: var(--white); max-width: 560px; text-align: center; }

/* ===== FOOTER ===== */
.footer { background: var(--black); padding: 80px 40px; }
.footer .container { display: flex; justify-content: space-between; align-items: flex-start; }
.footer-left { display: flex; flex-direction: column; gap: 16px; max-width: 300px; }
.footer-logo { display: flex; align-items: center; gap: 8px; }
.footer-logo img { width: 24px; height: 24px; }
.footer-logo span { font-weight: 700; font-size: 16px; color: var(--white); }
.footer-desc { color: var(--white-50); font-size: 14px; line-height: 1.5; }
.footer-credit { color: var(--white-50); font-size: 14px; }
.footer-credit a { color: var(--white); text-decoration: none; }
.footer-right { display: flex; gap: 80px; }
.footer-col h4 { color: var(--white); font-weight: 400; font-size: 16px; margin-bottom: 16px; }
.footer-col a { display: block; color: var(--white-50); font-size: 14px; margin-bottom: 12px; transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }

/* ===== CONTACT PAGE ===== */
.contact-hero {
  background: var(--black);
  padding: 140px 40px 120px 40px;
}
.contact-hero .container {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: start;
}
.contact-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
}
.contact-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contact-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 72px;
  line-height: 1.2;
  color: var(--white);
  letter-spacing: -0.05em;
}
.contact-desc {
  font-size: 16px;
  line-height: 1.6;
  color: var(--white-50);
  max-width: 440px;
}
.contact-divider {
  width: 100%;
  max-width: 440px;
  height: 1px;
  background: rgba(255,255,255,0.12);
  margin: 20px 0;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-size: 16px;
}
.contact-info-item svg {
  flex-shrink: 0;
  color: var(--white);
}

/* Contact Form */
.contact-form {
  background: linear-gradient(rgba(46,46,46,0.35) 0%, rgba(46,46,46,0.5) 100%);
  border-radius: 16px;
  padding: 48px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group.full {
  grid-column: 1 / -1;
}
.form-group label {
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(46,46,46,0.5);
  border: none;
  border-radius: 8px;
  padding: 12px;
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  color: var(--white);
  outline: none;
  transition: background 0.2s;
  height: 48px;
  box-sizing: border-box;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.35);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  background: rgba(46,46,46,0.7);
}
.form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M3 4.5l3 3 3-3' stroke='%23ffffff' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 36px;
  cursor: pointer;
}
.form-group select option {
  background: var(--dark-grey);
  color: var(--white);
}
.form-group textarea {
  resize: vertical;
  min-height: 100px;
  height: auto;
}
.form-group select {
  border-radius: 10px;
}
.btn-form {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
  background: var(--white);
  color: var(--black);
}
.btn-form:hover {
  background: rgb(223, 223, 223);
}
.btn-form .btn-icon {
  background: var(--black);
  color: var(--white);
}
.btn-form:hover .btn-icon svg { transform: translate(2px, -2px); }

/* ===== SCROLL ANIMATIONS ===== */
.fade-in {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE - TABLET ===== */
@media (max-width: 1199px) {
  .h1 { font-size: 52px; }
  .h2 { font-size: 40px; }
  .stat-number { font-size: 52px; }

  .navbar { padding: 20px 32px; }
  .nav-links { display: none; }
  .nav-separator { display: none; }
  .hamburger { display: flex; }

  .hero { padding: 0 32px 64px 32px; }
  .hero-text { max-width: 480px; }

  .trust { padding: 100px 32px 80px 32px; }
  .trust-row { flex-direction: column; gap: 48px; }
  .trust-image { flex: none; width: 100%; }
  .trust-heading { font-size: 28px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .stat-item { padding-top: 32px; }

  .coaching { padding: 80px 32px 32px 32px; }
  .coaching-cards { gap: 40px; }
  .coaching-card { flex-direction: column; gap: 0; position: relative; top: auto; }
  .coaching-card-img { min-height: 300px; }
  .coaching-card-content { padding: 40px 32px; }

  .testimonials { padding: 120px 32px; }
  .testimonial-quote { font-size: 28px; }
  .about { padding: 80px 32px 48px 32px; }
  .about .container { grid-template-columns: 1fr; }
  .about-right { position: relative; height: auto; padding: 0; margin-bottom: 40px; order: -1; }
  .about-block { min-height: auto; padding-bottom: 60px; }
  .about-text { font-size: 28px; }
  .about-images { padding-bottom: 80%; }

  .faq { padding: 120px 32px; }
  .cta { padding: 120px 32px; }
  .footer { padding: 64px 32px; }

  .contact-hero { padding: 140px 32px 80px 32px; }
  .contact-hero .container { grid-template-columns: 1fr; gap: 48px; }
  .contact-title { font-size: 44px; }
}

/* ===== RESPONSIVE - PHONE ===== */
@media (max-width: 809px) {
  .h1 { font-size: 36px; }
  .h2 { font-size: 32px; }
  .h3 { font-size: 24px; }
  .stat-number { font-size: 40px; }

  .navbar { padding: 20px 20px; }
  .hero { padding: 0 20px 48px 20px; min-height: auto; min-height: 100vh; }
  .hero-content { gap: 40px; }
  .hero-text { max-width: 100%; }

  .trust { padding: 80px 20px 60px 20px; }
  .trust-heading { font-size: 24px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .stat-item { padding-top: 24px; }

  .coaching { padding: 60px 20px 20px 20px; }
  .coaching-cards { gap: 40px; }
  .coaching-card { position: relative; top: auto; border-radius: 24px; }

  .testimonials { padding: 100px 20px; }
  .testimonial-quote { font-size: 22px; }

  .about { padding: 60px 20px 40px 20px; }
  .about-right { padding: 0; }
  .about-text { font-size: 22px; }
  .about-images { padding-bottom: 100%; }

  .faq { padding: 100px 20px; }
  .cta { padding: 100px 20px; }

  .footer { padding: 48px 20px; }
  .footer .container { flex-direction: column; gap: 40px; }
  .footer-right { gap: 40px; }

  .contact-hero { padding: 120px 20px 60px 20px; }
  .contact-title { font-size: 36px; }
  .form-row { grid-template-columns: 1fr; gap: 20px; }
  .contact-form { padding: 28px 20px; }
}

/* ===== MOBILE NAV OVERLAY ===== */
.mobile-nav {
  display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
  background: var(--white); z-index: 999; padding: 100px 20px 40px 20px;
  flex-direction: column; gap: 24px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-weight: 500; font-size: 24px; color: var(--black);
  padding: 12px 0; border-bottom: 1px solid var(--very-light-grey);
}
.mobile-nav .btn-dark { align-self: flex-start; margin-top: 16px; }

/* Hamburger open state */
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }
.hamburger.open span { background: var(--black); }
