:root {
  --bg: #f4f6fa;
  --surface: #ffffff;
  --surface-soft: #f9fbff;
  --ink: #132235;
  --muted: #596474;
  --accent: #d39a2f;
  --accent-strong: #a86c0f;
  --line: #d7e0eb;
  --line-strong: #c9d5e5;
  --card-border: rgba(19, 34, 53, 0.12);
  --gold-line: rgba(211, 154, 47, 0.35);
  --gold-line-strong: rgba(211, 154, 47, 0.62);
  --shadow-soft: 0 12px 28px rgba(16, 34, 54, 0.1);
  --shadow-strong: 0 18px 40px rgba(16, 34, 54, 0.15);
  --radius: 18px;
  --max-width: 1320px;
  --container-width: min(var(--max-width), 92%);
}

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

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 110px;
}

body {
  font-family: "DM Sans", sans-serif;
  color: var(--ink);
  background: linear-gradient(170deg, #f8faff 0%, #edf2f8 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

.page-glow {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(44% 34% at 10% 8%, rgba(211, 154, 47, 0.2), transparent 68%),
    radial-gradient(34% 30% at 90% 14%, rgba(27, 62, 112, 0.14), transparent 70%),
    radial-gradient(60% 45% at 52% 93%, rgba(94, 129, 178, 0.16), transparent 76%);
}

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

a {
  color: inherit;
}

.section {
  width: var(--container-width);
  margin: 0 auto;
  padding: 96px 0;
}

.section-head {
  max-width: 860px;
  margin-bottom: 34px;
}

.section-head h1,
.section-head h2 {
  font-family: "Sora", sans-serif;
  line-height: 1.2;
  margin-bottom: 12px;
}

.section-head h1 {
  font-size: clamp(2rem, 1.65rem + 2vw, 3.7rem);
}

.section-head h2 {
  font-size: clamp(1.75rem, 1.45rem + 1.3vw, 2.8rem);
}

.section-head p {
  color: var(--muted);
  font-size: 1.05rem;
}

.navbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 999;
  background: rgba(248, 251, 255, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(19, 34, 53, 0.06);
  transition: all 0.25s ease;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 24px rgba(16, 34, 54, 0.1);
}

.nav-inner {
  width: var(--container-width);
  margin: 0 auto;
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.logo {
  text-decoration: none;
  display: inline-flex;
  flex-direction: column;
  line-height: 1.12;
}

.brand {
  font-family: "Sora", sans-serif;
  letter-spacing: 0.08em;
  font-size: 1.1rem;
  font-weight: 800;
}

.sub {
  color: var(--accent-strong);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.75rem;
  margin-top: 4px;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line-strong);
  background: var(--surface);
  color: var(--ink);
  border-radius: 10px;
  padding: 10px 12px;
  font-weight: 700;
  cursor: pointer;
}

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

.nav-links a {
  position: relative;
  text-decoration: none;
  font-weight: 700;
  color: var(--ink);
  padding: 6px 2px;
  transition: color 0.2s ease;
}

.nav-links a:hover:not(.cta-btn) {
  color: var(--accent-strong);
}

.nav-links a.active-link:not(.cta-btn) {
  color: var(--accent-strong);
}

.nav-links a.active-link:not(.cta-btn)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  border-radius: 4px;
  background: linear-gradient(90deg, #f1c568, #c68619);
}

.cta-btn,
.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: none;
  font-weight: 700;
  font-family: "DM Sans", sans-serif;
  text-decoration: none;
  cursor: pointer;
}

.nav-links .cta-btn {
  background: linear-gradient(140deg, #122848, #0d1e36);
  color: #ffffff;
  min-width: 136px;
  white-space: nowrap;
  padding: 12px 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 24px rgba(13, 30, 54, 0.24);
}

.nav-links .cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(13, 30, 54, 0.3);
}

.hero {
  width: var(--container-width);
  margin: 0 auto;
  padding: 148px 0 82px;
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 30px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--gold-line-strong);
  border-radius: 999px;
  padding: 8px 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.84rem;
  font-weight: 700;
  color: #8b5e11;
  background: rgba(211, 154, 47, 0.1);
  margin-bottom: 16px;
}

.hero h1 {
  font-family: "Sora", sans-serif;
  font-size: clamp(2rem, 1.7rem + 2.2vw, 4.2rem);
  line-height: 1.08;
  margin-bottom: 18px;
  max-width: 15ch;
}

.hero .lead {
  color: var(--muted);
  max-width: 62ch;
  font-size: 1.08rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 26px 0 30px;
}

.primary-btn {
  background: linear-gradient(120deg, #e2b15a, #d38b0f);
  color: #241300;
  padding: 12px 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(211, 139, 15, 0.35);
}

.secondary-btn {
  background: var(--surface);
  color: var(--ink);
  border: 1px solid var(--line-strong);
  padding: 12px 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.secondary-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

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

.hero-stats article {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  padding: 14px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.hero-stats article:hover {
  transform: translateY(-4px);
  border-color: var(--gold-line-strong);
  box-shadow: var(--shadow-strong);
}

.hero-stats h3 {
  font-family: "Sora", sans-serif;
  font-size: 1.35rem;
}

.hero-stats p {
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-panel {
  background: linear-gradient(150deg, #fff7e8, #ffffff 62%);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-strong);
  transition: border-color 0.2s ease;
}

.hero-panel:hover {
  border-color: var(--gold-line-strong);
}

.hero-panel h2 {
  font-family: "Sora", sans-serif;
  font-size: clamp(1.3rem, 1.05rem + 0.9vw, 1.9rem);
  margin-bottom: 16px;
}

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

.hero-panel-card {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  padding: 14px;
  box-shadow: 0 8px 18px rgba(16, 34, 54, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.hero-panel-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold-line-strong);
  box-shadow: 0 14px 24px rgba(16, 34, 54, 0.12);
}

.hero-panel-card h3 {
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  margin-bottom: 6px;
}

.hero-panel-card p {
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-panel-note {
  margin-top: 14px;
  color: #795312;
  font-weight: 600;
}

.trust-band {
  padding: 28px 0;
  border-top: 1px solid rgba(19, 34, 53, 0.08);
  border-bottom: 1px solid rgba(19, 34, 53, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(252, 246, 234, 0.72));
}

.trust-band-inner {
  width: var(--container-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.35fr;
  gap: 20px;
  align-items: center;
}

.mini-label {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  font-weight: 700;
  color: #8a5d12;
  margin-bottom: 8px;
}

.trust-intro h2 {
  font-family: "Sora", sans-serif;
  font-size: clamp(1.4rem, 1.2rem + 1vw, 2rem);
  line-height: 1.25;
  margin-bottom: 8px;
}

.trust-intro p {
  color: var(--muted);
}

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

.trust-item {
  background: var(--surface);
  border-radius: 14px;
  border: 1px solid var(--card-border);
  padding: 14px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.trust-item:hover {
  transform: translateY(-4px);
  border-color: var(--gold-line-strong);
  box-shadow: var(--shadow-strong);
}

.trust-item h3 {
  font-family: "Sora", sans-serif;
  font-size: 0.98rem;
  margin-bottom: 4px;
}

.trust-item p {
  color: var(--muted);
  font-size: 0.92rem;
}

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

.about-grid article,
.metric-card,
.service-card,
.process-row article,
.project-card,
.faq-item,
.contact-card,
.quote-form,
.story-card,
.value-card,
.timeline-grid article,
.capability-wrap,
.page-stats article {
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.about-grid article:hover,
.metric-card:hover,
.service-card:hover,
.process-row article:hover,
.project-card:hover,
.faq-item:hover,
.contact-card:hover,
.quote-form:hover,
.story-card:hover,
.value-card:hover,
.timeline-grid article:hover,
.capability-wrap:hover,
.page-stats article:hover {
  transform: translateY(-5px);
  border-color: var(--gold-line-strong);
  box-shadow: var(--shadow-strong);
}

.about-grid article {
  background: var(--surface);
  border-radius: 16px;
  padding: 24px;
}

.about-grid h3 {
  font-family: "Sora", sans-serif;
  font-size: 1.16rem;
  margin-bottom: 9px;
}

.about-grid p {
  color: var(--muted);
}

.metrics {
  padding-top: 36px;
}

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

.metric-card {
  background: linear-gradient(150deg, #ffffff, #f8fbff);
  border-radius: 14px;
  padding: 22px;
  text-align: center;
}

.metric-card h3 {
  font-family: "Sora", sans-serif;
  font-size: clamp(1.8rem, 1.5rem + 0.8vw, 2.4rem);
  color: var(--accent-strong);
  margin-bottom: 4px;
}

.metric-card p {
  color: var(--muted);
  font-weight: 700;
}

.services {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(250, 244, 232, 0.5));
  border-top: 1px solid rgba(19, 34, 53, 0.08);
  border-bottom: 1px solid rgba(19, 34, 53, 0.08);
}

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

.service-card {
  background: var(--surface);
  border-radius: 16px;
  padding: 22px;
}

.service-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  margin-bottom: 12px;
  font-weight: 800;
  color: #332101;
  background: linear-gradient(130deg, #f0c26c, #ce8e1f);
}

.service-card h3 {
  font-family: "Sora", sans-serif;
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.service-card p {
  color: var(--muted);
}

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

.process-row article {
  position: relative;
  background: var(--surface);
  border-radius: 14px;
  padding: 18px;
}

.process-row article::before {
  content: "";
  position: absolute;
  top: 16px;
  right: -10px;
  width: 20px;
  height: 2px;
  background: linear-gradient(90deg, #efc66c, #c7861a);
}

.process-row article:last-child::before {
  display: none;
}

.process-row h3 {
  font-family: "Sora", sans-serif;
  font-size: 1.02rem;
  margin-bottom: 6px;
}

.process-row p {
  color: var(--muted);
  font-size: 0.94rem;
}

.projects {
  color: #f3f8ff;
  background: linear-gradient(170deg, #0f1f34, #152d4d 45%, #1c3a63 100%);
  border-radius: var(--radius);
  padding: 60px 34px;
}

.projects .section-head {
  margin-bottom: 28px;
}

.projects .section-head p {
  color: rgba(243, 248, 255, 0.8);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.filter-btn {
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
  color: #f3f8ff;
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-btn.active,
.filter-btn:hover {
  background: #f1bd57;
  color: #241506;
  border-color: transparent;
}

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

.project-card {
  background: rgba(255, 255, 255, 0.98);
  color: var(--ink);
  border-radius: 14px;
  overflow: hidden;
  position: relative;
}

.project-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #efc56c, #cb8617);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.project-card:hover::before {
  opacity: 1;
}

.project-card img {
  width: 100%;
  height: 192px;
  object-fit: cover;
}

.project-content {
  padding: 15px;
}

.tag {
  display: inline-block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: #754f0d;
  background: #ffe7bf;
  border-radius: 999px;
  padding: 4px 8px;
  margin-bottom: 8px;
}

.project-content h3 {
  font-family: "Sora", sans-serif;
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.project-content p {
  color: #506178;
  font-size: 0.95rem;
}

.project-card.hidden {
  display: none;
}

.industries {
  padding-top: 86px;
}

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

.industry-card {
  background: linear-gradient(160deg, #ffffff, #f8fbff);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  min-height: 94px;
  padding: 18px;
  display: flex;
  align-items: center;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.industry-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-line-strong);
  box-shadow: var(--shadow-strong);
}

.industry-card h3 {
  font-family: "Sora", sans-serif;
  font-size: 1.04rem;
}

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

.faq-item {
  background: var(--surface);
  border-radius: 14px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  border: none;
  background: transparent;
  text-align: left;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  cursor: pointer;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  color: var(--ink);
}

.faq-icon {
  font-size: 1.26rem;
  line-height: 1;
  color: var(--accent-strong);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.22s ease;
}

.faq-answer p {
  padding: 0 18px 16px;
  color: var(--muted);
}

.faq-item.open .faq-answer {
  max-height: 220px;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

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

.contact-card {
  background: linear-gradient(165deg, #102037, #1a3559);
  border-radius: 16px;
  color: #edf4ff;
  padding: 25px;
}

.contact-card h2 {
  font-family: "Sora", sans-serif;
  font-size: clamp(1.45rem, 1.2rem + 1vw, 2rem);
  margin-bottom: 10px;
}

.contact-card p {
  color: rgba(237, 244, 255, 0.84);
  margin-bottom: 14px;
}

.contact-card ul {
  list-style: none;
  display: grid;
  gap: 8px;
}

.quote-form {
  background: var(--surface);
  border-radius: 16px;
  padding: 22px;
  display: grid;
  gap: 12px;
}

.quote-form label {
  font-weight: 700;
  font-size: 0.94rem;
}

.quote-form input,
.quote-form textarea {
  width: 100%;
  border: 1px solid #cad6e6;
  border-radius: 11px;
  padding: 11px 12px;
  font-family: "DM Sans", sans-serif;
  color: var(--ink);
  background: #fff;
}

.quote-form input:focus,
.quote-form textarea:focus {
  outline: 2px solid rgba(211, 154, 47, 0.2);
  border-color: #d8a249;
}

.page-hero {
  padding-top: 142px;
}

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

.page-stats article {
  background: var(--surface);
  border-radius: 14px;
  padding: 18px;
}

.page-stats h3 {
  font-family: "Sora", sans-serif;
  font-size: 1.45rem;
  color: var(--accent-strong);
  margin-bottom: 4px;
}

.page-stats p {
  color: var(--muted);
}

.story-layout {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 14px;
}

.story-card {
  background: var(--surface);
  border-radius: 16px;
  padding: 24px;
}

.story-card h2 {
  font-family: "Sora", sans-serif;
  font-size: clamp(1.45rem, 1.25rem + 0.9vw, 2.1rem);
  margin-bottom: 10px;
}

.story-card p {
  color: var(--muted);
  margin-bottom: 12px;
}

.story-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
}

.story-gallery img {
  border-radius: 14px;
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-soft);
  height: 100%;
  object-fit: cover;
}

.story-gallery img:first-child {
  grid-column: 1 / 3;
  min-height: 215px;
}

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

.value-card {
  background: var(--surface);
  border-radius: 14px;
  padding: 20px;
}

.value-card h3 {
  font-family: "Sora", sans-serif;
  font-size: 1.02rem;
  margin-bottom: 8px;
}

.value-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

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

.timeline-grid article {
  background: var(--surface);
  border-radius: 14px;
  padding: 18px;
}

.timeline-grid h3 {
  font-family: "Sora", sans-serif;
  color: var(--accent-strong);
  margin-bottom: 6px;
}

.timeline-grid p {
  color: var(--muted);
  font-size: 0.95rem;
}

.capability-wrap {
  background: linear-gradient(160deg, #fff8ea, #ffffff);
  border-radius: var(--radius);
  padding: 30px;
}

.capability-wrap h2 {
  font-family: "Sora", sans-serif;
  font-size: clamp(1.45rem, 1.2rem + 1vw, 2.2rem);
  margin-bottom: 12px;
}

.capability-wrap ul {
  list-style: none;
  display: grid;
  gap: 9px;
  margin-bottom: 18px;
}

.capability-wrap li {
  color: var(--muted);
  position: relative;
  padding-left: 22px;
}

.capability-wrap li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(130deg, #f0c26c, #ca8517);
  position: absolute;
  left: 0;
  top: 8px;
}

.footer {
  margin-top: 38px;
  background: #0d182b;
  color: #d8e5f6;
  padding: 34px 0 24px;
}

.footer-inner {
  width: var(--container-width);
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.footer-brand {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  margin-bottom: 8px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a {
  color: #d8e5f6;
  text-decoration: none;
}

.copyright {
  width: var(--container-width);
  margin: 16px auto 0;
  color: rgba(216, 229, 246, 0.75);
  font-size: 0.92rem;
}

.whatsapp-btn,
.back-to-top {
  position: fixed;
  right: 22px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  z-index: 100;
}

.whatsapp-btn {
  bottom: 24px;
  background: #26d366;
  color: #fff;
  padding: 10px 16px;
  box-shadow: 0 10px 22px rgba(38, 211, 102, 0.34);
}

.back-to-top {
  bottom: 78px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(19, 34, 53, 0.2);
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: all 0.2s ease;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: all 0.75s ease;
}

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

@media (max-width: 1240px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .trust-band-inner {
    grid-template-columns: 1fr;
  }

  .about-grid,
  .metric-grid,
  .service-grid,
  .process-row,
  .project-grid,
  .industry-grid,
  .contact,
  .page-stats,
  .timeline-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .story-layout {
    grid-template-columns: 1fr;
  }

  .process-row article::before {
    display: none;
  }
}

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

  .hero {
    padding-top: 130px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: 86px;
    right: 2%;
    width: min(310px, 96vw);
    background: #fff;
    border: 1px solid var(--line-strong);
    border-radius: 12px;
    box-shadow: var(--shadow-strong);
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 12px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: all 0.2s ease;
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a {
    padding: 10px;
    border-radius: 8px;
  }

  .nav-links a.active-link:not(.cta-btn)::after {
    display: none;
  }

  .hero-panel-grid,
  .hero-stats,
  .trust-pillars,
  .about-grid,
  .metric-grid,
  .service-grid,
  .process-row,
  .project-grid,
  .industry-grid,
  .contact,
  .page-stats,
  .value-grid,
  .timeline-grid {
    grid-template-columns: 1fr;
  }

  .projects {
    padding: 46px 20px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
