:root {
  --navy: #071e46;
  --gold: #f4b000;
  --white: #ffffff;
  --paper: #f6f6f6;
  --ink: #303030;
  --muted: #6d7280;
  --radius: 10px;
  --shadow: 0 18px 45px rgba(7, 30, 70, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--white);
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
}

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

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

button {
  border: 0;
  font: inherit;
  cursor: pointer;
}

.container {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(7, 30, 70, 0.08);
}

.topbar {
  height: 30px;
  border-bottom: 1px solid #eef1f5;
  background: var(--white);
  font-size: 13px;
}

.topbar-inner,
.mainbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.topbar-contacts,
.socials {
  display: flex;
  align-items: center;
  gap: 18px;
}

.topbar a,
.socials a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
}

.topbar a:hover,
.socials a:hover {
  color: var(--gold);
}

.topbar svg {
  width: 14px;
  height: 14px;
  color: var(--gold);
}

.socials svg {
  width: 16px;
  height: 16px;
  color: var(--navy);
}

.mainbar {
  min-height: 78px;
  background: var(--white);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  position: relative;
  display: block;
  flex: 0 0 auto;
  width: 76px;
  height: 60px;
  border-radius: 0;
  background: url("../images/logo.png") center/contain no-repeat;
  box-shadow: none;
}

.brand-mark .tower,
.brand-mark .windows {
  display: none;
}

.tower {
  position: absolute;
  bottom: 10px;
  border-radius: 4px 4px 0 0;
}

.tower-white {
  left: 13px;
  width: 16px;
  height: 32px;
  background: var(--white);
}

.tower-gold {
  right: 12px;
  width: 17px;
  height: 40px;
  background: var(--gold);
}

.windows {
  position: absolute;
  display: grid;
  gap: 4px;
}

.windows b {
  display: block;
  width: 8px;
  height: 4px;
  background: var(--navy);
}

.left-windows {
  left: 17px;
  top: 18px;
}

.right-windows {
  right: 16px;
  top: 14px;
}

.brand-text strong,
.brand-text small {
  display: block;
  text-transform: uppercase;
  line-height: 1.05;
}

.brand-text strong {
  color: var(--navy);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 15px;
  font-weight: 900;
}

.brand-text small {
  margin-top: 4px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border: 1px solid rgba(7, 30, 70, 0.12);
  border-radius: 999px;
  background: #fff;
  padding: 4px;
  box-shadow: 0 8px 22px rgba(7, 30, 70, 0.08);
}

.lang-switcher button {
  display: inline-grid;
  place-items: center;
  min-width: 38px;
  min-height: 30px;
  border-radius: 999px;
  background: transparent;
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
}

.lang-switcher button.active {
  background: var(--gold);
  color: var(--navy);
}

.desktop-nav .lang-switcher.compact {
  flex: 0 0 auto;
  margin-left: 2px;
}

.mobile-nav .lang-switcher,
.admin-sidebar .lang-switcher,
.admin-auth-card .lang-switcher {
  justify-content: center;
  width: 100%;
}

.lang-switcher-label,
.lang-switcher-options {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.lang-switcher-label svg {
  width: 16px;
  height: 16px;
}

.mobile-nav .mobile-lang-switcher {
  justify-content: space-between;
  gap: 12px;
  margin: 2px 0 10px;
  border: 1px solid rgba(244, 176, 0, 0.3);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(244, 176, 0, 0.12), rgba(255, 255, 255, 0)),
    var(--navy);
  padding: 10px;
  box-shadow: 0 14px 34px rgba(7, 30, 70, 0.16);
}

.mobile-nav .mobile-lang-switcher .lang-switcher-label {
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.mobile-nav .mobile-lang-switcher .lang-switcher-label svg {
  color: var(--gold);
}

.mobile-nav .mobile-lang-switcher .lang-switcher-options {
  padding: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.mobile-nav .mobile-lang-switcher button {
  min-width: 42px;
  min-height: 32px;
  color: #fff;
}

.mobile-nav .mobile-lang-switcher button.active {
  color: var(--navy);
}

.admin-sidebar .lang-switcher {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
}

.admin-sidebar .lang-switcher button {
  color: #fff;
}

#google_translate_element {
  position: fixed;
  right: -9999px;
  bottom: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.goog-te-banner-frame,
.goog-te-banner-frame.skiptranslate,
.VIpgJd-ZVi9od-ORHb-OEVmcd,
.VIpgJd-ZVi9od-aZ2wEe-wOHMyf,
body > .skiptranslate {
  display: none !important;
}

html.translated-ltr body,
html.translated-rtl body,
body {
  top: 0 !important;
}

.desktop-nav > a:not(.quote-btn),
.desktop-nav .nav-item > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-height: 78px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

.desktop-nav > a:not(.quote-btn)::after,
.desktop-nav .nav-item > a::after {
  position: absolute;
  right: 0;
  bottom: 18px;
  left: 0;
  height: 3px;
  border-radius: 999px;
  background: var(--gold);
  opacity: 0;
  content: "";
}

.desktop-nav > a.active::after,
.desktop-nav > a:not(.quote-btn):hover::after,
.desktop-nav .nav-item.active > a::after,
.desktop-nav .nav-item:hover > a::after {
  opacity: 1;
}

.desktop-nav svg {
  width: 16px;
  height: 16px;
}

.desktop-nav .admin-login-link {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  min-height: 42px;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  background: #fff;
  color: var(--navy);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.desktop-nav .admin-login-link::after {
  display: none;
}

.desktop-nav .admin-login-link:hover {
  background: var(--navy);
  color: var(--gold);
  transform: translateY(-2px);
}

.nav-item {
  position: relative;
}

.submenu {
  position: absolute;
  left: 50%;
  top: calc(100% - 8px);
  z-index: 30;
  display: grid;
  min-width: 270px;
  padding: 10px;
  border: 1px solid #eef1f5;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-item:hover .submenu,
.nav-item:focus-within .submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.submenu a {
  border-radius: 8px;
  padding: 11px 12px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
  transition: background 0.2s ease, color 0.2s ease;
}

.submenu a:hover {
  background: rgba(244, 176, 0, 0.15);
  color: var(--navy);
}

.quote-btn,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  border-radius: var(--radius);
  padding: 0 22px;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.quote-btn,
.btn-gold {
  background: var(--gold);
  color: var(--navy);
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
}

.btn-outline {
  border: 2px solid var(--gold);
  color: var(--navy);
}

.btn-outline-dark {
  border: 2px solid var(--navy);
  color: var(--navy);
}

.quote-btn:hover,
.btn:hover {
  transform: translateY(-2px);
}

.btn svg {
  width: 18px;
  height: 18px;
}

.menu-toggle,
.mobile-nav {
  display: none;
}

.floating-menu {
  position: fixed;
  right: 0;
  top: 50%;
  z-index: 40;
  overflow: hidden;
  transform: translateY(-50%);
  border-radius: 10px 0 0 10px;
  background: var(--navy);
  box-shadow: var(--shadow);
}

.floating-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 132px;
  padding: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
}

.floating-menu a:hover {
  background: rgba(255, 255, 255, 0.1);
}

.floating-menu svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
}

.hero {
  position: relative;
  min-height: 590px;
  padding-top: 108px;
  overflow: hidden;
  background: var(--white);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(600px, 48vw);
  padding: 62px 0 125px max(40px, calc((100vw - 1240px) / 2 + 20px));
}

.eyebrow-pill {
  margin: 0 0 4px;
  color: var(--navy);
  font-size: 28px;
  font-weight: 900;
  line-height: 1.1;
}

.hero h1 {
  margin: 0;
  color: var(--navy);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(45px, 5.4vw, 78px);
  font-weight: 900;
  line-height: 0.98;
}

.hero h1 span {
  display: block;
  color: var(--gold);
}

.hero-text {
  margin: 18px 0 0;
  max-width: 540px;
  color: #061b3d;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.45;
}

.signature,
.footer-signature {
  margin: 10px 0 0;
  color: var(--navy);
  font-family: "Caveat", cursive;
  font-size: 38px;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.hero-image {
  position: absolute;
  inset: 108px 0 0 0;
  min-height: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.82) 27%, rgba(255, 255, 255, 0.08) 52%, rgba(7, 30, 70, 0.08)),
    url("../images/images1.PNG") center/cover;
}

.home-premium-hero {
  overflow: hidden;
}

.home-hero-panel {
  position: absolute;
  right: clamp(24px, 5vw, 84px);
  bottom: 118px;
  z-index: 3;
  width: min(360px, calc(100% - 48px));
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius);
  background: rgba(7, 30, 70, 0.92);
  padding: 24px;
  color: var(--white);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.home-hero-panel strong {
  display: block;
  margin-top: 14px;
  color: var(--white);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 22px;
  font-weight: 900;
}

.home-hero-panel p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}

.home-hero-panel form {
  display: grid;
  grid-template-columns: 1fr 44px;
  gap: 8px;
}

.home-hero-panel input {
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  padding: 12px;
  color: var(--white);
  font: inherit;
  outline: none;
}

.home-hero-panel input::placeholder {
  color: rgba(255, 255, 255, 0.62);
}

.home-hero-panel button {
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: var(--gold);
  color: var(--navy);
}

.wave {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  z-index: 3;
  height: 118px;
}

.wave svg {
  width: 100%;
  height: 100%;
}

.section {
  padding: 56px 0;
}

.services-section,
.projects-section {
  background: var(--white);
}

.section-heading {
  max-width: 760px;
}

.section-heading.center {
  margin: 0 auto;
  text-align: center;
}

.section-heading p,
.gold-title {
  margin: 0;
  color: var(--gold);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
}

.section-heading h2,
.about-text h2,
.contact-strip h2 {
  margin: 8px 0 0;
  color: var(--navy);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(30px, 3.2vw, 42px);
  font-weight: 900;
  line-height: 1.12;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
  margin-top: 26px;
}

.service-card,
.team-card {
  min-height: 196px;
  border-radius: var(--radius);
  background: var(--white);
  padding: 17px 13px;
  text-align: center;
  box-shadow: 0 14px 35px rgba(7, 30, 70, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover,
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.service-card > svg,
.team-card > svg {
  display: block;
  width: 55px;
  height: 55px;
  margin: 0 auto;
  border-radius: var(--radius);
  background: var(--navy);
  padding: 14px;
  color: var(--gold);
}

.service-card h3,
.mission-card h3,
.team-card h3 {
  margin: 14px 0 10px;
  color: var(--navy);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 14px;
  font-weight: 900;
}

.service-card p,
.team-card p {
  margin: 0;
  color: var(--ink);
  font-size: 11px;
  line-height: 1.55;
}

.stats-band {
  background: var(--navy);
  padding: 29px 0;
  color: var(--white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.stat {
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  column-gap: 18px;
}

.stat svg {
  grid-row: span 2;
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  padding: 15px;
  color: var(--gold);
}

.stat strong {
  color: var(--gold);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
}

.stat span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.home-site-proof-section {
  background: linear-gradient(180deg, #fff, #f8fafc);
}

.home-site-proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: 34px;
}

.home-site-proof-copy h2,
.active-site-copy h2 {
  margin: 8px 0 14px;
  color: var(--navy);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(30px, 3.2vw, 42px);
  font-weight: 900;
  line-height: 1.12;
}

.home-site-proof-copy p:not(.gold-title),
.active-site-copy p:not(.gold-title) {
  margin: 0 0 22px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.72;
}

.home-site-proof-media {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 14px;
  min-height: 360px;
}

.home-site-proof-media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.home-site-proof-media img:first-child {
  border: 5px solid #fff;
}

.home-site-proof-media img:last-child {
  margin-top: 44px;
  border: 5px solid rgba(244, 176, 0, 0.22);
}

.about-grid {
  display: grid;
  grid-template-columns: 32% 68%;
  align-items: center;
  gap: 36px;
}

.about-photo {
  position: relative;
  min-height: 275px;
  border-radius: var(--radius);
  background: url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1200&q=85") center/cover;
  box-shadow: var(--shadow);
}

.about-photo::before {
  position: absolute;
  inset: auto auto -22px -22px;
  z-index: -1;
  width: 100%;
  height: 100%;
  border: 4px solid var(--gold);
  border-radius: var(--radius);
  content: "";
}

.about-content {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 30px;
}

.about-text p:not(.gold-title) {
  margin: 14px 0 0;
  font-size: 14px;
  line-height: 1.62;
}

.about-text .btn {
  margin-top: 28px;
}

.mission-stack {
  display: grid;
  gap: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--navy);
}

.mission-card {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  background: var(--navy);
  padding: 26px 30px;
  color: var(--white);
  box-shadow: none;
}

.mission-card > svg {
  width: 46px;
  height: 46px;
  border-radius: var(--radius);
  background: var(--gold);
  padding: 10px;
  color: var(--navy);
}

.mission-card h3 {
  color: var(--white);
  font-size: 18px;
}

.mission-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  line-height: 1.55;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
}

.filters button {
  border: 1px solid #dfe4ec;
  border-radius: var(--radius);
  background: var(--white);
  padding: 9px 22px;
  color: var(--navy);
  font-weight: 900;
}

.filters button.active,
.filters button:hover {
  border-color: var(--gold);
  background: var(--gold);
}

.project-slider {
  position: relative;
  margin-top: 24px;
}

.project-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  overflow: visible;
  scroll-behavior: smooth;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
}

.project-track::-webkit-scrollbar {
  display: none;
}

.project-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 35px rgba(7, 30, 70, 0.1);
  scroll-snap-align: start;
}

.project-card[hidden] {
  display: none;
}

.project-card img {
  width: 100%;
  height: 112px;
  object-fit: cover;
}

.project-card div {
  padding: 10px 8px 14px;
  text-align: center;
}

.project-card small {
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
}

.project-card h3 {
  margin: 6px 0 4px;
  color: var(--navy);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 14px;
  font-weight: 900;
}

.project-card p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0;
  font-size: 12px;
}

.project-card p svg {
  width: 17px;
  color: var(--gold);
}

.slider-btn {
  position: absolute;
  top: 43%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: var(--navy);
  color: var(--gold);
  box-shadow: var(--shadow);
  display: none;
}

.slider-btn.prev {
  left: -18px;
}

.slider-btn.next {
  right: -18px;
}

.dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 28px;
}

.dots span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #b7c0cc;
}

.dots span.active {
  width: 34px;
  background: var(--gold);
}

.section-action {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.team-grid {
  display: grid;
  grid-template-columns: 1.1fr repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.contact-strip {
  background: var(--gold);
  padding: 38px 0;
}

.contact-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.contact-strip p {
  margin: 0;
  color: rgba(7, 30, 70, 0.75);
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-actions {
  display: flex;
  gap: 14px;
}

.footer {
  background: var(--navy);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr 1.1fr;
  gap: 44px;
  padding: 34px 0 26px;
}

.brand-footer .brand-text strong {
  color: var(--white);
}

.footer-signature {
  color: var(--gold);
}

.footer p,
.footer span {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
}

.footer h3 {
  margin: 0 0 14px;
  color: var(--gold);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 20px;
  font-weight: 900;
}

.footer-grid a:not(.brand) {
  display: block;
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.75);
}

.footer-grid a:hover {
  color: var(--gold);
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}

.footer-socials a {
  display: grid !important;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  color: var(--gold) !important;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0;
  font-size: 14px;
}

.footer-bottom div {
  display: flex;
  gap: 22px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

.page-hero {
  position: relative;
  padding: 190px 0 86px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(7, 30, 70, 0.96), rgba(7, 30, 70, 0.78) 44%, rgba(7, 30, 70, 0.25)),
    url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1600&q=85") center/cover;
  color: var(--white);
}

.page-hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 7px;
  background: var(--gold);
  content: "";
}

.page-hero-inner {
  max-width: 760px;
}

.page-hero h1 {
  margin: 10px 0 18px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(42px, 5vw, 70px);
  font-weight: 900;
  line-height: 1.04;
}

.page-hero p:not(.gold-title) {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  line-height: 1.65;
}

.page-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.page-hero-tags span {
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 800;
}

.legal-page-hero,
.privacy-page-hero {
  background:
    linear-gradient(90deg, rgba(7, 30, 70, 0.96), rgba(7, 30, 70, 0.82) 48%, rgba(7, 30, 70, 0.35)),
    url("https://images.unsplash.com/photo-1450101499163-c8848c66ca85?auto=format&fit=crop&w=1800&q=85") center/cover;
}

.privacy-page-hero {
  background:
    linear-gradient(90deg, rgba(7, 30, 70, 0.96), rgba(7, 30, 70, 0.82) 48%, rgba(7, 30, 70, 0.35)),
    url("https://images.unsplash.com/photo-1563986768609-322da13575f3?auto=format&fit=crop&w=1800&q=85") center/cover;
}

.legal-section {
  background:
    linear-gradient(180deg, #fff 0%, #f6f8fb 100%);
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.5fr);
  gap: 28px;
  align-items: start;
}

.legal-summary,
.legal-content article {
  border: 1px solid #e6ebf3;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.legal-summary {
  position: sticky;
  top: 142px;
  padding: 26px;
}

.legal-summary > svg {
  width: 58px;
  height: 58px;
  border-radius: var(--radius);
  background: var(--navy);
  padding: 15px;
  color: var(--gold);
}

.legal-summary h2 {
  margin: 18px 0 10px;
  color: var(--navy);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 24px;
  font-weight: 900;
}

.legal-summary p {
  color: var(--muted);
  font-weight: 600;
  line-height: 1.65;
}

.legal-summary dl {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
}

.legal-summary dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.legal-summary dd {
  margin: 0;
  color: var(--navy);
  font-weight: 900;
}

.legal-summary a,
.legal-content a {
  color: var(--navy);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: rgba(244, 176, 0, 0.8);
  text-underline-offset: 4px;
}

.legal-content {
  display: grid;
  gap: 18px;
}

.legal-content article {
  position: relative;
  overflow: hidden;
  padding: 28px 30px 30px 86px;
}

.legal-content article::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: var(--gold);
  content: "";
}

.legal-content article span {
  position: absolute;
  top: 28px;
  left: 28px;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(7, 30, 70, 0.08);
  color: var(--navy);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 14px;
  font-weight: 900;
}

.legal-content h2 {
  margin: 0 0 12px;
  color: var(--navy);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 24px;
  font-weight: 900;
}

.legal-content p {
  margin: 0 0 12px;
  color: #4a5160;
  font-size: 16px;
  line-height: 1.75;
}

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

.company-grid,
.expertise-grid,
.market-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 44px;
  align-items: center;
}

.company-copy > p {
  margin: 18px 0 0;
  font-size: 17px;
  line-height: 1.75;
}

.company-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.company-facts article,
.leader-card,
.why-grid article,
.about-service-grid article {
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 35px rgba(7, 30, 70, 0.08);
}

.company-facts article {
  min-height: 148px;
  padding: 24px;
  border-top: 4px solid var(--gold);
}

.company-facts strong {
  display: block;
  color: var(--navy);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 38px;
  font-weight: 900;
}

.company-facts span {
  display: block;
  margin-top: 9px;
  color: var(--ink);
  line-height: 1.45;
}

.timeline-section,
.sectors-section,
.why-section {
  background: var(--paper);
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 40px;
}

.timeline article {
  position: relative;
  min-height: 210px;
  border-radius: var(--radius);
  background: var(--white);
  padding: 24px 20px;
  box-shadow: 0 12px 28px rgba(7, 30, 70, 0.08);
}

.timeline strong {
  display: inline-grid;
  place-items: center;
  min-width: 74px;
  height: 36px;
  border-radius: 999px;
  background: var(--navy);
  color: var(--gold);
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 900;
}

.timeline h3,
.leader-card h3 {
  margin: 18px 0 10px;
  color: var(--navy);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 19px;
  font-weight: 900;
}

.timeline p,
.leader-card p {
  margin: 0;
  line-height: 1.65;
}

.purpose-section {
  background: var(--navy);
}

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

.purpose-card {
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  padding: 34px;
  color: var(--white);
}

.purpose-card > svg {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold);
  padding: 14px;
  color: var(--navy);
}

.purpose-card p {
  margin: 22px 0 8px;
  color: var(--gold);
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
}

.purpose-card h2,
.future-card h2 {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 900;
  line-height: 1.15;
}

.purpose-card span {
  display: block;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
}

.expertise-photo {
  min-height: 430px;
  border-radius: var(--radius);
  background: url("https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&w=1200&q=85") center/cover;
  box-shadow: var(--shadow);
}

.check-list {
  display: grid;
  gap: 13px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 32px;
  line-height: 1.6;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 2px;
  display: grid;
  place-items: center;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
  content: "✓";
}

.about-service-grid,
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 38px;
}

.about-service-grid article {
  display: grid;
  gap: 16px;
  min-height: 145px;
  place-items: center;
  padding: 24px 18px;
  text-align: center;
}

.about-service-grid svg,
.leader-card svg,
.why-grid svg {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: var(--navy);
  padding: 12px;
  color: var(--gold);
}

.about-service-grid span {
  color: var(--navy);
  font-weight: 900;
  line-height: 1.35;
}

.team-about-grid {
  display: grid;
  grid-template-columns: 1fr repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

.leader-card {
  padding: 26px;
}

.leader-card strong {
  display: block;
  margin-bottom: 13px;
  color: var(--gold);
  line-height: 1.45;
}

.market-bars {
  display: grid;
  gap: 20px;
}

.market-bars div {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: #e9edf3;
  padding: 20px;
}

.market-bars span,
.market-bars strong {
  position: relative;
  z-index: 2;
  color: var(--navy);
  font-weight: 900;
}

.market-bars strong {
  float: right;
  font-family: "Montserrat", Arial, sans-serif;
}

.market-bars b {
  position: absolute;
  inset: 0 auto 0 0;
  background: linear-gradient(90deg, rgba(244, 176, 0, 0.9), rgba(244, 176, 0, 0.35));
}

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

.why-grid article {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 104px;
  padding: 20px;
  color: var(--navy);
  font-weight: 900;
  line-height: 1.45;
}

.why-grid svg {
  flex: 0 0 auto;
}

.future-section {
  background: var(--white);
}

.future-card {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 34px;
  align-items: start;
  border-radius: var(--radius);
  background: var(--navy);
  padding: 40px;
  color: var(--white);
  box-shadow: var(--shadow);
}

.future-card h2 {
  margin-top: 10px;
}

.future-card .check-list {
  margin-top: 0;
}

.future-card .check-list li {
  color: rgba(255, 255, 255, 0.86);
}

.services-page-hero {
  background:
    linear-gradient(90deg, rgba(7, 30, 70, 0.97), rgba(7, 30, 70, 0.8) 42%, rgba(7, 30, 70, 0.18)),
    url("https://images.unsplash.com/photo-1504917595217-d4dc5ebe6122?auto=format&fit=crop&w=1800&q=85") center/cover;
}

.services-intro-section {
  background: var(--white);
}

.services-intro-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 44px;
  align-items: end;
}

.services-intro-copy {
  border-left: 4px solid var(--gold);
  padding-left: 24px;
}

.services-intro-copy p {
  margin: 0;
  font-size: 17px;
  line-height: 1.75;
}

.service-toc {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
  margin-top: 38px;
}

.service-toc a {
  display: grid;
  gap: 14px;
  min-height: 150px;
  place-items: center;
  border-radius: var(--radius);
  background: var(--paper);
  padding: 18px 12px;
  text-align: center;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.service-toc a:hover {
  transform: translateY(-4px);
  background: var(--white);
  box-shadow: var(--shadow);
}

.service-toc svg {
  width: 54px;
  height: 54px;
  border-radius: var(--radius);
  background: var(--navy);
  padding: 14px;
  color: var(--gold);
}

.service-toc span {
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.35;
}

.service-detail {
  padding: 70px 0;
  background: var(--white);
}

.service-detail.alt {
  background: var(--paper);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 46px;
  align-items: center;
}

.service-detail-copy h2 {
  margin: 10px 0 18px;
  color: var(--navy);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(30px, 3.4vw, 48px);
  font-weight: 900;
  line-height: 1.12;
}

.service-detail-copy p:not(.gold-title) {
  margin: 0;
  font-size: 17px;
  line-height: 1.75;
}

.service-detail-media {
  min-height: 420px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background-position: center;
  background-size: cover;
}

.construction-media {
  background-image: url("https://images.unsplash.com/photo-1541888946425-d81bb19240f5?auto=format&fit=crop&w=1100&q=85");
}

.logistics-media {
  background-image: url("https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&w=1100&q=85");
}

.import-media {
  background-image: url("https://images.unsplash.com/photo-1494412685616-a5d310fbb07d?auto=format&fit=crop&w=1100&q=85");
}

.vehicle-media {
  background-image: url("https://images.unsplash.com/photo-1601584115197-04ecc0da31d7?auto=format&fit=crop&w=1100&q=85");
}

.rental-media {
  background-image: url("https://images.unsplash.com/photo-1572981779307-38b8cabb2407?auto=format&fit=crop&w=1100&q=85");
}

.event-media {
  background-image: url("https://images.unsplash.com/photo-1511795409834-ef04bbd61622?auto=format&fit=crop&w=1100&q=85");
}

.agro-media {
  background-image: url("https://images.unsplash.com/photo-1500382017468-9049fed747ef?auto=format&fit=crop&w=1100&q=85");
}

.service-method-section {
  background: var(--navy);
  color: var(--white);
}

.service-method-section .section-heading h2 {
  color: var(--white);
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 40px;
}

.method-grid article {
  min-height: 225px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  padding: 28px 22px;
}

.method-grid span {
  color: var(--gold);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 34px;
  font-weight: 900;
}

.method-grid h3,
.proof-card h3 {
  margin: 18px 0 10px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 21px;
  font-weight: 900;
}

.method-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
}

.services-proof-section {
  background: var(--white);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.proof-card {
  border-radius: var(--radius);
  background: var(--paper);
  padding: 30px;
  box-shadow: 0 14px 35px rgba(7, 30, 70, 0.06);
}

.proof-card svg {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  background: var(--navy);
  padding: 13px;
  color: var(--gold);
}

.proof-card h3 {
  color: var(--navy);
}

.proof-card p {
  margin: 0;
  line-height: 1.7;
}

.btp-subservice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 26px;
}

.btp-subservice-grid a {
  display: grid;
  gap: 10px;
  border: 1px solid #e2e7ef;
  border-radius: var(--radius);
  background: var(--white);
  padding: 18px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btp-subservice-grid a:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  box-shadow: var(--shadow);
}

.btp-subservice-grid svg {
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  background: var(--navy);
  padding: 10px;
  color: var(--gold);
}

.btp-subservice-grid strong {
  color: var(--navy);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 17px;
  font-weight: 900;
}

.btp-subservice-grid span {
  color: var(--ink);
  font-size: 14px;
  line-height: 1.55;
}

.subservice-page-hero {
  background:
    linear-gradient(90deg, rgba(7, 30, 70, 0.97), rgba(7, 30, 70, 0.78) 44%, rgba(7, 30, 70, 0.22)),
    var(--subservice-hero-image, url("https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&w=1800&q=85")) center/cover;
}

.subservice-overview {
  background: var(--white);
}

.subservice-layout {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 46px;
  align-items: start;
}

.subservice-copy > p {
  margin: 18px 0 0;
  font-size: 17px;
  line-height: 1.75;
}

.subservice-side-card {
  border-radius: var(--radius);
  background: var(--navy);
  padding: 30px;
  color: var(--white);
  box-shadow: var(--shadow);
}

.subservice-side-card h3 {
  margin: 0 0 18px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 24px;
  font-weight: 900;
}

.subservice-side-card .check-list li {
  color: rgba(255, 255, 255, 0.86);
}

.process-section {
  background: var(--paper);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 38px;
}

.process-grid article {
  min-height: 220px;
  border-radius: var(--radius);
  background: var(--white);
  padding: 26px 22px;
  box-shadow: 0 14px 35px rgba(7, 30, 70, 0.08);
}

.process-grid span {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: var(--radius);
  background: var(--gold);
  color: var(--navy);
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 900;
}

.process-grid h3 {
  margin: 18px 0 10px;
  color: var(--navy);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 20px;
  font-weight: 900;
}

.process-grid p {
  margin: 0;
  line-height: 1.65;
}

.deliverables-section {
  background: var(--white);
}

.deliverable-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}

.deliverable-grid article {
  border-radius: var(--radius);
  background: var(--paper);
  padding: 26px;
}

.deliverable-grid svg {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: var(--navy);
  padding: 12px;
  color: var(--gold);
}

.deliverable-grid h3 {
  margin: 18px 0 10px;
  color: var(--navy);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 20px;
  font-weight: 900;
}

.deliverable-grid p {
  margin: 0;
  line-height: 1.65;
}

.related-services-section {
  background: var(--navy);
  color: var(--white);
}

.related-services-section .section-heading h2 {
  color: var(--white);
}

.related-service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 34px;
}

.related-service-grid a {
  display: grid;
  gap: 12px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  padding: 22px;
  color: var(--white);
  transition: transform 0.2s ease, background 0.2s ease;
}

.related-service-grid a:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.14);
}

.related-service-grid svg {
  width: 42px;
  height: 42px;
  color: var(--gold);
}

.related-service-grid strong {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 17px;
  font-weight: 900;
}

.realisations-page-hero {
  background:
    linear-gradient(90deg, rgba(7, 30, 70, 0.97), rgba(7, 30, 70, 0.78) 44%, rgba(7, 30, 70, 0.18)),
    url("../images/Realisation/photo_1_2026-07-07_11-03-41.jpg") center/cover;
}

.portfolio-intro-section,
.portfolio-proof-section {
  background: var(--white);
}

.active-site-section {
  background: var(--white);
}

.active-site-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: 38px;
}

.active-site-points {
  display: grid;
  gap: 10px;
  margin: 22px 0 26px;
}

.active-site-points span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--navy);
  font-weight: 900;
}

.active-site-points svg {
  width: 18px;
  color: var(--gold);
}

.active-site-gallery {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
  min-height: 520px;
}

.active-site-gallery figure {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: var(--navy);
  margin: 0;
  box-shadow: 0 18px 45px rgba(7, 30, 70, 0.14);
}

.active-site-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.active-site-main {
  grid-row: span 2;
}

.active-site-main::after {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, rgba(7, 30, 70, 0), rgba(7, 30, 70, 0.86));
  content: "";
}

.active-site-main figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 1;
  color: #fff;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 20px;
  font-weight: 900;
}

.glasswork-section {
  background:
    linear-gradient(135deg, rgba(7, 30, 70, 0.98), rgba(7, 30, 70, 0.9)),
    #071e46;
  color: #fff;
}

.glasswork-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  align-items: center;
  gap: 38px;
}

.glasswork-gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: repeat(3, 150px);
  gap: 14px;
}

.glasswork-gallery figure {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  margin: 0;
}

.glasswork-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.glasswork-main {
  grid-row: span 3;
}

.glasswork-main::after {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, rgba(7, 30, 70, 0), rgba(7, 30, 70, 0.9));
  content: "";
}

.glasswork-main figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 1;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 20px;
  font-weight: 900;
}

.glasswork-copy {
  border-left: 4px solid var(--gold);
  padding-left: 28px;
}

.glasswork-copy h2 {
  margin: 8px 0 14px;
  color: #fff;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(30px, 3.2vw, 42px);
  font-weight: 900;
  line-height: 1.12;
}

.glasswork-copy p:not(.gold-title) {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.72;
}

.glasswork-specs {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.glasswork-specs span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #fff;
  font-weight: 900;
}

.glasswork-specs svg {
  width: 18px;
  color: var(--gold);
}

.premium-glass-card {
  border: 1px solid rgba(244, 176, 0, 0.22);
}

.portfolio-intro-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 44px;
  align-items: end;
}

.portfolio-intro-copy {
  border-left: 4px solid var(--gold);
  padding-left: 24px;
}

.portfolio-intro-copy p {
  margin: 0;
  font-size: 17px;
  line-height: 1.75;
}

.portfolio-section,
.portfolio-process-section {
  background: var(--paper);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.portfolio-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 35px rgba(7, 30, 70, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.portfolio-card[hidden] {
  display: none;
}

.portfolio-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.portfolio-card div {
  padding: 24px;
}

.portfolio-card small {
  display: inline-flex;
  border-radius: 999px;
  background: rgba(244, 176, 0, 0.16);
  padding: 7px 11px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.portfolio-card h3 {
  margin: 16px 0 10px;
  color: var(--navy);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.2;
}

.portfolio-card p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--ink);
  font-weight: 700;
}

.portfolio-card p svg {
  width: 17px;
  color: var(--gold);
}

.portfolio-card span {
  display: block;
  color: var(--ink);
  line-height: 1.65;
}

.team-page-hero {
  background:
    linear-gradient(90deg, rgba(7, 30, 70, 0.97), rgba(7, 30, 70, 0.78) 44%, rgba(7, 30, 70, 0.18)),
    url("https://images.unsplash.com/photo-1521737711867-e3b97375f902?auto=format&fit=crop&w=1800&q=85") center/cover;
}

.team-leadership-section,
.team-values-section {
  background: var(--white);
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  margin-top: 42px;
}

.profile-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.profile-photo {
  min-height: 280px;
  background-position: center;
  background-size: cover;
}

.profile-mahafous {
  background-image:
    linear-gradient(rgba(7, 30, 70, 0.1), rgba(7, 30, 70, 0.16)),
    url("https://images.unsplash.com/photo-1504917595217-d4dc5ebe6122?auto=format&fit=crop&w=1000&q=85");
}

.profile-naminata {
  background-image:
    linear-gradient(rgba(7, 30, 70, 0.08), rgba(7, 30, 70, 0.15)),
    url("https://images.unsplash.com/photo-1573496359142-b8d87734a5a2?auto=format&fit=crop&w=1000&q=85");
}

.profile-content {
  padding: 30px;
}

.profile-content small {
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
}

.profile-content h3 {
  margin: 10px 0 8px;
  color: var(--navy);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 28px;
  font-weight: 900;
}

.profile-content strong {
  display: block;
  color: var(--ink);
  line-height: 1.45;
}

.profile-content p {
  margin: 18px 0 0;
  line-height: 1.7;
}

.team-structure-section,
.team-method-section {
  background: var(--paper);
}

.team-structure-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: start;
}

.team-structure-copy {
  border-left: 4px solid var(--gold);
  padding-left: 24px;
}

.team-structure-copy p {
  margin: 0 0 18px;
  font-size: 17px;
  line-height: 1.75;
}

.team-structure-copy p:last-child {
  margin-bottom: 0;
}

.skills-section {
  background: var(--white);
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.skills-grid article {
  border-radius: var(--radius);
  background: var(--paper);
  padding: 26px;
  box-shadow: 0 14px 35px rgba(7, 30, 70, 0.06);
}

.skills-grid svg {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  background: var(--navy);
  padding: 13px;
  color: var(--gold);
}

.skills-grid h3 {
  margin: 18px 0 10px;
  color: var(--navy);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 21px;
  font-weight: 900;
}

.skills-grid p {
  margin: 0;
  line-height: 1.65;
}

.quote-hero {
  padding: 185px 0 86px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(7, 30, 70, 0.98), rgba(7, 30, 70, 0.86) 48%, rgba(7, 30, 70, 0.35)),
    url("https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&w=1800&q=85") center/cover;
  color: var(--white);
}

.quote-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 42px;
  align-items: center;
}

.quote-hero-copy h1 {
  margin: 10px 0 18px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(42px, 5vw, 70px);
  font-weight: 900;
  line-height: 1.04;
}

.quote-hero-copy p:not(.gold-title) {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  line-height: 1.65;
}

.quote-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.quote-hero-points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  padding: 11px 14px;
  font-weight: 800;
}

.quote-hero-points svg {
  width: 18px;
  color: var(--gold);
}

.quote-premium-card {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  padding: 34px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.quote-premium-card > span {
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 0.04em;
}

.quote-premium-card h2 {
  margin: 10px 0;
  font-family: "Caveat", cursive;
  font-size: 44px;
}

.quote-premium-card p {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
}

.quote-premium-card div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 14px;
  align-items: center;
}

.quote-premium-card strong {
  color: var(--gold);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 32px;
  font-weight: 900;
}

.quote-premium-card small {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.quote-trust-band {
  position: relative;
  z-index: 2;
  margin-top: -36px;
}

.quote-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.quote-trust-grid article {
  border: 1px solid #e8edf4;
  border-radius: var(--radius);
  background: var(--white);
  padding: 24px;
  box-shadow: var(--shadow);
}

.quote-trust-grid svg {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: var(--navy);
  padding: 12px;
  color: var(--gold);
}

.quote-trust-grid h3 {
  margin: 16px 0 8px;
  color: var(--navy);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 20px;
  font-weight: 900;
}

.quote-trust-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.quote-section,
.quote-process-section,
.quote-faq-section {
  background: var(--paper);
}

.quote-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: start;
}

.quote-form,
.quote-sidebar-card {
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.quote-form {
  display: grid;
  gap: 22px;
  padding: 34px;
}

.quote-form-head h2 {
  margin: 8px 0 8px;
  color: var(--navy);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(30px, 3.4vw, 46px);
  font-weight: 900;
  line-height: 1.12;
}

.quote-form-head span,
.quote-note {
  color: var(--muted);
  line-height: 1.55;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.form-grid-three {
  grid-template-columns: repeat(3, 1fr);
}

.quote-form label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-weight: 900;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid #dce3ed;
  border-radius: var(--radius);
  background: #fff;
  padding: 14px 15px;
  color: var(--ink);
  font: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.quote-form textarea {
  resize: vertical;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(244, 176, 0, 0.16);
}

.quote-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.quote-note {
  margin: 0;
  font-size: 14px;
}

.quote-sidebar {
  display: grid;
  gap: 20px;
}

.quote-sidebar-card {
  padding: 28px;
}

.quote-sidebar-card.dark {
  background: var(--navy);
  color: var(--white);
}

.quote-sidebar-card > svg {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  background: var(--gold);
  padding: 13px;
  color: var(--navy);
}

.quote-sidebar-card h3 {
  margin: 18px 0 14px;
  color: var(--navy);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 22px;
  font-weight: 900;
}

.quote-sidebar-card.dark h3 {
  color: var(--white);
}

.quote-sidebar-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
  line-height: 1.6;
}

.quote-sidebar-card a {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.quote-sidebar-card:not(.dark) a {
  color: var(--navy);
}

.quote-service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.quote-service-tags span {
  border-radius: 999px;
  background: rgba(244, 176, 0, 0.13);
  padding: 9px 11px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
}

.quote-faq-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 34px;
  align-items: start;
}

.quote-faq-list {
  display: grid;
  gap: 14px;
}

.quote-faq-list details {
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  background: var(--white);
  padding: 20px 22px;
  box-shadow: 0 12px 32px rgba(7, 30, 70, 0.06);
}

.quote-faq-list summary {
  cursor: pointer;
  color: var(--navy);
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 900;
}

.quote-faq-list p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.contact-hero {
  padding: 185px 0 92px;
  background:
    linear-gradient(90deg, rgba(7, 30, 70, 0.98), rgba(7, 30, 70, 0.84) 52%, rgba(7, 30, 70, 0.42)),
    url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1800&q=85") center/cover;
  color: var(--white);
}

.contact-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 42px;
  align-items: center;
}

.contact-hero-copy h1 {
  margin: 10px 0 18px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 900;
  line-height: 1.04;
}

.contact-hero-copy p:not(.gold-title) {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  line-height: 1.65;
}

.contact-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.contact-command-card {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  padding: 34px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.contact-command-card > span {
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
}

.contact-command-card h2 {
  margin: 12px 0 8px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 34px;
  font-weight: 900;
}

.contact-command-card p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-command-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.contact-command-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  padding: 14px;
  color: var(--white);
  font-weight: 800;
}

.contact-command-list svg {
  width: 19px;
  color: var(--gold);
}

.contact-methods {
  margin-top: -34px;
  position: relative;
  z-index: 3;
}

.contact-method-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.contact-method-grid article {
  border: 1px solid #e8edf4;
  border-radius: var(--radius);
  background: var(--white);
  padding: 24px;
  box-shadow: var(--shadow);
}

.contact-method-grid svg,
.contact-side-card > svg {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: var(--navy);
  padding: 12px;
  color: var(--gold);
}

.contact-method-grid h3,
.contact-side-card h3,
.contact-map-card h3,
.contact-premium-grid h3 {
  margin: 16px 0 8px;
  color: var(--navy);
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 900;
}

.contact-method-grid p,
.contact-method-grid span,
.contact-side-card p,
.contact-side-card span,
.contact-map-card p,
.contact-premium-grid p {
  color: var(--muted);
  line-height: 1.6;
}

.contact-method-grid a {
  display: block;
  margin-top: 8px;
  color: var(--navy);
  font-weight: 900;
}

.contact-page-section,
.contact-premium-section {
  background: var(--paper);
}

.contact-page-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: start;
}

.contact-form,
.contact-side-card,
.contact-map-card,
.contact-premium-grid article {
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-form {
  display: grid;
  gap: 22px;
  padding: 34px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #dce3ed;
  border-radius: var(--radius);
  background: #fff;
  padding: 14px 15px;
  color: var(--ink);
  font: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(244, 176, 0, 0.16);
}

.contact-side {
  display: grid;
  gap: 20px;
}

.contact-side-card {
  padding: 28px;
}

.contact-side-card.dark {
  background: var(--navy);
  color: var(--white);
}

.contact-side-card.dark h3,
.contact-side-card.dark p {
  color: var(--white);
}

.contact-side-card .btn {
  margin-top: 16px;
}

.contact-side-card strong {
  display: block;
  margin: 8px 0 10px;
  color: var(--navy);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 25px;
}

.contact-map-card {
  min-height: 260px;
  display: flex;
  align-items: flex-end;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(7, 30, 70, 0.05), rgba(7, 30, 70, 0.9)),
    url("https://images.unsplash.com/photo-1524661135-423995f22d0b?auto=format&fit=crop&w=1000&q=85") center/cover;
  color: var(--white);
}

.contact-map-card svg {
  width: 46px;
  height: 46px;
  border-radius: var(--radius);
  background: var(--gold);
  padding: 11px;
  color: var(--navy);
}

.contact-map-card h3,
.contact-map-card p {
  color: var(--white);
}

.contact-premium-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.contact-premium-grid article {
  padding: 28px;
}

.contact-premium-grid span {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 900;
}

.tracking-hero {
  padding: 185px 0 92px;
  background:
    linear-gradient(90deg, rgba(7, 30, 70, 0.98), rgba(7, 30, 70, 0.84) 54%, rgba(7, 30, 70, 0.45)),
    url("https://images.unsplash.com/photo-1494412519320-aa613dfb7738?auto=format&fit=crop&w=1800&q=85") center/cover;
  color: var(--white);
}

.tracking-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 42px;
  align-items: center;
}

.tracking-hero h1 {
  margin: 10px 0 18px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(42px, 5vw, 70px);
  font-weight: 900;
  line-height: 1.04;
}

.tracking-hero-copy p:not(.gold-title) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  line-height: 1.65;
}

.tracking-search {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  max-width: 760px;
  margin-top: 28px;
  border-radius: var(--radius);
  background: var(--white);
  padding: 10px;
  box-shadow: var(--shadow);
}

.tracking-search svg {
  margin-left: 8px;
  color: var(--gold);
}

.tracking-search input {
  min-width: 0;
  border: 0;
  color: var(--navy);
  font: inherit;
  font-weight: 800;
  outline: 0;
}

.tracking-live-card {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  padding: 34px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.live-dot {
  display: inline-block;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #26d07c;
  box-shadow: 0 0 0 8px rgba(38, 208, 124, 0.14);
}

.tracking-live-card strong {
  display: block;
  margin-top: 20px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 36px;
  font-weight: 900;
}

.tracking-live-card p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
}

.tracking-live-card small {
  color: var(--gold);
  font-weight: 900;
}

.tracking-section,
.admin-body {
  background: var(--paper);
}

.tracking-empty,
.tracking-summary,
.tracking-side,
.tracking-timeline,
.admin-panel,
.admin-stats article,
.admin-auth-card {
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.tracking-empty {
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: 56px 26px;
  text-align: center;
}

.tracking-empty svg {
  width: 62px;
  height: 62px;
  border-radius: var(--radius);
  background: var(--navy);
  padding: 16px;
  color: var(--gold);
}

.tracking-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 30px;
}

.tracking-summary h2,
.admin-topbar h1,
.admin-panel h2,
.admin-auth-card h1 {
  margin: 7px 0 12px;
  color: var(--navy);
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 900;
}

.tracking-badge {
  display: inline-flex;
  border-radius: 999px;
  background: rgba(244, 176, 0, 0.15);
  padding: 9px 12px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
}

.tracking-badge.success {
  background: rgba(38, 208, 124, 0.14);
  color: #096b3d;
}

.tracking-badge.warning {
  background: rgba(220, 38, 38, 0.11);
  color: #991b1b;
}

.tracking-progress {
  width: min(320px, 100%);
}

.tracking-progress strong {
  color: var(--gold);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 34px;
  font-weight: 900;
}

.tracking-progress div {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: #e6ecf4;
}

.tracking-progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--gold);
  transition: width 0.35s ease;
}

.tracking-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 24px 0;
}

.tracking-info-grid article {
  border: 1px solid #e6ecf4;
  border-radius: var(--radius);
  background: var(--white);
  padding: 22px;
}

.tracking-info-grid svg {
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  background: var(--navy);
  padding: 10px;
  color: var(--gold);
}

.tracking-info-grid span,
.tracking-side dt,
.admin-panel-head p,
.admin-stats span {
  display: block;
  margin: 12px 0 6px;
  color: var(--muted);
  font-weight: 800;
}

.tracking-info-grid strong,
.tracking-side dd {
  color: var(--navy);
  font-weight: 900;
}

.tracking-body-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: start;
}

.tracking-timeline,
.tracking-side {
  padding: 30px;
}

.timeline-list {
  display: grid;
  gap: 18px;
}

.timeline-list article {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 14px;
}

.timeline-list article > span {
  width: 14px;
  height: 14px;
  margin-top: 5px;
  border: 3px solid var(--gold);
  border-radius: 50%;
  background: var(--navy);
}

.timeline-list strong {
  color: var(--navy);
  font-family: "Montserrat", Arial, sans-serif;
}

.timeline-list small,
.timeline-list p,
.tracking-side p {
  color: var(--muted);
  line-height: 1.6;
}

.tracking-side dl {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 8px 14px;
}

.tracking-side dd {
  margin: 12px 0 6px;
}

.admin-body {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 280px 1fr;
}

.admin-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 28px;
  background: var(--navy);
  padding: 28px;
  color: var(--white);
}

.admin-sidebar nav {
  display: grid;
  gap: 10px;
}

.admin-sidebar nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: var(--radius);
  padding: 13px 14px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 900;
}

.admin-sidebar nav a.active,
.admin-sidebar nav a:hover {
  background: rgba(244, 176, 0, 0.16);
  color: var(--white);
}

.admin-sidebar svg {
  width: 18px;
  color: var(--gold);
}

.admin-user {
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding-top: 18px;
}

.admin-user span {
  color: var(--gold);
  font-weight: 900;
}

.admin-user strong {
  display: block;
  margin-top: 6px;
}

.admin-main {
  padding: 28px;
}

.admin-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 22px;
}

.admin-stats article {
  position: relative;
  overflow: hidden;
  padding: 24px;
}

.admin-stats strong {
  display: block;
  color: var(--navy);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 38px;
  font-weight: 900;
}

.admin-stats svg {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 58px;
  height: 58px;
  color: rgba(244, 176, 0, 0.28);
}

.admin-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  gap: 22px;
  align-items: start;
}

.admin-panel {
  padding: 26px;
}

.admin-panel-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.admin-form {
  display: grid;
  gap: 18px;
}

.admin-form label,
.admin-login-form label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-weight: 900;
}

.admin-form input,
.admin-form select,
.admin-form textarea,
.admin-login-form input {
  width: 100%;
  border: 1px solid #dce3ed;
  border-radius: var(--radius);
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
  outline: none;
}

.admin-event-box {
  border: 1px dashed #d5deea;
  border-radius: var(--radius);
  background: #f9fbfe;
  padding: 18px;
}

.admin-event-box h3 {
  margin: 0 0 14px;
  color: var(--navy);
}

.admin-table-wrap {
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table th,
.admin-table td {
  border-bottom: 1px solid #e8edf4;
  padding: 14px 10px;
  text-align: left;
  vertical-align: middle;
}

.admin-table th {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.admin-table small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
}

.admin-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.admin-actions a,
.admin-actions button {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 9px;
  background: var(--paper);
  color: var(--navy);
  cursor: pointer;
}

.admin-alert {
  border-radius: var(--radius);
  background: rgba(220, 38, 38, 0.1);
  margin-bottom: 18px;
  padding: 14px 16px;
  color: #991b1b;
  font-weight: 900;
}

.admin-alert.success {
  background: rgba(38, 208, 124, 0.14);
  color: #096b3d;
}

.admin-pdf-ready {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid rgba(244, 176, 0, 0.35);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(7, 30, 70, 0.98), rgba(7, 30, 70, 0.88)),
    url("https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&w=1200&q=80") center/cover;
  margin-bottom: 18px;
  padding: 18px;
  color: var(--white);
  box-shadow: var(--shadow);
}

.admin-pdf-ready > div:first-child {
  display: flex;
  align-items: center;
  gap: 14px;
}

.admin-pdf-ready > div:first-child > svg {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  background: var(--gold);
  padding: 13px;
  color: var(--navy);
}

.admin-pdf-ready strong,
.admin-pdf-ready span {
  display: block;
}

.admin-pdf-ready strong {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 20px;
  font-weight: 900;
}

.admin-pdf-ready span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.admin-pdf-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-pdf-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  padding: 0 14px;
  color: var(--white);
  font-weight: 900;
}

.admin-pdf-actions a:first-child {
  background: var(--gold);
  color: var(--navy);
}

.admin-pdf-actions svg {
  width: 17px;
}

.crm-panel {
  margin-bottom: 22px;
}

.crm-mini-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.crm-mini-stats span {
  border: 1px solid #e5ebf3;
  border-radius: var(--radius);
  background: #fff;
  padding: 10px 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.crm-mini-stats strong {
  color: var(--navy);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 18px;
}

.crm-empty {
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px dashed #d5deea;
  border-radius: var(--radius);
  background: #f9fbfe;
  padding: 18px;
}

.crm-empty svg {
  width: 46px;
  height: 46px;
  border-radius: var(--radius);
  background: var(--navy);
  padding: 12px;
  color: var(--gold);
}

.crm-empty strong,
.crm-empty span {
  display: block;
}

.crm-empty strong {
  color: var(--navy);
  font-weight: 900;
}

.crm-empty span {
  margin-top: 4px;
  color: var(--muted);
  font-weight: 700;
}

.lead-score {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  min-height: 34px;
  border-radius: 999px;
  background: rgba(7, 30, 70, 0.08);
  color: var(--navy);
  font-weight: 900;
}

.lead-score.hot {
  background: rgba(244, 176, 0, 0.18);
  color: #8a5d00;
}

.lead-control-form {
  display: grid;
  gap: 8px;
  min-width: 260px;
}

.lead-control-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.lead-control-form select,
.lead-control-form textarea {
  width: 100%;
  border: 1px solid #dce3ed;
  border-radius: var(--radius);
  background: #fff;
  padding: 10px 11px;
  color: var(--ink);
  font: inherit;
  outline: none;
}

.lead-control-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: fit-content;
  border-radius: var(--radius);
  background: var(--navy);
  padding: 10px 13px;
  color: #fff;
  font-weight: 900;
}

.lead-control-form button svg {
  width: 15px;
}

.admin-users-grid {
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  margin-bottom: 22px;
}

.roles-panel {
  margin-bottom: 22px;
}

.role-power-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.role-power-grid article {
  display: grid;
  gap: 8px;
  border: 1px solid #e8edf4;
  border-radius: 12px;
  background: #f8fafc;
  padding: 14px;
}

.role-power-grid strong {
  color: var(--navy);
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 900;
}

.role-power-grid span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
}

.role-power-grid small {
  color: var(--gold);
  font-weight: 900;
  line-height: 1.5;
}

.users-panel {
  position: relative;
  overflow: hidden;
  margin-bottom: 22px;
  border: 1px solid rgba(7, 30, 70, 0.08);
  background:
    linear-gradient(135deg, rgba(7, 30, 70, 0.04), rgba(244, 176, 0, 0.06) 42%, rgba(255, 255, 255, 0.96) 78%),
    #fff;
}

.users-directory-head {
  align-items: flex-start;
  border-bottom: 1px solid #e8edf4;
  margin: -2px -2px 22px;
  padding-bottom: 18px;
}

.users-directory-head span:not(.tracking-badge) {
  display: block;
  max-width: 720px;
  margin-top: 6px;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.6;
}

.user-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.user-admin-card {
  position: relative;
  display: grid;
  gap: 18px;
  overflow: hidden;
  border: 1px solid #e4eaf3;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
  padding: 20px;
  box-shadow: 0 18px 42px rgba(7, 30, 70, 0.09);
}

.user-admin-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--navy);
}

.user-admin-card.needs-restore {
  border-color: rgba(244, 176, 0, 0.72);
  background: linear-gradient(180deg, rgba(244, 176, 0, 0.12), rgba(255, 255, 255, 0.98) 36%);
}

.user-admin-card.needs-restore::before {
  background: var(--gold);
}

.user-admin-card.recovery-only {
  background: linear-gradient(180deg, rgba(7, 30, 70, 0.04), rgba(244, 176, 0, 0.1));
}

.user-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding-left: 4px;
}

.user-identity > span,
.user-audit-list span,
.restore-access-box > div > span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.user-card-head h3 {
  margin: 6px 0 4px;
  color: var(--navy);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.18;
}

.user-card-head p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.user-status-stack {
  display: grid;
  justify-items: end;
  gap: 8px;
  flex: 0 0 auto;
}

.user-status-stack > svg {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--navy);
  padding: 12px;
  color: var(--gold);
}

.user-admin-card.needs-restore .user-status-stack > svg {
  background: var(--gold);
  color: var(--navy);
}

.user-state-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 900;
  white-space: nowrap;
}

.user-state-badge.success {
  background: rgba(38, 208, 124, 0.13);
  color: #096b3d;
}

.user-state-badge.warning {
  background: rgba(244, 176, 0, 0.22);
  color: var(--navy);
}

.user-audit-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.user-audit-list div {
  min-height: 94px;
  border: 1px solid #e8edf4;
  border-radius: 12px;
  background: #f8fafc;
  padding: 12px;
}

.user-audit-list strong,
.user-audit-list small {
  display: block;
}

.user-audit-list strong {
  margin-top: 6px;
  color: var(--navy);
  font-weight: 900;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.user-audit-list small {
  margin-top: 4px;
  color: var(--muted);
  font-weight: 700;
}

.user-card-actions,
.restore-access-box {
  border: 1px solid #e8edf4;
  border-radius: 12px;
  background: #fff;
  padding: 14px;
}

.user-card-actions h4 {
  margin: 0 0 12px;
  color: var(--navy);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 15px;
  font-weight: 900;
}

.account-inline-form {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.account-edit-form {
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  align-items: end;
}

.account-inline-form label {
  display: grid;
  gap: 7px;
  min-width: 0;
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
}

.account-inline-form input,
.account-inline-form select {
  width: 100%;
  min-width: 0;
  border: 1px solid #dce3ed;
  border-radius: 10px;
  background: #fff;
  padding: 11px 12px;
  color: var(--ink);
  font: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.account-inline-form input:focus,
.account-inline-form select:focus {
  border-color: rgba(244, 176, 0, 0.75);
  box-shadow: 0 0 0 4px rgba(244, 176, 0, 0.14);
}

.account-inline-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 43px;
  width: fit-content;
  border-radius: 10px;
  background: var(--navy);
  padding: 11px 14px;
  color: #fff;
  font-weight: 900;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(7, 30, 70, 0.16);
}

.account-locked-note {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 43px;
  border-radius: 10px;
  background: #f1f5f9;
  padding: 11px 14px;
  color: var(--muted);
  font-weight: 900;
  white-space: nowrap;
}

.account-locked-note svg {
  width: 15px;
  color: var(--gold);
}

.restore-access-box {
  display: grid;
  gap: 12px;
  background: linear-gradient(135deg, rgba(7, 30, 70, 0.98), rgba(7, 30, 70, 0.9));
  color: #fff;
}

.restore-access-box strong {
  display: block;
  margin-top: 4px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  font-weight: 900;
}

.restore-access-box .account-inline-form {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
}

.restore-access-box label,
.restore-access-box > div > span {
  color: rgba(255, 255, 255, 0.78);
}

.restore-form input {
  border-color: rgba(255, 255, 255, 0.18);
}

.restore-form button {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 12px 26px rgba(244, 176, 0, 0.18);
}

.account-inline-form svg {
  width: 15px;
}

.restore-locked {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(244, 176, 0, 0.28);
  border-radius: 12px;
  background: rgba(244, 176, 0, 0.1);
  padding: 13px;
  color: var(--navy);
  font-weight: 800;
}

.restore-locked svg {
  width: 18px;
  color: var(--gold);
  flex: 0 0 auto;
}

.recovery-only-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border: 1px solid rgba(244, 176, 0, 0.34);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.82);
  padding: 14px;
}

.recovery-only-note > svg {
  width: 22px;
  color: var(--gold);
  flex: 0 0 auto;
}

.recovery-only-note strong,
.recovery-only-note span {
  display: block;
}

.recovery-only-note strong {
  color: var(--navy);
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 900;
}

.recovery-only-note span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.55;
}

.delete-user-form,
.delete-user-note {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  border-top: 1px solid #e8edf4;
  padding-top: 2px;
}

.delete-user-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(220, 38, 38, 0.2);
  border-radius: 10px;
  background: rgba(220, 38, 38, 0.08);
  padding: 11px 14px;
  color: #991b1b;
  font-weight: 900;
  transition: background 0.2s ease, transform 0.2s ease;
}

.delete-user-form button:hover {
  background: rgba(220, 38, 38, 0.14);
  transform: translateY(-1px);
}

.delete-user-form svg,
.delete-user-note svg {
  width: 16px;
  flex: 0 0 auto;
}

.delete-user-note {
  justify-content: flex-start;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.delete-user-note svg {
  color: var(--gold);
}

.forgot-password-box {
  border-top: 1px solid #e8edf4;
  margin-top: 18px;
  padding-top: 16px;
}

.forgot-password-box summary {
  color: var(--navy);
  cursor: pointer;
  font-weight: 900;
}

.forgot-password-box .admin-login-form {
  margin-top: 14px;
}

.form-feedback {
  margin: 12px 0 0;
  border-radius: var(--radius);
  padding: 12px 14px;
  font-weight: 800;
}

.form-feedback.is-loading {
  background: rgba(7, 30, 70, 0.08);
  color: var(--navy);
}

.form-feedback.is-success {
  background: rgba(38, 208, 124, 0.14);
  color: #096b3d;
}

.form-feedback.is-error {
  background: rgba(220, 38, 38, 0.1);
  color: #991b1b;
}

.admin-auth-body {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background:
    linear-gradient(90deg, rgba(7, 30, 70, 0.96), rgba(7, 30, 70, 0.75)),
    url("https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&w=1800&q=85") center/cover;
  padding: 24px;
}

.admin-auth-card {
  width: min(100%, 480px);
  padding: 34px;
}

.admin-login-form {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.admin-back-link {
  display: inline-block;
  margin-top: 18px;
  color: var(--navy);
  font-weight: 900;
}

.home-tracking-section {
  background:
    linear-gradient(90deg, rgba(7, 30, 70, 0.98), rgba(7, 30, 70, 0.86)),
    url("https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&w=1800&q=85") center/cover;
  color: var(--white);
}

.home-tracking-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 34px;
  align-items: center;
}

.home-tracking-copy h2 {
  margin: 10px 0 18px;
  max-width: 760px;
  color: var(--white);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 900;
  line-height: 1.08;
}

.home-tracking-copy p:not(.gold-title) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.7;
}

.home-tracking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.home-tracking-section .btn-outline-dark {
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--white);
}

.home-tracking-card {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.tracking-card-head,
.tracking-mini-status {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tracking-card-head strong {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 22px;
  font-weight: 900;
}

.tracking-mini-route {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  margin: 28px 0;
}

.tracking-mini-route span {
  color: var(--white);
  font-weight: 900;
}

.tracking-mini-route b {
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold) 72%, rgba(255, 255, 255, 0.22) 72%);
}

.tracking-mini-status {
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  padding: 16px;
}

.tracking-mini-status svg {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: var(--gold);
  padding: 10px;
  color: var(--navy);
}

.tracking-mini-status strong,
.tracking-mini-status small {
  display: block;
}

.tracking-mini-status small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.footer-admin-link {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  color: var(--gold) !important;
  font-weight: 900;
}

.footer-admin-link svg {
  width: 17px;
}

.home-access-section {
  background: var(--white);
  padding-top: 38px;
}

.home-access-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.home-access-card,
.home-focus-card,
.home-flow-grid article {
  border: 1px solid #e6ecf4;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.home-access-card {
  display: grid;
  gap: 10px;
  padding: 24px;
  color: var(--navy);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.home-access-card:hover {
  border-color: rgba(244, 176, 0, 0.65);
  transform: translateY(-4px);
}

.home-access-card.featured {
  background: var(--navy);
  color: var(--white);
}

.home-access-card svg,
.home-focus-card svg {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: var(--navy);
  padding: 12px;
  color: var(--gold);
}

.home-access-card.featured svg {
  background: var(--gold);
  color: var(--navy);
}

.home-access-card span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.home-access-card strong {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 20px;
  font-weight: 900;
}

.home-access-card p,
.home-focus-card p,
.home-flow-grid p,
.home-cta-band span {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.home-access-card.featured p {
  color: rgba(255, 255, 255, 0.74);
}

.home-focus-section,
.home-flow-section {
  background: var(--paper);
}

.home-focus-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 34px;
  align-items: start;
}

.home-focus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.home-focus-card {
  padding: 26px;
}

.home-focus-card h3,
.home-flow-grid h3 {
  margin: 18px 0 10px;
  color: var(--navy);
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 900;
}

.home-focus-card a {
  display: inline-flex;
  margin-top: 16px;
  color: var(--navy);
  font-weight: 900;
}

.home-flow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 28px;
}

.home-flow-grid article {
  padding: 28px;
}

.home-flow-grid span {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 900;
}

.home-cta-band {
  background: var(--gold);
  padding: 38px 0;
}

.home-cta-band h2 {
  margin: 6px 0 8px;
  color: var(--navy);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 900;
}
