@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Outfit:wght@500;700;800&display=swap');

:root {
  --blue-deep: #0a2a52;
  --blue-deep-light: #0d3a73;
  --orange: #ff7a1a;
  --yellow: #ffc830;
  --cyan: #21e6e6;

  /* Theme variables - Default Dark Mode */
  --bg-color: #0b0f17;
  --bg-card: #141b27;
  --bg-input: #1b2434;
  --border-color: rgba(255, 255, 255, 0.08);
  --text-color: #f3f4f6;
  --text-muted: #9ca3af;
  --hero-bg: linear-gradient(160deg, #040947 0%, #0a2444 60%, #061c36 100%);
  --logo-blend: lighten;

  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --max-w: 1200px;
}

[data-theme="light"] {
  --bg-color: #f8fafc;
  --bg-card: #ffffff;
  --bg-input: #f1f5f9;
  --border-color: rgba(0, 0, 0, 0.08);
  --text-color: #0f172a;
  --text-muted: #64748b;
  --hero-bg: linear-gradient(165deg, #eef2f6 0%, #dbeafe 50%, #eff6ff 100%);
  --logo-blend: multiply;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-color);
  color: var(--text-color);
  transition: background-color 0.3s, color 0.3s;
  overflow-x: hidden;
  line-height: 1.6;
}

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

ul {
  list-style: none;
}

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

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

/* ---------- Typography ---------- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.3px;
  cursor: pointer;
  border: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-transform: uppercase;
  font-family: var(--font-heading);
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--yellow));
  color: #0a2a52;
  box-shadow: 0 8px 20px rgba(255, 122, 26, 0.25);
}

.btn-primary:hover {
  box-shadow: 0 12px 28px rgba(255, 122, 26, 0.4);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--text-color);
  color: var(--text-color);
  opacity: 0.85;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.05);
  opacity: 1;
}

[data-theme="light"] .btn-outline:hover {
  background: rgba(0, 0, 0, 0.03);
}

.btn-dark {
  background: var(--blue-deep);
  color: #fff;
}

.btn-dark:hover {
  box-shadow: 0 8px 20px rgba(10, 42, 82, 0.3);
}

/* ---------- Header ---------- */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
  padding: 24px 0;
}

header.scrolled {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 14px 0;
  border-bottom: 1px solid var(--border-color);
}

header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo configuration */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-mark {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-text .lt-main {
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 1px;
  color: var(--text-color);
}

.logo-text .lt-tag {
  font-size: 8px;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: 2px;
}

nav ul {
  display: flex;
  gap: 32px;
}

nav a {
  color: var(--text-color);
  font-size: 14.5px;
  font-weight: 500;
  position: relative;
  padding-bottom: 4px;
  opacity: 0.85;
  transition: opacity 0.25s;
}

nav a:hover {
  opacity: 1;
}

nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--orange), var(--yellow));
  transition: width 0.3s ease;
}

nav a:hover::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Theme Toggle Button */
.theme-toggle {
  background: transparent;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-color);
  font-size: 18px;
  transition: background 0.3s, transform 0.3s;
}

.theme-toggle:hover {
  background: var(--bg-input);
  transform: rotate(15deg);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.burger span {
  width: 24px;
  height: 2px;
  background: var(--text-color);
  border-radius: 2px;
  transition: 0.3s;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--hero-bg);
  overflow: hidden;
  padding-top: 100px;
  transition: background 0.3s;
}

.hero .wave-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: repeating-linear-gradient(115deg, transparent 0 40px, var(--cyan) 40px 41px, transparent 41px 80px);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 2;
}

.eyebrow {
  color: var(--orange);
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 13px;
  text-transform: uppercase;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--orange);
}

.hero h1 {
  font-size: clamp(36px, 5.5vw, 60px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--text-color);
}

.hero h1 span {
  background: linear-gradient(135deg, var(--orange), var(--yellow));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p.lead {
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 36px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

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

/* 3D Logo rendering integration styling */
.logo-render-wrapper {
  position: relative;
  width: min(480px, 90vw);
  display: flex;
  justify-content: center;
  align-items: center;
  animation: float 6s ease-in-out infinite;
}

.logo-render-wrapper img {
  width: 100%;
  height: auto;
  object-fit: contain;
  /*mix-blend-mode: screen;*/
  transition: filter 0.3s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-16px);
  }
}

.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-muted);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.scroll-cue .line {
  width: 1px;
  height: 30px;
  background: var(--text-muted);
  opacity: 0.5;
  animation: scrollline 2s infinite;
}

@keyframes scrollline {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }

  50% {
    transform: scaleY(1);
    transform-origin: top;
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

/* ---------- Sections ---------- */
section {
  padding: 100px 0;
}

.section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-head .eyebrow {
  justify-content: center;
}

.section-head .eyebrow::before {
  display: none;
}

.section-head h2 {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 16px;
  color: var(--text-color);
}

.section-head p {
  color: var(--text-muted);
  font-size: 17px;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Pillars ---------- */
.pillars {
  background-color: var(--bg-card);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

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

.pillar-card {
  background: var(--bg-color);
  border-radius: 16px;
  padding: 40px 32px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.02);
  border: 1px solid var(--border-color);
  border-top: 4px solid transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-top-color 0.3s ease;
}

.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border-top-color: var(--orange);
}

.pillar-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--blue-deep), var(--blue-deep-light));
  color: #fff;
  font-size: 22px;
  margin-bottom: 24px;
}

.pillar-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--text-color);
}

.pillar-card p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
}

/* ---------- Prebuilt Products Showcase ---------- */
.showcase {
  background-color: var(--bg-color);
  overflow: hidden;
}

.carousel-container {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
}

.carousel-viewport {
  overflow: hidden;
  border-radius: 16px;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.carousel-slide {
  flex: 0 0 100%;
  width: 100%;
  padding: 10px;
}

/* --- Web Mockup (Browser Frame) --- */
.browser-mockup {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Browser Chrome */
.browser-header {
  background-color: var(--bg-input);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid var(--border-color);
}

.browser-dots {
  display: flex;
  gap: 6px;
}

.browser-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
}

.browser-dot:nth-child(1) {
  background-color: #ef4444;
}

.browser-dot:nth-child(2) {
  background-color: #eab308;
}

.browser-dot:nth-child(3) {
  background-color: #22c55e;
}

.browser-address {
  flex-grow: 1;
  background-color: var(--bg-card);
  border-radius: 6px;
  padding: 4px 12px;
  font-size: 11px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border-color);
}

.browser-address i {
  font-size: 10px;
}

/* Mockup Content Layout */
.mockup-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  min-height: 380px;
}

/* Left side details */
.mockup-info {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--border-color);
}

.mockup-info h3 {
  font-size: 26px;
  margin-bottom: 12px;
  color: var(--text-color);
}

.mockup-info p {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 24px;
}

.mockup-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.mockup-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-color);
}

.mockup-features li i {
  color: var(--orange);
}

/* Right side graphic/dashboard simulation */
.mockup-viz {
  background-color: var(--bg-input);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  justify-content: center;
}

/* Simulated UI components */
.sim-nav {
  height: 24px;
  background-color: var(--bg-card);
  border-radius: 4px;
  border: 1px solid var(--border-color);
  width: 70%;
}

.sim-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.sim-card {
  background-color: var(--bg-card);
  border-radius: 8px;
  border: 1px solid var(--border-color);
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sim-bar {
  height: 10px;
  background-color: var(--border-color);
  border-radius: 4px;
  width: 100%;
}

.sim-bar.short {
  width: 60%;
}

.sim-bar.accent {
  background: linear-gradient(90deg, var(--orange), var(--yellow));
}

.sim-chart {
  height: 120px;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  position: relative;
  display: flex;
  align-items: flex-end;
  gap: 12px;
  padding: 15px;
}

.sim-chart-bar {
  flex-grow: 1;
  background-color: var(--border-color);
  border-radius: 4px;
}

.sim-chart-bar:nth-child(1) {
  height: 40%;
}

.sim-chart-bar:nth-child(2) {
  height: 75%;
  background: var(--orange);
}

.sim-chart-bar:nth-child(3) {
  height: 50%;
}

.sim-chart-bar:nth-child(4) {
  height: 90%;
  background: var(--yellow);
}

.sim-chart-bar:nth-child(5) {
  height: 60%;
}

/* Carousel Controls */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.carousel-btn:hover {
  background-color: var(--orange);
  color: #fff;
  border-color: var(--orange);
}

.carousel-btn.prev {
  left: -24px;
}

.carousel-btn.next {
  right: -24px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
}

.carousel-dot-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--border-color);
  cursor: pointer;
  transition: all 0.3s;
}

.carousel-dot-indicator.active {
  background-color: var(--orange);
  width: 24px;
  border-radius: 5px;
}

/* ---------- Services Grid ---------- */
.services-section {
  background-color: var(--bg-card);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
}

.service-card {
  border-radius: 18px;
  padding: 44px 38px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-color);
  background-color: var(--bg-color);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.service-card::after {
  content: '';
  position: absolute;
  right: -40px;
  top: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--orange), var(--yellow));
  opacity: 0.08;
  pointer-events: none;
}

.service-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  background: var(--bg-input);
  color: var(--orange);
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 24px;
  margin-bottom: 14px;
  color: var(--text-color);
}

.service-card p.desc {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 26px;
}

.service-card ul {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 32px;
}

.service-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: var(--text-color);
}

.service-card ul li i {
  color: var(--orange);
  margin-top: 4px;
  font-size: 13px;
}

/* ---------- Process ---------- */
.process-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.process-track::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 6%;
  right: 6%;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--yellow));
  z-index: 0;
  opacity: 0.3;
}

.step {
  position: relative;
  text-align: center;
  z-index: 1;
}

.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 3px solid var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--text-color);
  margin: 0 auto 20px;
  font-size: 18px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.step h4 {
  font-size: 17px;
  color: var(--text-color);
  margin-bottom: 10px;
}

.step p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ---------- Stats band ---------- */
.stats-band {
  background: linear-gradient(135deg, var(--blue-deep), var(--blue-deep-light));
  padding: 60px 0;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  gap: 20px;
}

.stats-grid .num {
  font-size: 40px;
  font-weight: 800;
  color: var(--yellow);
  font-family: var(--font-heading);
}

.stats-grid .lbl {
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-top: 6px;
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
}

.contact-info {
  background: var(--bg-card);
  border-radius: 18px;
  padding: 44px 38px;
  border: 1px solid var(--border-color);
}

.contact-info h3 {
  font-size: 24px;
  margin-bottom: 14px;
  color: var(--text-color);
}

.contact-info p.sub {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 36px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.contact-item .ic {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--bg-input);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
  font-size: 16px;
}

.contact-item h5 {
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.contact-item p {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-color);
}

.socials {
  display: flex;
  gap: 12px;
  margin-top: 36px;
}

.socials a {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--bg-input);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-color);
  transition: all 0.25s;
}

.socials a:hover {
  background: var(--orange);
  color: #fff;
  transform: translateY(-3px);
}

form {
  background: var(--bg-card);
  border-radius: 18px;
  padding: 44px 38px;
  border: 1px solid var(--border-color);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.field {
  margin-bottom: 22px;
}

.field label {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 8px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-size: 14.5px;
  font-family: inherit;
  color: var(--text-color);
  transition: border-color 0.25s, box-shadow 0.25s;
  background: var(--bg-input);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 122, 26, 0.15);
  background: var(--bg-card);
}

.field textarea {
  resize: vertical;
  min-height: 120px;
}

.form-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 14px;
}

.form-msg {
  display: none;
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
}

.form-msg.ok {
  display: block;
  background: #e8f9ee;
  color: #1c7a40;
  border: 1px solid #b9ecc9;
}

.form-msg.err {
  display: block;
  background: #fef2f2;
  color: #b91c1c;
  border: 1px solid #fee2e2;
}

/* ---------- Footer ---------- */
footer {
  background: var(--bg-card);
  color: var(--text-muted);
  padding: 60px 0 30px;
  border-top: 1px solid var(--border-color);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 30px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border-color);
}

.footer-nav {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-nav a {
  font-size: 14.5px;
  color: var(--text-muted);
}

.footer-nav a:hover {
  color: var(--orange);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 12px;
}

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
  .mockup-content {
    grid-template-columns: 1fr;
  }

  .mockup-info {
    border-right: none;
    border-bottom: 1px solid var(--border-color);
    padding: 30px;
  }

  .mockup-viz {
    padding: 30px;
  }
}

@media (max-width: 900px) {

  nav,
  .nav-cta .btn {
    display: none;
  }

  .burger {
    display: flex;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero p.lead {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-ctas {
    justify-content: center;
  }

  .pillars-grid,
  .services-grid,
  .process-track,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .process-track::before {
    display: none;
  }

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-nav {
    justify-content: center;
  }
}