:root {
  --logo-bg: #000616;
  --ink: #102326;
  --ink-2: #27484a;
  --muted: #607273;
  --paper: #fbf8f0;
  --surface: #ffffff;
  --mist: #e7f1ee;
  --teal: #1f9f94;
  --teal-dark: #12383b;
  --gold: #d9922e;
  --saffron: #f4b74f;
  --line: rgba(16, 35, 38, 0.12);
  --shadow: 0 22px 60px rgba(9, 31, 34, 0.14);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}

body.nav-open {
  overflow: hidden;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 82px;
  padding: 10px clamp(18px, 4vw, 64px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 6, 22, 0.92);
  color: #fff;
  backdrop-filter: blur(18px);
}

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

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
  letter-spacing: 0;
}

.brand small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.72rem;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(244, 183, 79, 0.56);
  border-radius: 50%;
  background: radial-gradient(circle at 32% 24%, #fff7d7, var(--saffron) 44%, #89561d 100%);
  color: #102326;
  font-weight: 900;
}

.primary-nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.4vw, 22px);
  font-size: 0.91rem;
  color: rgba(255, 255, 255, 0.78);
}

.primary-nav a {
  transition: color 180ms ease;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: #fff;
}

.header-cta,
.btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-weight: 800;
}

.header-cta {
  padding: 0 18px;
  background: var(--saffron);
  color: #102326;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(420px, 1.06fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: center;
  min-height: calc(100vh - 78px);
  padding: clamp(54px, 7vw, 110px) clamp(18px, 5vw, 82px) clamp(38px, 5vw, 72px);
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(0, 6, 22, 0.98) 0%, rgba(18, 56, 59, 0.96) 48%, rgba(48, 42, 30, 0.94) 100%),
    var(--teal-dark);
  color: #fff;
}

.hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 110px;
  background: linear-gradient(180deg, transparent, rgba(251, 248, 240, 0.08));
  pointer-events: none;
}

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

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

.hero h1 {
  max-width: 790px;
  margin: 0;
  font-size: clamp(2.65rem, 6.6vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.02rem, 1.5vw, 1.22rem);
  line-height: 1.7;
}

.tagline {
  margin: 18px 0 0;
  color: #fff7d7;
  font-size: 1.12rem;
  font-weight: 900;
}

.hero-actions,
.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.btn {
  border: 0;
  padding: 0 22px;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.btn.primary {
  background: var(--saffron);
  color: var(--ink);
  box-shadow: 0 14px 28px rgba(244, 183, 79, 0.24);
}

.btn.secondary {
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.btn.secondary.light {
  border-color: rgba(255, 255, 255, 0.4);
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 680px;
  margin-top: 34px;
}

.hero-highlights span {
  min-height: 48px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.86);
  font-weight: 750;
}

.hero-media img {
  width: min(670px, 100%);
  margin-inline: auto 0;
  border-radius: 28px;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.34);
}

.trust-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 1.6fr);
  gap: 30px;
  align-items: center;
  padding: 28px clamp(18px, 5vw, 82px);
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.trust-band p {
  margin: 0;
  color: var(--muted);
  font-weight: 750;
}

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

.trust-grid strong {
  padding: 14px;
  border-left: 3px solid var(--gold);
  background: #f5fbf9;
  font-size: 1.2rem;
}

.trust-grid span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.section {
  padding: clamp(72px, 8vw, 116px) clamp(18px, 5vw, 82px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(240px, 0.78fr) minmax(0, 1fr);
  gap: clamp(18px, 4vw, 70px);
  align-items: start;
  margin-bottom: 40px;
}

.section-heading.compact {
  display: block;
  max-width: 790px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 4.2vw, 3.85rem);
  line-height: 1.06;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.75;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: 26px;
}

.about-grid p {
  color: var(--ink-2);
  font-size: 1.06rem;
  line-height: 1.8;
}

.value-panel,
.service-card,
.price-card,
.portfolio-grid article,
.blog-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.value-panel {
  padding: 26px;
}

.value-panel h3,
.service-card h3,
.solution-list h3,
.price-card h3,
.portfolio-grid h3,
.blog-grid h3 {
  margin: 0 0 12px;
  font-size: 1.15rem;
}

.check-list,
.price-card ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

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

.check-list li,
.price-card li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.55;
}

.check-list li::before,
.price-card li::before {
  content: "";
  position: absolute;
  top: 0.64em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--teal);
}

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

.service-card {
  min-height: 245px;
  padding: 26px;
}

.service-card p,
.solution-list p,
.portfolio-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.icon-box {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-bottom: 30px;
  border-radius: var(--radius);
  background: #e6f3f0;
  color: var(--teal-dark);
  font-weight: 900;
}

.solutions-section {
  background: #edf5f2;
}

.solution-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.solution-list article {
  min-height: 168px;
  padding: 28px;
  background: #fff;
}

.product-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(170px, 1fr));
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.product-strip article {
  min-height: 178px;
  padding: 20px;
  border-radius: var(--radius);
  background: var(--teal-dark);
  color: #fff;
}

.product-strip strong,
.product-strip span {
  display: block;
}

.product-strip strong {
  margin-bottom: 34px;
  color: var(--saffron);
  font-size: 1.12rem;
}

.product-strip span {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 36px;
  align-items: center;
}

.split-section .section-heading {
  display: block;
  margin: 0;
}

.industry-cloud,
.why-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.industry-cloud span,
.why-grid span {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink-2);
  font-weight: 800;
}

.industry-cloud span {
  padding: 0 18px;
}

.why-section {
  background: var(--ink);
  color: #fff;
}

.why-section .eyebrow,
.contact-section .eyebrow {
  color: var(--saffron);
}

.why-grid span {
  border-color: rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.88);
  padding: 0 16px;
}

.pricing-section {
  background: #f7efe1;
}

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

.price-card {
  padding: 28px;
}

.price-card.featured {
  border-color: rgba(217, 146, 46, 0.45);
}

.price {
  margin: 0 0 22px;
  color: var(--teal-dark);
  font-size: 2rem;
  font-weight: 950;
}

.proof-section,
.blog-section {
  background: var(--paper);
}

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

.portfolio-grid article,
.blog-grid article {
  padding: 24px;
}

.blog-grid article:nth-child(4) {
  grid-column: span 3;
}

.blog-grid a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--teal-dark);
  font-weight: 900;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(340px, 1fr);
  gap: clamp(24px, 5vw, 76px);
  padding: clamp(72px, 8vw, 116px) clamp(18px, 5vw, 82px);
  background: linear-gradient(135deg, var(--teal-dark), #1b4d50 54%, #4d3a1e);
  color: #fff;
}

.contact-copy h2 {
  margin: 0;
  font-size: clamp(2.1rem, 4.7vw, 4rem);
  line-height: 1.04;
}

.contact-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.06rem;
  line-height: 1.7;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.85rem;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font: inherit;
  padding: 12px 13px;
}

.contact-form textarea {
  resize: vertical;
}

.full {
  grid-column: 1 / -1;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 22px;
  margin: 0;
  color: #fff7d7;
  font-weight: 850;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) repeat(3, minmax(150px, 0.7fr));
  gap: 30px;
  padding: 52px clamp(18px, 5vw, 82px);
  background: var(--logo-bg);
  color: rgba(255, 255, 255, 0.74);
}

.site-footer h3 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 1rem;
}

.site-footer a,
.site-footer p {
  display: block;
  margin: 0 0 10px;
}

.footer-brand {
  margin-bottom: 18px;
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: auto auto 1fr;
  }

  .nav-toggle {
    display: inline-block;
    justify-self: end;
  }

  .primary-nav {
    position: fixed;
    top: 82px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius);
    background: #102326;
    box-shadow: var(--shadow);
  }

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

  .primary-nav a {
    min-height: 44px;
    padding: 12px;
  }

  .header-cta {
    justify-self: end;
  }

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

  .hero-media img {
    margin-inline: 0;
    width: min(760px, 100%);
  }

  .trust-band,
  .section-heading,
  .split-section,
  .contact-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: auto auto;
    gap: 12px;
    min-height: 70px;
    padding-block: 8px;
  }

  .brand small,
  .header-cta {
    display: none;
  }

  .nav-toggle {
    justify-self: end;
  }

  .primary-nav {
    top: 70px;
  }

  .hero {
    min-height: auto;
    padding-top: 58px;
  }

  .hero-highlights,
  .trust-grid,
  .card-grid,
  .solution-list,
  .pricing-grid,
  .portfolio-grid,
  .blog-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .blog-grid article:nth-child(4) {
    grid-column: auto;
  }

  .section,
  .contact-section {
    padding-block: 64px;
  }

  .check-list {
    grid-template-columns: 1fr;
  }

  .product-strip {
    grid-template-columns: repeat(6, 76vw);
  }

  .trust-band {
    gap: 18px;
  }
}
