/* Chamunda Industries — industrial one-page site */

:root {
  --black: #111111;
  --charcoal: #181818;
  --panel: #222222;
  --yellow: #f5c400;
  --yellow-hover: #ffd21a;
  --yellow-ink: #1a1400;
  --white: #ffffff;
  --offwhite: #f5f5f2;
  --gray-dark: #333333;
  --gray: #777777;
  --steel: #9a9a9a;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(245, 196, 0, 0.35);
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  --radius: 6px;
  --nav-h: 76px;
  --bar-h: 68px;
  --max: 1180px;
  --font: Inter, Arial, Helvetica, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--black);
  background: var(--offwhite);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

button,
input {
  font-family: inherit;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 1000;
  background: var(--yellow);
  color: var(--yellow-ink);
  padding: 8px 14px;
  font-weight: 600;
}

.skip-link:focus {
  top: 12px;
}

.container {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.section {
  padding: 88px 0;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 12px;
}

.section-kicker::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--yellow);
}

.section-title {
  margin: 0 0 14px;
  font-size: clamp(1.75rem, 2.4vw, 2.4rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.section-lead {
  margin: 0;
  max-width: 640px;
  color: var(--gray);
  font-size: 1.05rem;
}

.section-head {
  margin-bottom: 40px;
}

.dark-section {
  background: var(--black);
  color: var(--white);
}

.dark-section .section-lead {
  color: #c9c9c4;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.btn:focus-visible,
.nav-links a:focus-visible,
.icon-link:focus-visible,
.contact-item a:focus-visible,
.menu-toggle:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 3px;
}

.btn-primary {
  background: var(--yellow);
  color: var(--yellow-ink);
}

.btn-primary:hover {
  background: var(--yellow-hover);
}

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

.btn-ghost:hover {
  border-color: var(--yellow);
  color: var(--yellow);
}

.btn-block {
  width: 100%;
}

/* Nav */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(17, 17, 17, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--nav-h);
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  min-width: 0;
}

.brand-mark {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border-radius: 8px;
  background: #ffffff;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-name {
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 0.92rem;
}

.brand-tag {
  color: var(--steel);
  font-size: 0.72rem;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: #d8d8d4;
  font-size: 0.92rem;
  font-weight: 500;
}

.nav-links a:hover,
.nav-links a[aria-current="true"] {
  color: var(--yellow);
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 20px;
}

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

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  border-radius: 4px;
  padding: 0;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  margin: 0 auto;
  position: relative;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-toggle span::before {
  top: -6px;
}

.menu-toggle span::after {
  top: 6px;
}

.menu-toggle[aria-expanded="true"] span {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] span::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span::after {
  top: 0;
  transform: rotate(-45deg);
}

/* Hero */

.hero {
  position: relative;
  background: var(--black);
  color: var(--white);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 640px) minmax(0, 1fr);
  min-height: calc(100vh - var(--nav-h));
  max-height: 860px;
  width: 100%;
  padding-left: max(20px, calc((100% - var(--max)) / 2));
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 40px 72px 0;
  position: relative;
  z-index: 1;
}

.hero-copy::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 -40vw;
  width: 50vw;
  background-image:
    linear-gradient(rgba(245, 196, 0, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 196, 0, 0.045) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(90deg, #000, transparent);
  pointer-events: none;
}

.hero-kicker {
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin: 0 0 16px;
}

.hero h1 {
  margin: 0 0 18px;
  font-size: clamp(2.2rem, 4.4vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 700;
  max-width: 12ch;
}

.hero-desc {
  margin: 0 0 32px;
  max-width: 46ch;
  color: #d2d2cc;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.hero-location {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--steel);
  font-size: 0.92rem;
}

.hero-media {
  position: relative;
  min-height: 100%;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--black) 0%, rgba(17, 17, 17, 0.18) 28%, transparent 48%);
  pointer-events: none;
}

.hero-frame {
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(245, 196, 0, 0.22);
  pointer-events: none;
  z-index: 1;
}

/* Services */

.services {
  background: var(--offwhite);
}

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

.service-card {
  background: var(--white);
  border: 1px solid #e6e6e0;
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  border-color: var(--yellow);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.service-card img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  width: 100%;
}

.service-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.service-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-num {
  color: var(--yellow);
  font-weight: 700;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
}

.service-icon {
  width: 28px;
  height: 28px;
  color: var(--yellow);
}

.service-card h3 {
  margin: 0;
  font-size: 1.12rem;
  letter-spacing: -0.01em;
}

.service-card p {
  margin: 0;
  color: var(--gray);
  font-size: 0.96rem;
}

/* Industries */

.industries {
  background: var(--charcoal);
  color: var(--white);
}

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

.industry-card {
  border: 1px solid var(--line);
  background: var(--panel);
  padding: 24px 22px;
  border-radius: var(--radius);
  position: relative;
}

.industry-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 3px;
  background: var(--yellow);
}

.industry-card h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
}

.industry-card p {
  margin: 0;
  color: #c4c4be;
  font-size: 0.95rem;
}

/* Companies */

.companies {
  background: var(--offwhite);
}

.companies.section {
  padding-top: 72px;
  padding-bottom: 72px;
}

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

.company-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.company-card {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 88px;
  padding: 20px 14px;
  background: var(--white);
  border: 1px solid #e6e6e0;
  border-radius: var(--radius);
  text-align: center;
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: 0.01em;
  line-height: 1.3;
}

.company-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 18px;
  right: 18px;
  height: 2px;
  background: var(--yellow);
}

.company-card-more {
  background: transparent;
  border-style: dashed;
  color: var(--gray-dark);
  font-weight: 600;
}

/* Process */

.process {
  background: var(--white);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.steps::before {
  content: "";
  position: absolute;
  top: 23px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: #e4e4de;
}

.step {
  padding: 0 16px;
  position: relative;
}

.step-num {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--black);
  color: var(--yellow);
  display: grid;
  place-items: center;
  font-weight: 700;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
  border: 2px solid var(--yellow);
}

.step h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
}

.step p {
  margin: 0;
  color: var(--gray);
}

/* About */

.about {
  background: var(--charcoal);
  color: var(--white);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 36px 56px;
  align-items: start;
  margin-bottom: 40px;
}

.about .section-title {
  max-width: 14ch;
}

.about-sub {
  margin: 0 0 16px;
  font-size: 1.18rem;
  font-weight: 600;
  line-height: 1.35;
}

.about-credential {
  display: inline-block;
  margin: 0;
  padding-top: 12px;
  border-top: 2px solid var(--yellow);
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-copy p {
  margin: 0 0 16px;
  max-width: 58ch;
  color: #c9c9c4;
  font-size: 1.04rem;
}

.about-copy p:last-child {
  margin-bottom: 0;
}

.about-philosophy {
  margin: 0;
  padding: 28px 32px 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-left: 3px solid var(--yellow);
}

.about-philosophy blockquote {
  margin: 0;
}

.about-philosophy blockquote p {
  margin: 0;
  font-size: clamp(1.28rem, 2.3vw, 1.8rem);
  line-height: 1.35;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.about-philosophy blockquote p::before {
  content: "“";
  color: var(--yellow);
  font-weight: 700;
  margin-right: 4px;
}

.about-philosophy blockquote p::after {
  content: "”";
  color: var(--yellow);
  font-weight: 700;
  margin-left: 2px;
}

.about-philosophy figcaption {
  margin: 14px 0 0;
  color: var(--steel);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* Why */

.why {
  background: var(--offwhite);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.why-card {
  background: var(--white);
  border: 1px solid #e6e6e0;
  padding: 26px 24px;
  border-radius: var(--radius);
}

.why-card h3 {
  margin: 0 0 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
}

.why-card h3::before {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--yellow);
  flex: 0 0 auto;
}

.why-card p {
  margin: 0;
  color: var(--gray);
}

/* Typical requirements */

.examples {
  background: var(--black);
  color: var(--white);
}

.example-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
}

.example-card {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.example-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 0.5s ease;
}

.example-card:hover img {
  transform: scale(1.04);
}

.example-card figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 48px 18px 16px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.86));
  font-weight: 600;
  font-size: 1rem;
}

.example-card.wide {
  grid-row: span 2;
  min-height: 432px;
}

.example-list {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.example-list li {
  border: 1px solid var(--line);
  color: #d8d8d4;
  padding: 8px 12px;
  font-size: 0.9rem;
  border-radius: 4px;
}

/* CTA band */

.cta-band {
  background:
    linear-gradient(180deg, rgba(17, 17, 17, 0.55), rgba(17, 17, 17, 0.82)),
    url("../assets/images/welding.webp") center / cover no-repeat;
  color: var(--white);
  text-align: center;
}

.cta-band h2 {
  margin: 0 0 12px;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  letter-spacing: -0.02em;
}

.cta-band p {
  margin: 0 auto 28px;
  max-width: 540px;
  color: #d8d8d4;
}

.cta-band .btn {
  min-width: 240px;
}

/* Contact */

.contact {
  background: var(--offwhite);
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: stretch;
}

.contact-card {
  background: var(--white);
  border: 1px solid #e6e6e0;
  border-radius: var(--radius);
  padding: 28px;
}

.contact-list {
  display: grid;
  gap: 18px;
  margin: 24px 0 0;
}

.contact-item {
  display: grid;
  gap: 4px;
}

.contact-item span {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray);
  font-weight: 700;
}

.contact-item a,
.contact-item strong {
  font-size: 1.15rem;
  font-weight: 600;
}

.contact-item a:hover {
  color: #b38a00;
}

.email-fallback {
  margin: 6px 0 0;
  font-size: 0.86rem;
  font-weight: 400;
  line-height: 1.45;
  color: var(--gray);
}

.email-fallback a,
.contact-item .email-fallback a {
  font-size: inherit;
  font-weight: 600;
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.email-fallback a:hover,
.contact-item .email-fallback a:hover {
  color: #b38a00;
}

.contact-actions .email-fallback,
.req-dialog .email-fallback,
.site-footer .email-fallback {
  color: #c9c9c4;
}

.req-dialog .email-fallback {
  margin-top: 14px;
}

.contact-actions .email-fallback a,
.req-dialog .email-fallback a,
.site-footer .email-fallback a {
  color: var(--yellow);
}

.contact-actions .email-fallback a:hover,
.req-dialog .email-fallback a:hover,
.site-footer .email-fallback a:hover {
  color: var(--yellow-hover);
}

.contact-actions {
  display: grid;
  gap: 12px;
  align-content: center;
  background: var(--black);
  color: var(--white);
  padding: 32px 28px;
  border-radius: var(--radius);
}

.contact-actions h3 {
  margin: 0 0 6px;
}

.contact-actions p {
  margin: 0 0 18px;
  color: #c9c9c4;
}

/* Footer */

.site-footer {
  background: var(--black);
  color: #c9c9c4;
  padding: 36px 0 110px;
  border-top: 3px solid var(--yellow);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.footer-brand {
  color: var(--white);
  font-weight: 800;
  letter-spacing: 0.08em;
  margin: 0 0 8px;
}

.footer-copy {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 0.88rem;
}

.site-footer a:hover {
  color: var(--yellow);
}

/* Dialog */

.req-dialog {
  width: min(92vw, 420px);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0;
  margin: auto;
  background: var(--charcoal);
  color: var(--white);
  box-shadow: var(--shadow);
}

.req-dialog::backdrop {
  background: rgba(0, 0, 0, 0.72);
}

.dialog-inner {
  position: relative;
  padding: 28px 24px 24px;
}

.dialog-inner h2 {
  margin: 0 0 8px;
  font-size: 1.3rem;
}

.dialog-inner p {
  margin: 0 0 20px;
  color: #c9c9c4;
}

.dialog-actions {
  display: grid;
  gap: 10px;
}

.dialog-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  color: var(--white);
  font-size: 1.4rem;
  cursor: pointer;
}

/* Mobile bottom bar */

.mobile-cta {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  background: var(--black);
  border-top: 1px solid var(--line);
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  gap: 8px;
}

/* Reveal */

.js .js-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.js .js-reveal.is-in {
  opacity: 1;
  transform: none;
}

/* Responsive */

@media (max-width: 980px) {
  .hero-grid,
  .service-grid,
  .industry-grid,
  .why-grid,
  .about-layout,
  .contact-wrap,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .steps {
    grid-template-columns: 1fr 1fr;
    gap: 28px 12px;
  }

  .steps::before {
    display: none;
  }

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

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

  .example-card.wide {
    grid-row: auto;
    min-height: 240px;
  }

  .hero-grid {
    max-height: none;
    min-height: 0;
  }

  .hero-media {
    min-height: 280px;
  }

  .hero-media img {
    position: absolute;
  }
}

@media (max-width: 820px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

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

  .nav-panel {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: #151515;
    border-bottom: 1px solid var(--line);
    padding: 12px 20px 20px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

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

  .nav.is-open .nav-links,
  .nav.is-open .nav-cta {
    display: flex;
  }

  .nav.is-open .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 8px 0 16px;
  }

  .nav.is-open .nav-cta {
    width: 100%;
    margin: 0;
  }

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

  .mobile-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .hero {
    padding-bottom: calc(var(--bar-h) + 8px);
  }

  .site-footer {
    padding-bottom: 120px;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 28px), var(--max));
  }

  .section {
    padding: 64px 0;
  }

  .hero-grid,
  .service-grid,
  .industry-grid,
  .why-grid,
  .about-layout,
  .steps,
  .contact-wrap,
  .footer-grid,
  .example-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding: 36px 0 28px;
  }

  .hero h1 {
    max-width: none;
    font-size: 2.05rem;
  }

  .hero-media {
    min-height: 230px;
  }

  .hero-media img {
    object-position: 70% center;
  }

  .hero-media::after {
    background: linear-gradient(180deg, transparent 40%, var(--black));
  }

  .hero-frame {
    display: none;
  }

  .hero-grid {
    display: flex;
    flex-direction: column;
    padding: 0 14px;
    max-height: none;
    min-height: 0;
  }

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

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

  .companies.section {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .brand-tag {
    display: none;
  }

  .example-card,
  .example-card.wide {
    min-height: 200px;
  }
}

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

  .about .section-title {
    max-width: none;
  }

  .about-philosophy {
    padding: 22px 20px 20px;
  }

  .hero-actions .btn {
    width: 100%;
  }
}
