/* Reset and base styles */
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { width: 100%; min-height: 100%; font-family: 'Inter', 'Segoe UI', Arial, sans-serif; background: #fff; color: #000; }
body { overflow-x: hidden; }
a { color: inherit; text-decoration: none; }

/* Header */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 12px 0 rgba(0,0,0,0.07);
  z-index: 1000;
  overflow-y: hidden !important;
}
.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2vw;
  min-height: 80px;
}
.logo {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  user-select: none;
  align-items: flex-start;
}
.logo__name {
  font-weight: 900;
  font-size: 2rem;
  letter-spacing: 0.5px;
  color: #0066FF;
  line-height: 1.1;
}
.logo__title {
  font-size: 0.85rem;
  color: #000;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  font-weight: 400;
  margin-top: 0.1em;
}
.nav {
  display: flex;
  gap: 2.5vw;
  align-items: center;
}
.nav__link {
  font-size: 1.05rem;
  color: #000;
  font-weight: 400;
  transition: color 0.18s;
}
.nav__link:hover {
  color: #0066FF;
}
.header__contact {
  display: flex;
  gap: 1.5vw;
  align-items: center;
}
.contact__link {
  font-size: 0.98rem;
  color: #000;
  transition: color 0.18s;
}
.contact__link:hover {
  color: #0066FF;
}
.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;
}
.hamburger__icon {
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 1;
  color: #000;
  user-select: none;
  pointer-events: none;
  font-family: 'Quicksand', 'Arial Rounded MT Bold', 'Nunito', Arial, sans-serif;
}
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: 0 8px 24px 0 rgba(0,0,0,0.08);
  z-index: 999;
  display: none;
  flex-direction: column;
  padding: 1.5em 0 1em 0;
  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: #000;
  font-size: 1.2rem;
  padding: 0.7em 0;
  text-align: center;
  transition: color 0.18s;
  text-transform: none;
}
.mobile-nav__link:hover { color: #0066FF; }

/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 80px;
}
.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: rgba(0,102,255,0.75);
  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;
}
.hero__content h1 {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
}
.hero__content h2 {
  font-size: 1.35rem;
  font-weight: 400;
  color: #fff;
  margin-top: 0.7em;
  line-height: 1.4;
}
.hero__buttons {
  display: flex;
  gap: 1.2em;
  justify-content: center;
  margin-top: 2em;
  flex-wrap: wrap;
}
.btn {
  display: inline-block;
  padding: 1em 2.2em;
  font-size: 1.1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  border-radius: 4px;
  box-shadow: 0 2px 8px 0 rgba(0,0,0,0.07);
  text-align: center;
}
.btn--white {
  background: #fff;
  color: #0066FF;
  border: 2px solid #fff;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, border 0.18s, transform 0.18s;
}
.btn--white:hover, .btn--white:focus {
  background: #0050c7;
  color: #fff;
  border: 2px solid #0066FF;
  box-shadow: none;
}
.btn--blue {
  background: #0066FF;
  color: #fff;
  border: 2px solid #0066FF;
}
.btn--blue:hover {
  background: #0050c7;
  color: #fff;
}

/* Section base */
.section {
  width: 100%;
  padding: 0;
  background: #fff;
  position: relative;
}
.section__container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 5vw 4vw;
  box-sizing: border-box;
  width: 100%;
}
.section__heading {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 2.5vw;
  color: #000;
  letter-spacing: 0.01em;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* Services Section */
.section--services { background: #fff; }
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2vw;
}
.service-card {
  background: #ececf0;
  border: none;
  border-radius: 4px;
  box-shadow: 0 2px 8px 0 rgba(0,0,0,0.04);
  padding: 2em 1.2em;
  display: flex;
  flex-direction: column;
  gap: 0.7em;
  min-width: 0;
}
.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 0.3em;
}
.service-card p {
  font-size: 1rem;
  color: #222;
  font-weight: 400;
}

/* Process Section */
.section--process {
  background: #0066FF;
  padding-top: 2em;
  padding-bottom: 4em;
}
.section--process .section__heading,
.section--process .process__intro {
  color: #fff;
}
.process__intro {
  font-size: 1.1rem;
  color: #000;
  margin-bottom: 2.5vw;
}
.section--process .section__container {
  padding: 0;
}
.section--process .timeline {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.section--process .timeline__card {
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 4px 24px 0 rgba(0,0,0,0.10);
  padding: 1.2em 1.2em;
  color: #000;
  text-align: left;
  width: 100%;
  margin: 0;
  display: block;
  position: relative;
}
.section--process .timeline__step:not(:first-child) .timeline__card {
  margin-top: 2.4em;
}
.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: 2.4em;
  background: #fff;
  opacity: 1;
  z-index: 1;
}
.section--process .timeline__label {
  font-size: 1.25rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 0.3em;
  letter-spacing: 0.01em;
  text-transform: none;
}
.section--process .timeline__body {
  color: #222;
  font-size: 1.05rem;
  font-weight: 400;
}

/* About Section */
.section--about { background: #ececf0; }
.section--about .section__heading { color: #000; }
.section--about .section__container {
  padding-top: 2vw;
}
.about__window {
  border: 1.5px solid #d1d5db;
  border-radius: 8px;
  background: #fff;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 4px 24px 0 rgba(0,0,0,0.10), 0 1.5px 0 0 #e5e7eb;
  overflow: hidden;
}
.about__window-header {
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, #f7f7fa 80%, #e5e7eb 100%);
  padding: 0.6em 1.1em;
  border-bottom: 1px solid #e5e7eb;
  position: relative;
  min-height: 36px;
}
.about__favicon {
  width: 18px;
  height: 18px;
  margin-right: 0.7em;
}
.about__window-title {
  font-weight: 600;
  color: #222;
  font-size: 1.05rem;
  flex: 1;
  letter-spacing: 0.01em;
}
.about__window-dots {
  display: flex;
  gap: 0.25em;
  position: absolute;
  right: 1.1em;
  top: 50%;
  transform: translateY(-50%);
}
.dot {
  width: 6px;
  height: 6px;
  background: #bbb;
  border-radius: 50%;
  display: inline-block;
  opacity: 0.5;
  box-shadow: 0 0.5px 0 #e5e7eb;
}
.about__window-body {
  background: #fff;
  padding: 1.2em 1.2em 1.5em 1.2em;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.about__profile {
  display: flex;
  align-items: center;
  gap: 1.1em;
  width: 100%;
}
.about__profile-pic {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}
.about__profile-info {
  display: flex;
  flex-direction: column;
  gap: 0.2em;
  align-items: flex-start;
  text-align: left;
}
.about__profile-name {
  font-weight: 700;
  font-size: 1.1rem;
  color: #000;
}
.about__profile-qual {
  font-size: 0.98rem;
  color: #888;
  font-weight: 400;
}
.about__separator {
  width: 100%;
  border: none;
  border-top: 1px solid #eee;
  margin: 0.4em 0;
}
.about__bio {
  font-size: 1rem;
  color: #000;
  font-weight: 400;
  margin-bottom: 0.5em;
}
.about__connect {
  margin-top: 0.5em;
}
.about__window-body {
  align-items: center;
}

/* Footer */
.footer {
  background: #000;
  color: #fff;
  text-align: center;
  font-size: 0.85rem;
  padding: 2rem 4rem;
}
.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: #fff;
  transition: color 0.18s;
}
.footer__links a:hover {
  color: #0066FF;
}

/* Responsive Styles */
@media (max-width: 1100px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .header__container {
    flex-direction: column;
    align-items: stretch;
    min-height: 60px;
    padding: 0 1vw;
  }
  .logo {
    align-items: center;
    margin: 0 auto;
  }
  .nav {
    display: none;
  }
  .header__contact--desktop {
    display: none;
  }
  .header__contact--mobile {
    display: flex;
  }
  .header__contact--mobile {
    margin-top: 0 !important;
    margin-bottom: 0.2em !important;
  }
  .hamburger {
    display: flex;
    position: absolute;
    top: 10px;
    right: 10px;
  }
  .section__heading { text-align: center; }
  .hero__content { padding: 8vw 2vw; }
  .hero__content h1 { font-size: 1.5rem; }
  .hero__content h2 { font-size: 1rem; }
  .btn { font-size: 1rem; padding: 0.8em 1.2em; }
  .services__grid { gap: 1.2em; }
  .about__window { max-width: 98vw; }
  .about__window-header { padding: 0.5em 0.7em; }
  .about__window-body { padding: 1.2em 0.7em 1.5em 0.7em; }
  .about__profile-pic { width: 40px; height: 40px; }
  .footer__text, .footer__links {
    padding-left: 5vw;
    padding-right: 5vw;
  }
  .section--process .section__container {
    padding-left: 4vw !important;
    padding-right: 4vw !important;
  }
  .section--process .timeline {
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .section--process .timeline__card {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-sizing: border-box !important;
  }
}
@media (max-width: 600px) {
  .services__grid {
    grid-template-columns: 1fr;
  }
  .section__container {
    padding: 5vw 5vw;
  }
  .hero__buttons {
    flex-direction: column;
    gap: 0.8em;
    align-items: center;
  }
}
@media (max-width: 700px) {
  .timeline__line {
    left: 20px;
    transform: none;
  }
  .timeline__step,
  .timeline__step:nth-child(even) {
    flex-direction: row;
    justify-content: flex-start;
  }
  .timeline__dot {
    left: 20px;
    transform: none;
    position: relative;
    top: 0.7em;
  }
  .timeline__card {
    width: 100%;
    margin: 0 0 0 2.5em;
  }
  .section--process .section__container {
    padding-left: 4vw;
    padding-right: 4vw;
  }
  .section--process .timeline {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  .section--process .timeline__card {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-sizing: border-box !important;
  }
}

/* Hamburger menu animation */
.hamburger.active .hamburger__bar:first-child {
  transform: rotate(45deg) translate(5px, 6px);
}
.hamburger.active .hamburger__bar:last-child {
  transform: rotate(-45deg) translate(5px, -6px);
}
.hamburger.active .hamburger__bar:nth-child(2) {
  opacity: 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;
} 
.section--process .section__container {
  padding: 0;
}
.section--process .timeline {
  padding: 0;
} 
/* Simplified process section cards */
.section--process .timeline__card {
  background: #fff !important;
  border-radius: 4px;
  box-shadow: 0 4px 24px 0 rgba(0,0,0,0.10);
  padding: 1.2em 1.2em;
  max-width: 700px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.section--process .timeline__label {
  font-size: 1.25rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 0;
  letter-spacing: 0.01em;
  text-transform: none;
  text-align: left;
}
.section--process .timeline__body {
  color: #222;
  font-size: 1.05rem;
  font-weight: 400;
  text-align: left;
} 
.section--process .timeline__step:not(:last-child) .timeline__card::after {
  content: '';
  display: block;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 2px;
  height: 2.4em;
  background: #fff;
  opacity: 1;
  z-index: 1;
} 
.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 #888;
  outline-offset: 2px;
}
.skip-link {
  position: absolute;
  left: 0;
  top: 0;
  background: #0066FF;
  color: #fff;
  padding: 0.5em 1em;
  z-index: 10000;
  transform: translateY(-120%);
  transition: transform 0.3s;
}
.skip-link:focus {
  transform: translateY(0);
} 