@import url('https://fonts.googleapis.com/css2?family=Old+Standard+TT:ital,wght@0,400;0,700;1,400&family=Lexend:wght@300;400&family=Mulish:wght@300;400;600&display=swap');

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Lexend', sans-serif;
  font-size: 17px;
  font-weight: 300;
  line-height: 35px;
  color: #000;
  background: #fff;
}

/* ===== TYPOGRAPHY ===== */
h1 { font-family: 'Old Standard TT', serif; font-size: 60px; font-weight: 400; line-height: 1.1; }
h2 { font-family: 'Old Standard TT', serif; font-size: 47px; font-weight: 400; line-height: 1.14em; }
h3 { font-family: 'Old Standard TT', serif; font-size: 30px; font-weight: 400; line-height: 1.23em; }
h4 { font-family: 'Old Standard TT', serif; font-size: 25px; font-weight: 400; line-height: 1.24em; }
h5 { font-family: 'Mulish', sans-serif; font-size: 14px; font-weight: 400; line-height: 24px; }
h6 { font-family: 'Mulish', sans-serif; font-size: 11px; font-weight: 400; line-height: 31px; letter-spacing: .3em; text-transform: uppercase; }
a { color: inherit; text-decoration: none; }
p { margin-bottom: 20px; }
p:last-child { margin-bottom: 0; }
.label-small {
  font-family: 'Mulish', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .3em;
  text-transform: uppercase;
  line-height: 25px;
}

/* ===== LAYOUT ===== */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 110px;
}
.content-wrap { position: relative; }
.content-wrap::before {
  content: '';
  position: absolute;
  left: 110px;
  top: 0; bottom: 0;
  width: 1px;
  background-color: #ECE8E5;
  z-index: 0;
  pointer-events: none;
}
.content-wrap::after {
  content: '';
  position: absolute;
  right: 110px;
  top: 0; bottom: 0;
  width: 1px;
  background-color: #ECE8E5;
  z-index: 0;
  pointer-events: none;
}

/* ===== HEADER ===== */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid #ECE8E5;
  height: 80px;
}
.header-inner {
  display: flex;
  align-items: center;
  height: 80px;
  padding: 0 31px 0 42px;
}
.logo-wrapper {
  position: relative;
  padding-right: 28px;
  margin-right: 28px;
  display: flex;
  align-items: center;
}
.logo-wrapper::after {
  content: '';
  position: absolute;
  right: 0;
  top: -200%;
  height: 400%;
  width: 1px;
  background-color: #ECE8E5;
}
nav.main-nav { flex: 1; display: flex; justify-content: flex-end; }
nav.main-nav ul { list-style: none; display: flex; gap: 36px; align-items: center; }
nav.main-nav ul li a {
  font-family: 'Mulish', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: #000;
  transition: color .25s ease;
  position: relative;
}
nav.main-nav ul li a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 1px;
  background: #06177b;
  transform: scaleX(0);
  transition: transform .3s cubic-bezier(.215,.61,.355,1);
}
nav.main-nav ul li a:hover::after,
nav.main-nav ul li a.active::after { transform: scaleX(1); }
nav.main-nav ul li a:hover,
nav.main-nav ul li a.active { color: #06177b; }

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: auto;
  font-size: 20px;
  color: #000;
  height: 60px;
  width: 60px;
  border-left: 1px solid #ECE8E5;
  align-items: center;
  justify-content: center;
}
nav.mobile-menu {
  display: none;
  position: absolute;
  top: 80px;
  left: 0; right: 0;
  background: #fff;
  border-bottom: 1px solid #ECE8E5;
  z-index: 999;
  padding: 17px 19px;
}
nav.mobile-menu.open { display: block; }
nav.mobile-menu ul { list-style: none; }
nav.mobile-menu ul li a {
  font-family: 'Mulish', sans-serif;
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid #ECE8E5;
  color: #000;
}

/* ===== HERO ===== */
.hero-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 80px);
}
.hero-image-side { position: relative; overflow: hidden; }
.hero-image-side img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-text-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 80px 80px 70px;
  background: #fff;
}
.hero-text-side .label-small { color: #7e7e7e; margin-bottom: 20px; display: block; }
.hero-text-side h1 { margin-bottom: 25px; color: #000; }
.hero-text-side p { font-size: 17px; color: #4c463a; line-height: 35px; max-width: 480px; }
.hero-actions { margin-top: 40px; display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  background-color: #06177b;
  color: #fff;
  font-family: 'Mulish', sans-serif;
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  padding: 0 40px;
  height: 52px;
  line-height: 52px;
  transition: background-color .25s ease;
}
.btn-primary:hover { background-color: #000; color: #fff; }
.btn-outline {
  display: inline-block;
  border: 1px solid #000;
  color: #000;
  font-family: 'Mulish', sans-serif;
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  padding: 0 40px;
  height: 52px;
  line-height: 52px;
  transition: all .25s ease;
}
.btn-outline:hover { background-color: #000; color: #fff; }
.btn-text {
  position: relative;
  font-family: 'Mulish', sans-serif;
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: #000;
  padding-right: 55px;
  display: inline-block;
  line-height: 52px;
}
.btn-text::after {
  content: "";
  position: absolute;
  height: 1px;
  width: 33px;
  top: 50%;
  right: 0;
  background-color: currentColor;
  transition: transform .4s cubic-bezier(.13,.68,.05,.83);
}
.btn-text:hover::after { transform: translateX(8px); }

/* ===== SECTIONS ===== */
section { position: relative; }
.section-padding { padding: 100px 0; }
.section-padding-sm { padding: 60px 0; }
.section-beige { background-color: #f1ebe7; }
.section-dark { background-color: #212121; color: #fff; }
.section-navy { background-color: #06177b; color: #fff; }
.section-label {
  font-family: 'Mulish', sans-serif;
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: #7e7e7e;
  margin-bottom: 15px;
  display: block;
}
.section-header { margin-bottom: 60px; }
.section-header h2 { max-width: 620px; }
.section-header.centered { text-align: center; }
.section-header.centered h2 { margin: 0 auto; }

/* ===== STATS STRIP ===== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #ECE8E5;
  border-bottom: 1px solid #ECE8E5;
}
.stat-item {
  padding: 55px 30px;
  border-right: 1px solid #ECE8E5;
  text-align: center;
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: 'Old Standard TT', serif;
  font-size: 56px;
  font-weight: 400;
  line-height: 1;
  color: #06177b;
  margin-bottom: 10px;
  display: block;
}
.stat-label {
  font-family: 'Mulish', sans-serif;
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: #7e7e7e;
}

/* ===== SPLIT SECTIONS ===== */
.split-section { display: grid; grid-template-columns: 1fr 1fr; }
.split-image { position: relative; overflow: hidden; min-height: 520px; }
.split-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.split-content {
  padding: 80px 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.split-content h2 { margin-bottom: 25px; }
.split-content p { color: #4c463a; }

/* ===== COURSE CARDS ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.course-card {
  padding: 50px 40px;
  border-right: 1px solid #ECE8E5;
  transition: background-color .25s ease;
}
.course-card:last-child { border-right: none; }
.course-card:hover { background-color: #f1ebe7; }
.course-card .card-icon { font-size: 26px; color: #06177b; margin-bottom: 25px; }
.course-card h4 { margin-bottom: 15px; }
.course-card p { font-size: 16px; color: #4c463a; line-height: 30px; }
.course-card .card-link { margin-top: 30px; display: inline-block; }
.card-border-top { border-top: 1px solid #ECE8E5; }

/* ===== PRICING ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background-color: #ECE8E5;
}
.price-item {
  background: #fff;
  padding: 55px 50px;
  transition: background-color .25s ease;
}
.price-item:hover { background-color: #f5f2ed; }
.price-item.featured { background-color: #06177b; color: #fff; }
.price-item.featured:hover { background-color: #04116a; }
.price-label {
  font-family: 'Mulish', sans-serif;
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: #7e7e7e;
  margin-bottom: 10px;
  display: block;
}
.price-item.featured .price-label { color: rgba(255,255,255,.55); }
.price-item h3 { margin-bottom: 20px; }
.price-amount {
  font-family: 'Old Standard TT', serif;
  font-size: 60px;
  font-weight: 400;
  line-height: 1;
  color: #06177b;
  margin-bottom: 5px;
  display: block;
}
.price-item.featured .price-amount { color: #fff; }
.price-unit {
  font-family: 'Mulish', sans-serif;
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: #7e7e7e;
  margin-bottom: 30px;
  display: block;
}
.price-item.featured .price-unit { color: rgba(255,255,255,.55); }
.price-features { list-style: none; margin-bottom: 40px; }
.price-features li {
  font-size: 15px;
  line-height: 30px;
  padding: 10px 0;
  border-bottom: 1px solid #ECE8E5;
  color: #4c463a;
  display: flex;
  align-items: center;
  gap: 10px;
}
.price-features li:last-child { border-bottom: none; }
.price-item.featured .price-features li { border-bottom-color: rgba(255,255,255,.15); color: rgba(255,255,255,.8); }
.price-features li i { color: #06177b; font-size: 11px; min-width: 14px; }
.price-item.featured .price-features li i { color: rgba(255,255,255,.7); }

/* ===== TESTIMONIALS ===== */
.testimonials-wrap {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 90px 0;
}
.testimonial-slide { display: none; }
.testimonial-slide.visible { display: block; }
.testimonial-quote {
  font-family: 'Old Standard TT', serif;
  font-size: 24px;
  line-height: 1.55;
  font-weight: 400;
  color: #000;
  margin-bottom: 35px;
  font-style: italic;
}
.testimonial-author {
  font-family: 'Mulish', sans-serif;
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: #7e7e7e;
}
.testimonial-dots { display: flex; justify-content: center; gap: 12px; margin-top: 45px; }
.testimonial-dots button {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: none;
  background-color: #999;
  cursor: pointer;
  padding: 0;
  transition: background-color .25s;
}
.testimonial-dots button.active { background-color: #000; }

/* ===== CONTACT SPLIT ===== */
.contact-split { display: grid; grid-template-columns: 1fr 1fr; }
.contact-info-side {
  background-color: #06177b;
  color: #fff;
  padding: 80px 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-info-side h2 { color: #fff; margin-bottom: 30px; }
.contact-info-side .section-label { color: rgba(255,255,255,.55); }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 18px;
  font-size: 15px;
  line-height: 26px;
}
.contact-detail i { color: rgba(255,255,255,.65); margin-top: 5px; min-width: 16px; }
.contact-form-side { background-color: #f1ebe7; padding: 80px 70px; }
.contact-form-side h3 { margin-bottom: 40px; }

/* ===== FORMS ===== */
.form-group { margin-bottom: 25px; }
.form-group input,
.form-group textarea,
.form-group select {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #000;
  border-radius: 0;
  color: #7e7e7e;
  font-family: 'Mulish', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .3em;
  font-weight: 400;
  padding: 15px 5px 16px;
  width: 100%;
  outline: none;
  transition: border-color .2s ease-in-out;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group textarea:focus { border-bottom-color: #06177b; }
.form-group textarea { height: 120px; resize: none; }
.form-submit-btn {
  background-color: #06177b !important;
  color: #fff;
  border: none;
  font-family: 'Mulish', sans-serif;
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  height: 52px;
  padding: 0 50px;
  cursor: pointer;
  transition: background-color .25s ease;
  display: inline-block;
  line-height: 52px;
}
.form-submit-btn:hover { background-color: #000 !important; }

/* ===== FAQ ===== */
.faq-item { border-bottom: 1px solid #ECE8E5; }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 0;
  cursor: pointer;
  font-family: 'Old Standard TT', serif;
  font-size: 20px;
  font-weight: 400;
  gap: 20px;
}
.faq-question i { color: #06177b; transition: transform .3s ease; font-size: 13px; flex-shrink: 0; }
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-answer-inner { padding: 0 0 25px; color: #4c463a; font-size: 16px; line-height: 30px; }
.faq-item.open .faq-answer { max-height: 400px; }

/* ===== REVIEWS ===== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background-color: #ECE8E5;
}
.review-item { background: #fff; padding: 50px; }
.review-stars { color: #06177b; font-size: 13px; letter-spacing: 3px; margin-bottom: 20px; }
.review-text {
  font-family: 'Old Standard TT', serif;
  font-size: 20px;
  line-height: 1.55;
  font-style: italic;
  margin-bottom: 30px;
  color: #000;
}
.review-author {
  font-family: 'Mulish', sans-serif;
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: #7e7e7e;
}

/* ===== TEAM GRID ===== */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.team-member { text-align: center; }
.team-member-img { overflow: hidden; margin-bottom: 20px; }
.team-member-img img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  transition: transform .4s ease;
  display: block;
}
.team-member:hover .team-member-img img { transform: scale(1.03); }
.team-member h5 {
  font-family: 'Old Standard TT', serif;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 5px;
}
.team-role {
  font-family: 'Mulish', sans-serif;
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: #7e7e7e;
}

/* ===== CAREERS ===== */
.job-item {
  padding: 40px 0;
  border-bottom: 1px solid #ECE8E5;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
}
.job-item h4 { margin-bottom: 8px; }
.job-meta {
  font-family: 'Mulish', sans-serif;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #7e7e7e;
}
.job-tag {
  display: inline-block;
  background: #f1ebe7;
  font-family: 'Mulish', sans-serif;
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: 4px 12px;
  margin-right: 8px;
  color: #4c463a;
}

/* ===== PAGE HERO ===== */
.page-hero {
  background-color: #f1ebe7;
  padding: 90px 0 80px;
}
.page-hero .section-label { display: block; margin-bottom: 15px; }
.page-hero h1 { font-size: 47px; }

/* ===== TEXT CONTENT ===== */
.text-content h2 { font-size: 30px; margin: 50px 0 20px; }
.text-content h2:first-child { margin-top: 0; }
.text-content h3 { font-size: 22px; margin: 35px 0 15px; }
.text-content p { color: #4c463a; font-size: 16px; line-height: 30px; }
.text-content ul { list-style: disc; padding-left: 25px; margin-bottom: 20px; }
.text-content ul li { color: #4c463a; font-size: 16px; line-height: 30px; margin-bottom: 8px; }

/* ===== NEWSLETTER ===== */
.newsletter-form {
  display: flex;
  max-width: 500px;
  border-bottom: 1px solid rgba(255,255,255,.3);
}
.newsletter-form input {
  background: transparent;
  border: none;
  padding: 10px 0;
  font-family: 'Mulish', sans-serif;
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: #fff;
  flex: 1;
  outline: none;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.35); }
.newsletter-form button {
  background: transparent;
  border: none;
  color: rgba(255,255,255,.55);
  font-family: 'Mulish', sans-serif;
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 10px 0 10px 15px;
  transition: color .25s;
  white-space: nowrap;
}
.newsletter-form button:hover { color: #fff; }

/* ===== FOOTER ===== */
footer { background-color: #212121; color: #fff; }
.footer-top {
  padding: 80px 0;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
}
.footer-brand-logo { margin-bottom: 20px; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,.55); line-height: 26px; max-width: 280px; }
.footer-col h6 { color: rgba(255,255,255,.85); margin-bottom: 20px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-family: 'Mulish', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,.55);
  transition: color .25s;
  line-height: 25px;
}
.footer-col ul li a:hover { color: #fff; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}
.footer-contact-item i { color: rgba(255,255,255,.4); font-size: 12px; margin-top: 6px; min-width: 14px; }
.footer-contact-item span { font-family: 'Mulish', sans-serif; font-size: 13px; color: rgba(255,255,255,.55); line-height: 22px; }
.footer-social { display: flex; gap: 10px; margin-top: 25px; }
.footer-social a {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.55);
  font-size: 13px;
  transition: all .25s;
}
.footer-social a:hover { background-color: #06177b; border-color: #06177b; color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 25px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  font-family: 'Mulish', sans-serif;
  font-size: 11px;
  color: rgba(255,255,255,.35);
  letter-spacing: .1em;
  margin: 0;
}
.footer-bottom a { color: rgba(255,255,255,.35); transition: color .25s; }
.footer-bottom a:hover { color: #fff; }
.footer-legal-links { display: flex; gap: 25px; }

/* ===== COOKIE BANNER ===== */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  background: #1c1c1c;
  color: #fff;
  z-index: 9999;
  padding: 22px 40px;
  display: flex;
  align-items: center;
  gap: 30px;
  transform: translateY(100%);
  transition: transform .4s ease;
  border-top: 1px solid rgba(255,255,255,.08);
}
#cookie-banner.visible { transform: translateY(0); }
#cookie-banner p {
  font-family: 'Mulish', sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,.65);
  margin: 0;
  flex: 1;
  line-height: 20px;
}
#cookie-banner p a { color: #fff; text-decoration: underline; }
.cookie-btns { display: flex; gap: 12px; flex-shrink: 0; }
#cookie-accept {
  background-color: #06177b;
  color: #fff;
  border: none;
  font-family: 'Mulish', sans-serif;
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  padding: 12px 24px;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color .25s;
}
#cookie-accept:hover { background-color: #fff; color: #000; }
#cookie-decline {
  background: transparent;
  border: 1px solid rgba(255,255,255,.25);
  color: rgba(255,255,255,.55);
  font-family: 'Mulish', sans-serif;
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  padding: 12px 24px;
  cursor: pointer;
  white-space: nowrap;
  transition: all .25s;
}
#cookie-decline:hover { border-color: #fff; color: #fff; }

/* ===== HIGHLIGHT STRIP ===== */
.highlight-strip {
  background-color: #06177b;
  color: #fff;
  padding: 50px 0;
  text-align: center;
}
.highlight-strip h2 { color: #fff; margin-bottom: 15px; }
.highlight-strip p { color: rgba(255,255,255,.75); max-width: 600px; margin: 0 auto 35px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .container { padding: 0 50px; }
  .content-wrap::before, .content-wrap::after { display: none; }
  h1 { font-size: 48px; }
  h2 { font-size: 38px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 1024px) {
  .container { padding: 0 30px; }
  .hero-section { grid-template-columns: 1fr; }
  .hero-image-side { min-height: 400px; order: -1; }
  .hero-text-side { padding: 60px 30px; }
  .split-section { grid-template-columns: 1fr; }
  .split-image { min-height: 350px; }
  .split-content { padding: 60px 30px; }
  .cards-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .contact-split { grid-template-columns: 1fr; }
  .contact-info-side { padding: 60px 30px; }
  .contact-form-side { padding: 60px 30px; }
}
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  h1 { font-size: 34px; line-height: 1.2; }
  h2 { font-size: 28px; }
  h3 { font-size: 22px; }
  nav.main-nav { display: none; }
  .mobile-menu-btn { display: flex; }
  .section-padding { padding: 60px 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-number { font-size: 42px; }
  .stat-item { padding: 35px 15px; }
  .team-grid { grid-template-columns: 1fr; }
  .job-item { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; gap: 15px; text-align: center; }
  .footer-legal-links { flex-wrap: wrap; justify-content: center; gap: 15px; }
  #cookie-banner { flex-direction: column; padding: 20px; gap: 15px; }
  .cookie-btns { width: 100%; }
  #cookie-accept, #cookie-decline { flex: 1; text-align: center; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .price-amount { font-size: 44px; }
  .header-inner { padding: 0 20px; }
  .reviews-grid { grid-template-columns: 1fr; }
}
