/* =========================================
   THE MAXWELL COMPANY — styles.css
   Blue/Navy tech theme matching brand logo
   ========================================= */

/* --- Reset & Variables --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --dark:        #050c1e;
  --dark-mid:    #081228;
  --navy:        #0a1840;
  --blue:        #1577ff;
  --blue-mid:    #0d50c8;
  --blue-light:  #38b6ff;
  --blue-glow:   rgba(21, 119, 255, 0.18);
  --white:       #ffffff;
  --off-white:   #f0f4ff;
  --text:        #0a1840;
  --text-muted:  #5a6a8a;
  --text-light:  rgba(255, 255, 255, 0.7);
  --border:      rgba(56, 182, 255, 0.18);
  --shadow:      0 20px 60px rgba(5, 12, 30, 0.25);
  --shadow-blue: 0 8px 32px rgba(21, 119, 255, 0.25);
  --radius:      14px;
  --transition:  0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Raleway', 'Roboto', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --- Typography --- */
.section-eyebrow {
  font-family: 'Raleway', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 1.5rem;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-transform: uppercase;
}

.btn--primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: var(--white);
}
.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-blue);
}

.btn--outline {
  background: transparent;
  border-color: rgba(56, 182, 255, 0.5);
  color: var(--white);
}
.btn--outline:hover {
  background: rgba(56, 182, 255, 0.1);
  border-color: var(--blue-light);
  transform: translateY(-3px);
}

.btn--full { width: 100%; text-align: center; }

/* =========================================
   NAVIGATION
   ========================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all var(--transition);
}

.nav.scrolled {
  background: rgba(5, 12, 30, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 0.65rem 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid var(--border);
}

.nav__container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo-svg {
  height: 46px;
  width: auto;
  display: block;
  transition: opacity var(--transition);
}
.nav__logo:hover .nav__logo-svg { opacity: 0.85; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav__link {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transition: color var(--transition);
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--blue-light);
  border-radius: 2px;
  transition: width var(--transition);
}
.nav__link:hover { color: var(--white); }
.nav__link:hover::after { width: 100%; }

.nav__link--cta {
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: var(--white) !important;
  padding: 0.55rem 1.5rem;
  border-radius: 50px;
}
.nav__link--cta::after { display: none; }
.nav__link--cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-blue);
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}
.nav__hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================
   HERO
   ========================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(ellipse at 30% 50%, #0d2d6e 0%, #050c1e 60%),
              linear-gradient(180deg, #081228 0%, #050c1e 100%);
  overflow: hidden;
}

.hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* subtle grid overlay */
.hero__grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(56,182,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56,182,255,0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  max-width: 860px;
}

.hero__logo-wrap { margin-bottom: 1.5rem; display: flex; justify-content: center; }
.hero__logo-svg { width: auto; height: 90px; filter: drop-shadow(0 0 20px rgba(56,182,255,0.35)); }

.hero__tagline {
  font-family: 'Raleway', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 1.25rem;
  opacity: 0.9;
}

.hero__title {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hero__title--accent {
  background: linear-gradient(135deg, var(--blue-light), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-family: 'Raleway', sans-serif;
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  margin-bottom: 2.75rem;
  letter-spacing: 0.02em;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero__cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.hero__scroll-indicator {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero__scroll-line {
  width: 1.5px; height: 55px;
  background: linear-gradient(to bottom, var(--blue-light), transparent);
  margin: 0 auto;
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); transform-origin: top; }
  50%       { opacity: 0.3; transform: scaleY(0.5); transform-origin: top; }
}

/* =========================================
   STATS
   ========================================= */
.stats {
  background: var(--dark-mid);
  padding: 4.5rem 2rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats__container {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item__number {
  display: inline;
  font-family: 'Raleway', sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--blue-light), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.stat-item__plus {
  font-family: 'Raleway', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--blue-light), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-item__label {
  display: block;
  font-family: 'Raleway', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 0.6rem;
}

/* =========================================
   ABOUT
   ========================================= */
.about {
  padding: 8rem 2rem;
  background: var(--off-white);
  overflow: hidden;
}

.about__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 6rem;
  align-items: center;
}

.about__visual { position: relative; }

.about__card {
  background: linear-gradient(135deg, var(--dark-mid), var(--navy));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 380px;
  box-shadow: var(--shadow-blue);
  position: relative;
  overflow: hidden;
}
.about__card::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(56,182,255,0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.about__circuit-icon {
  width: 160px; height: 160px;
  animation: spinSlow 20s linear infinite;
}
@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.about__card-label {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  text-align: center;
  margin-top: 1.5rem;
  letter-spacing: 0.04em;
  line-height: 1.4;
}

.about__badge {
  position: absolute;
  background: var(--white);
  border: 1px solid rgba(21,119,255,0.2);
  border-radius: 50px;
  padding: 0.55rem 1.1rem;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: 0 4px 20px rgba(21,119,255,0.12);
  white-space: nowrap;
}
.about__badge--1 { bottom: -1rem; left: -1.5rem; }
.about__badge--2 { top:    -1rem; right: -1.5rem; }
.about__badge-icon { font-size: 1rem; }

.about__content .section-title { color: var(--dark); }
.about__text {
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  font-size: 0.97rem;
}

/* =========================================
   SERVICES
   ========================================= */
.services {
  padding: 8rem 2rem;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.services::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue-light), transparent);
}

.services__container { max-width: 1200px; margin: 0 auto; }
.services__header { text-align: center; margin-bottom: 4rem; }
.services .section-title { color: var(--white); }

.services__subheading {
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.service-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(56,182,255,0.12);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover {
  transform: translateY(-8px);
  background: rgba(255,255,255,0.06);
  border-color: rgba(56,182,255,0.3);
  box-shadow: 0 20px 50px rgba(21,119,255,0.15);
}
.service-card:hover::after { transform: scaleX(1); }

.service-card__icon {
  width: 48px; height: 48px;
  color: var(--blue-light);
  margin-bottom: 1.5rem;
  transition: color var(--transition), transform var(--transition);
}
.service-card:hover .service-card__icon {
  color: var(--white);
  transform: scale(1.1);
}

.service-card__title {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.service-card__text {
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.5rem;
  line-height: 1.75;
}

.service-card__link {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: var(--blue-light);
  text-transform: uppercase;
  transition: color var(--transition);
}
.service-card__link:hover { color: var(--white); }

/* =========================================
   PROCESS / HOW IT WORKS
   ========================================= */
.process {
  padding: 8rem 2rem;
  background: var(--off-white);
  text-align: center;
  overflow: hidden;
}

.process__container { max-width: 1100px; margin: 0 auto; }
.process .section-title { color: var(--dark); }

.process__steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 4rem;
  flex-wrap: nowrap;
}

.process__step {
  flex: 1;
  background: var(--white);
  border: 1px solid rgba(21,119,255,0.12);
  border-radius: var(--radius);
  padding: 2.5rem 1.5rem;
  transition: all var(--transition);
  position: relative;
}
.process__step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-blue);
  border-color: rgba(56,182,255,0.35);
}

.process__step-num {
  font-family: 'Raleway', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 1rem;
}

.process__step h3 {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--dark);
  margin-bottom: 0.6rem;
}

.process__step p {
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.process__connector {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  flex-shrink: 0;
  position: relative;
}
.process__connector::after {
  content: '';
  position: absolute;
  right: -5px; top: -4px;
  width: 0; height: 0;
  border-left: 8px solid var(--blue-light);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

/* =========================================
   LOCATION
   ========================================= */
.location {
  padding: 8rem 2rem;
  background: var(--dark-mid);
  overflow: hidden;
}

.location__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: center;
}

.location .section-title { color: var(--white); }
.location .section-eyebrow { color: var(--blue-light); }

.location__text {
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  color: rgba(255,255,255,0.6);
  margin-bottom: 2.5rem;
  font-size: 0.97rem;
}

.location__details {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.location__details li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
}
.location__details svg {
  width: 20px; height: 20px;
  color: var(--blue-light);
  flex-shrink: 0;
}

.location__ig-link {
  color: var(--blue-light);
  font-weight: 600;
  transition: color var(--transition);
}
.location__ig-link:hover { color: var(--white); text-decoration: underline; }

.location__map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-blue);
}
.location__map iframe {
  width: 100%;
  height: 400px;
  display: block;
  border: 0;
  filter: hue-rotate(195deg) saturate(0.7) brightness(0.75);
}
.location__map-link {
  display: block;
  text-align: center;
  padding: 0.75rem;
  background: var(--navy);
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: var(--blue-light);
  border-top: 1px solid var(--border);
  transition: background var(--transition);
}
.location__map-link:hover { background: var(--dark); color: var(--white); }

/* =========================================
   CONTACT
   ========================================= */
.contact {
  padding: 8rem 2rem;
  background: var(--off-white);
  overflow: hidden;
}

.contact__container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: start;
}

.contact .section-title { color: var(--dark); }

.contact__text {
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  font-size: 0.97rem;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.contact__details li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-muted);
}
.contact__details svg {
  width: 20px; height: 20px;
  color: var(--blue);
  flex-shrink: 0;
}

.contact__ig-link {
  color: var(--blue);
  font-weight: 600;
  transition: color var(--transition);
}
.contact__ig-link:hover { color: var(--blue-light); text-decoration: underline; }

.contact__form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 3rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(21,119,255,0.08);
}

.form-group { margin-bottom: 1.5rem; }

.form-group label {
  display: block;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 1.5px solid rgba(21,119,255,0.15);
  border-radius: 8px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.93rem;
  color: var(--text);
  background: var(--off-white);
  outline: none;
  transition: all 0.3s;
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(21,119,255,0.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #9faabf; }

.contact__form-note {
  text-align: center;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  margin-top: 0.75rem;
  min-height: 1.2rem;
  color: var(--blue);
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.55);
  padding: 5rem 2rem 2rem;
  border-top: 1px solid var(--border);
}

.footer__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer__logo-svg { height: 50px; width: auto; margin-bottom: 0.75rem; }

.footer__tagline {
  font-family: 'Raleway', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.5rem;
}

.footer__social { display: flex; gap: 0.75rem; }
.footer__social a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px;
  color: rgba(255,255,255,0.55);
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  transition: all var(--transition);
}
.footer__social a svg { width: 16px; height: 16px; }
.footer__social a:hover {
  border-color: var(--blue-light);
  color: var(--blue-light);
  transform: translateY(-2px);
}

.footer__links h4 {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.footer__links ul { display: flex; flex-direction: column; gap: 0.7rem; }
.footer__links a {
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--blue-light); }

.footer__bottom {
  max-width: 1200px;
  margin: 1.5rem auto 0;
  text-align: center;
  font-family: 'Raleway', sans-serif;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
}

/* =========================================
   SCROLL ANIMATIONS
   ========================================= */
.reveal-up, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal-up    { transform: translateY(40px); }
.reveal-left  { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }

.revealed {
  opacity: 1 !important;
  transform: translate(0, 0) !important;
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
  .about__container,
  .location__container { gap: 3.5rem; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .stats__container { grid-template-columns: repeat(2, 1fr); }
  .process__connector { width: 30px; }
}

@media (max-width: 820px) {
  .process__steps { flex-direction: column; align-items: stretch; }
  .process__connector {
    width: 2px; height: 40px;
    margin: 0 auto;
    background: linear-gradient(180deg, var(--blue), var(--blue-light));
  }
  .process__connector::after {
    right: -4px; top: auto;
    bottom: -5px;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 8px solid var(--blue-light);
    border-bottom: none;
  }
}

@media (max-width: 768px) {
  .nav__links {
    position: fixed;
    top: 0; right: -100%;
    width: 78vw; max-width: 320px;
    height: 100vh;
    background: var(--dark);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 2rem 3rem;
    gap: 2rem;
    transition: right 0.4s ease;
    box-shadow: -10px 0 40px rgba(0,0,0,0.5);
    border-left: 1px solid var(--border);
  }
  .nav__links.open { right: 0; }
  .nav__hamburger { display: flex; }
  .nav__link { font-size: 1rem; }

  .about__container,
  .contact__container,
  .location__container { grid-template-columns: 1fr; gap: 3rem; }

  .about__visual { display: none; }

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

  .footer__container { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 480px) {
  .stats__container { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .hero__cta { flex-direction: column; align-items: center; }
  .contact__form { padding: 2rem 1.5rem; }
  .hero__logo-svg { height: 65px; }
}
