:root {
  --blue: #002f7d;
  --orange: #ff8200;
  --cyan: #0b8bcf;
  --navy: #001c4a;
  --ink: #111827;
  --muted: #5b6472;
  --line: #d9e2ec;
  --soft: #f3f7fb;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

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

img {
  max-width: 100%;
}

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

.narrow {
  width: min(850px, calc(100% - 40px));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 82px;
  padding: 14px 36px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand {
  display: flex;
  align-items: center;
  min-width: 240px;
}

.brand img {
  display: block;
  width: 240px;
  max-width: 100%;
  height: auto;
}

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

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  color: var(--navy);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  position: relative;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: currentColor;
}

.menu-toggle span::before {
  top: -6px;
}

.menu-toggle span::after {
  top: 6px;
}

.main-nav a {
  position: relative;
  padding: 8px 0;
  color: var(--navy);
  font-weight: 700;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--orange);
}

.main-nav a.active::after,
.main-nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--orange);
}

.header-cta {
  padding: 11px 16px;
  color: var(--white);
  font-weight: 800;
  background: var(--orange);
  border-radius: 8px;
}

.hero {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.hero-slider,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slider {
  overflow: hidden;
}

.hero-slide {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
  background-size: cover;
  background-position: center;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 28, 74, 0.94), rgba(0, 47, 125, 0.76), rgba(0, 28, 74, 0.46)),
    linear-gradient(180deg, rgba(0, 28, 74, 0.08), rgba(0, 28, 74, 0.44));
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.62fr);
  gap: 40px;
  align-items: center;
  min-height: 680px;
  padding: 92px 0;
}

.hero-slider-controls {
  position: absolute;
  right: 32px;
  bottom: 24px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
}

.slider-btn,
.slider-dots .dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 999px;
}

.slider-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.slider-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.slider-dots .dot.active {
  background: var(--orange);
  border-color: var(--orange);
}

.hero-copy h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(2.9rem, 6vw, 5.7rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.lead {
  max-width: 660px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  font-weight: 800;
  border: 2px solid transparent;
  border-radius: 8px;
  cursor: pointer;
}

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

.btn-secondary {
  color: var(--blue);
  background: var(--white);
  border-color: var(--line);
}

.quote-panel,
.list-panel,
.contact-form,
.contact-info {
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(0, 28, 74, 0.12);
}

.quote-panel {
  color: var(--ink);
}

.quote-panel span {
  color: var(--cyan);
  font-weight: 800;
  text-transform: uppercase;
}

.quote-panel h2 {
  margin: 12px 0 18px;
  color: var(--blue);
  font-size: 1.65rem;
  line-height: 1.2;
}

.quote-panel ul,
.list-panel ul {
  margin: 0;
  padding-left: 20px;
}

.section {
  padding: 86px 0;
}

.split,
.two-col,
.contact-grid,
.industries {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: start;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h2 {
  margin: 0;
  color: var(--blue);
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin: 16px 0 10px;
  color: var(--navy);
  font-size: 1.22rem;
  line-height: 1.25;
}

.split > p,
.text-stack p,
.two-col p,
.contact-info p {
  margin-top: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.about-image-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 48px;
  align-items: center;
}

.about-photo {
  position: relative;
}

.about-photo img {
  display: block;
  width: 100%;
  min-height: 460px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
  box-shadow: 0 18px 50px rgba(0, 28, 74, 0.14);
}

.experience-badge {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: min(250px, calc(100% - 44px));
  padding: 20px;
  color: var(--white);
  background: var(--blue);
  border-left: 6px solid var(--orange);
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(0, 28, 74, 0.22);
}

.experience-badge strong,
.experience-badge span {
  display: block;
}

.experience-badge strong {
  font-size: 1.35rem;
  line-height: 1.1;
}

.experience-badge span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.about-content p {
  color: var(--muted);
  font-size: 1.04rem;
}

.about-points {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.about-points span {
  padding: 13px 15px;
  color: var(--navy);
  font-weight: 800;
  background: var(--soft);
  border-left: 5px solid var(--orange);
  border-radius: 8px;
}

.home-about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 48px;
  align-items: center;
}

.home-about-content p {
  color: var(--muted);
  font-size: 1.04rem;
}

.home-about-photo img {
  display: block;
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
  box-shadow: 0 18px 50px rgba(0, 28, 74, 0.14);
}

.service-grid,
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 36px;
}

.service-grid.large {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 0;
}

.service-grid article,
.values-grid article {
  min-height: 260px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-grid p,
.values-grid p {
  color: var(--muted);
  margin-bottom: 0;
}

.icon {
  display: inline-grid;
  place-items: center;
  min-width: 48px;
  height: 48px;
  padding: 0 8px;
  color: var(--white);
  font-weight: 800;
  background: var(--cyan);
  border-radius: 8px;
}

.band {
  background: var(--soft);
}

.section-head {
  max-width: 780px;
  margin-bottom: 32px;
}

.check-grid,
.risk-grid,
.tag-cloud {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.check-grid span,
.risk-grid span,
.tag-cloud span {
  display: flex;
  align-items: center;
  min-height: 64px;
  padding: 14px 16px;
  color: var(--navy);
  font-weight: 800;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 5px solid var(--orange);
  border-radius: 8px;
}

.risk-grid span {
  min-height: 84px;
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
}

.cta-section {
  padding-top: 0;
}

.cta-box {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding: 36px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--navy));
  border-radius: 8px;
}

.cta-box h2 {
  color: var(--white);
}

.page-hero {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  display: flex;
  align-items: center;
  padding: 92px 0;
  color: var(--white);
  background: var(--navy);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image:
    linear-gradient(90deg, rgba(0, 28, 74, 0.92), rgba(0, 47, 125, 0.76)),
    url("https://images.unsplash.com/photo-1554224155-6726b3ff858f?auto=format&fit=crop&w=1800&q=80");
}

.service-hero::before {
  background-image:
    linear-gradient(90deg, rgba(0, 28, 74, 0.92), rgba(0, 47, 125, 0.74)),
    url("https://images.unsplash.com/photo-1568992688065-536aad8a12f6?auto=format&fit=crop&w=1800&q=80");
}

.contact-hero::before {
  background-image:
    linear-gradient(90deg, rgba(0, 28, 74, 0.92), rgba(0, 47, 125, 0.74)),
    url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1800&q=80");
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-banner-content {
  text-align: center;
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  line-height: 1;
  letter-spacing: 0;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
  padding: 10px 16px;
  color: var(--white);
  font-weight: 800;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
}

.breadcrumb a {
  color: var(--orange);
}

.breadcrumb span::before {
  content: "/";
  margin-right: 12px;
  color: rgba(255, 255, 255, 0.7);
}

.text-stack p + p {
  margin-top: 18px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: stretch;
}

.contact-info,
.contact-form {
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.06);
}

.contact-info {
  background: linear-gradient(180deg, #f8fbff 0%, var(--soft) 100%);
}

.contact-info h2 {
  margin-bottom: 16px;
}

.contact-line {
  display: block;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 1.18rem;
  font-weight: 800;
}

.contact-socials {
  margin-top: 24px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-content: start;
}

.form-row {
  display: flex;
  flex-direction: column;
}

.form-row.full,
.contact-form button {
  grid-column: 1 / -1;
}

.contact-form button {
  width: fit-content;
  min-width: 180px;
}

label {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

input:focus,
textarea:focus {
  outline: 3px solid rgba(11, 139, 207, 0.18);
  border-color: var(--cyan);
}

.map-section iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.75fr 1fr 1fr;
  gap: 34px;
  align-items: start;
  padding: 64px 0 42px;
}

.site-footer h3 {
  margin: 0 0 18px;
  color: var(--white);
  font-size: 1.08rem;
}

.footer-about img {
  width: 250px;
  padding: 10px;
  background: var(--white);
  border-radius: 8px;
}

.site-footer p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer a {
  display: block;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.site-footer a:hover {
  color: var(--orange);
}

.footer-links {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.78);
  list-style: none;
}

.footer-links li {
  position: relative;
  padding-left: 16px;
}

.footer-links li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.socials a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  color: var(--white);
  font-weight: 800;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 6px;
}

.socials a i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}

.footer-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 6px;
  width: 16px;
  font-size: 0.95rem;
}

.footer-about .socials {
  margin-top: 20px;
}

.footer-bottom {
  padding: 18px 0;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  background: rgba(0, 0, 0, 0.22);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-socials a {
  color: var(--blue);
  background: var(--white);
  border: 1px solid var(--line);
}

.float-actions {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 30;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.float-call,
.float-whatsapp {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  color: var(--white);
  text-decoration: none;
  border-radius: 50%;
  box-shadow: 0 14px 34px rgba(0, 28, 74, 0.22);
}

.float-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
}

.float-call {
  background: linear-gradient(135deg, var(--orange), var(--blue));
}

.float-call i,
.float-whatsapp i {
  font-size: 1.4rem;
}

@media (max-width: 980px) {
  .site-header {
    position: sticky;
    flex-wrap: wrap;
    padding: 14px 20px;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    z-index: 30;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
    padding: 16px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  }

  .main-nav.is-open {
    display: flex;
  }

  .hero-grid,
  .split,
  .home-about-grid,
  .about-image-grid,
  .two-col,
  .contact-grid,
  .industries {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .service-grid.large,
  .values-grid,
  .check-grid,
  .risk-grid,
  .tag-cloud {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .cta-box {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .container,
  .narrow {
    width: min(100% - 28px, 1120px);
  }

  .site-header {
    gap: 12px;
  }

  .brand {
    min-width: 180px;
    max-width: 54%;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
  }

  .header-cta {
    padding: 9px 10px;
    font-size: 0.9rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid,
  .section {
    padding: 58px 0;
  }

  .hero-copy h1 {
    font-size: clamp(2.25rem, 13vw, 3.3rem);
  }

  .quote-panel h2 {
    font-size: 1.35rem;
  }

  .home-about-photo img,
  .about-photo img {
    min-height: 300px;
  }

  .page-hero {
    min-height: 250px;
    padding: 64px 0;
  }

  .service-grid,
  .service-grid.large,
  .values-grid,
  .check-grid,
  .risk-grid,
  .tag-cloud,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .quote-panel,
  .list-panel,
  .contact-form,
  .contact-info,
  .cta-box {
    padding: 22px;
  }
}
