:root {
  --blue: #2a5fa8;
  --navy: #062135;
  --dark: #484542;
  --soft: #e6e6e6;
  --text: #1c2730;
  --white: #fff;
  --shadow: 0 22px 60px rgba(6, 33, 53, 0.15);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: "Arial Narrow", "Roboto Condensed", Impact, Arial, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.55;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
}
.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 64px);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 2px;
  color: var(--navy);
}
.brand img,
footer img {
  width: 54px;
  height: 42px;
  object-fit: contain;
}
.brand small {
  display: block;
  font-size: 0.55rem;
  letter-spacing: 4px;
}
.nav {
  display: flex;
  gap: 18px;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.9rem;
}
.nav a {
  text-decoration: none;
  color: var(--navy);
  opacity: 0.8;
}
.nav a:hover {
  opacity: 1;
  color: var(--blue);
}
.menu-btn {
  display: none;
  border: 0;
  background: var(--blue);
  color: white;
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 22px;
}
.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
  padding: clamp(70px, 9vw, 120px) clamp(22px, 6vw, 90px);
  overflow: hidden;
}
.section-blue {
  background: linear-gradient(115deg, #fff 0 48%, var(--blue) 48% 100%);
}
.shape {
  position: absolute;
  border-radius: 50%;
  background: var(--soft);
  z-index: 0;
}
.shape-hero {
  width: 520px;
  height: 520px;
  right: 16%;
  bottom: -220px;
  opacity: 0.95;
}
.hero-content,
.hero-card {
  position: relative;
  z-index: 1;
}
.eyebrow {
  text-transform: uppercase;
  font-weight: 900;
  color: var(--blue);
  letter-spacing: 2px;
  margin: 0 0 10px;
}
.hero h1,
.toc h2,
.copy-panel h2,
.blue-band h2,
.objectives h2,
.solutions h2,
.custom-options h2,
.services h2,
.contact h2 {
  font-family: Impact, "Arial Narrow", sans-serif;
  line-height: 0.98;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--navy);
}
.hero h1 {
  font-size: clamp(3rem, 8vw, 7rem);
  margin: 0 0 22px;
  max-width: 760px;
}
.hero p {
  font-size: 1.18rem;
  max-width: 580px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  text-transform: uppercase;
  margin: 8px 10px 0 0;
}
.primary {
  background: var(--blue);
  color: white;
}
.ghost {
  border: 2px solid var(--navy);
  color: var(--navy);
}
.hero-card {
  border-radius: 44px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transform: rotate(2deg);
}
.hero-card img {
  aspect-ratio: 1/1;
  object-fit: cover;
}
.toc,
.split,
.philosophy,
.objectives,
.solutions,
.custom-options,
.services,
.contact {
  padding: clamp(64px, 8vw, 110px) clamp(22px, 6vw, 90px);
}
.toc {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 40px;
  background: #fff;
}
.section-number,
.big-number {
  font-family: Impact, "Arial Narrow";
  font-size: clamp(4rem, 12vw, 10rem);
  line-height: 0.8;
  color: var(--blue);
  display: block;
}
.toc h2 {
  font-size: clamp(2.8rem, 6vw, 5.6rem);
  margin: 8px 0;
}
.toc-grid {
  display: grid;
  gap: 16px;
}
.toc-grid a {
  padding: 28px;
  border: 1px solid #e7e7e7;
  border-radius: 28px;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.05);
}
.toc-grid small {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: none;
  color: #666;
  margin-top: 8px;
}
.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 56px;
  background: linear-gradient(90deg, #fff 0 55%, #f6f6f6 55% 100%);
}
.visual-panel {
  position: relative;
}
.visual-panel img {
  border-radius: 50% 50% 12% 12%;
  box-shadow: var(--shadow);
}
.copy-panel h2 {
  font-size: clamp(2.3rem, 5vw, 4.8rem);
  margin: 0 0 22px;
}
.copy-panel p {
  font-size: 1.08rem;
}
.blue-band {
  background: var(--blue);
  border-radius: 40px 40px 0 0;
  padding: 50px clamp(24px, 5vw, 70px);
  color: #fff;
}
.blue-band h2 {
  color: white;
  font-size: clamp(2.4rem, 6vw, 5rem);
  margin: 0;
}
.philosophy-body {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 28px;
  background: #f1f1f1;
  border-radius: 0 0 40px 40px;
  padding: 0 clamp(24px, 5vw, 70px) 46px;
}
.philosophy-body img {
  align-self: center;
  max-height: 560px;
  object-fit: cover;
  object-position: top;
  border-radius: 0 0 200px 200px;
}
.cards {
  display: grid;
  gap: 18px;
  padding-top: 48px;
}
.cards article,
.objective-list article,
.service-grid article,
.option-card {
  background: white;
  border-radius: 28px;
  padding: 26px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.06);
}
h3 {
  font-size: 1.6rem;
  line-height: 1.1;
  margin: 0 0 10px;
  color: var(--navy);
  text-transform: uppercase;
}
.objectives {
  display: grid;
  grid-template-columns: 0.7fr 0.55fr 1.1fr;
  gap: 34px;
  align-items: center;
  background: #f7f7f7;
}
.objectives aside {
  background: var(--blue);
  color: #fff;
  border-radius: 0 90px 90px 0;
  padding: 42px;
}
.objectives aside h2 {
  color: #fff;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  margin: 0 0 20px;
}
.objectives img {
  border-radius: 999px;
  box-shadow: var(--shadow);
}
.objective-list {
  display: grid;
  gap: 18px;
}
.solutions {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 42px;
}
.intro-dark {
  background: var(--blue);
  color: #fff;
  border-radius: 38px;
  padding: 36px;
  position: relative;
  overflow: hidden;
}
.intro-dark h2 {
  color: #fff;
  font-size: clamp(2.7rem, 6vw, 5.6rem);
  margin: 0 0 20px;
}
.intro-dark img {
  border-radius: 28px;
  margin-top: 20px;
}
.solution-list {
  display: grid;
  gap: 22px;
}
.solution-list article {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 12px;
  align-items: start;
}
.solution-list span {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--soft);
  font-weight: 900;
  font-size: 1.3rem;
  color: var(--navy);
}
.solution-list p,
.solution-list h3 {
  grid-column: 2;
}
.custom-options {
  min-height: 420px;
  background:
    radial-gradient(circle at 18% 90%, var(--blue) 0 18%, transparent 19%),
    radial-gradient(circle at 86% 0, var(--dark) 0 25%, transparent 26%),
    #f2f2f2;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 22px;
  align-items: center;
}
.custom-options h2 {
  font-size: clamp(2.7rem, 6vw, 5.4rem);
  margin: 0;
}
.services {
  background: #fff;
}
.section-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 26px;
  align-items: center;
  margin-bottom: 40px;
}
.services h2 {
  font-size: clamp(2rem, 4.7vw, 4.4rem);
  margin: 0;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-grid article {
  border-top: 9px solid var(--blue);
  transition: 0.35s;
}
.service-grid article:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}
.service-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 32px;
}
.service-gallery img {
  border-radius: 28px;
  aspect-ratio: 1/1;
  object-fit: cover;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.08);
}
.contact {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 34px;
  background: linear-gradient(100deg, #fff 0 48%, #f0f0f0 48%);
}
.contact h2 {
  font-size: clamp(2.7rem, 6vw, 5rem);
  margin: 0 0 16px;
}
.contact ul {
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}
.contact li {
  background: white;
  padding: 16px 18px;
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
}
.map-wrap {
  min-height: 520px;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
iframe {
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: 0;
}
footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 28px;
  background: var(--navy);
  color: white;
  text-align: center;
}
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.float-soft {
  animation: floatSoft 5s ease-in-out infinite;
}
@keyframes floatSoft {
  0%,
  100% {
    transform: translateY(0) rotate(2deg);
  }
  50% {
    transform: translateY(-14px) rotate(1deg);
  }
}
@media (max-width: 980px) {
  .menu-btn {
    display: block;
  }
  .nav {
    display: none;
    position: absolute;
    left: 18px;
    right: 18px;
    top: 72px;
    background: #fff;
    border-radius: 18px;
    padding: 18px;
    box-shadow: var(--shadow);
    flex-direction: column;
  }
  .nav.open {
    display: flex;
  }
  .hero,
  .toc,
  .split,
  .philosophy-body,
  .objectives,
  .solutions,
  .custom-options,
  .contact {
    grid-template-columns: 1fr;
  }
  .section-blue {
    background: linear-gradient(180deg, #fff 0 58%, var(--blue) 58%);
  }
  .hero {
    padding-top: 54px;
  }
  .service-grid {
    grid-template-columns: 1fr 1fr;
  }
  .service-gallery {
    grid-template-columns: 1fr;
  }
  .objectives aside {
    border-radius: 32px;
  }
  .philosophy-body img {
    max-height: 420px;
    margin: auto;
  }
  .map-wrap,
  iframe {
    min-height: 380px;
  }
}
@media (max-width: 640px) {
  .topbar {
    padding: 10px 16px;
  }
  .brand span {
    font-size: 0.9rem;
  }
  .hero h1 {
    font-size: 3.1rem;
  }
  .toc,
  .split,
  .philosophy,
  .objectives,
  .solutions,
  .custom-options,
  .services,
  .contact {
    padding: 54px 18px;
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
  .section-head {
    grid-template-columns: 1fr;
  }
  .solution-list article {
    grid-template-columns: 1fr;
  }
  .solution-list p,
  .solution-list h3 {
    grid-column: auto;
  }
  .custom-options {
    background: #f2f2f2;
  }
  .cards article,
  .objective-list article,
  .service-grid article,
  .option-card {
    padding: 20px;
  }
}
