:root {
  color: #141414;
  background: #fff;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  --yellow: #ffc400;
  --yellow-dark: #d39d00;
  --black: #050505;
  --ink: #141414;
  --muted: #626262;
  --line: #e8e8e8;
  --soft: #f7f7f5;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

body,
button,
input,
select,
textarea {
  font: inherit;
}

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

button {
  cursor: pointer;
}

.site-shell {
  overflow-x: clip;
  background: #fff;
}

.top-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  min-height: 38px;
  padding: 8px 32px;
  background: var(--black);
  color: #fff;
  font-size: 13px;
}

.top-strip a,
.top-strip span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.top-strip i {
  color: var(--yellow);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 76px;
  padding: 0 48px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 238px;
}

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

.brand strong {
  display: block;
  color: #080808;
  font-size: 20px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand small {
  color: #202020;
  font-size: 13px;
  font-weight: 700;
}

.brand b {
  color: var(--yellow-dark);
}

nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #151515;
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

nav a {
  border-bottom: 2px solid transparent;
  padding: 27px 0;
}

nav a:hover,
nav a:focus-visible {
  border-color: var(--yellow);
  color: #000;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 0 22px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.nav-phone i {
  color: var(--yellow-dark);
}

.nav-cta,
.button.primary {
  background: var(--yellow);
  color: #090909;
  box-shadow: 0 12px 24px rgba(255, 196, 0, 0.22);
}

.button.ghost {
  border-color: rgba(255, 196, 0, 0.7);
  color: #fff;
}

.button.ghost-light {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.button:hover,
.button:focus-visible,
.nav-cta:hover,
.nav-cta:focus-visible {
  transform: translateY(-2px);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: #111;
}

.section-band,
.enterprise-section,
.activity-section,
.model-section,
.services-section,
.split-section,
.process-section,
.service-area,
.contact-section {
  padding: 64px 72px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.88fr);
  align-items: center;
  gap: 48px;
  min-height: 540px;
  overflow: hidden;
  border-bottom: 0;
  background:
    radial-gradient(circle at 80% 30%, rgba(255, 196, 0, 0.22), transparent 28%),
    linear-gradient(120deg, #050505 0%, #111 52%, #f5c51b 52.2%, #ffe176 100%);
  color: #fff;
}

.hero::after {
  display: none;
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--yellow-dark);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--yellow-dark);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 680px;
  margin-bottom: 22px;
  color: #fff;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.04;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 span {
  color: #fff;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 530px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 26px 0 28px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 800;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.trust-row i {
  color: var(--yellow);
}

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

.hero-card {
  width: min(470px, 100%);
  padding: 26px 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 28px 65px rgba(0, 0, 0, 0.28);
}

.hero-card img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 520px;
  margin-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-stats div {
  padding: 18px 18px 0 0;
}

.hero-stats strong {
  display: block;
  color: var(--yellow);
  font-size: 28px;
  line-height: 1;
}

.hero-stats span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 750;
}

.enterprise-section {
  background: #fff;
}

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

.enterprise-grid article {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px 24px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.06);
}

.enterprise-grid article::after {
  position: absolute;
  right: -38px;
  bottom: -38px;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: rgba(255, 196, 0, 0.18);
  content: "";
}

.enterprise-grid i {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 50%;
  background: #fff6cf;
  color: #111;
  font-size: 22px;
}

.enterprise-grid h3 {
  margin: 22px 0 10px;
  color: #111;
  font-size: 21px;
}

.enterprise-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.activity-section {
  background: var(--soft);
}

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

.activity-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 32px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.06);
}

.activity-icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 50%;
  background: #fff6cf;
  color: #111;
  font-size: 22px;
}

.activity-card h3 {
  max-width: 520px;
  margin-bottom: 18px;
  color: #111;
  font-size: 28px;
  line-height: 1.16;
}

.activity-card ol {
  display: grid;
  gap: 12px;
  margin: 0 0 26px;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.55;
}

.activity-card li::marker {
  color: var(--yellow-dark);
  font-weight: 900;
}

.model-section {
  background: var(--soft);
}

.model-section .section-heading {
  max-width: 860px;
  margin-bottom: 28px;
}

.model-section h2 {
  color: #111;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.12;
  font-weight: 900;
}

.model-section h2 span {
  color: #111;
}

.compact-model-section {
  padding-top: 58px;
  padding-bottom: 58px;
}

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

.model-grid article {
  display: flex;
  min-height: 210px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.06);
}

.model-grid span {
  width: fit-content;
  border-radius: 999px;
  padding: 6px 10px;
  background: #111;
  color: var(--yellow);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.model-grid h3 {
  margin: 18px 0 10px;
  color: #111;
  font-size: 22px;
  line-height: 1.16;
}

.model-grid p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.model-grid a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--yellow-dark);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

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

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

.section-heading h2,
.services-section h2,
.split-section h2,
.process-section h2,
.service-area h2,
.contact-section h2 {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: clamp(30px, 3vw, 48px);
  line-height: 1.1;
  font-weight: 920;
  letter-spacing: 0;
}

.section-heading p,
.services-section p,
.split-section p,
.process-section p,
.service-area p,
.contact-section p {
  color: var(--muted);
  line-height: 1.65;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  display: flex;
  min-height: 270px;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 30px 20px 24px;
  background: #fff;
  color: var(--ink);
  text-align: center;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
}

.service-card i {
  color: #121212;
  font-size: 36px;
}

.service-card strong {
  color: #111;
  font-size: 18px;
  line-height: 1.2;
}

.service-card span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.service-card em {
  margin-top: auto;
  color: var(--yellow-dark);
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
}

.service-card.active,
.service-card:hover,
.service-card:focus-visible {
  border-color: rgba(255, 196, 0, 0.9);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.1);
}

.service-detail {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  max-width: 1100px;
  margin: 28px auto 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px 28px;
  background: var(--soft);
}

.service-detail h3 {
  margin-bottom: 6px;
  font-size: 24px;
}

.service-detail p:last-child {
  margin-bottom: 0;
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: var(--black);
  color: #fff;
}

.metric-strip div {
  display: flex;
  min-height: 118px;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  padding: 22px 36px;
}

.metric-strip strong {
  color: var(--yellow);
  font-size: 30px;
  line-height: 1;
}

.metric-strip span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr 360px;
  gap: 32px;
  align-items: stretch;
  background: #fff;
}

.reason-list {
  display: grid;
  gap: 22px;
  margin-top: 30px;
}

.reason-list article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  align-items: center;
}

.reason-list i {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(255, 196, 0, 0.8);
  border-radius: 50%;
  background: #fff8dc;
  color: #111;
  font-size: 20px;
}

.reason-list strong {
  display: block;
  margin-bottom: 5px;
  color: #111;
  font-size: 18px;
}

.reason-list small {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.testimonial-panel,
.booking-card {
  border-radius: 8px;
  padding: 32px;
}

.testimonial-panel {
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.07);
}

blockquote {
  margin: 0 0 22px;
  color: #272727;
  font-size: 18px;
  line-height: 1.65;
}

.testimonial-panel strong,
.testimonial-panel span {
  display: block;
}

.testimonial-panel span {
  margin-top: 4px;
  color: var(--muted);
}

.dots {
  display: flex;
  gap: 8px;
  margin-top: 24px;
}

.dots button {
  width: 11px;
  height: 11px;
  border: 0;
  border-radius: 50%;
  background: #d8d8d8;
}

.dots button.active {
  background: var(--yellow);
}

.booking-card {
  align-self: stretch;
  background:
    linear-gradient(135deg, rgba(255, 196, 0, 0.1), rgba(255, 196, 0, 0) 32%),
    #090909;
  color: #fff;
}

.booking-card h2 {
  color: #fff;
  font-size: 29px;
}

.booking-card .button {
  width: 100%;
  margin-top: 12px;
}

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

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.process-grid article {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 30px 24px;
  background: #fff;
  text-align: center;
}

.process-grid span {
  position: absolute;
  top: 18px;
  left: 18px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
  color: #111;
  font-weight: 950;
}

.process-grid i {
  margin: 12px 0 20px;
  color: #111;
  font-size: 42px;
}

.process-grid h3 {
  margin-bottom: 10px;
}

.service-area {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: 54px;
}

.location-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px 20px;
  background: #fff;
  color: #111;
  font-weight: 850;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
}

.location-pill i {
  color: var(--yellow-dark);
}

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

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px 20px;
  background: #fff;
}

summary {
  color: #111;
  font-weight: 900;
  cursor: pointer;
}

details p {
  margin: 12px 0 0;
}

.contact-section {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: 54px;
  background: #111;
  color: #fff;
}

.contact-section h2 {
  color: #fff;
}

.contact-section p {
  color: rgba(255, 255, 255, 0.72);
}

.leadership-contact {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 4px 14px;
  align-items: center;
  max-width: 390px;
  margin-top: 24px;
  border-left: 3px solid var(--yellow);
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.07);
}

.leadership-contact > i {
  grid-row: 1 / 3;
  color: var(--yellow);
  font-size: 28px;
  text-align: center;
}

.leadership-contact span,
.leadership-contact strong,
.leadership-contact small {
  display: block;
}

.leadership-contact small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.65);
}

.leadership-contact a {
  grid-column: 2;
  width: fit-content;
  color: var(--yellow);
  font-weight: 850;
}

form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

label:nth-child(4) {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  padding: 15px 16px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  outline: none;
}

select option {
  color: #111;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--yellow);
}

form button {
  justify-self: start;
}

footer {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 1.2fr;
  gap: 42px;
  padding: 48px 72px;
  background: #1a1a1a;
  color: rgba(255, 255, 255, 0.8);
}

footer h3,
footer strong {
  color: #fff;
}

footer p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

footer a {
  display: block;
  margin: 8px 0;
  color: rgba(255, 255, 255, 0.82);
}

.footer-brand {
  display: flex;
  gap: 16px;
}

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

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

.socials a {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
}

.quick-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 25;
  display: grid;
  gap: 10px;
}

.quick-actions a {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 116px;
  border-radius: 8px;
  padding: 12px 14px;
  background: var(--yellow);
  color: #111;
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

@media (max-width: 1180px) {
  .site-header {
    padding: 0 28px;
  }

  nav {
    gap: 16px;
  }

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

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

  .enterprise-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .model-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-section {
    grid-template-columns: 1fr 1fr;
  }

  .booking-card {
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {
  .top-strip {
    display: none;
  }

  .site-header {
    height: 72px;
    padding: 0 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

  .brand strong {
    font-size: 15px;
  }

  .brand small {
    font-size: 11px;
  }

  .menu-button {
    display: grid;
    place-items: center;
  }

  nav {
    position: absolute;
    top: 72px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-bottom: 1px solid var(--line);
    background: #fff;
    padding: 10px 16px 18px;
  }

  nav.open {
    display: flex;
  }

  nav a {
    padding: 15px 2px;
  }

  .nav-cta {
    margin-top: 8px;
  }

  .section-band,
  .enterprise-section,
  .activity-section,
  .model-section,
  .services-section,
  .split-section,
  .process-section,
  .service-area,
  .contact-section {
    padding: 48px 18px;
  }

  .hero {
    min-height: auto;
    background:
      linear-gradient(158deg, #050505 0%, #111 62%, rgba(255, 196, 0, 0.88) 62.2%, #ffd93a 100%);
  }

  h1 {
    font-size: 40px;
  }

  .hero-copy > p:not(.eyebrow) {
    font-size: 16px;
  }

  .hero-actions,
  .trust-row {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-card {
    padding: 14px;
  }

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

  .hero-stats div {
    padding: 12px 0 0;
  }

  .services-grid,
  .enterprise-grid,
  .activity-grid,
  .model-grid,
  .process-grid,
  .metric-strip,
  .split-section,
  .service-area,
  .contact-section,
  footer,
  form {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 226px;
  }

  .service-detail {
    align-items: stretch;
    flex-direction: column;
  }

  .metric-strip div {
    min-height: 88px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  label:nth-child(4) {
    grid-column: auto;
  }

  footer {
    padding: 40px 18px 96px;
  }

  .quick-actions {
    right: 12px;
    bottom: 12px;
    left: 12px;
    grid-template-columns: 1fr 1fr;
  }

  .quick-actions a {
    justify-content: center;
  }
}
