/* ===== MODERN FONT SYSTEM ===== */

html {
  font-size: 16px; /* Base font size for consistent rem scaling */
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;

  /* Smooth font rendering */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-weight: 400;
  color: #000;
}

/* Typography weights */
p,
.nav__link,
.contact__link,
.mobile-nav__link,
.service-card p,
.process__intro,
.timeline__body,
.about__bio,
.footer,
.footer__links {
  font-weight: 400;
  letter-spacing: -0.01em;
}

/* Lock headings to clean weights */
h1, h2, h3,
.section__heading,
.timeline__label {
  font-family: "Playfair Display", "Georgia", "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.logo__title {
  font-weight: 500;
  letter-spacing: 0.35em;
}


/* Reset and base styles */
* { box-sizing: border-box; margin: 0; padding: 0; }
html {
	scroll-behavior: smooth;
}
html, body { width: 100%; min-height: 100%; background: #ffffff; color: #1a1a1a; }
body {
	overflow-x: hidden;
	scroll-behavior: smooth;
}
a { color: inherit; text-decoration: none; }

/* Header */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  width: 100%;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  z-index: 1000;
  overflow-y: hidden !important;
  transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease, border-bottom 0.3s ease;
}
.header--scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05), 0 4px 24px rgba(0, 0, 0, 0.04);
}

.header--scrolled .header__container {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2vw;
  min-height: 80px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: border-bottom 0.3s ease;
}
.logo {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  user-select: none;
  align-items: flex-start;
}
.logo__name {
  font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, "SF Pro Display", "Roboto", "Helvetica Neue", Arial, sans-serif;
  font-weight: 800;
  font-size: 1.45rem;
  letter-spacing: 0.01em;
  color: #ffffff;
  line-height: 1.2;
  transition: color 0.3s ease;
}
.header--scrolled .logo__name {
  color: #051A61;
}
.logo__title {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 0.15em;
  transition: color 0.3s ease;
}
.header--scrolled .logo__title {
  color: #2c2c2c;
}
.nav {
  display: flex;
  gap: 2.5vw;
  align-items: center;
}
.nav__link {
  font-size: 1rem;
  color: #ffffff;
  font-weight: 500;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  padding: 0.5em 0;
  letter-spacing: -0.01em;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #ffffff;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav__link:hover {
  color: rgba(255, 255, 255, 0.8);
}
.nav__link:hover::after {
  width: 100%;
}
.header--scrolled .nav__link {
  color: #2c2c2c;
}
.header--scrolled .nav__link::after {
  background: #082C99;
}
.header--scrolled .nav__link:hover {
  color: #082C99;
}
.header__contact {
  display: flex;
  gap: 1.5vw;
  align-items: center;
}
.contact__link {
  font-size: 0.95rem;
  color: #ffffff;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 500;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.contact__link:hover {
  color: rgba(255, 255, 255, 0.8);
}
.header--scrolled .contact__link {
  color: #3a3a3a;
}
.header--scrolled .contact__link:hover {
  color: #082C99;
}
.header__contact--mobile { display: none; flex-direction: column; gap: 0.2em; align-items: center; margin: 0 0 0.2em 0; }
.hamburger {
  display: none;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  height: 40px;
  width: 40px;
  position: relative;
  z-index: 1100;
  padding: 0;
}
.hamburger__bar {
  display: block;
  width: 24px;
  height: 2px;
  background: #ffffff;
  transition: all 0.3s ease;
  border-radius: 1px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.hamburger__bar:first-child {
  top: 12px;
}
.hamburger__bar:nth-child(2) {
  top: 19px;
}
.hamburger__bar:last-child {
  top: 26px;
}
.header--scrolled .hamburger__bar {
  background: #000;
}
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.12);
  z-index: 999;
  display: none;
  flex-direction: column;
  padding: 0;
  max-height: calc(100vh - var(--header-height, 80px));
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.mobile-nav.show {
  display: flex !important;
  opacity: 1;
  pointer-events: auto;
  animation: mobileNavFadeIn 0.3s;
}
.mobile-nav.hide {
  opacity: 0;
  pointer-events: none;
  animation: mobileNavFadeOut 0.2s forwards;
}
@keyframes mobileNavFadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes mobileNavFadeOut {
  from { opacity: 1; transform: translateY(0); }
  to { opacity: 0; transform: translateY(-10px); }
}
.mobile-nav__link {
  color: #1a1a1a;
  font-size: 1.15rem;
  padding: 0;
  text-align: center;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: none;
  font-weight: 500;
  position: relative;
  border-radius: 0;
  margin: 0;
  letter-spacing: -0.01em;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(0, 0, 0, 0.08);
  transition: opacity 0.3s ease;
}
.mobile-nav__link:last-child::after {
  display: none;
}
.mobile-nav__link:hover,
.mobile-nav__link:focus {
  color: #ffffff;
  background: #051A61;
}
.mobile-nav__link:hover::after,
.mobile-nav__link:focus::after {
  opacity: 0;
}

/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 0;
  padding-top: 80px;
  box-sizing: border-box;
}
.hero__video {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1;
}
.hero__overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(8, 44, 153, 0.8) 0%, rgba(5, 26, 97, 0.85) 100%);
  z-index: 2;
}
.hero__content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 4vw 2vw;
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 2.2vw;
}

.consult-alert {
  color: rgba(255, 255, 255, 0.9);
  padding: 0.5em 0;
  font-size: 0.9rem;
  font-weight: 400;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.hero__title-icon {
  width: 1rem;
  height: 1rem;
  opacity: 0.9;
  flex-shrink: 0;
  color: currentColor;
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.5em;
}
.hero__content .hero__title-line1 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
}

.hero__content h1 {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin: 0;
}
.hero__content .hero__title-line1 {
  font-size: 1.4rem !important;
  font-weight: 300 !important;
  margin-bottom: 0 !important;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.95) !important;
  letter-spacing: -0.01em;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif !important;
}
.hero__content .hero__title-line2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem) !important;
  font-weight: 400 !important;
  font-style: normal;
  opacity: 0.95;
  margin-top: -0.4em !important;
  line-height: 1.2;
}
.hero__subtitle {
  font-size: 1.4rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.95);
  margin-top: 0.7em;
  line-height: 1.5;
  letter-spacing: -0.01em;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
}
.hero__buttons {
  display: flex;
  gap: 1.2em;
  justify-content: center;
  margin-top: 2em;
  flex-wrap: wrap;
}
.btn {
  display: inline-block;
  padding: 1.25em 2.8em;
  font-size: 1.1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 6px;
  text-align: center;
  position: relative;
}
.btn--white {
  background: #ffffff;
  color: #082C99;
  border: 2px solid #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}
.btn--white:hover, .btn--white:focus {
  background: #082C99;
  color: #ffffff;
  border-color: #ffffff;
  box-shadow: 0 8px 32px rgba(8, 44, 153, 0.5), 0 4px 16px rgba(0, 0, 0, 0.3);
}
.btn--blue {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
}
.btn--blue:hover {
  background: #082C99;
  color: #ffffff;
  border-color: #ffffff;
  box-shadow: 0 8px 32px rgba(8, 44, 153, 0.5), 0 4px 16px rgba(0, 0, 0, 0.3);
}

/* Section base */
.section {
  width: 100%;
  padding: 0;
  background: #fff;
  position: relative;
}
.section__container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 6vw 4vw;
  box-sizing: border-box;
  width: 100%;
}
.section__heading {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 700;
  margin-bottom: 3vw;
  color: #1a1a1a;
  letter-spacing: -0.01em;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.25;
}

/* Services Section */
.section--services {
  background: 
    radial-gradient(ellipse 120% 100% at 15% 25%, rgba(245, 247, 250, 0.6) 0%, rgba(235, 238, 242, 0.3) 60%, transparent 100%),
    radial-gradient(ellipse 110% 110% at 85% 75%, rgba(247, 249, 252, 0.5) 0%, rgba(230, 233, 238, 0.25) 65%, transparent 100%),
    linear-gradient(135deg, rgba(252, 252, 252, 1) 0%, rgba(255, 255, 255, 1) 50%, rgba(252, 252, 252, 1) 100%) !important;
  position: relative;
}

.section--services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse 250% 180% at 50% 50%, rgba(255, 255, 255, 0) 0%, rgba(250, 251, 253, 0.08) 30%, rgba(240, 242, 245, 0.12) 60%, rgba(220, 223, 228, 0.1) 85%, rgba(180, 185, 192, 0.06) 100%);
  pointer-events: none;
  z-index: 1;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5vw;
}
.service-card {
  background: #ffffff;
  border: 1px solid rgba(200, 200, 200, 0.3);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  padding: 2.5em 2em;
  display: flex;
  flex-direction: column;
  gap: 0.8em;
  min-width: 0;
  position: relative;
}

.service-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.service-card h3 {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.5em;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.service-card p {
  font-size: 1rem;
  color: #4a4a4a;
  font-weight: 400;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .section--services {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
.section--services {
  position: relative;
  overflow: hidden;
}

.section--services .section__container {
  position: relative;
  z-index: 2;
}

/* Process Section */
.section--process {
  background: radial-gradient(ellipse 120% 80% at 30% 20%, rgba(12, 55, 180, 1) 0%, rgba(8, 44, 153, 0.8) 40%, rgba(5, 26, 97, 1) 70%, rgba(3, 18, 70, 1) 100%);
  display: flex;
  align-items: center;
}

.section--process .section__heading,
.section--process .process__intro {
  color: #fff;
}
.section--process .section__heading {
  margin-bottom: 1.5em;
}

.process__intro {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.95);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 1.5em auto;
  line-height: 1.6;
}
.section--process .section__container {
  padding: 6vw 4vw 6vw 4vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
.section--process .timeline {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.section--process .timeline__card {
  background: #ffffff;
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12), 0 2px 4px rgba(0, 0, 0, 0.08);
  padding: 1.2em 2em;
  color: #000;
  text-align: center;
  width: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6em;
  position: relative;
  transition: box-shadow 0.3s ease;
}
.section--process .timeline__step:not(:first-child) .timeline__card {
  margin-top: 1.5em;
}
.section--process .timeline__step:not(:last-child) .timeline__card::after {
  content: '';
  display: block;
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  width: 2px;
  height: 1.5em;
  background: #fff;
  opacity: 1;
  z-index: 1;
}
.section--process .timeline__label {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0;
  letter-spacing: -0.01em;
  line-height: 1.3;
  text-transform: none;
}
.section--process .timeline__body {
  color: #4a4a4a;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
}

/* About Section */
.section--about { 
  background: #f8f9fa;
  position: relative;
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
}
.section--about .section__heading { 
  color: #000; 
  margin-bottom: 1.5em;
}
.section--about .section__container {
  padding-top: 2vw;
  padding-bottom: 2vw;
  width: 100%;
}
.about__content {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 2em;
  align-items: center;
}
.about__left {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: sticky;
  top: 100px;
}
.about__photo-wrapper {
  width: 160px;
  height: 200px;
  margin-bottom: 1.5em;
}
.about__photo {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: cover;
  display: block;
}
.about__info {
  width: 100%;
}
.about__name {
  font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, "SF Pro Display", "Roboto", "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  color: #1a1a1a;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 0.5em;
}
.about__qual {
  font-family: "Playfair Display", serif;
  font-size: 1.05rem;
  color: #1a1a1a;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin: 0;
  text-transform: uppercase;
}
.about__linkedin {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #5a6a8a;
  text-decoration: none;
}
.about__linkedin-icon {
  width: 1.1rem;
  height: 1.1rem;
  display: inline-block;
}
.about__linkedin:hover,
.about__linkedin:focus-visible {
  color: #082C99;
  text-decoration: none;
}
.about__right {
  display: flex;
  flex-direction: column;
}
@media (min-width: 901px) {
  .about__right {
    position: relative;
    padding-left: 2em;
  }
  .about__right::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgba(0, 0, 0, 0.1);
  }
}
.about__bio {
  font-size: 1rem;
  color: #4a4a4a;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 1.5em;
}
.about__bio p {
  margin-bottom: 1em;
}
.about__bio p:last-child {
  margin-bottom: 0;
}
.about__cta {
  align-self: flex-start;
}
.section--about .btn--blue {
  background: #082C99;
  color: #ffffff;
  border: 2px solid #082C99;
  box-shadow: 0 4px 20px rgba(8, 44, 153, 0.3);
}
.section--about .btn--blue:hover {
  background: #051A61;
  color: #ffffff;
  border-color: #051A61;
  box-shadow: 0 8px 32px rgba(8, 44, 153, 0.4), 0 4px 16px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
  background: #000022;
  color: #fff;
  text-align: center;
  font-size: 0.85rem;
  padding: 2rem 4vw;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(8, 44, 153, 0.4), transparent);
}
.footer__text {
  margin-bottom: 1.2em;
  color: #fff;
  font-size: 0.95em;
}
.footer__links {
  font-size: 0.95em;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
  justify-content: center;
  align-items: center;
}
.footer__links a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.2s ease, transform 0.2s ease;
  font-weight: 500;
}
.footer__links a:hover,
.footer__links a:focus-visible {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: underline dotted;
  text-decoration-thickness: 0.125rem;
  text-underline-offset: 0.25rem;
  transform: none;
}

/* Responsive Styles */
@media (min-width: 901px) {
  .section--process {
    min-height: calc(100vh - 80px);
  }
  .section--process .section__container {
    padding: 6vw 4vw 6vw 4vw;
  }
  .section--process .section__heading {
    margin-bottom: 1.5em;
  }
  .process__intro {
    margin-bottom: 1.5em;
  }
  .section--process .timeline__step:not(:first-child) .timeline__card {
    margin-top: 1.5em;
  }
  .section--process .timeline__step:not(:last-child) .timeline__card::after {
    height: 1.5em;
  }
  .section--process .section__heading {
    margin-bottom: 1.5em;
    font-size: clamp(1.5rem, 3.5vw, 1.9rem);
  }
  .process__intro {
    margin-bottom: 2em;
    font-size: 1.05rem;
  }
}
@media (max-width: 1100px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .section--process {
    min-height: auto !important;
    height: auto !important;
    display: block !important;
    align-items: stretch !important;
  }
  .section--process .section__container {
    padding: 6vw 4vw !important;
  }
  .header {
    padding-bottom: 0;
  }
  .header__container {
    flex-direction: column;
    align-items: stretch;
    min-height: auto;
    padding: 0.75em 4vw;
    position: relative;
  }
  .logo {
    align-items: center;
    margin: 0 auto;
    padding-top: 0;
    text-align: center;
    position: relative;
    left: auto;
    transform: none;
    order: 2;
  }
  .logo__name {
    font-size: 1rem;
    line-height: 1.2;
  }
  .logo__title {
    font-size: clamp(0.6875rem, 1.5vw, 0.75rem);
    margin-top: 0.1em;
  }
  .nav {
    display: none;
  }
  .header__contact--desktop {
    display: none;
  }
  .header__contact--mobile {
    display: flex;
    flex-direction: column;
    gap: 0.25em;
    align-items: center;
    padding: 0 0 0.5em 0;
    font-size: clamp(0.875rem, 2vw, 0.95rem);
    order: 3;
    margin-top: 0.25em;
  }
  .header__contact--mobile .contact__link {
    font-size: clamp(0.875rem, 2vw, 0.95rem);
    white-space: nowrap;
  }
  .header--scrolled .header__contact--mobile {
    border-top: none;
  }
  .hamburger {
    display: flex;
    position: absolute;
    top: 50%;
    left: 4vw;
    transform: translateY(-50%);
    z-index: 1100;
  }
  .section__heading { 
    text-align: center; 
    font-size: clamp(1.5rem, 3.5vw, 1.75rem);
  }
  .hero {
    min-height: 100vh;
    padding-top: 0;
    margin-top: 0;
    align-items: center;
    justify-content: center;
  }
  .hero__content { 
    padding: 0 4vw; 
    gap: 1.2em;
    margin: 0;
  }
  .hero__content .hero__title-line1 {
    font-size: clamp(1rem, 2.5vw, 1.2rem) !important;
    line-height: 1.4;
    margin-bottom: 0.3em;
  }
  .hero__content .hero__title-line2 {
    font-size: clamp(1.5rem, 3.5vw, 1.9rem) !important;
    margin-top: 0 !important;
    line-height: 1.25;
  }
  .hero__subtitle { 
    font-size: clamp(1rem, 2.5vw, 1.1rem); 
    line-height: 1.5;
    margin-top: 0.8em;
  }
  .consult-alert {
    font-size: clamp(0.875rem, 2vw, 0.95rem);
    padding: 0.5em 0;
    margin-top: 0.5em;
  }
  .hero__buttons {
    margin-top: 1.5em;
    gap: 0.9em;
    flex-wrap: wrap;
  }
  .btn { 
    font-size: clamp(0.9375rem, 2.5vw, 1rem); 
    padding: 0.9em 1.6em;
    letter-spacing: 0.08em;
  }
  .services__grid { gap: 1.5em; }
  .service-card {
    padding: 2em 1.5em;
  }
  .about__content {
    grid-template-columns: 1fr;
    gap: 3em;
    text-align: center;
  }
  .about__left {
    position: static;
  }
  .about__photo-wrapper {
    width: 150px;
    height: 200px;
    margin: 0 auto 1.5em;
  }
  .about__name {
    font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  }
  .about__cta {
    align-self: center;
    margin-bottom: 6em;
  }
  .footer__text, .footer__links {
    padding-left: 5vw;
    padding-right: 5vw;
  }
}
@media (max-width: 600px) {
  .services__grid {
    grid-template-columns: 1fr;
  }
  .section__container {
    padding: 5vw 5vw;
  }
  .section--about .section__container {
    padding-top: 8vw;
  }
  .hero {
    min-height: 100vh;
    align-items: center;
    justify-content: center;
    padding-top: 0;
  }
  .hero__content {
    padding: 0 4vw;
    gap: 1em;
    margin: 0;
  }
  .hero__content .hero__title-line1 {
    font-size: clamp(1rem, 2.5vw, 1.1rem) !important;
    line-height: 1.4;
  }
  .hero__content .hero__title-line2 {
    font-size: clamp(1.5rem, 3.5vw, 1.75rem) !important;
    line-height: 1.25;
    margin-top: 0 !important;
  }
  .hero__subtitle {
    font-size: clamp(1rem, 2.5vw, 1rem);
    line-height: 1.5;
    margin-top: 0.6em;
  }
  .consult-alert {
    font-size: clamp(0.875rem, 2vw, 0.9rem);
    padding: 0.4em 0;
    margin-top: 0.4em;
  }
  .hero__buttons {
    flex-direction: column;
    gap: 0.8em;
    align-items: stretch;
    width: 100%;
    margin-top: 1em;
  }
  .hero__buttons .btn {
    width: 100%;
    text-align: center;
    font-size: clamp(0.9375rem, 2.5vw, 0.95rem);
    padding: 0.85em 1.4em;
    letter-spacing: 0.08em;
  }
  .section--process {
    min-height: auto;
  }
  .section--process .section__container {
    padding: 5vw 5vw;
  }
  .section--process .timeline__label {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
  }
  .section--process .timeline__body {
    font-size: 1rem;
  }
  .process__intro {
    margin-bottom: 2em;
    font-size: 1rem;
  }
}

/* Hamburger menu animation */
.hamburger.active .hamburger__bar:first-child {
  top: 19px;
  transform: translateX(-50%) rotate(45deg);
}
.hamburger.active .hamburger__bar:last-child {
  top: 19px;
  transform: translateX(-50%) rotate(-45deg);
}
.hamburger.active .hamburger__bar:nth-child(2) {
  opacity: 0;
  transform: translateX(-50%) scaleX(0);
}
.mobile-nav.show {
  display: flex !important;
  animation: mobileNavFadeIn 0.3s;
}
.mobile-nav.hide {
  animation: mobileNavFadeOut 0.2s forwards;
}
@keyframes mobileNavFadeOut {
  from { opacity: 1; transform: translateY(0); }
  to { opacity: 0; transform: translateY(-10px); display: none; }
}

/* Prevent horizontal overflow */
body, html, .section, .header, .footer { max-width: 100vw; overflow-x: hidden; } 
.services__grid, .timeline, .about__window {
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
} 
.mobile-nav.show {
  display: flex !important;
  opacity: 1;
  pointer-events: auto;
  animation: mobileNavFadeIn 0.3s;
} 
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
:focus {
  outline: 1px dotted #999;
  outline-offset: 2px;
  outline-width: 1px;
}
.skip-link {
  position: absolute;
  left: 0;
  top: 0;
  background: #082C99;
  color: #fff;
  padding: 0.5em 1em;
  z-index: 10000;
  transform: translateY(-120%);
  transition: transform 0.3s;
}

.skip-link:focus {
  transform: translateY(0);
}

/* Smooth transitions for interactive elements */
a, button {
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Skeleton Loader */
#page-skeleton {
  position: fixed;
  inset: 0;
  z-index: 5000;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.4s ease;
  background: linear-gradient(135deg, rgba(8, 44, 153, 1), rgba(5, 26, 97, 1));
}

#page-skeleton.fade-out {
  opacity: 0;
}

.skeleton-bar {
  position: absolute;
  border-radius: 6px;
  background: rgba(120, 150, 230, 0.5);
  box-shadow: 0 0 0 1px rgba(100, 130, 220, 0.3) inset;
  overflow: hidden;
}

.skeleton-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(100, 140, 240, 0.8) 30%,
    rgba(100, 140, 240, 0.8) 70%,
    transparent 100%
  );
  transform: translateX(-100%);
  animation: shimmer 1.4s infinite linear;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(200%);
  }
}

/* Active nav link */
.nav__link--active,
.mobile-nav__link--active {
  position: relative;
}

.nav__link--active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #ffffff;
}

.header--scrolled .nav__link--active::after {
  background: #082C99;
}

.mobile-nav__link--active {
  color: #ffffff;
  background: #051A61;
}

/* Consultation Gate Modal */
#consult-gate {
  position: fixed;
  inset: 0;
  z-index: 8000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.consult-gate__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 26, 97, 0.75);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.consult-gate__modal {
  position: relative;
  background: #ffffff;
  max-width: 560px;
  width: 90%;
  padding: 2.5rem;
  border-radius: 14px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  color: #1a1a1a;
  z-index: 8001;
}

.consult-gate__modal h2 {
  font-family: "Playfair Display", "Georgia", "Times New Roman", serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #051A61;
  margin-bottom: 1rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.consult-gate__modal p {
  font-size: 1rem;
  line-height: 1.6;
  color: #2a2a2a;
  margin-bottom: 1.2em;
}

.consult-gate__modal p:last-of-type {
  margin-bottom: 0;
}

.consult-gate__actions {
  display: flex;
  justify-content: space-between;
  gap: 1em;
  margin-top: 2rem;
}

.gate-cancel {
  background: transparent;
  border: 1px solid #ccc;
  padding: 0.8em 1.4em;
  border-radius: 6px;
  color: #2a2a2a;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  flex: 1;
}

.gate-cancel:hover {
  border-color: #082C99;
  color: #082C99;
}

.gate-continue {
  background: #082C99;
  color: #fff;
  border: none;
  padding: 0.9em 1.8em;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  flex: 1;
}

.gate-continue:hover {
  background: #051A61;
}

@media (max-width: 600px) {
  .consult-gate__modal {
    padding: 2rem 1.5rem;
    width: 95%;
  }
  
  .consult-gate__modal h2 {
    font-size: 1.5rem;
  }
  
  .consult-gate__actions {
    flex-direction: column;
  }
  
  .gate-cancel,
  .gate-continue {
    width: 100%;
  }
}