:root {
  --ink: #202044;
  --navy: #333366;
  --navy-dark: #24244d;
  --paper: #f7f7f4;
  --white: #ffffff;
  --muted: #676779;
  --line: #e1e1e8;
  --green: #25d366;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

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

.icon {
  width: 1.25rem;
  height: 1.25rem;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.check {
  width: 21px;
  height: 21px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: #d6d6e3;
  font-size: 0.75rem;
  line-height: 1;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(51, 51, 102, 0.1);
  background: rgba(247, 247, 244, 0.94);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.brand {
  display: flex;
  width: 58px;
  height: 66px;
  overflow: hidden;
}

.brand img {
  width: 55px;
  height: auto;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  padding: 10px 0;
  color: #4e4e66;
  font-size: 0.93rem;
  font-weight: 600;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 3px;
  width: 0;
  height: 2px;
  background: var(--navy);
  transition: width 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  width: 100%;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 19px;
  border-radius: 4px;
  background: var(--navy);
  color: white;
  font-size: 0.9rem;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease;
}

.header-cta:hover {
  transform: translateY(-2px);
  background: var(--navy-dark);
}

.mobile-menu {
  display: none;
  position: relative;
}

.mobile-menu summary {
  list-style: none;
  cursor: pointer;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu nav {
  position: absolute;
  top: 42px;
  right: 0;
  min-width: 190px;
  display: grid;
  padding: 10px;
  border: 1px solid var(--line);
  background: white;
  box-shadow: 0 18px 50px rgba(29, 29, 65, 0.14);
}

.mobile-menu nav a {
  padding: 12px 14px;
  font-size: 0.92rem;
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 86px 0 98px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 0 0 58%;
  background: var(--navy);
  z-index: -2;
}

.hero-accent {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  pointer-events: none;
}

.hero-accent-one {
  width: 430px;
  height: 430px;
  right: -110px;
  top: 52px;
}

.hero-accent-two {
  width: 230px;
  height: 230px;
  right: 230px;
  bottom: -96px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  align-items: center;
  gap: 86px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 30px;
  height: 2px;
  background: currentColor;
}

.hero h1,
.section h2 {
  font-family: Georgia, "Times New Roman", serif;
}

.hero h1 {
  margin: 24px 0 28px;
  color: var(--ink);
  font-size: clamp(3.2rem, 6vw, 5.35rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.hero h1 em {
  color: var(--navy);
  font-weight: 400;
}

.hero-copy > p {
  max-width: 600px;
  margin: 0;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.78;
}

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

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 0.92rem;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--navy);
  color: white;
  box-shadow: 0 12px 28px rgba(51, 51, 102, 0.19);
}

.button-primary:hover {
  background: var(--navy-dark);
  box-shadow: 0 16px 34px rgba(51, 51, 102, 0.26);
}

.button-secondary {
  border-color: #cfcfda;
  background: transparent;
  color: var(--navy);
}

.button-secondary:hover {
  background: white;
}

.hero-location {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 36px;
  color: #626274;
  font-size: 0.9rem;
  font-weight: 600;
}

.hero-location svg {
  color: var(--navy);
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.logo-panel {
  position: relative;
  width: min(100%, 390px);
  min-height: 490px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 58px 48px 38px;
  background: white;
  box-shadow: 0 28px 80px rgba(18, 18, 48, 0.25);
}

.logo-panel::before {
  content: "";
  position: absolute;
  inset: 17px;
  border: 1px solid #e5e5eb;
  pointer-events: none;
}

.logo-panel-label {
  position: absolute;
  top: 32px;
  color: #8a8a97;
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.logo-panel img {
  position: relative;
  width: 225px;
  height: auto;
}

.logo-panel-footer {
  position: absolute;
  left: 38px;
  right: 38px;
  bottom: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 700;
}

.section {
  padding: 112px 0;
}

.services {
  background: white;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 54px;
}

.section-heading h2,
.about h2,
.contact h2 {
  margin: 18px 0 0;
  font-size: clamp(2.35rem, 4.5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.section-heading > p {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

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

.service-card {
  position: relative;
  min-height: 310px;
  padding: 34px;
  border: 1px solid var(--line);
  background: #fbfbfa;
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.service-card:hover {
  transform: translateY(-7px);
  border-color: #bdbdce;
  box-shadow: 0 22px 45px rgba(31, 31, 70, 0.08);
}

.service-number {
  position: absolute;
  top: 30px;
  right: 30px;
  color: #aaaab5;
  font-family: Georgia, serif;
  font-size: 0.87rem;
}

.service-icon {
  width: 53px;
  height: 53px;
  display: grid;
  place-items: center;
  margin-bottom: 52px;
  background: var(--navy);
  color: white;
}

.service-card h3 {
  margin: 0 0 14px;
  color: var(--ink);
  font-family: Georgia, serif;
  font-size: 1.55rem;
  font-weight: 400;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.7;
}

.about {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: white;
}

.about::after {
  content: "M&O";
  position: absolute;
  right: -30px;
  bottom: -58px;
  color: rgba(255, 255, 255, 0.035);
  font-family: Georgia, serif;
  font-size: 18rem;
  line-height: 1;
  pointer-events: none;
}

.about-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 110px;
}

.eyebrow-light {
  color: #d3d3df;
}

.about h2 {
  max-width: 470px;
}

.about-content {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  padding-left: 52px;
}

.about-lead {
  margin: 0 0 40px;
  color: #e1e1eb;
  font-size: 1.07rem;
  line-height: 1.8;
}

.about-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 28px;
}

.about-points div {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 0.91rem;
  font-weight: 700;
}

.about-points svg {
  flex: 0 0 auto;
  color: #d6d6e3;
}

.contact {
  background: var(--paper);
}

.contact-card {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 82px;
  align-items: center;
  padding: 70px;
  border: 1px solid var(--line);
  background: white;
  box-shadow: 0 24px 65px rgba(30, 30, 65, 0.08);
}

.contact h2 {
  max-width: 540px;
}

.contact-copy p {
  max-width: 580px;
  margin: 23px 0 31px;
  color: var(--muted);
  line-height: 1.75;
}

.contact-details {
  display: grid;
  border-left: 1px solid var(--line);
  padding-left: 54px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 17px;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}

.contact-item:first-child {
  border-top: 1px solid var(--line);
}

.contact-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background: #eeeef3;
  color: var(--navy);
}

.contact-item > span:last-child {
  display: grid;
  gap: 4px;
}

.contact-item small {
  color: #878795;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-item strong {
  color: var(--ink);
  font-size: 1.05rem;
}

.contact-item > span:last-child > span {
  color: var(--muted);
  font-size: 0.88rem;
}

footer {
  padding: 35px 0;
  border-top: 1px solid var(--line);
  background: white;
}

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
}

.footer-brand img {
  width: 45px;
  height: 54px;
  object-fit: contain;
}

.footer-copy {
  color: #8b8b98;
  font-size: 0.75rem;
}

.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 25;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 3px solid white;
  border-radius: 50%;
  background: var(--green);
  color: white;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  transition: transform 180ms ease;
}

.floating-whatsapp:hover {
  transform: translateY(-4px) scale(1.03);
}

@media (max-width: 960px) {
  .hero::before {
    inset: 58% 0 0 0;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 80px;
  }

  .hero-copy {
    max-width: 750px;
  }

  .logo-panel {
    min-height: 440px;
  }

  .section-heading,
  .about-grid,
  .contact-card {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .about-content,
  .contact-details {
    border-left: 0;
    padding-left: 0;
  }

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

  .service-card {
    min-height: auto;
  }

  .service-icon {
    margin-bottom: 30px;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(100% - 32px, 1180px);
  }

  .header-inner {
    min-height: 76px;
  }

  .brand {
    width: 49px;
    height: 58px;
  }

  .brand img {
    width: 48px;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .hero {
    min-height: auto;
    padding: 65px 0 75px;
  }

  .hero::before {
    inset: 57% 0 0 0;
  }

  .hero-grid {
    gap: 86px;
  }

  .hero h1 {
    margin-top: 20px;
    font-size: clamp(3rem, 14vw, 4.2rem);
  }

  .hero-copy > p {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-location {
    align-items: flex-start;
  }

  .logo-panel {
    width: 100%;
    min-height: 400px;
    padding-inline: 28px;
  }

  .logo-panel img {
    width: 190px;
  }

  .logo-panel-footer {
    left: 28px;
    right: 28px;
    font-size: 0.7rem;
  }

  .section {
    padding: 80px 0;
  }

  .section-heading {
    gap: 24px;
    margin-bottom: 36px;
  }

  .section-heading h2,
  .about h2,
  .contact h2 {
    font-size: 2.45rem;
  }

  .service-card {
    padding: 28px;
  }

  .about-points {
    grid-template-columns: 1fr;
  }

  .contact-card {
    width: min(100% - 24px, 1180px);
    padding: 44px 24px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-brand span {
    display: none;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
