/* =========================================================
   Eranos – Global Styles
   ========================================================= */

/* RESET & VARIABLES
   --------------------------------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --teal:       #BFD9D7;
  --teal-mid:   #9DB1B3;
  --navy:       #1a1e2e;
  --navy-mid:   #252a3a;
  --navy-light: #2c3347;
  --off-white:  #FFFFFE;
  --slate:      #353745;
  --muted:      #58606A;
  --light-bg:   #f4f9f9;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--off-white);
  color: var(--muted);
  font-family: 'Avenir', 'Avenir Next', Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  color: var(--slate);
  font-weight: 600;
  line-height: 1.15;
}


/* SCROLL ANIMATIONS
   --------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s cubic-bezier(.4, 0, .2, 1), transform .8s cubic-bezier(.4, 0, .2, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity .8s cubic-bezier(.4, 0, .2, 1), transform .8s cubic-bezier(.4, 0, .2, 1);
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity .8s cubic-bezier(.4, 0, .2, 1), transform .8s cubic-bezier(.4, 0, .2, 1);
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.stagger-children > * {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s cubic-bezier(.4, 0, .2, 1), transform .7s cubic-bezier(.4, 0, .2, 1);
}
.stagger-children.visible > * {
  opacity: 1;
  transform: translateY(0);
}
.stagger-children.visible > *:nth-child(1) { transition-delay: 0s; }
.stagger-children.visible > *:nth-child(2) { transition-delay: .12s; }
.stagger-children.visible > *:nth-child(3) { transition-delay: .24s; }
.stagger-children.visible > *:nth-child(4) { transition-delay: .36s; }

.line-reveal {
  overflow: hidden;
}
.line-reveal .line-inner {
  display: block;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity .7s cubic-bezier(.4, 0, .2, 1), transform .7s cubic-bezier(.4, 0, .2, 1);
}
.line-reveal.visible .line-inner {
  opacity: 1;
  transform: translateY(0);
}
.line-reveal:nth-child(1) .line-inner { transition-delay: 0s; }
.line-reveal:nth-child(2) .line-inner { transition-delay: .15s; }


/* HEADER
   --------------------------------------------------------- */
header {
  position: fixed;
  top: 24px;
  left: 0;
  right: 0;
  z-index: 200;
  height: 72px;
  transition: background .4s, box-shadow .4s, opacity .35s ease;
}
header.scrolled {
  top: 0;
  background: var(--navy);
  box-shadow: 0 2px 24px rgba(0, 0, 0, .25);
}

.header-inner {
  width: 100%;
  padding: 0 5%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
}

.nav-brand svg {
  height: 48px;
  width: auto;
}

nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
nav a {
  text-decoration: none;
  color: rgba(191, 217, 215, .8);
  font-size: .78rem;
  letter-spacing: .05em;
  transition: color .2s;
}
nav a:hover {
  color: var(--teal);
}

.nav-cta {
  background: var(--teal);
  color: var(--slate) !important;
  padding: 7px 16px;
  border-radius: 3px;
  font-size: .75rem !important;
  font-weight: 600;
  letter-spacing: .05em;
  white-space: nowrap;
}

.nav-dropdown-wrap {
  position: relative;
}
.nav-dropdown-trigger {
  cursor: pointer;
  color: rgba(191, 217, 215, .8);
  font-size: .78rem;
  letter-spacing: .05em;
  user-select: none;
}
.nav-dropdown-trigger:hover {
  color: var(--teal);
}

/* Outer menu: transparent container with top padding to bridge the gap */
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  padding-top: 16px;
  background: transparent;
  z-index: 300;
}
.nav-dropdown-wrap:hover .nav-dropdown-menu {
  display: block;
}
.nav-dropdown-menu::before {
  display: none;
}

/* Inner menu: the visible panel */
.nav-dropdown-menu-inner {
  background: var(--navy);
  border: 1px solid rgba(191, 217, 215, .15);
  border-radius: 4px;
  min-width: 160px;
  padding: 8px 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .3);
}
.nav-dropdown-menu-inner a {
  display: block;
  padding: 10px 20px;
  font-size: .78rem;
  color: rgba(191, 217, 215, .8);
  text-decoration: none;
  letter-spacing: .05em;
  white-space: nowrap;
}
.nav-dropdown-menu-inner a:hover {
  background: rgba(191, 217, 215, .08);
  color: var(--teal);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: rgba(191, 217, 215, .8);
}


/* HERO
   --------------------------------------------------------- */
#hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0f1320 0%, #1a1e2e 35%, #252a3a 65%, #1a2a2a 100%);
}

.hero-angle {
  position: absolute;
  bottom: -1px;
  right: 0;
  width: 55%;
  height: 100%;
  background: rgba(26, 30, 46, .4);
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
  pointer-events: none;
}

.hero-angle-2 {
  position: absolute;
  bottom: -1px;
  right: 0;
  width: 35%;
  height: 100%;
  background: rgba(191, 217, 215, .04);
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 5%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  box-sizing: border-box;
}

.hero-line {
  display: block;
  overflow: hidden;
}
.hero-line-inner {
  display: block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(3.75rem, 7.5vw, 7.5rem);
  font-weight: 600;
  color: var(--off-white);
  line-height: 1.0;
  opacity: 0;
  transform: translateY(100%);
  animation: lineUp .9s forwards;
}
.hero-line:nth-child(1) .hero-line-inner { animation-delay: .7s; }
.hero-line:nth-child(2) .hero-line-inner { animation-delay: .9s; }
.hero-line:nth-child(3) .hero-line-inner { animation-delay: 1.1s; }

.hero-sub {
  font-size: clamp(1.05rem, 1.4vw, 1.3rem);
  color: rgba(255, 255, 255, .6);
  max-width: 500px;
  margin: 36px 0 48px;
  opacity: 0;
  animation: fadeUp .8s 1.4s forwards;
}

.hero-paths {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  opacity: 0;
  animation: fadeUp .8s 1.5s forwards;
}

.path-btn {
  padding: 14px 28px;
  border-radius: 3px;
  font-size: .88rem;
  font-family: inherit;
  cursor: pointer;
  letter-spacing: .04em;
  transition: all .25s;
  background: var(--teal);
  color: var(--slate);
  border: 1.5px solid var(--teal);
}
.path-btn:hover {
  background: transparent;
  color: var(--off-white);
  border-color: rgba(191, 217, 215, .4);
}

@keyframes lineUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeUp {
  to { opacity: 1; }
}


/* SECTIONS
   --------------------------------------------------------- */
.section {
  padding: 100px 5%;
}
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.bg-light    { background: var(--light-bg); }
.bg-white    { background: var(--off-white); }
.bg-navy     { background: var(--navy); }
.bg-navy-mid { background: var(--navy-mid); }


/* INTRO
   --------------------------------------------------------- */
.intro-statement {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 600;
  color: var(--slate);
  line-height: 1.2;
  max-width: 900px;
}

.intro-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.intro-grid p {
  font-size: 1.05rem;
  line-height: 1.8;
}
.intro-grid p + p {
  margin-top: 16px;
}


/* SECTORS
   --------------------------------------------------------- */
.section-tag {
  font-size: .75rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
  display: block;
}

.sectors-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 60px;
}

.sectors-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 2px;
  background: rgba(191, 217, 215, .15);
}

.sector-item {
  background: var(--navy);
  padding: 48px 32px;
  transition: background .3s;
  border-top: 2px solid rgba(191, 217, 215, .15);
  position: relative;
}
.sector-item::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 0;
  height: 2px;
  width: 0;
  background: var(--teal);
  transition: width .4s ease;
}
.sector-item:hover::before { width: 100%; }
.sector-item:hover { background: var(--navy-mid); }

.sector-item.featured {
  grid-row: 1 / 3;
  padding: 56px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sector-icon {
  color: var(--teal);
  margin-bottom: 20px;
}

.sector-item h3 {
  font-size: 1.6rem;
  color: var(--off-white);
  margin-bottom: 12px;
}
.sector-item.featured h3 { font-size: 2.2rem; }

.sector-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.sector-tags span {
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal);
  border: 1px solid rgba(191, 217, 215, .25);
  padding: 3px 10px;
  border-radius: 2px;
}

.sector-item p {
  font-size: .88rem;
  color: rgba(255, 255, 255, .55);
  line-height: 1.7;
}


/* PATH SECTIONS
   --------------------------------------------------------- */
.path-label {
  display: inline-block;
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 2px;
  margin-bottom: 24px;
  font-weight: 600;
}
.label-buy    { background: var(--slate);    color: var(--off-white); }
.label-build  { background: var(--teal);     color: var(--slate); }
.label-launch { background: var(--teal-mid); color: var(--off-white); }

.path-heading {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  margin-bottom: 20px;
}
.path-desc {
  font-size: 1.05rem;
  max-width: 680px;
  margin-bottom: 60px;
  line-height: 1.8;
}

.bg-navy .path-heading,
.bg-navy-mid .path-heading { color: var(--off-white); }

.bg-navy .path-desc,
.bg-navy-mid .path-desc    { color: rgba(255, 255, 255, .65); }


/* STEPS
   --------------------------------------------------------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--teal-mid);
  border: 2px solid var(--teal-mid);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 60px;
}

.step {
  padding: 40px 32px;
}
.bg-white .step    { background: var(--off-white); }
.bg-light .step    { background: var(--light-bg); }
.bg-navy .step     { background: var(--navy); }
.bg-navy-mid .step { background: var(--navy-mid); }

.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 16px;
  font-weight: 600;
}

.step h4 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}
.bg-white .step h4,
.bg-light .step h4    { color: var(--slate); }
.bg-navy .step h4,
.bg-navy-mid .step h4 { color: var(--off-white); }

.step p {
  font-size: .9rem;
  line-height: 1.7;
  margin: 0;
}
.bg-white .step p,
.bg-light .step p    { color: var(--muted); }
.bg-navy .step p,
.bg-navy-mid .step p { color: rgba(255, 255, 255, .6); }


/* CARDS
   --------------------------------------------------------- */
.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.card {
  padding: 36px;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .12);
}
.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--teal);
}

.bg-white .card,
.bg-light .card { background: var(--navy); }

.bg-white .card h4,
.bg-light .card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: var(--off-white);
}
.bg-white .card p,
.bg-light .card p {
  font-size: .88rem;
  color: rgba(255, 255, 255, .65);
  line-height: 1.7;
  margin: 0;
}

.bg-navy .card,
.bg-navy-mid .card {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(191, 217, 215, .15);
}
.bg-navy .card h4,
.bg-navy-mid .card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: var(--off-white);
}
.bg-navy .card p,
.bg-navy-mid .card p {
  font-size: .88rem;
  color: rgba(255, 255, 255, .55);
  line-height: 1.7;
  margin: 0;
}


/* TEAM
   --------------------------------------------------------- */
.section-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}
.section-desc {
  font-size: 1.05rem;
  max-width: 680px;
  margin-bottom: 60px;
  line-height: 1.8;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 280px);
  justify-content: center;
  gap: 24px;
  margin-bottom: 80px;
}

.team-card {
  border: 1px solid rgba(191, 217, 215, .5);
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow .25s, transform .25s;
}
.team-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, .1);
  transform: translateY(-4px);
}

.team-photo {
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-photo-placeholder {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  color: rgba(191, 217, 215, .2);
  font-weight: 600;
}
.team-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(26, 30, 46, .15) 0%, rgba(26, 30, 46, .4) 100%);
  pointer-events: none;
}

.team-info {
  padding: 28px;
  background: var(--off-white);
}
.team-role {
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--teal-mid);
  margin-bottom: 6px;
  font-weight: 600;
}
.team-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--slate);
  margin-bottom: 4px;
}
.team-email {
  font-size: .8rem;
  color: var(--muted);
  text-decoration: none;
}
.team-hint {
  font-size: .75rem;
  color: var(--teal-mid);
  margin-top: 12px;
  letter-spacing: .04em;
}

.network-strip {
  border-top: 1px solid rgba(191, 217, 215, .3);
  padding-top: 60px;
}
.network-strip h3 {
  font-size: 2rem;
  margin-bottom: 16px;
}
.network-strip p {
  max-width: 680px;
  margin-bottom: 40px;
  font-size: 1rem;
  line-height: 1.8;
}

.network-tags {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.network-tag {
  padding: 24px 20px;
  border: 1px solid rgba(191, 217, 215, .5);
  border-radius: 6px;
  text-align: center;
  transition: border-color .2s, background .2s;
}
.network-tag:hover {
  background: var(--light-bg);
  border-color: var(--teal-mid);
}
.network-tag-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--slate);
  font-weight: 600;
}
.network-tag-sub {
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal-mid);
  margin-top: 4px;
}


/* MODALS
   --------------------------------------------------------- */
.modal-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 12, 20, .8);
  z-index: 500;
  align-items: center;
  justify-content: center;
}
.modal-backdrop.open {
  display: flex;
}

.modal {
  background: var(--off-white);
  max-width: 860px;
  width: 90%;
  height: 88vh;
  border-radius: 6px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-template-rows: minmax(0, 1fr);
  position: relative;
}

.modal-left {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 48px 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 0;
  overflow-y: auto;
}

.modal-photo-placeholder {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.modal-photo-placeholder span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 7rem;
  color: rgba(191, 217, 215, .15);
  font-weight: 600;
}

.modal-role-tag {
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px;
  font-weight: 600;
}
.modal-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  color: var(--off-white);
  line-height: 1.1;
}

.modal-right {
  padding: 48px;
  overflow-y: auto;
  min-height: 0;
}
.modal-right p {
  font-size: .93rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.modal-contact-heading {
  font-size: .75rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--slate);
  margin: 28px 0 12px;
  font-weight: 600;
}
.modal-contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .88rem;
  color: var(--muted);
  text-decoration: none;
  margin-bottom: 8px;
}
.modal-contact a:hover {
  color: var(--slate);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background .2s;
  z-index: 10;
}
.modal-close:hover {
  background: rgba(0, 0, 0, .08);
}
.modal-close svg {
  stroke: var(--muted);
}


/* TESTIMONIALS
   --------------------------------------------------------- */
.testimonials-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 60px;
  gap: 24px;
}
.testimonials-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.testimonial-nav {
  display: flex;
  gap: 12px;
}
.t-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--teal-mid);
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
}
.t-btn:hover {
  background: var(--teal);
  border-color: var(--teal);
}
.t-btn svg {
  stroke: var(--slate);
}

.testimonial-slider {
  overflow: hidden;
}
.testimonial-track {
  display: flex;
  transition: transform .6s cubic-bezier(.4, 0, .2, 1);
}
.testimonial-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 60px;
  align-items: start;
}

.t-quote-mark svg {
  stroke: var(--teal-mid);
}
.t-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--slate);
  font-weight: 600;
  margin-top: 20px;
}
.t-title {
  font-size: .82rem;
  color: var(--muted);
  margin-top: 4px;
  line-height: 1.5;
}
.t-body blockquote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--slate);
  line-height: 1.5;
  font-style: italic;
  font-weight: 400;
  margin-bottom: 28px;
}

.t-dots {
  display: flex;
  gap: 8px;
  margin-top: 40px;
}
.t-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(157, 177, 179, .4);
  cursor: pointer;
  transition: background .2s;
}
.t-dot.active {
  background: var(--teal-mid);
}

.cta-link {
  display: inline-block;
  color: var(--slate);
  font-size: .88rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1.5px solid var(--teal);
  padding-bottom: 2px;
  transition: color .2s;
}
.cta-link:hover {
  color: var(--teal-mid);
}


/* CONTACT
   --------------------------------------------------------- */
.contact-left h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--off-white);
  line-height: 1.1;
  margin-bottom: 24px;
}
.contact-left p {
  color: rgba(255, 255, 255, .6);
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 420px;
}

.contact-info-block p {
  color: var(--teal-mid);
  font-size: .9rem;
  line-height: 1.9;
}
.contact-info-block a {
  color: var(--teal);
  text-decoration: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal-mid);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(191, 217, 215, .2);
  border-radius: 3px;
  color: var(--off-white);
  font-family: inherit;
  font-size: .95rem;
  outline: none;
  transition: border .2s;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--teal); }

.form-group select option {
  background: var(--navy);
}
.form-group textarea {
  height: 120px;
  resize: vertical;
}

.submit-btn {
  background: var(--teal);
  color: var(--slate);
  border: none;
  padding: 14px 36px;
  border-radius: 3px;
  font-family: inherit;
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .06em;
  cursor: pointer;
  transition: background .2s, transform .2s;
}
.submit-btn:hover {
  background: #d5ecea;
  transform: translateY(-2px);
}


/* FOOTER
   --------------------------------------------------------- */
footer {
  background: var(--navy);
  border-top: 1px solid rgba(191, 217, 215, .1);
  padding: 32px 5%;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
footer p,
footer a {
  color: rgba(255, 255, 255, .35);
  font-size: .8rem;
  text-decoration: none;
}
footer a:hover {
  color: var(--teal);
}


/* RESPONSIVE
   --------------------------------------------------------- */
@media (max-width: 900px) {
  .intro-grid,
  .contact-grid,
  .sectors-header,
  .testimonial-slide  { grid-template-columns: 1fr; }

  .steps,
  .cards,
  .network-tags       { grid-template-columns: 1fr; }

  .sectors-grid       { grid-template-columns: 1fr; grid-template-rows: auto; }
  .sector-item.featured { grid-row: auto; }

  .team-grid          { grid-template-columns: min(280px, 80vw); }

  .steps              { gap: 2px; }

  .testimonials-header { flex-direction: column; align-items: flex-start; }

  .modal-backdrop     { align-items: flex-start; }
  .modal              { grid-template-columns: 1fr; display: flex; flex-direction: column; width: 100%; max-width: 100%; height: 100dvh; max-height: 100dvh; border-radius: 0; overflow: hidden; }
  .modal-left         { flex-shrink: 0; padding: 24px 32px; min-height: 0; }
  .modal-right        { flex: 1; overflow-y: auto; -webkit-overflow-scrolling: touch; padding: 32px; }
  .modal-close        { top: 12px; right: 12px; width: 44px; height: 44px; background: rgba(0,0,0,.15); }

  nav                 { display: none; }
  .hamburger          { display: flex; }
}

@media (max-width: 600px) {
  .hero-paths   { flex-direction: column; width: 100%; }
  .path-btn     { width: 100%; text-align: center; }
  .footer-inner { flex-direction: column; text-align: center; }
  .network-tags { grid-template-columns: 1fr 1fr; }
}
