@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=IBM+Plex+Sans:wght@400;500;600&display=swap');

:root {
  --ink-950: #0a1713;
  --ink-900: #10221c;
  --ink-850: #173128;
  --ink-800: #1d3c31;
  --ink-700: #295344;
  --green-500: #4aa053;
  --green-600: #3d8744;
  --green-700: #2f6b35;
  --mint-100: #e7f3e8;
  --mint-200: #d6ecd8;
  --sand-50: #f7f7f2;
  --sand-100: #f0f1ea;
  --sand-200: #e3e6dc;
  --line: rgba(17, 34, 28, 0.12);
  --text: #26362f;
  --muted: #5d7168;
  --white: #ffffff;
  --shadow-lg: 0 32px 64px rgba(8, 24, 20, 0.16);
  --shadow-md: 0 18px 40px rgba(8, 24, 20, 0.10);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --max-w: 1220px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'IBM Plex Sans', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(74, 160, 83, 0.09), transparent 26%),
    linear-gradient(180deg, #fbfcfa 0%, #f4f6f1 100%);
  line-height: 1.6;
}

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

section {
  padding: 88px 0;
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-600);
}

.section-label::before {
  content: '';
  width: 38px;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
}

.section-header,
.svc-header {
  max-width: 780px;
  margin-bottom: 36px;
}

.section-header h2,
.svc-header h2,
.split-text h2,
.service-section h3,
.testimonial-section h2,
.footer-cta-col h3,
.cta-banner h2 {
  margin: 0 0 14px;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  line-height: 1.08;
  color: var(--ink-900);
}

.section-header h2,
.svc-header h2 {
  font-size: clamp(32px, 4vw, 50px);
}

.section-header p,
.svc-header p,
.split-text p,
.split-text li,
.card p,
.app-card p,
.pillar-text p,
.faq-answer,
.testimonial-card blockquote,
.footer-brand p,
.footer-col p,
.footer-col li,
.process-step p,
.contact-detail-text span,
.rfq-requirements p,
.rfq-requirements li {
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-orange {
  background: linear-gradient(135deg, var(--green-500), var(--green-700));
  color: var(--white);
  box-shadow: 0 16px 32px rgba(61, 135, 68, 0.24);
}

.btn-orange:hover {
  box-shadow: 0 22px 40px rgba(61, 135, 68, 0.3);
}

.btn-navy {
  background: var(--ink-900);
  color: var(--white);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.65);
  color: var(--white);
  background: transparent;
}

.btn-outline:hover {
  background: var(--white);
  color: var(--ink-900);
}

.utility-bar {
  background: var(--ink-950);
  color: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.utility-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 42px;
}

.utility-tagline {
  font-size: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.utility-right {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}

.utility-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  transition: color 0.2s ease;
}

.utility-item:hover {
  color: #bde0bf;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(17, 34, 28, 0.07);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-nav.scrolled {
  box-shadow: 0 18px 40px rgba(10, 23, 19, 0.09);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 94px;
  transition: min-height 0.25s ease;
}

.site-nav.scrolled .nav-inner {
  min-height: 60px;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo img {
  width: auto;
  height: 72px;
  transition: height 0.25s ease;
}

.site-nav.scrolled .nav-logo img {
  height: 44px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links > li > a,
.nav-dropdown-trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-850);
}

.nav-links > li > a::after,
.nav-dropdown-trigger::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  background: linear-gradient(90deg, var(--green-500), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.nav-links > li > a:hover::after,
.nav-links > li > a.active::after,
.nav-dropdown-trigger:hover::after {
  transform: scaleX(1);
}

.nav-links > li > a:hover,
.nav-links > li > a.active,
.nav-dropdown-trigger:hover {
  color: var(--green-700);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger svg {
  width: 10px;
  height: 6px;
  fill: currentColor;
  transition: transform 0.2s ease;
}

.nav-dropdown.open .nav-dropdown-trigger svg {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  width: 320px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(17, 34, 28, 0.08);
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.nav-dropdown.open .dropdown-menu,
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-item + .dropdown-item {
  margin-top: 6px;
}

.dropdown-item a {
  display: block;
  padding: 14px 16px;
  border-radius: 14px;
  background: transparent;
  transition: background 0.2s ease, transform 0.2s ease;
}

.dropdown-item a:hover {
  background: var(--sand-50);
  transform: translateX(2px);
}

.dropdown-item a::after {
  display: none;
}

.dropdown-item-name {
  display: block;
  margin-bottom: 4px;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-900);
}

.dropdown-item-link {
  display: none;
}

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

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(17, 34, 28, 0.09);
  border-radius: 12px;
  background: var(--white);
  cursor: pointer;
  padding: 0;
  justify-content: center;
  align-items: center;
}

.nav-hamburger span {
  width: 18px;
  height: 2px;
  background: var(--ink-900);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(9, 22, 18, 0.94), rgba(24, 54, 43, 0.9)),
    var(--ink-900);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(103, 183, 100, 0.18), transparent 28%),
    radial-gradient(circle at 85% 15%, rgba(255, 255, 255, 0.07), transparent 22%);
  pointer-events: none;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.14;
  filter: grayscale(8%) contrast(1.1);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 56px;
  align-items: center;
  min-height: 74vh;
  padding: 70px 0;
}

.hero h1 {
  margin: 0 0 18px;
  font-family: 'Manrope', sans-serif;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800;
  line-height: 0.96;
  color: var(--white);
  max-width: 760px;
}

.hero p {
  max-width: 620px;
  margin: 0 0 30px;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.78);
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

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

.hero-image-frame {
  position: relative;
  width: min(540px, 100%);
  padding: 32px;
  animation: hero-float 5s ease-in-out infinite;
}

.hero-image-frame img {
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 24px 50px rgba(0, 0, 0, 0.32));
}

@keyframes hero-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 70px;
  background:
    linear-gradient(180deg, rgba(12, 28, 22, 0.96), rgba(17, 34, 28, 0.88)),
    var(--ink-900);
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(74, 160, 83, 0.16), transparent 55%),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.07), transparent 20%);
  pointer-events: none;
}

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

.page-hero .section-label {
  color: #bfe3c2;
}

.page-hero h1 {
  margin: 0 0 14px;
  font-family: 'Manrope', sans-serif;
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 800;
  color: var(--white);
}

.page-hero p {
  max-width: 780px;
  margin: 0;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.76);
}

.section-white {
  background: transparent;
}

.section-gray,
.svc-section,
.testimonial-section {
  background:
    linear-gradient(180deg, rgba(232, 238, 230, 0.58), rgba(247, 247, 242, 0.92));
}

.section-navy {
  background:
    linear-gradient(180deg, #112720 0%, #0e201a 100%);
}

.svc-grid,
.cards-grid,
.industries-grid,
.stats-grid,
.pillars-grid,
.process-grid,
.app-grid,
.footer-grid,
.footer-cta-grid {
  display: grid;
  gap: 22px;
}

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

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

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

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

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

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

.svc-card,
.card,
.industry-item,
.pillar,
.process-step,
.app-card,
.service-panel,
.contact-details,
.rfq-requirements,
.testimonial-card {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(17, 34, 28, 0.08);
  border-radius: 24px;
  box-shadow: var(--shadow-md);
}

.svc-card,
.card,
.industry-item,
.process-step,
.app-card {
  padding: 28px;
}

.svc-card::before,
.card::before,
.industry-item::before,
.pillar::before,
.contact-details::before,
.rfq-requirements::before,
.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--green-500), rgba(74, 160, 83, 0.1));
}

.svc-card:hover,
.card:hover,
.industry-item:hover,
.app-card:hover {
  transform: translateY(-4px);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 22px 48px rgba(8, 24, 20, 0.15);
}

.svc-card-icon,
.card-icon,
.industry-item-icon,
.pillar-icon,
.contact-detail-icon,
.service-panel-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--green-700);
  background: linear-gradient(145deg, var(--mint-100), #f5fbf5);
  border-radius: 16px;
}

.svc-card-icon,
.card-icon {
  width: 62px;
  height: 62px;
  margin-bottom: 18px;
}

.svc-card-icon svg,
.card-icon svg,
.industry-item-icon svg,
.pillar-icon svg,
.contact-detail-icon svg,
.service-panel-icon svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
}

.svc-card h3,
.card h3,
.pillar-text h3 {
  margin: 0 0 10px;
  font-family: 'Manrope', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--ink-900);
}

.dropdown-item-link {
  display: none;
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 38px;
  align-items: center;
}

.service-section + .service-section {
  margin-top: 34px;
}

.split-reverse .split-text {
  order: 2;
}

.split-reverse .split-image {
  order: 1;
}

.split-text h2,
.service-section h3 {
  font-size: clamp(28px, 3vw, 40px);
}

.split-text ul,
.rfq-requirements ul,
.what-is-col ul {
  margin-top: 20px;
}

.split-text li,
.rfq-requirements li,
.what-is-col li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 10px;
}

.split-text li::before,
.rfq-requirements li::before,
.what-is-col li::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-500);
}

.split-image,
.service-panel {
  min-height: 380px;
}

.split-image-placeholder,
.map-placeholder {
  width: 100%;
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  border-radius: 24px;
  border: 1px dashed rgba(17, 34, 28, 0.16);
  background:
    linear-gradient(135deg, rgba(231, 243, 232, 0.95), rgba(255, 255, 255, 0.92));
  color: var(--ink-700);
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.map-placeholder {
  min-height: 220px;
}

.service-panel {
  display: flex;
  align-items: stretch;
  padding: 0;
  background:
    linear-gradient(160deg, var(--ink-900), #244336);
  color: var(--white);
}

.service-panel-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  padding: 32px;
}

.service-panel-icon {
  width: 78px;
  height: 78px;
  background: rgba(255, 255, 255, 0.09);
  color: #d8f0da;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.service-panel-stats {
  display: grid;
  gap: 14px;
}

.service-panel-stat {
  padding: 14px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.service-panel-stat-label {
  display: block;
  margin-bottom: 4px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.58);
}

.service-panel-stat-value {
  font-family: 'Manrope', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
}

.industry-item-header,
.pillar {
  display: flex;
  gap: 18px;
}

.industry-item-icon,
.pillar-icon,
.contact-detail-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
}

.industry-item h4,
.app-card h4,
.process-step h4,
.footer-col h4 {
  margin: 0 0 8px;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  color: var(--ink-900);
}

.pillars-grid .pillar {
  padding: 24px;
}

.cta-banner {
  padding: 34px 0;
  background:
    linear-gradient(135deg, rgba(38, 70, 56, 0.98), rgba(21, 40, 33, 0.96));
}

.cta-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-banner h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(26px, 3vw, 40px);
  max-width: 760px;
}

.testimonial-section {
  text-align: center;
}

.stars {
  margin: 8px 0 22px;
  color: var(--green-600);
  letter-spacing: 6px;
  font-size: 24px;
}

.testimonial-card {
  max-width: 840px;
  margin: 0 auto;
  padding: 40px;
}

.testimonial-card blockquote {
  margin: 0 0 18px;
  font-size: 20px;
  line-height: 1.75;
}

.testimonial-card cite {
  font-style: normal;
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green-700);
}

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

.faq-item {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 22px 24px;
  border: 0;
  background: transparent;
  text-align: left;
  font-family: 'Manrope', sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: var(--ink-900);
  cursor: pointer;
}

.faq-answer {
  display: none;
  padding: 0 24px 22px;
}

.faq-item.open .faq-answer {
  display: block;
}

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

.form-group {
  display: grid;
  gap: 8px;
}

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

.form-group label {
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-850);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid rgba(17, 34, 28, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.98);
  padding: 15px 16px;
  font: inherit;
  color: var(--ink-900);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group textarea {
  min-height: 180px;
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: 0;
  border-color: rgba(61, 135, 68, 0.5);
  box-shadow: 0 0 0 4px rgba(74, 160, 83, 0.12);
}

.contact-details,
.rfq-requirements {
  padding: 28px;
}

.contact-details h3,
.rfq-requirements h3,
.footer-brand .nav-logo + p {
  margin-top: 0;
}

.contact-detail-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid rgba(17, 34, 28, 0.08);
}

.contact-detail-row:last-of-type {
  border-bottom: 0;
}

.contact-detail-text strong {
  display: block;
  margin-bottom: 4px;
  font-family: 'Manrope', sans-serif;
  color: var(--ink-900);
}

.contact-detail-text a,
.contact-info-block a {
  color: var(--green-700);
  font-weight: 700;
}

.contact-info-block {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(17, 34, 28, 0.08);
}

.footer-cta {
  background: linear-gradient(180deg, #143127 0%, #10241d 100%);
}

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

.footer-cta-col {
  padding: 46px 24px;
  text-align: center;
}

.footer-cta-col + .footer-cta-col {
  border-left: 1px solid rgba(255, 255, 255, 0.09);
}

.footer-cta-col h3 {
  color: var(--white);
  font-size: 28px;
}

.footer-cta-col p {
  max-width: 420px;
  margin: 0 auto 20px;
  color: rgba(255, 255, 255, 0.66);
}

.site-footer {
  padding: 54px 0 24px;
  background: var(--ink-950);
}

.footer-grid {
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  margin-bottom: 34px;
}

.footer-brand .nav-logo {
  margin-bottom: 14px;
}

.footer-brand p,
.footer-col p,
.footer-col a,
.footer-col li a,
.footer-bottom p,
.footer-bottom a {
  color: rgba(255, 255, 255, 0.62);
}

.footer-col h4 {
  color: var(--white);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-col li + li {
  margin-top: 10px;
}

.footer-col a:hover,
.footer-bottom a:hover {
  color: #d5edd8;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom div {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.process-step {
  text-align: center;
}

.process-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-500), var(--green-700));
  color: var(--white);
  font-family: 'Manrope', sans-serif;
  font-size: 18px;
  font-weight: 800;
}

.app-card {
  background: linear-gradient(180deg, rgba(17, 39, 32, 0.98), rgba(13, 31, 25, 0.98));
}

.app-card h4 {
  color: var(--white);
}

.app-card p {
  color: rgba(255, 255, 255, 0.68);
}

.what-is-inner {
  max-width: 980px;
  margin: 0 auto;
}

.what-is-inner h2 {
  color: var(--white);
  font-size: clamp(30px, 4vw, 48px);
}

.what-is-inner p,
.what-is-col li {
  color: rgba(255, 255, 255, 0.74);
}

.what-is-cols {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  margin-top: 28px;
}

.what-is-col h4 {
  margin: 0 0 10px;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #d8f0da;
}

@media (max-width: 1100px) {
  .svc-grid,
  .cards-grid,
  .process-grid,
  .stats-grid,
  .industries-grid,
  .app-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-inner {
    grid-template-columns: 1fr;
    min-height: unset;
  }

  .hero-image {
    justify-content: flex-start;
  }
}

@media (max-width: 860px) {
  section {
    padding: 70px 0;
  }

  .utility-bar .container {
    min-height: 52px;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .nav-hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 16px;
    right: 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(17, 34, 28, 0.08);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links > li > a,
  .nav-dropdown-trigger {
    width: 100%;
    justify-content: space-between;
    padding: 14px 12px;
  }

  .nav-links > li > a::after,
  .nav-dropdown-trigger::after {
    display: none;
  }

  .nav-cta {
    margin: 10px 12px 4px;
  }

  .nav-cta .btn {
    width: 100%;
  }

  .dropdown-menu {
    position: static;
    width: auto;
    margin: 4px 8px 12px;
    transform: none;
    opacity: 1;
    visibility: visible;
    display: none;
    box-shadow: none;
    background: var(--sand-50);
  }

  .nav-dropdown.open .dropdown-menu {
    display: block;
    transform: none;
  }

  .split,
  .footer-cta-grid,
  .pillars-grid,
  .what-is-cols {
    grid-template-columns: 1fr;
  }

  .split-reverse .split-text,
  .split-reverse .split-image {
    order: initial;
  }

  .cta-banner .container,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 18px;
  }

  .hero {
    min-height: unset;
  }

  .hero-inner {
    padding: 54px 0;
  }

  .hero h1 {
    font-size: clamp(34px, 11vw, 54px);
  }

  .hero p,
  .page-hero p {
    font-size: 16px;
  }

  .hero-btns {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .svc-grid,
  .cards-grid,
  .industries-grid,
  .stats-grid,
  .process-grid,
  .app-grid,
  .footer-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .footer-cta-col + .footer-cta-col {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
  }

  .page-hero {
    padding: 64px 0 54px;
  }

  .service-panel,
  .split-image {
    min-height: 300px;
  }
}
