/*
Theme Name: CreativeBox Final AI Website
Theme URI: https://www.creativebox.co.in/
Author: CreativeBox
Author URI: https://www.creativebox.co.in/
Description: AI transformation, digital products, growth marketing, branding and creative production theme for future-ready CreativeBox clients.
Version: 1.0.3
Requires at least: 6.0
Requires PHP: 7.4
License: GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: creativebox-ai
*/

:root {
  --void: #080c0d;
  --carbon: #111819;
  --panel: #162021;
  --panel-2: #1e2b2d;
  --paper: #f6f7f2;
  --white: #ffffff;
  --text-soft: rgba(255, 255, 255, 0.72);
  --ink-soft: #59686a;
  --matrix: #6df0c2;
  --aqua: #8fc9dc;
  --copper: #e86f51;
  --amber: #f2b85b;
  --lime: #c6ff7f;
  --line: rgba(255, 255, 255, 0.15);
  --line-ink: rgba(8, 12, 13, 0.13);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  --radius: 8px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--white);
  background: var(--void);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

body.nav-open {
  overflow: hidden;
}

body.admin-bar .site-header {
  top: 32px;
}

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

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

button,
input,
textarea {
  font: inherit;
}

textarea {
  resize: vertical;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-160%);
  background: var(--white);
  color: var(--void);
  padding: 0.75rem 1rem;
  box-shadow: var(--shadow);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  transition:
    background 220ms ease,
    border-color 220ms ease,
    backdrop-filter 220ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(8, 12, 13, 0.88);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(100% - 32px, var(--max-width));
  min-height: 96px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.3rem;
  margin: 0 auto;
}

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

.brand__mark {
  width: 118px;
  height: auto;
  object-fit: contain;
}

.nav-links {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.4vw, 2.2rem);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.91rem;
  font-weight: 820;
}

.nav-links a {
  position: relative;
  padding: 0.45rem 0;
}

.nav-links a::after {
  position: absolute;
  left: 0;
  bottom: 0.05rem;
  width: 100%;
  height: 2px;
  content: "";
  background: var(--matrix);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.nav-cta {
  justify-self: end;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(109, 240, 194, 0.48);
  background: rgba(109, 240, 194, 0.08);
  color: var(--matrix);
  padding: 0.75rem 1rem;
  font-size: 0.91rem;
  font-weight: 950;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--matrix);
  border-color: var(--matrix);
  color: var(--void);
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: clamp(760px, 96svh, 980px);
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  background: var(--void);
}

.hero__media,
.hero__grid,
.hero__shade {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.08) brightness(0.78);
}

.hero__grid {
  z-index: -2;
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(109, 240, 194, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(109, 240, 194, 0.13) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(90deg, black, transparent 80%);
}

.hero__shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(8, 12, 13, 0.98) 0%, rgba(8, 12, 13, 0.78) 50%, rgba(8, 12, 13, 0.28) 100%),
    linear-gradient(0deg, rgba(8, 12, 13, 0.96) 0%, rgba(8, 12, 13, 0.1) 68%);
}

.hero__content {
  width: min(100% - 32px, var(--max-width));
  margin: 0 auto;
  padding: 9.5rem 0 5.8rem;
}

.eyebrow {
  margin: 0 0 0.82rem;
  color: var(--matrix);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1,
.ai-layer h2,
.section-heading h2,
.systems h2,
.production h2,
.contact h2 {
  margin: 0;
  font-weight: 950;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 980px;
  font-size: clamp(3.7rem, 8vw, 8.4rem);
}

.hero__lead {
  max-width: 720px;
  margin: 1.35rem 0 0;
  color: var(--text-soft);
  font-size: clamp(1.08rem, 1.8vw, 1.42rem);
  line-height: 1.62;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  padding: 0.9rem 1.16rem;
  cursor: pointer;
  font-weight: 950;
  line-height: 1;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button--primary {
  background: var(--matrix);
  color: var(--void);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: var(--lime);
}

.button--secondary {
  border-color: rgba(255, 255, 255, 0.36);
  color: var(--white);
}

.button--secondary:hover,
.button--secondary:focus-visible {
  background: rgba(255, 255, 255, 0.12);
}

.button--dark {
  background: var(--void);
  color: var(--white);
}

.ai-console {
  position: absolute;
  right: max(16px, calc((100vw - var(--max-width)) / 2));
  bottom: 5.8rem;
  width: min(360px, calc(100% - 32px));
  border: 1px solid rgba(109, 240, 194, 0.32);
  background:
    linear-gradient(180deg, rgba(22, 32, 33, 0.86), rgba(8, 12, 13, 0.76));
  padding: 1.1rem;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.console-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.65rem 0;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.console-row strong {
  color: var(--matrix);
}

.console-meter {
  height: 8px;
  overflow: hidden;
  margin: 1rem 0;
  background: rgba(255, 255, 255, 0.1);
}

.console-meter span {
  width: 78%;
  height: 100%;
  display: block;
  background: linear-gradient(90deg, var(--matrix), var(--amber), var(--copper));
}

.ai-console p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.58;
}

.section {
  padding: clamp(4.2rem, 7vw, 7rem) 0;
}

.section__inner {
  width: min(100% - 32px, var(--max-width));
  margin: 0 auto;
}

.ai-layer {
  background:
    linear-gradient(180deg, var(--void), var(--carbon));
}

.ai-layer__layout,
.section-heading--split,
.production__layout,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
  gap: clamp(1.6rem, 5vw, 5rem);
  align-items: start;
}

.ai-layer h2,
.section-heading h2,
.systems h2,
.production h2,
.contact h2 {
  max-width: 980px;
  font-size: clamp(2.15rem, 4.8vw, 4.85rem);
}

.ai-layer__copy,
.production-panel,
.contact__content {
  display: grid;
  gap: 1rem;
}

.contact-points {
  display: grid;
  gap: 0.75rem;
  margin: 0.6rem 0 0;
  padding: 0;
  list-style: none;
}

.contact-points li {
  position: relative;
  padding-left: 1.35rem;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 760;
  line-height: 1.55;
}

.contact-points li::before {
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 0.48rem;
  height: 0.48rem;
  content: "";
  background: var(--matrix);
  transform: translateY(-50%);
}

.contact-whatsapp {
  width: max-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 0.62rem;
  border: 1px solid rgba(109, 240, 194, 0.38);
  background: var(--matrix);
  color: var(--void);
  padding: 0.82rem 0.94rem;
  font-weight: 900;
  line-height: 1.2;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.contact-whatsapp:hover,
.contact-whatsapp:focus-visible {
  border-color: var(--lime);
  background: var(--lime);
  color: var(--void);
}

.contact-whatsapp img {
  width: 1.18rem;
  height: 1.18rem;
  flex: 0 0 auto;
}

.ai-layer__copy p,
.section-heading p,
.service-group p,
.system-cards p,
.timeline p,
.production-panel p,
.contact p,
.site-footer p {
  margin: 0;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.72;
}

.intelligence-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(2rem, 5vw, 3.5rem);
  background: var(--line);
}

.intelligence-grid article {
  min-height: 245px;
  display: grid;
  align-content: start;
  gap: 0.9rem;
  background:
    linear-gradient(180deg, rgba(30, 43, 45, 0.92), rgba(17, 24, 25, 0.96));
  padding: 1.25rem;
}

.intelligence-grid span,
.service-group__kicker,
.system-cards span,
.timeline span {
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.intelligence-grid h3,
.service-group h3,
.system-cards h3,
.timeline h3,
.production-tags span {
  margin: 0;
  font-size: clamp(1.18rem, 2vw, 1.62rem);
  line-height: 1.17;
  letter-spacing: 0;
}

.intelligence-grid p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.62;
}

.services {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: var(--void);
  color: var(--white);
}

.services::before,
.services::after {
  position: absolute;
  inset: 0;
  content: "";
}

.services::before {
  z-index: -3;
  background:
    url("https://creativebox.co.in/wp-content/uploads/2025/10/GettyImages-1443560890.jpg")
    center / cover no-repeat;
  filter: saturate(1.08) contrast(1.12) brightness(0.78);
  transform: scale(1.03);
}

.services::after {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(8, 12, 13, 0.96) 0%, rgba(8, 12, 13, 0.78) 54%, rgba(8, 12, 13, 0.56) 100%),
    linear-gradient(180deg, rgba(8, 12, 13, 0.76) 0%, rgba(8, 12, 13, 0.9) 100%);
}

.services .eyebrow,
.services .service-group__kicker,
.production .eyebrow,
.contact .eyebrow {
  color: var(--matrix);
}

.services .section-heading p,
.services .service-group p {
  color: var(--text-soft);
}

.section-heading {
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.section-heading--split {
  align-items: end;
}

.service-matrix {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.service-group {
  min-height: 470px;
  display: grid;
  align-content: start;
  gap: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(8, 12, 13, 0.72);
  padding: 1.25rem;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(14px);
}

.service-group--featured {
  background:
    linear-gradient(180deg, rgba(109, 240, 194, 0.18), rgba(8, 12, 13, 0.82));
  border-color: rgba(109, 240, 194, 0.42);
  color: var(--white);
}

.service-group--featured p {
  color: var(--text-soft);
}

.service-group ul {
  display: grid;
  gap: 0.62rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-group li {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 0.62rem;
  color: var(--white);
  font-weight: 850;
  line-height: 1.35;
}

.service-group--featured li {
  border-color: rgba(255, 255, 255, 0.14);
  color: var(--white);
}

.systems {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: var(--void);
}

.systems__media,
.systems__media::after {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.systems__media::after {
  content: "";
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(8, 12, 13, 0.96) 0%, rgba(8, 12, 13, 0.74) 58%, rgba(8, 12, 13, 0.5) 100%);
}

.systems__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.06) contrast(1.08);
}

.systems__content {
  min-height: 690px;
  display: grid;
  align-content: center;
  gap: 2rem;
}

.system-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 1020px;
  background: var(--line);
}

.system-cards article {
  min-height: 235px;
  display: grid;
  align-content: start;
  gap: 0.8rem;
  background: rgba(8, 12, 13, 0.74);
  padding: 1.2rem;
}

.workflows {
  background:
    linear-gradient(180deg, var(--carbon), var(--void));
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
}

.timeline article {
  min-height: 320px;
  display: grid;
  align-content: start;
  gap: 0.9rem;
  background:
    linear-gradient(180deg, rgba(22, 32, 33, 0.84), rgba(8, 12, 13, 0.92));
  padding: 1.25rem;
}

.timeline article + article {
  border-left: 1px solid var(--line);
}

.production {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: var(--void);
  color: var(--white);
}

.production::before,
.production::after {
  position: absolute;
  inset: 0;
  content: "";
}

.production::before {
  z-index: -3;
  background:
    url("https://creativebox.co.in/wp-content/uploads/2025/10/Types-of-Shots-for-Filmmakers-e1641493485327-1024x590-1.webp")
    center / cover no-repeat;
  filter: saturate(1.05) contrast(1.08) brightness(0.72);
  transform: scale(1.04);
}

.production::after {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(8, 12, 13, 0.95) 0%, rgba(8, 12, 13, 0.82) 48%, rgba(8, 12, 13, 0.64) 100%),
    linear-gradient(180deg, rgba(8, 12, 13, 0.58) 0%, rgba(8, 12, 13, 0.92) 100%);
}

.production-panel p {
  color: var(--text-soft);
}

.production-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.production-tags span {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(8, 12, 13, 0.72);
  color: var(--white);
  padding: 0.72rem 0.82rem;
  font-size: 0.92rem;
  font-weight: 900;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
}

.contact {
  width: min(100% - 32px, var(--max-width));
  margin: 0 auto;
  padding: clamp(4.5rem, 8vw, 7rem) 0;
  color: var(--white);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  border: 1px solid rgba(109, 240, 194, 0.24);
  background:
    linear-gradient(180deg, rgba(22, 32, 33, 0.96), rgba(8, 12, 13, 0.98));
  padding: 1.25rem;
  box-shadow: var(--shadow);
}

.field {
  display: grid;
  gap: 0.45rem;
}

.field span {
  color: var(--matrix);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field--wide,
.contact-form .button,
.form-note {
  grid-column: 1 / -1;
}

.field input,
.field textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.92);
  color: var(--void);
  padding: 0.86rem 0.92rem;
  outline: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.field textarea {
  line-height: 1.5;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--matrix);
  box-shadow: 0 0 0 4px rgba(109, 240, 194, 0.14);
}

.form-note {
  min-height: 1.4rem;
  margin: 0;
  color: var(--matrix);
  font-weight: 850;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--carbon);
}

.footer__inner {
  width: min(100% - 32px, var(--max-width));
  min-height: 260px;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(180px, 0.58fr) minmax(300px, 1fr);
  align-items: start;
  gap: clamp(2rem, 5vw, 4rem);
  margin: 0 auto;
  padding: 2.6rem 0 1.4rem;
}

.footer__brandblock {
  display: grid;
  justify-items: start;
  gap: 1rem;
}

.brand--footer .brand__mark {
  width: 132px;
}

.footer__brandcopy {
  max-width: 470px;
  color: var(--text-soft);
  font-size: clamp(1.1rem, 1.9vw, 1.42rem);
  line-height: 1.62;
  font-weight: 760;
}

.footer__links,
.footer__contact,
.footer__meta {
  display: grid;
  gap: 0.58rem;
}

.footer__links {
  justify-items: center;
  text-align: center;
}

.footer__title {
  margin: 0 0 0.15rem;
  color: var(--matrix);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer__links a {
  color: var(--text-soft);
  font-weight: 820;
}

.footer__links a:hover,
.footer__links a:focus-visible {
  color: var(--matrix);
}

.footer__contact {
  justify-items: end;
  text-align: right;
  gap: 1.1rem;
}

.footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: flex-end;
}

.footer__social a {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(109, 240, 194, 0.28);
  background: rgba(109, 240, 194, 0.06);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.footer__social img {
  width: 19px;
  height: 19px;
}

.footer__social a:hover,
.footer__social a:focus-visible {
  border-color: rgba(109, 240, 194, 0.7);
  background: rgba(109, 240, 194, 0.12);
  transform: translateY(-1px);
}

.footer__meta {
  justify-items: end;
  color: var(--text-soft);
  font-weight: 760;
}

.footer__meta a {
  color: var(--text-soft);
}

.footer__meta a:hover,
.footer__meta a:focus-visible {
  color: var(--matrix);
}

.footer__copyright {
  grid-column: 1 / -1;
  margin: 0;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
  color: rgba(232, 238, 235, 0.58);
  font-size: 0.85rem;
  font-weight: 720;
}

@media (max-width: 1080px) {
  .nav-shell {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    justify-self: end;
    width: 46px;
    height: 42px;
    display: grid;
    gap: 5px;
    align-content: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.42);
    background: transparent;
    cursor: pointer;
  }

  .nav-toggle__line {
    width: 20px;
    height: 2px;
    background: var(--white);
    transition: transform 180ms ease;
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle__line:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(2) {
    transform: translateY(-3.5px) rotate(-45deg);
  }

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

  .nav-links.is-open {
    position: fixed;
    inset: 96px 16px auto;
    display: grid;
    justify-items: start;
    gap: 0.35rem;
    border: 1px solid var(--line);
    background: rgba(8, 12, 13, 0.98);
    color: var(--white);
    padding: 0.9rem;
    box-shadow: var(--shadow);
  }

  .nav-links.is-open a {
    width: 100%;
    padding: 0.78rem 0.45rem;
  }

  .ai-console {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(100% - 32px, var(--max-width));
    margin: -4.2rem auto 2.4rem;
  }

  .ai-layer__layout,
  .section-heading--split,
  .production__layout,
  .contact,
  .footer__inner {
    grid-template-columns: 1fr;
  }

  .intelligence-grid,
  .service-matrix,
  .system-cards,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .timeline article + article {
    border-left: 0;
  }

  .timeline article:nth-child(even) {
    border-left: 1px solid var(--line);
  }
}

@media (max-width: 720px) {
  body.admin-bar .site-header {
    top: 46px;
  }

  .nav-shell,
  .section__inner,
  .contact,
  .footer__inner {
    width: min(100% - 24px, var(--max-width));
  }

  .brand__mark {
    width: 96px;
  }

  .hero {
    min-height: 800px;
  }

  .hero__grid {
    background-size: 34px 34px;
  }

  .hero__shade {
    background:
      linear-gradient(180deg, rgba(8, 12, 13, 0.74) 0%, rgba(8, 12, 13, 0.58) 42%, rgba(8, 12, 13, 0.98) 100%);
  }

  .hero__content {
    padding-bottom: 6.8rem;
  }

  .hero h1 {
    font-size: clamp(3rem, 13vw, 4.4rem);
  }

  .hero__actions,
  .intelligence-grid,
  .service-matrix,
  .system-cards,
  .timeline,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .hero__actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .contact-whatsapp {
    width: 100%;
    justify-content: center;
  }

  .service-group {
    min-height: auto;
  }

  .systems__content {
    min-height: 820px;
  }

  .timeline article:nth-child(even) {
    border-left: 0;
  }

  .footer__inner {
    align-items: start;
  }

  .footer__links,
  .footer__contact,
  .footer__meta {
    justify-items: start;
    text-align: left;
  }

  .footer__social {
    justify-content: flex-start;
  }
}
