/* === RESET & BASE === */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden
}

body {
  font-family: 'Inter', sans-serif;
  color: #1B3A5C;
  background: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased
}

img {
  max-width: 100%;
  display: block
}

a {
  text-decoration: none;
  color: inherit
}

ul {
  list-style: none
}

:root {
  --red: #1B3A5C;
  --red-dark: #0F2440;
  --accent: #C5961B;
  --accent-dark: #A67D15;
  --dark: #0F2440;
  --grey: #f4f6f8;
  --grey2: #dce3ea;
  --text: #4a5568;
  --white: #fff;
  --transition: 0.3s ease;
  --shadow: 0 4px 24px rgba(15, 36, 64, .10);
  --shadow-lg: 0 8px 40px rgba(15, 36, 64, .16);
}

h1,
h2,
h3,
h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #0F2440;
  letter-spacing: -.01em
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem)
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem)
}

h3 {
  font-size: 1.1rem
}

p {
  line-height: 1.75;
  color: var(--text);
  font-size: .95rem
}

.section-label {
  font-size: .73rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: .5rem;
  display: block
}

.section-title {
  margin-bottom: 1rem
}

.section-title span {
  color: var(--accent)
}

.section-subtitle {
  color: var(--text);
  max-width: 600px;
  margin: 0 auto 3rem;
  text-align: center;
  font-size: .93rem
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem)
}

.section-pad {
  padding: clamp(3rem, 6vw, 5rem) 0
}

.text-center {
  text-align: center
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .85rem 2.2rem;
  min-height: 44px;
  border-radius: 3px;
  font-weight: 700;
  font-size: .88rem;
  letter-spacing: .03em;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-family: 'Montserrat', sans-serif;
  text-align: center;
  gap: .5rem
}

.btn-primary {
  background: var(--accent);
  color: #fff
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(197, 150, 27, .35)
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.7)
}

.btn-outline:hover {
  background: rgba(255,255,255,.15);
  border-color: #fff;
  color: #fff
}

.btn-dark {
  background: var(--dark);
  color: #fff
}

.btn-dark:hover {
  background: #444
}

/* TOP BAR */
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1002;
  background: var(--dark);
  font-size: .72rem;
  padding: .42rem 0;
  color: rgba(255, 255, 255, .85);
  border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  color: rgba(255, 255, 255, .9)
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: .9rem;
  color: rgba(255, 255, 255, .75);
  font-size: .7rem;
  letter-spacing: .04em
}

.top-bar a {
  color: rgba(255, 255, 255, .9);
  transition: color var(--transition)
}

.top-bar a:hover {
  color: var(--accent)
}

.top-bar-divider {
  color: rgba(255, 255, 255, .3)
}

/* TICKER */
.ticker {
  position: fixed;
  top: 26px;
  left: 0;
  width: 100%;
  z-index: 1001;
  background: rgba(15, 36, 64, .96);
  padding: .4rem 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, .06)
}

.ticker-inner {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: ticker 28s linear infinite
}

.ticker-item {
  font-size: .74rem;
  color: rgba(255, 255, 255, .7);
  padding: 0 2.5rem;
  letter-spacing: .02em
}

.ticker-item span {
  color: var(--accent);
  margin-right: .5rem
}

@keyframes ticker {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

/* HEADER */
#header {
  position: fixed;
  top: 56px;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all var(--transition)
}

#header.scrolled {
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 2px 20px rgba(0, 0, 0, .10)
}

#header.scrolled .logo-text {
  color: var(--dark)
}

#header.scrolled nav a {
  color: var(--dark)
}

#header.scrolled nav a.active {
  color: var(--accent)
}

#header.scrolled .nav-cta {
  color: #fff !important
}

#header.scrolled .menu-toggle {
  background: rgba(15, 36, 64, .08)
}

#header.scrolled .menu-toggle span {
  background: var(--dark)
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .6rem 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  transition: padding var(--transition);
  overflow: visible
}

#header.scrolled .header-inner {
  padding: .4rem 2.5rem
}

.logo-brand {
  display: flex;
  align-items: center;
  flex-shrink: 0
}

.logo-svg {
  height: 80px;
  width: auto;
  display: block;
  transition: transform var(--transition);
  overflow: visible
}

/* Dark-bg logo: visible by default (transparent/dark header) */
.logo-light {
  display: block
}

/* White-bg logo: hidden by default */
.logo-dark {
  display: none
}

/* When header scrolled (white bg): swap logos */
#header.scrolled .logo-light {
  display: none
}

#header.scrolled .logo-dark {
  display: block
}

/* Footer always uses the dark-bg logo — handled by HTML (no swap needed) */

.logo-brand:hover .logo-svg {
  transform: scale(1.03)
}

/* Legacy logo styles kept for reference */
.logo-icon {
  width: 38px;
  height: 38px;
  background: var(--red);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center
}

.logo-icon svg {
  width: 21px;
  height: 21px;
  fill: #fff
}

.logo-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: #fff;
  line-height: 1.1;
  transition: color var(--transition)
}

.logo-text span {
  display: block;
  font-size: .56rem;
  font-weight: 400;
  letter-spacing: .1em;
  opacity: .72;
  margin-top: 2px;
  text-transform: uppercase
}

nav {
  display: flex;
  align-items: center;
  gap: 1.9rem
}

nav a {
  font-size: .78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .88);
  position: relative;
  padding-bottom: 4px;
  transition: color var(--transition);
  font-family: 'Montserrat', sans-serif;
  letter-spacing: .03em;
  white-space: nowrap
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition)
}

nav a:hover::after,
nav a.active::after {
  width: 100%
}

nav a:hover,
nav a.active {
  color: var(--accent)
}

.nav-cta {
  background: var(--accent) !important;
  color: #fff !important;
  padding: .44rem 1.25rem;
  border-radius: 3px;
  font-size: .78rem
}

.nav-cta::after {
  display: none !important
}

.nav-cta:hover {
  background: var(--accent-dark) !important;
  box-shadow: 0 4px 14px rgba(197, 150, 27, .35)
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: var(--transition)
}

/* HERO */
#hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
  overflow: clip
}

.hero-slider {
  width: 100%;
  height: 100%
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  background-size: cover;
  background-position: center
}

.hero-slide.active {
  opacity: 1
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 36, 64, .82) 0%, rgba(27, 58, 92, .55) 60%, rgba(0, 0, 0, .3) 100%);
  pointer-events: none
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2.5rem;
  z-index: 2
}

.hero-title {
  font-size: clamp(2.1rem, 5.5vw, 3.7rem);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  line-height: 1.15;
  max-width: 700px;
  margin-bottom: 1.2rem;
  opacity: 0;
  transform: translateY(30px);
  transition: all .8s ease .3s
}

.hero-slide.active .hero-title {
  opacity: 1;
  transform: translateY(0)
}

.hero-sub {
  font-size: .97rem;
  color: rgba(255, 255, 255, .82);
  max-width: 500px;
  margin-bottom: 2rem;
  line-height: 1.75;
  opacity: 0;
  transform: translateY(20px);
  transition: all .8s ease .55s
}

.hero-slide.active .hero-sub {
  opacity: 1;
  transform: translateY(0)
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  transition: all .8s ease .8s
}

.hero-slide.active .hero-actions {
  opacity: 1;
  transform: translateY(0)
}

.hero-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: .6rem;
  z-index: 10
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .4);
  cursor: pointer;
  border: none;
  transition: var(--transition)
}

.hero-dot.active {
  background: var(--accent);
  width: 24px;
  border-radius: 4px
}

.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(27, 58, 92, .92);
  backdrop-filter: blur(8px);
  display: flex;
  justify-content: center;
  border-top: 3px solid var(--accent)
}

.hero-stat {
  text-align: center;
  padding: 1.1rem 2.8rem;
  border-right: 1px solid rgba(255, 255, 255, .2)
}

.hero-stat:last-child {
  border-right: none
}

.hero-stat-num {
  font-size: 1.7rem;
  font-weight: 800;
  color: #fff;
  font-family: 'Montserrat', sans-serif
}

.hero-stat-label {
  font-size: .66rem;
  color: rgba(255, 255, 255, .8);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-top: .2rem
}

/* ABOUT */
#about {
  padding: 5rem 0;
  background: #fff
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center
}

.about-img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: 4px
}

.about-img-wrap {
  position: relative;
  overflow: visible
}

.about-badge {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  background: var(--accent);
  color: #fff;
  padding: 1.8rem;
  border-radius: 4px;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  z-index: 2
}

.about-badge-num {
  font-size: 2.1rem;
  font-weight: 800;
  line-height: 1
}

.about-badge-text {
  font-size: .65rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-top: .3rem;
  opacity: .85
}

.about-text p {
  margin-bottom: 1.1rem
}

.about-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.8rem 0
}

.vision-card {
  padding: 1.1rem;
  background: var(--grey);
  border-left: 3px solid var(--accent);
  border-radius: 2px
}

.vision-card h4 {
  font-size: .8rem;
  font-weight: 700;
  margin-bottom: .3rem;
  font-family: 'Montserrat', sans-serif
}

.vision-card p {
  font-size: .78rem;
  color: #666;
  margin: 0
}

/* SERVICES */
#services {
  padding: 5rem 0;
  background: var(--grey)
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem
}

.service-card {
  background: #fff;
  padding: 2rem;
  border-radius: 4px;
  transition: var(--transition);
  position: relative;
  overflow: hidden
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition)
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg)
}

.service-card:hover::before {
  transform: scaleX(1)
}

.service-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.2rem
}

.service-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--red);
  fill: none;
  stroke-width: 1.5
}

.service-card h3 {
  font-size: .93rem;
  margin-bottom: .55rem
}

.service-card p {
  font-size: .81rem;
  color: #666;
  line-height: 1.65
}

/* SECTORS */
#sectors {
  padding: 5rem 0;
  background: #fff
}

.sectors-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.2rem;
  margin-top: 3rem
}

.sector-card {
  background: var(--grey);
  border-radius: 4px;
  padding: 1.8rem 1rem;
  text-align: center;
  transition: var(--transition)
}

.sector-card:hover {
  background: var(--red);
  transform: translateY(-4px);
  box-shadow: var(--shadow)
}

.sector-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto .8rem
}

.sector-icon svg {
  stroke: var(--red);
  fill: none;
  stroke-width: 1.5;
  width: 100%;
  height: 100%;
  transition: stroke var(--transition)
}

.sector-card:hover .sector-icon svg {
  stroke: #fff
}

.sector-card h4 {
  font-size: .82rem;
  font-family: 'Montserrat', sans-serif;
  transition: color var(--transition)
}

.sector-card:hover h4 {
  color: #fff
}

/* EXPERTISE */
#expertise {
  padding: 5rem 0;
  background: var(--dark);
  position: relative;
  overflow: hidden
}

#expertise::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 350px;
  height: 350px;
  background: var(--red);
  opacity: .07;
  border-radius: 50%
}

.expertise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-top: 3rem
}

.expertise-list {
  display: flex;
  flex-direction: column;
  gap: .9rem
}

.expertise-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.1rem;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 4px;
  transition: var(--transition)
}

.expertise-item:hover {
  background: rgba(27, 58, 92, .08);
  border-color: rgba(27, 58, 92, .2)
}

.expertise-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: rgba(197, 150, 27, .5);
  font-family: 'Montserrat', sans-serif;
  line-height: 1;
  min-width: 38px
}

.expertise-item h4 {
  font-size: .87rem;
  color: #fff;
  margin-bottom: .2rem;
  font-family: 'Montserrat', sans-serif
}

.expertise-item p {
  font-size: .78rem;
  color: #999;
  margin: 0
}

.standards-box {
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 4px;
  padding: 2rem
}

.standards-box h3 {
  font-size: .95rem;
  color: #fff;
  margin-bottom: 1.1rem
}

.standards-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem
}

.tag {
  background: rgba(27, 58, 92, .14);
  color: rgba(255, 255, 255, .82);
  font-size: .72rem;
  font-weight: 700;
  padding: .32rem .75rem;
  border-radius: 2px;
  letter-spacing: .04em;
  border: 1px solid rgba(27, 58, 92, .2)
}

.missions-list {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .8rem
}

.mission-item {
  display: flex;
  gap: .8rem;
  align-items: flex-start;
  color: #bbb;
  font-size: .82rem
}

.mission-check {
  width: 18px;
  height: 18px;
  min-width: 18px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: .1rem
}

.mission-check svg {
  width: 10px;
  height: 10px;
  stroke: #fff;
  fill: none;
  stroke-width: 2.5
}

/* PROJECT EXPERIENCE */
#projects {
  padding: 5rem 0;
  background: var(--grey)
}

.project-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 3rem
}

.regions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem
}

.region-card {
  background: #fff;
  padding: 1.4rem;
  border-radius: 4px;
  border-left: 3px solid var(--accent);
  box-shadow: var(--shadow)
}

.region-card h4 {
  font-size: .85rem;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: .25rem
}

.region-card p {
  font-size: .78rem;
  color: #777;
  margin: 0
}

.project-types {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-top: 1.4rem
}

.project-type-tag {
  background: rgba(27, 58, 92, .08);
  color: var(--red);
  font-size: .73rem;
  font-weight: 700;
  padding: .28rem .75rem;
  border-radius: 2px;
  border: 1px solid rgba(27, 58, 92, .14)
}

/* TEAM */
#team {
  padding: 5rem 0;
  background: #fff
}

.team-intro {
  max-width: 700px;
  margin: 0 auto 3rem;
  text-align: center
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem
}

.team-card {
  background: var(--grey);
  border-radius: 4px;
  overflow: hidden;
  transition: var(--transition)
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg)
}

.team-avatar {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden
}

.team-avatar.bg-dark {
  background: linear-gradient(135deg, #0F2440 0%, #1B3A5C 100%)
}

.team-avatar.bg-red {
  background: linear-gradient(135deg, #8a6c0a 0%, var(--accent) 100%)
}

.team-avatar.bg-grey {
  background: linear-gradient(135deg, #2E5A8A 0%, #4A7AB5 100%)
}

.avatar-initials {
  font-size: 3.2rem;
  font-weight: 800;
  font-family: 'Montserrat', sans-serif;
  color: rgba(255, 255, 255, .15);
  letter-spacing: -.02em
}

.team-info {
  padding: 1.6rem
}

.team-name {
  font-size: .95rem;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: .2rem
}

.team-role {
  font-size: .68rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: .85rem;
  display: block
}

.team-bio {
  font-size: .79rem;
  color: #666;
  line-height: 1.65
}

.team-exp {
  display: flex;
  gap: .45rem;
  margin-top: .9rem;
  flex-wrap: wrap
}

.exp-tag {
  font-size: .65rem;
  background: rgba(27, 58, 92, .08);
  color: var(--red);
  padding: .18rem .55rem;
  border-radius: 2px;
  font-weight: 600
}

.team-capacity {
  background: var(--grey);
  border-radius: 4px;
  padding: 2rem;
  border-left: 4px solid var(--accent)
}

.team-capacity h3 {
  font-size: 1rem;
  margin-bottom: .8rem
}

.team-capacity p {
  font-size: .85rem;
  color: #666
}

/* WHY */
#why {
  padding: 5rem 0;
  background: var(--dark)
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem
}

.why-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.1rem;
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 4px;
  transition: var(--transition)
}

.why-item:hover {
  background: rgba(255, 255, 255, .03);
  border-color: rgba(197, 150, 27, .3)
}

.why-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: rgba(197, 150, 27, .15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center
}

.why-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.5
}

.why-item-text h4 {
  font-size: .87rem;
  color: #fff;
  margin-bottom: .2rem;
  font-family: 'Montserrat', sans-serif
}

.why-item-text p {
  font-size: .78rem;
  color: #999;
  margin: 0
}

.why-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem
}

.why-stat {
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 4px;
  padding: 1.8rem;
  text-align: center
}

.why-stat-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  font-family: 'Montserrat', sans-serif;
  line-height: 1
}

.why-stat-label {
  font-size: .69rem;
  color: #999;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-top: .4rem
}

/* CONTACT */
#contact {
  padding: 5rem 0;
  background: #fff
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  margin-top: 3rem
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem
}

.form-group {
  margin-bottom: 1rem
}

.form-group label {
  display: block;
  font-size: .76rem;
  font-weight: 700;
  margin-bottom: .42rem;
  color: var(--dark);
  letter-spacing: .03em;
  font-family: 'Montserrat', sans-serif
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: .78rem 1rem;
  border: 1.5px solid var(--grey2);
  border-radius: 3px;
  font-size: .87rem;
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  transition: border-color var(--transition);
  background: #fff
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent)
}

.form-group textarea {
  min-height: 120px;
  resize: vertical
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.6rem
}

.contact-info-block {
  display: flex;
  gap: .9rem;
  align-items: flex-start
}

.cib-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: rgba(27, 58, 92, .08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center
}

.cib-icon svg {
  stroke: var(--red);
  width: 17px;
  height: 17px;
  fill: none;
  stroke-width: 1.5
}

.contact-info-block h4 {
  font-size: .8rem;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: .22rem
}

.contact-info-block p,
.contact-info-block a {
  font-size: .81rem;
  color: #666;
  line-height: 1.6
}

.contact-info-block a:hover {
  color: var(--accent)
}

/* FOOTER */
#footer {
  background: var(--dark);
  color: #aaa;
  padding: 4rem 0 0
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem
}

.footer-brand .logo-text {
  color: #fff
}

.footer-brand .logo-svg {
  height: 60px
}

.footer-desc {
  font-size: .8rem;
  line-height: 1.75;
  margin: 1rem 0 1.4rem
}

.footer-social {
  display: flex;
  gap: .65rem
}

.footer-social a {
  width: 33px;
  height: 33px;
  background: rgba(255, 255, 255, .06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition)
}

.footer-social a:hover {
  background: var(--accent)
}

.footer-social svg {
  width: 14px;
  height: 14px;
  fill: #aaa
}

.footer-col h5 {
  font-family: 'Montserrat', sans-serif;
  font-size: .76rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 1rem
}

.footer-col ul li {
  margin-bottom: .5rem
}

.footer-col ul a {
  font-size: .78rem;
  color: #777;
  transition: color var(--transition)
}

.footer-col ul a:hover {
  color: var(--accent);
  padding-left: 4px
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .06);
  padding: 1.3rem 0;
  margin-top: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem
}

.footer-bottom p,
.footer-bottom a {
  font-size: .73rem;
  color: #555;
  transition: color var(--transition)
}

.footer-bottom a:hover {
  color: var(--accent)
}

/* SCROLL TOP */
#scrollTop {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 42px;
  height: 42px;
  background: var(--accent);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 999
}

#scrollTop.visible {
  opacity: 1;
  transform: translateY(0)
}

#scrollTop svg {
  stroke: #fff;
  width: 18px;
  height: 18px;
  fill: none;
  stroke-width: 2
}

#scrollTop:hover {
  background: var(--accent-dark);
  transform: translateY(-3px)
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s ease
}

.reveal.visible {
  opacity: 1;
  transform: none
}

.reveal-delay-1 {
  transition-delay: .1s
}

.reveal-delay-2 {
  transition-delay: .2s
}

.reveal-delay-3 {
  transition-delay: .3s
}

.reveal-delay-4 {
  transition-delay: .4s
}

/* =============================================
   RESPONSIVE — Mobile-first
   xl:≤1200 lg:≤1024 md:≤900 sm:≤768 xs:≤600 xxs:≤480
   ============================================= */

/* --- ≤1200px --- */
@media(max-width:1200px) {
  .hero-stat {
    padding: 1rem 2rem
  }
}

/* --- ≤1024px --- */
@media(max-width:1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .sectors-grid {
    grid-template-columns: repeat(3, 1fr)
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem
  }

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

  .footer-grid .footer-col:last-child {
    grid-column: 1/-1;
    display: grid;
    grid-template-columns: auto auto;
    gap: 2rem;
    align-items: start
  }

  .footer-col:last-child h5 {
    grid-column: 1/-1
  }

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

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

  .why-grid {
    grid-template-columns: 1fr;
    gap: 3rem
  }

  .why-stats {
    grid-template-columns: repeat(4, 1fr)
  }

  .about-grid {
    gap: 3rem
  }

  .about-vision {
    grid-template-columns: 1fr 1fr
  }

  .regions-grid {
    grid-template-columns: 1fr 1fr
  }

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

  .about-badge {
    right: -1rem
  }
}

/* --- ≤900px --- */
@media(max-width:900px) {
  .sectors-grid {
    grid-template-columns: repeat(3, 1fr)
  }

  .expertise-grid {
    grid-template-columns: 1fr;
    gap: 2rem
  }

  .project-intro {
    grid-template-columns: 1fr;
    gap: 2rem
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem
  }

  .footer-grid .footer-col:last-child {
    grid-column: unset;
    display: block
  }

  .why-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem
  }

  .hero-stat {
    padding: 1rem 1.5rem
  }

  .hero-stat-num {
    font-size: 1.4rem
  }
}

/* --- ≤768px --- */
@media(max-width:768px) {

  /* TOP BAR hidden on mobile */
  .top-bar {
    display: none
  }

  .ticker {
    top: 0;
    position: fixed;
    z-index: 1002;
    padding: .25rem 0
  }

  .ticker-item {
    font-size: .6rem;
    padding: 0 1.8rem
  }

  #header {
    top: 24px;
    background: var(--dark)
  }

  #header.scrolled {
    background: rgba(255, 255, 255, .97)
  }

  #hero {
    padding-top: 90px !important;
  }

  .header-inner {
    padding: .75rem 1.25rem
  }

  #header.scrolled .header-inner {
    padding: .65rem 1.25rem
  }

  /* MOBILE NAV — full screen overlay (scoped to #nav only) */
  #nav {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15, 36, 64, .97);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    z-index: 1010;
    backdrop-filter: blur(6px);
  }

  #nav.open {
    display: flex
  }

  #nav a {
    font-size: 1.2rem;
    color: #fff !important;
    padding: .85rem 2rem;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    letter-spacing: .04em;
  }

  #nav a:first-child {
    border-top: 1px solid rgba(255, 255, 255, .07)
  }

  #nav a::after {
    display: none
  }

  .nav-cta {
    margin-top: 1.5rem;
    width: auto !important;
    padding: .75rem 2.2rem !important;
    border-radius: 3px !important
  }

  .menu-toggle {
    display: flex;
    z-index: 1020;
    position: relative;
    background: rgba(15, 36, 64, .6);
    border-radius: 4px;
    padding: 8px 7px
  }

  .menu-toggle span {
    width: 22px;
    height: 2.5px;
    background: #fff;
    border-radius: 2px
  }

  /* Hamburger → X */
  .menu-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg)
  }

  .menu-toggle.open span:nth-child(2) {
    opacity: 0
  }

  .menu-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg)
  }

  /* HERO — stacked into normal document flow */
  #hero {
    height: auto !important;
    min-height: unset !important;
    overflow: visible !important;
    display: flex;
    flex-direction: column
  }

  .hero-slider {
    display: grid;
    height: auto;
    min-height: 300px
  }

  .hero-slide {
    position: relative !important;
    inset: auto !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    grid-area: 1/1;
    background-attachment: scroll;
    opacity: 0
  }

  .hero-slide.active {
    opacity: 1
  }

  .hero-overlay {
    inset: 0 !important
  }

  .hero-content {
    position: relative !important;
    inset: auto !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    padding: 60px 1.25rem 20px !important;
    text-align: center;
    justify-content: center !important;
    /* ✅ FIX */
    align-items: center !important;
    /* ✅ ADD */
    height: auto;
    max-width: 100%;
    width: 100%;
  }

  .hero-title {
    font-size: clamp(1.6rem, 6vw, 2.3rem) !important;
    margin: 0 auto .8rem;
    max-width: 100%
  }

  .hero-sub {
    font-size: .9rem;
    margin: 0 auto 1.2rem;
    max-width: 100%
  }

  .hero-actions {
    justify-content: center;
    flex-wrap: wrap;
    gap: .75rem
  }

  .hero-dots {
    position: relative !important;
    inset: auto !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;
    display: flex;
    justify-content: center;
    padding: .7rem 0;
    background: rgba(27, 58, 92, .85);
    margin: 0;
  }

  /* Hero stats — 2x2 grid in normal flow */
  .hero-stats {
    position: relative !important;
    inset: auto !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

  .hero-stat {
    padding: 1rem;
    border-right: 1px solid rgba(255, 255, 255, .15);
    border-bottom: 1px solid rgba(255, 255, 255, .15);
    width: 100%;
  }

  .hero-stat:nth-child(2n) {
    border-right: none
  }

  .hero-stat:nth-child(3),
  .hero-stat:nth-child(4) {
    border-bottom: none
  }

  .hero-stat-num {
    font-size: 1.4rem
  }

  /* ABOUT */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem
  }

  .about-img {
    height: 260px
  }

  .about-badge {
    bottom: -1rem;
    right: .75rem;
    padding: 1.2rem 1.5rem
  }

  .about-badge-num {
    font-size: 1.8rem
  }

  .about-vision {
    grid-template-columns: 1fr
  }

  .about-text {
    text-align: center
  }

  /* SERVICES */
  .services-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem
  }

  .service-card {
    padding: 1.6rem
  }

  /* SECTORS */
  .sectors-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem
  }

  /* EXPERTISE */
  .expertise-grid {
    grid-template-columns: 1fr;
    gap: 2rem
  }

  .expertise-item {
    flex-direction: row;
    align-items: flex-start;
    text-align: left
  }

  .standards-box {
    text-align: left;
    padding: 1.5rem
  }

  .standards-tags {
    justify-content: flex-start
  }

  /* PROJECTS */
  .project-intro {
    grid-template-columns: 1fr;
    gap: 2rem
  }

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

  .project-types {
    justify-content: flex-start
  }

  /* TEAM */
  .team-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem
  }

  /* WHY */
  .why-grid {
    grid-template-columns: 1fr;
    gap: 2rem
  }

  .why-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem
  }

  .why-item {
    flex-direction: row;
    align-items: flex-start;
    text-align: left
  }

  .why-stat {
    padding: 1.4rem 1rem
  }

  .why-stat-num {
    font-size: 2rem
  }

  /* CONTACT */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem
  }

  .form-row {
    grid-template-columns: 1fr 1fr;
    gap: 1rem
  }

  .contact-info-block {
    flex-direction: row;
    align-items: flex-start;
    text-align: left
  }

  /* FOOTER */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem
  }

  .footer-brand {
    grid-column: 1/-1
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: .75rem
  }

  .footer-social {
    justify-content: flex-start
  }

  /* TYPOGRAPHY */
  h2,
  .section-title {
    font-size: clamp(1.35rem, 4.5vw, 2rem) !important
  }

  .section-subtitle {
    max-width: 100%
  }
}

/* --- ≤600px --- */
@media(max-width:600px) {
  .services-grid {
    grid-template-columns: 1fr
  }

  .regions-grid {
    grid-template-columns: 1fr
  }

  .team-grid {
    grid-template-columns: 1fr
  }

  .form-row {
    grid-template-columns: 1fr
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center
  }

  .footer-brand {
    grid-column: unset
  }

  .footer-social {
    justify-content: center
  }

  /* Stack hero buttons on phones */
  .hero-actions {
    flex-direction: column;
    align-items: center;
    width: 100%
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 300px
  }

  .about-vision {
    grid-template-columns: 1fr
  }

  .why-stats {
    grid-template-columns: 1fr 1fr
  }
}

/* --- ≤480px --- */
@media(max-width:480px) {
  .header-inner {
    padding: .65rem 1rem
  }

  .logo-text {
    font-size: .9rem
  }

  .ticker-item {
    font-size: .55rem;
    padding: 0 1.4rem
  }

  .hero-content {
    padding: 88px 1rem 2rem !important
  }

  .hero-title {
    font-size: clamp(1.45rem, 7vw, 1.8rem) !important
  }

  .hero-sub {
    font-size: .85rem
  }

  .hero-stat-num {
    font-size: 1.25rem
  }

  .sectors-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .why-stats {
    grid-template-columns: 1fr 1fr
  }

  .why-stat {
    padding: 1.1rem .7rem
  }

  .about-badge {
    right: .25rem;
    padding: 1rem 1.1rem
  }

  .service-card {
    padding: 1.4rem
  }

  .team-card .team-info {
    padding: 1.2rem
  }

  .expertise-item {
    padding: .9rem
  }

  #scrollTop {
    bottom: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px
  }

  h2,
  .section-title {
    font-size: 1.35rem !important
  }

  h3 {
    font-size: .95rem
  }
}

/* ============================================================
   LEGAL PAGES — Privacy Policy & Terms of Service
   ============================================================ */

/* Banner */
.legal-banner {
  position: relative;
  padding: 9rem 0 3.5rem;
  background: linear-gradient(135deg, #0F2440 0%, #1B3A5C 60%, #0F2440 100%);
  overflow: hidden
}

.legal-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1486325212027-8081e485255e?w=1400&q=60') center/cover no-repeat;
  opacity: .08;
  pointer-events: none
}

.legal-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,36,64,.92) 0%, rgba(27,58,92,.75) 100%);
  pointer-events: none
}

.legal-banner-content {
  position: relative;
  z-index: 2
}

.legal-breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-top: 1rem;
  font-size: .78rem;
  color: rgba(255,255,255,.55)
}

.legal-breadcrumb a {
  color: rgba(255,255,255,.65);
  transition: color var(--transition)
}

.legal-breadcrumb a:hover {
  color: var(--accent)
}

.legal-breadcrumb span {
  color: rgba(255,255,255,.35)
}

/* Main layout */
.legal-main {
  background: #fff;
  padding: 3.5rem 0 5rem
}

.legal-container {
  max-width: 860px
}

.legal-intro {
  background: var(--grey);
  border-left: 4px solid var(--accent);
  border-radius: 4px;
  padding: 1.6rem 2rem;
  margin-bottom: 2.5rem
}

.legal-intro p {
  margin-bottom: .75rem;
  font-size: .95rem
}

.legal-intro p:last-child {
  margin-bottom: 0
}

.legal-intro a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px
}

/* Sections */
.legal-section {
  padding: 1.8rem 0;
  border-bottom: 1px solid var(--grey2)
}

.legal-section:last-of-type {
  border-bottom: none
}

.legal-section h2 {
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: .9rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: .6rem
}

.legal-section h2::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 1.1em;
  background: var(--accent);
  border-radius: 2px;
  flex-shrink: 0
}

.legal-section h3 {
  font-size: .93rem;
  color: var(--dark);
  margin: 1.2rem 0 .5rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700
}

.legal-section p {
  font-size: .92rem;
  color: var(--text);
  margin-bottom: .85rem;
  line-height: 1.8
}

.legal-section p:last-child {
  margin-bottom: 0
}

.legal-section a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition)
}

.legal-section a:hover {
  color: var(--accent-dark)
}

.legal-section ul,
.legal-section ol {
  padding-left: 1.4rem;
  margin-bottom: .85rem
}

.legal-section li {
  font-size: .92rem;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: .35rem
}

.legal-section li strong {
  color: var(--dark)
}

/* Contact card */
.legal-contact-card {
  background: var(--grey);
  border-radius: 4px;
  padding: 1.4rem 1.6rem;
  margin-top: 1rem
}

.legal-contact-card p {
  margin-bottom: .4rem !important;
  font-size: .9rem
}

.legal-contact-card p:last-child {
  margin-bottom: 0 !important
}

/* Bottom nav buttons */
.legal-nav-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--grey2)
}

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .85rem 2.2rem;
  min-height: 44px;
  border-radius: 3px;
  font-weight: 700;
  font-size: .88rem;
  letter-spacing: .03em;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Montserrat', sans-serif;
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--dark)
}

.btn-outline-dark:hover {
  background: var(--dark);
  color: #fff
}

/* ============================================================
   LEGAL PAGES — Responsive (Mobile)
   ============================================================ */

/* --- ≤768px (tablets & phones) --- */
@media(max-width: 768px) {

  /* ---- Banner: clear fixed header (ticker ~24px + header ~80px) ---- */
  .legal-banner {
    padding: 7.5rem 0 2.5rem;
  }

  .legal-banner-content {
    padding: 0 1.25rem;
  }

  .legal-banner-content .section-label {
    font-size: .7rem;
    letter-spacing: .12em;
  }

  .legal-banner-content h1 {
    font-size: 1.6rem !important;
    margin-top: .5rem !important;
    line-height: 1.25;
  }

  .legal-banner-content p {
    font-size: .82rem !important;
    margin-top: .45rem !important;
  }

  /* Breadcrumb — reset so it does NOT inherit #nav mobile overlay styles */
  .legal-breadcrumb {
    display: flex !important;
    position: relative !important;
    inset: auto !important;
    background: none !important;
    backdrop-filter: none !important;
    flex-direction: row !important;
    justify-content: flex-start !important;
    align-items: center !important;
    gap: .45rem;
    margin-top: .75rem;
    padding: 0 !important;
    height: auto !important;
    width: auto !important;
    z-index: auto !important;
    font-size: .73rem;
    flex-wrap: wrap;
  }

  .legal-breadcrumb a {
    font-size: .73rem !important;
    color: rgba(255,255,255,.65) !important;
    padding: 0 !important;
    width: auto !important;
    text-align: left !important;
    border: none !important;
    letter-spacing: normal !important;
  }

  .legal-breadcrumb span {
    font-size: .73rem;
    color: rgba(255,255,255,.4);
    padding: 0;
  }

  /* ---- Main content area ---- */
  .legal-main {
    padding: 2.5rem 0 4rem;
    background: #fff;
  }

  .legal-container {
    padding: 0 1.25rem;
    max-width: 100%;
  }

  /* ---- Intro card ---- */
  .legal-intro {
    padding: 1.3rem 1.2rem;
    margin-bottom: 2rem;
    border-left-width: 3px;
  }

  .legal-intro p {
    font-size: .9rem;
    line-height: 1.85;
    color: #333;
    margin-bottom: .6rem;
  }

  /* ---- Section blocks ---- */
  .legal-section {
    padding: 1.6rem 0;
    border-bottom: 1px solid #e8ecf0;
  }

  .legal-section h2 {
    font-size: 1.05rem !important;
    line-height: 1.35;
    margin-bottom: .8rem;
    color: #0F2440;
  }

  .legal-section h3 {
    font-size: .9rem;
    margin: 1rem 0 .45rem;
    color: #0F2440;
  }

  .legal-section p {
    font-size: .9rem;
    line-height: 1.85;
    color: #3a3f47;
    margin-bottom: .75rem;
  }

  .legal-section a {
    color: var(--accent);
    word-break: break-word;
  }

  .legal-section ul,
  .legal-section ol {
    padding-left: 1.2rem;
    margin-bottom: .75rem;
  }

  .legal-section li {
    font-size: .88rem;
    line-height: 1.8;
    color: #3a3f47;
    margin-bottom: .4rem;
    list-style-position: outside;
  }

  .legal-section ul {
    list-style: disc;
  }

  .legal-section li strong {
    color: #0F2440;
  }

  /* ---- Contact card ---- */
  .legal-contact-card {
    padding: 1.2rem 1.3rem;
    margin-top: .8rem;
  }

  .legal-contact-card p {
    font-size: .86rem;
    color: #3a3f47;
  }

  /* ---- Bottom nav buttons ---- */
  .legal-nav-links {
    flex-direction: column;
    gap: .8rem;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
  }

  .legal-nav-links .btn,
  .legal-nav-links .btn-outline-dark {
    width: 100%;
    text-align: center;
    padding: .9rem 1.5rem;
  }
}

/* --- ≤480px (small phones) --- */
@media(max-width: 480px) {

  .legal-banner {
    padding: 7rem 0 2rem;
  }

  .legal-banner-content h1 {
    font-size: 1.35rem !important;
    line-height: 1.3;
  }

  .legal-main {
    padding: 2rem 0 3rem;
  }

  .legal-container {
    padding: 0 1rem;
  }

  .legal-intro {
    padding: 1.1rem 1rem;
  }

  .legal-intro p {
    font-size: .86rem;
  }

  .legal-section {
    padding: 1.3rem 0;
  }

  .legal-section h2 {
    font-size: .96rem !important;
    gap: .45rem;
  }

  .legal-section h2::before {
    width: 3px;
    height: 1em;
  }

  .legal-section p {
    font-size: .86rem;
    line-height: 1.8;
  }

  .legal-section li {
    font-size: .84rem;
  }

  .legal-contact-card {
    padding: 1rem 1.1rem;
  }

  .legal-nav-links {
    margin-top: 2rem;
    padding-top: 1.2rem;
  }
}