:root {
  --bg: #f6f3ee;
  --bg-soft: #ebe8e1;
  --ink: #101419;
  --ink-2: #27313d;
  --muted: #627080;
  --muted-2: #84909e;
  --line: rgba(16, 20, 25, 0.12);
  --line-strong: rgba(255, 255, 255, 0.16);
  --surface: #ffffff;
  --surface-soft: #f9f7f2;
  --night: #080d14;
  --night-2: #101923;
  --cobalt: #3158f4;
  --teal: #12b8a6;
  --lime: #b8f05e;
  --amber: #f3b44c;
  --rose: #e9697b;
  --shadow: 0 24px 70px rgba(18, 24, 33, 0.13);
  --shadow-soft: 0 14px 34px rgba(18, 24, 33, 0.08);
  --radius: 8px;
  --max-width: 1180px;
  --header-height: 84px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(49, 88, 244, 0.08) 0 1px, transparent 1px 38px),
    linear-gradient(90deg, rgba(18, 184, 166, 0.06), transparent 34%, rgba(243, 180, 76, 0.08)),
    var(--bg);
}

body.is-menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

::selection {
  color: #fff;
  background: var(--cobalt);
}

.skip-link {
  position: absolute;
  left: 18px;
  top: -60px;
  z-index: 1000;
  padding: 12px 16px;
  color: #fff;
  background: var(--night);
  border-radius: 999px;
  transition: top 0.2s ease;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(246, 243, 238, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
}

.brand img {
  width: 156px;
  max-height: 48px;
  object-fit: contain;
  height: auto;
}

.brand-note {
  display: grid;
  gap: 2px;
  min-width: 180px;
}

.brand-label {
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--ink);
}

.brand-subline {
  max-width: 260px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.desktop-nav,
.header-actions,
.hero-actions,
.contact-quick-actions,
.cta-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.desktop-nav {
  justify-content: center;
  flex: 1;
}

.nav-link {
  position: relative;
  padding: 11px 10px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 800;
  transition: color 0.2s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 5px;
  height: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.nav-link:hover,
.nav-link[aria-current="page"] {
  color: var(--ink);
}

.nav-link:hover::after,
.nav-link[aria-current="page"]::after {
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: 0;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

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

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--ink), var(--cobalt));
  box-shadow: 0 16px 36px rgba(49, 88, 244, 0.25);
}

.button-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  border-color: var(--line);
}

.button-dark {
  color: #fff;
  background: var(--night);
  box-shadow: 0 16px 34px rgba(8, 13, 20, 0.22);
}

.button-ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--line-strong);
}

.menu-button {
  display: none;
  width: 48px;
  height: 48px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
}

.mobile-menu {
  display: none;
  padding-bottom: 18px;
}

.mobile-panel {
  display: grid;
  gap: 8px;
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.mobile-panel .nav-link {
  padding: 13px 4px;
}

main {
  overflow: clip;
}

.section {
  position: relative;
  padding: 96px 0;
}

.hero {
  position: relative;
  padding: 58px 0 52px;
}

.section-compact {
  padding: 66px 0;
}

.section-dark {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(184, 240, 94, 0.12), transparent 28%),
    linear-gradient(160deg, var(--night) 0%, #121f2d 58%, #19220f 100%);
}

.section-dark::before,
.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.42;
}

.hero {
  min-height: calc(92vh - var(--header-height));
  display: flex;
  align-items: center;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(8, 13, 20, 0.98), rgba(10, 18, 27, 0.92) 54%, rgba(20, 35, 40, 0.92)),
    var(--night);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 150px;
  background: linear-gradient(180deg, transparent, rgba(8, 13, 20, 0.46));
  pointer-events: none;
}

.hero-grid,
.split-grid,
.contact-grid,
.footer-grid,
.page-hero-grid {
  display: grid;
  gap: 34px;
}

.hero-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  align-items: center;
}

.hero-copy,
.split-copy,
.page-hero-copy {
  display: grid;
  gap: 18px;
}

.eyebrow,
.label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 8px 12px;
  color: var(--ink);
  background: rgba(184, 240, 94, 0.85);
  border: 1px solid rgba(16, 20, 25, 0.1);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-dark .eyebrow,
.section-dark .label,
.page-hero .eyebrow {
  color: #e7fff7;
  background: rgba(18, 184, 166, 0.18);
  border-color: rgba(255, 255, 255, 0.12);
}

.headline,
.page-title,
.section-title,
.card-title {
  margin: 0;
  font-family: "Space Grotesk", "Manrope", system-ui, sans-serif;
  letter-spacing: 0;
}

.headline {
  max-width: 830px;
  font-size: 3.5rem;
  line-height: 1;
}

.page-title,
.section-title {
  font-size: 3.15rem;
  line-height: 1.04;
}

.lead,
.section-copy,
.card-copy,
.body-copy {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.72;
}

.hero .lead,
.section-dark .lead,
.section-dark .section-copy,
.section-dark .card-copy,
.section-dark .body-copy,
.page-hero .lead {
  color: rgba(255, 255, 255, 0.78);
}

.hero .lead {
  max-width: 740px;
  font-size: 1.1rem;
}

.trust-strip,
.tag-row,
.project-tags,
.page-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-badge,
.tag,
.meta-chip,
.page-hero-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: #e9f4ff;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
  font-weight: 850;
}

.tag,
.meta-chip {
  color: var(--ink);
  background: var(--surface-soft);
  border-color: var(--line);
}

.hero-proof-grid,
.feature-grid,
.services-grid,
.projects-grid,
.process-grid,
.trust-grid,
.tech-grid,
.metric-grid,
.testimonial-grid,
.faq-grid,
.signals-grid,
.rates-grid,
.pillars-grid,
.contact-cards,
.mini-grid {
  display: grid;
  gap: 18px;
}

.hero-proof-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 810px;
  margin-top: 8px;
}

.hero-proof {
  padding: 18px;
  color: #fff;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
}

.hero-proof strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.3rem;
}

.hero-proof span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  line-height: 1.55;
}

.hero-visual {
  position: relative;
  align-self: stretch;
  min-height: 440px;
}

.product-lab {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 14px;
  padding: 16px;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.product-lab img {
  width: 100%;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
}

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

.lab-tile {
  padding: 15px;
  background: rgba(8, 13, 20, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
}

.lab-tile strong,
.metric-value {
  display: block;
  color: #fff;
  font-family: "Space Grotesk", "Manrope", system-ui, sans-serif;
  font-size: 1.65rem;
  line-height: 1;
}

.lab-tile span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.86rem;
  line-height: 1.5;
}

.section-header {
  display: grid;
  gap: 16px;
  max-width: 800px;
  margin-bottom: 38px;
}

.section-header.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
  justify-items: center;
}

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

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

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

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

.trust-grid,
.tech-grid,
.metric-grid,
.testimonial-grid,
.signals-grid,
.rates-grid,
.pillars-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.service-card,
.project-card,
.surface-card,
.glass-card,
.process-step,
.trust-item,
.tech-card,
.metric-card,
.testimonial-card,
.contact-card,
.faq-item,
.signal-card,
.rate-card,
.stat-card {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.service-card,
.project-card,
.trust-item,
.tech-card {
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.service-card:hover,
.project-card:hover,
.trust-item:hover,
.tech-card:hover {
  transform: translateY(-4px);
  border-color: rgba(49, 88, 244, 0.26);
  box-shadow: var(--shadow);
}

.glass-card,
.section-dark .surface-card,
.section-dark .process-step,
.section-dark .trust-item,
.section-dark .metric-card,
.section-dark .testimonial-card {
  color: #fff;
  background: rgba(255, 255, 255, 0.075);
  border-color: rgba(255, 255, 255, 0.13);
  box-shadow: none;
}

.surface-card--dark,
.panel-dark {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(18, 184, 166, 0.14), transparent 36%),
    linear-gradient(150deg, var(--night), #14202c);
  border-color: rgba(255, 255, 255, 0.12);
}

.surface-card--dark .card-copy,
.surface-card--dark .body-copy,
.surface-card--dark .bullet-list li {
  color: rgba(255, 255, 255, 0.78);
}

.icon-box,
.step-number {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--cobalt), var(--teal));
  border-radius: 6px;
  font-weight: 950;
}

.icon-box.alt {
  background: linear-gradient(135deg, var(--ink), var(--amber));
}

.icon-box.green {
  color: var(--ink);
  background: linear-gradient(135deg, var(--lime), #8ddf8b);
}

.card-title,
.process-step strong,
.signal-card strong,
.faq-item strong,
.contact-card strong {
  font-size: 1.28rem;
  line-height: 1.25;
}

.project-card {
  overflow: hidden;
}

.project-visual {
  min-height: 160px;
  display: grid;
  align-content: end;
  gap: 12px;
  padding: 18px;
  margin: -24px -24px 4px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(184, 240, 94, 0.18), transparent 36%),
    linear-gradient(160deg, #0b1118, #243040);
}

.project-visual::before {
  content: "";
  width: 68%;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow:
    0 24px 0 rgba(255, 255, 255, 0.34),
    0 48px 0 rgba(255, 255, 255, 0.2);
}

.project-category {
  width: fit-content;
  padding: 7px 10px;
  color: var(--ink);
  background: var(--lime);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
}

.bullet-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.bullet-list li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.65;
}

.section-dark .bullet-list li,
.glass-card .bullet-list li {
  color: rgba(255, 255, 255, 0.78);
}

.bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  background: var(--teal);
  border-radius: 2px;
}

.split-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
}

.contact-grid {
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: start;
}

.media-frame,
.showcase-stack,
.image-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.media-frame img,
.showcase-stack img,
.image-panel img {
  width: 100%;
  height: auto;
}

.image-panel {
  padding: 18px;
}

.tech-card strong {
  display: block;
  margin-bottom: 2px;
}

.metric-card {
  align-content: start;
}

.metric-value {
  color: var(--ink);
  font-size: 2.25rem;
}

.section-dark .metric-value {
  color: #fff;
}

.testimonial-label {
  color: var(--cobalt);
  font-weight: 950;
  font-size: 0.84rem;
  text-transform: uppercase;
}

.section-dark .testimonial-label {
  color: var(--lime);
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: 44px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(49, 88, 244, 0.28), transparent 34%),
    linear-gradient(150deg, var(--night), #172535 72%, #243013);
  border-radius: var(--radius);
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.5;
  pointer-events: none;
}

.cta-band > * {
  position: relative;
}

.cta-band .section-copy {
  color: rgba(255, 255, 255, 0.78);
}

.brief-form {
  display: grid;
  gap: 18px;
  padding: 26px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

.field {
  display: grid;
  gap: 9px;
}

.field label {
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 900;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 50px;
  padding: 14px 15px;
  color: var(--ink);
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.field textarea {
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  background: #fff;
  border-color: rgba(49, 88, 244, 0.5);
  box-shadow: 0 0 0 4px rgba(49, 88, 244, 0.1);
}

.form-note,
.status-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.status-note {
  min-height: 22px;
}

.status-note.success {
  color: #11805f;
}

.contact-card a,
.inline-link {
  color: var(--cobalt);
  font-weight: 950;
}

.page-hero {
  position: relative;
  padding: 84px 0 58px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(18, 184, 166, 0.14), transparent 30%),
    linear-gradient(145deg, var(--night), #172434 74%, #252b14);
}

.page-hero-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.72fr);
  align-items: center;
}

.page-hero-shell {
  display: contents;
}

.page-hero .section-copy {
  color: rgba(255, 255, 255, 0.78);
}

.site-footer {
  padding: 44px 0 50px;
  color: rgba(255, 255, 255, 0.76);
  background: var(--night);
}

.footer-grid {
  grid-template-columns: minmax(0, 1.28fr) repeat(2, minmax(0, 0.75fr)) minmax(0, 0.95fr);
  align-items: start;
}

.site-footer .brand img {
  filter: brightness(0) invert(1);
}

.footer-heading {
  margin: 0 0 14px;
  color: #fff;
  font-family: "Space Grotesk", "Manrope", system-ui, sans-serif;
  font-size: 1rem;
}

.footer-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-list a:hover {
  color: #fff;
}

.footer-tagline {
  max-width: 410px;
  margin: 14px 0 0;
  line-height: 1.7;
}

.footer-base {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.92rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.float {
  animation: float 7s ease-in-out infinite;
}

.float-delay {
  animation: float 8.5s ease-in-out infinite;
  animation-delay: 1s;
}

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

@media (max-width: 1120px) {
  .desktop-nav,
  .header-actions .button {
    display: none;
  }

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

  .mobile-menu[data-open="true"] {
    display: block;
  }

  .hero {
    min-height: auto;
    background:
      linear-gradient(120deg, rgba(8, 13, 20, 0.98), rgba(10, 18, 27, 0.94)),
      var(--night);
  }

  .hero-grid,
  .split-grid,
  .contact-grid,
  .page-hero-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: auto;
  }

  .product-lab {
    position: relative;
    top: auto;
  }

  .feature-grid,
  .services-grid,
  .projects-grid,
  .process-grid,
  .trust-grid,
  .tech-grid,
  .metric-grid,
  .testimonial-grid,
  .signals-grid,
  .rates-grid,
  .pillars-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .header-inner {
    min-height: 76px;
  }

  .brand img {
    width: 150px;
  }

  .brand-note {
    display: none;
  }

  .section {
    padding: 72px 0;
  }

  .hero {
    padding: 48px 0;
  }

  .page-hero {
    padding: 66px 0 48px;
  }

  .headline {
    font-size: 2.28rem;
    line-height: 1.02;
  }

  .page-title,
  .section-title {
    font-size: 2.12rem;
    line-height: 1.08;
  }

  .lead,
  .hero .lead,
  .section-copy,
  .card-copy,
  .body-copy {
    font-size: 1rem;
  }

  .hero-actions,
  .contact-quick-actions,
  .cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .hero-visual {
    display: none;
  }

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

  .hero .trust-badge {
    justify-content: center;
    min-height: 38px;
    text-align: center;
    line-height: 1.25;
  }

  .hero-proof-grid,
  .feature-grid,
  .services-grid,
  .projects-grid,
  .process-grid,
  .trust-grid,
  .tech-grid,
  .metric-grid,
  .testimonial-grid,
  .faq-grid,
  .signals-grid,
  .rates-grid,
  .pillars-grid,
  .contact-cards,
  .mini-grid,
  .form-row,
  .lab-row {
    grid-template-columns: 1fr;
  }

  .service-card,
  .project-card,
  .surface-card,
  .glass-card,
  .process-step,
  .trust-item,
  .tech-card,
  .metric-card,
  .testimonial-card,
  .contact-card,
  .faq-item,
  .signal-card,
  .rate-card,
  .stat-card {
    padding: 20px;
  }

  .project-visual {
    margin: -20px -20px 4px;
  }

  .cta-band,
  .brief-form {
    padding: 22px;
  }
}

@media (max-width: 430px) {
  .headline {
    font-size: 2.08rem;
  }

  .page-title,
  .section-title {
    font-size: 1.86rem;
  }

  .tag,
  .meta-chip,
  .page-hero-pills span {
    justify-content: center;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
