:root {
  --ink: #12282d;
  --ink-soft: #31525a;
  --forest: #116048;
  --forest-deep: #0b4737;
  --mint: #dff3ea;
  --red: #b72a35;
  --gold: #c9a24c;
  --paper: #f7f9f6;
  --header-surface: #f8fbf8;
  --white: #ffffff;
  --line: #dbe4df;
  --shadow: 0 18px 44px rgba(18, 40, 45, 0.12);
  --sticky-header-height: 116px;
  --anchor-gap: 0px;
  --services-anchor-shift: 42px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--sticky-header-height) + var(--anchor-gap));
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

.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: sticky;
  top: 0;
  z-index: 50;
  background: var(--header-surface);
  border-bottom: 1px solid #d8e6df;
  box-shadow: 0 10px 24px rgba(18, 40, 45, 0.06);
}

.header-strip {
  background: var(--ink);
  color: var(--white);
  font-size: 0.86rem;
}

.strip-inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.strip-inner a {
  color: #f2d884;
  font-weight: 700;
}

.navbar {
  min-height: 78px;
  display: flex;
  align-items: center;
}

.nav-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 184px;
}

.brand img {
  width: 184px;
  height: auto;
}

.site-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  font-size: 0.96rem;
  font-weight: 700;
  color: var(--ink-soft);
}

.site-menu a {
  position: relative;
  padding: 24px 0;
}

.site-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 19px;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--red);
  transition: transform 180ms ease;
}

.site-menu a:hover::after,
.site-menu a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-call,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.nav-call {
  background: var(--red);
  color: var(--white);
}

.button.primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(183, 42, 53, 0.26);
}

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

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

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--header-surface);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  width: 20px;
  height: 2px;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 76vh;
  color: var(--white);
  overflow: hidden;
  background: var(--ink) url("images/hero-v2.jpg") center / cover no-repeat;
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  filter: saturate(0.92) contrast(1.04);
  transform: scale(1.02);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 72% 42%, rgba(18, 40, 45, 0.18), rgba(18, 40, 45, 0.58) 44%, rgba(18, 40, 45, 0.74) 100%),
    linear-gradient(90deg, rgba(10, 36, 40, 0.96) 0%, rgba(10, 36, 40, 0.78) 50%, rgba(10, 36, 40, 0.36) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 8px;
  background: linear-gradient(90deg, var(--red), var(--gold), var(--forest));
  z-index: 3;
}

.hero-inner {
  min-height: 76vh;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  padding: 76px 0 88px;
}

.hero-copy {
  width: min(660px, 100%);
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--forest);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero .eyebrow,
.contact-section .eyebrow,
.process .eyebrow {
  color: #f2d884;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 24px;
  font-size: 4.3rem;
  line-height: 1.02;
  font-weight: 900;
  max-width: 760px;
}

h2 {
  margin-bottom: 20px;
  font-size: 2.65rem;
  line-height: 1.12;
  font-weight: 900;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.22rem;
  line-height: 1.25;
}

.hero-lead {
  max-width: 620px;
  margin-bottom: 30px;
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.88);
}

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

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 680px;
}

.hero-badges span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.92rem;
}

.metrics {
  position: relative;
  z-index: 3;
  margin-top: -44px;
  padding-bottom: 48px;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: var(--shadow);
}

.metrics-grid div {
  min-height: 120px;
  padding: 26px 22px;
  background: var(--white);
}

.metrics-grid strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
  color: var(--red);
}

.metrics-grid span {
  display: block;
  margin-top: 10px;
  color: var(--ink-soft);
  font-weight: 700;
}

.section {
  padding: 82px 0;
  scroll-margin-top: calc(var(--sticky-header-height) + var(--anchor-gap));
}

.contact-section {
  scroll-margin-top: calc(var(--sticky-header-height) + var(--anchor-gap));
}

#hakkimizda,
#surec,
#sss,
#iletisim {
  min-height: calc(100vh - var(--sticky-header-height));
  min-height: calc(100svh - var(--sticky-header-height));
  display: flex;
  align-items: center;
}

#hakkimizda > .container,
#surec > .container,
#sss > .container,
#iletisim > .container {
  width: min(1180px, calc(100% - 40px));
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 68px;
  align-items: center;
}

.visual-stack {
  position: relative;
}

.visual-stack img {
  width: 100%;
  border-radius: 8px;
  filter: drop-shadow(0 22px 32px rgba(18, 40, 45, 0.14));
}

.section-copy p {
  color: var(--ink-soft);
  font-size: 1.04rem;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.check-list span {
  position: relative;
  min-height: 58px;
  padding: 15px 16px 15px 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  font-weight: 750;
}

.check-list span::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 21px;
  width: 12px;
  height: 7px;
  border-left: 3px solid var(--forest);
  border-bottom: 3px solid var(--forest);
  transform: rotate(-45deg);
}

.service-intro {
  padding: 58px 0;
  background: var(--ink);
  color: var(--white);
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 48px;
  align-items: end;
}

.intro-grid h2 {
  margin-bottom: 0;
}

.intro-grid p:last-child {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.04rem;
}

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

.section-head .eyebrow {
  margin-bottom: 10px;
}

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

.service-carousel {
  position: relative;
}

.carousel-shell {
  position: relative;
}

.service-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 44px) / 3);
  gap: 22px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 2px 2px 24px;
  scroll-behavior: smooth;
  scroll-padding-inline: 2px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.service-track::-webkit-scrollbar {
  display: none;
}

.service-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(18, 40, 45, 0.08);
  scroll-snap-align: start;
}

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

.service-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px;
}

.service-tag {
  display: inline-flex;
  align-self: flex-start;
  min-height: 28px;
  align-items: center;
  margin-bottom: 12px;
  padding: 4px 9px;
  border-radius: 5px;
  background: var(--mint);
  color: var(--forest-deep);
  font-size: 0.78rem;
  font-weight: 900;
}

.service-card p {
  min-height: 78px;
  margin-bottom: 14px;
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.55;
}

.text-button {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  width: fit-content;
  margin-top: auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--red);
  font-weight: 900;
  cursor: pointer;
}

.carousel-button {
  position: absolute;
  top: 42%;
  z-index: 2;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(18, 40, 45, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  box-shadow: 0 14px 28px rgba(18, 40, 45, 0.14);
  cursor: pointer;
  transform: translateY(-50%);
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.carousel-button span {
  display: block;
  margin-top: -3px;
  font-size: 2.1rem;
  line-height: 1;
}

.carousel-button:hover,
.carousel-button:focus-visible {
  background: var(--forest);
  color: var(--white);
  transform: translateY(-50%) scale(1.04);
}

.carousel-button.is-prev {
  left: -22px;
}

.carousel-button.is-next {
  right: -22px;
}

.carousel-dots {
  min-height: 12px;
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 4px;
}

.carousel-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #c6d6ce;
  cursor: pointer;
  transition: width 180ms ease, background 180ms ease;
}

.carousel-dots button[aria-current="true"] {
  width: 26px;
  background: var(--forest);
}

.text-button::after {
  content: "›";
  margin-left: 8px;
  font-size: 1.4rem;
  line-height: 1;
}

.process {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(9, 47, 39, 0.95), rgba(9, 47, 39, 0.88)),
    url("images/team-1.jpg") center / cover;
}

.process-layout {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 54px;
  align-items: start;
}

.process .section-copy p {
  color: rgba(255, 255, 255, 0.76);
}

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

.step {
  min-height: 210px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

.step span {
  display: inline-flex;
  margin-bottom: 22px;
  color: #f2d884;
  font-size: 0.82rem;
  font-weight: 900;
}

.step p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
}

.tabs {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(18, 40, 45, 0.08);
  overflow: hidden;
}

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

.tab-list button {
  min-height: 64px;
  border: 0;
  border-right: 1px solid var(--line);
  background: #f8fbfa;
  color: var(--ink-soft);
  font-weight: 900;
  cursor: pointer;
}

.tab-list button:last-child {
  border-right: 0;
}

.tab-list button[aria-selected="true"] {
  background: var(--forest);
  color: var(--white);
}

.tab-panel {
  padding: 34px;
}

.tab-panel h3 {
  font-size: 1.55rem;
}

.tab-panel p {
  max-width: 850px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.proof {
  background: #eef4f1;
}

.proof-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 54px;
  align-items: center;
}

.proof-copy p {
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: repeat(2, 220px);
  gap: 14px;
}

.gallery img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 14px 28px rgba(18, 40, 45, 0.1);
}

.gallery-large {
  grid-row: span 2;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 54px;
}

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

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

summary {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 17px 20px;
  font-weight: 900;
  cursor: pointer;
}

summary::after {
  content: "+";
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  background: var(--mint);
  color: var(--forest-deep);
  flex: 0 0 auto;
}

details[open] summary::after {
  content: "-";
  background: var(--red);
  color: var(--white);
}

details p {
  margin: 0;
  padding: 0 20px 22px;
  color: var(--ink-soft);
}

.contact-section {
  padding: 86px 0;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(18, 40, 45, 0.96), rgba(18, 40, 45, 0.84)),
    url("images/service-restoran.png") center / cover;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 54px;
  align-items: start;
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
}

.contact-methods {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-methods a {
  width: fit-content;
  padding-bottom: 4px;
  border-bottom: 2px solid #f2d884;
  font-weight: 900;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 800;
}

.contact-form label:first-child,
.contact-form label:nth-child(4),
.form-submit,
.form-status {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  outline: none;
}

.contact-form input,
.contact-form select {
  height: 48px;
  padding: 0 13px;
}

.contact-form textarea {
  resize: vertical;
  min-height: 112px;
  padding: 13px;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: #f2d884;
  box-shadow: 0 0 0 3px rgba(242, 216, 132, 0.22);
}

.form-submit {
  width: 100%;
  border: 0;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: #f7e4a0;
  font-weight: 800;
}

.site-footer {
  padding: 34px 0;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
}

.footer-brand img {
  width: 158px;
}

.footer-inner p {
  margin: 0;
  color: var(--ink-soft);
  font-weight: 750;
}

.video-credit {
  display: block;
  margin-top: 2px;
  font-size: 0.76rem;
  color: #6d7f80;
  font-weight: 650;
}

.video-credit a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-links {
  display: flex;
  gap: 18px;
  color: var(--ink-soft);
  font-weight: 800;
}

.floating-actions {
  position: fixed;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  pointer-events: none;
}

.floating-action {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  box-shadow: 0 16px 36px rgba(18, 40, 45, 0.22);
  cursor: pointer;
  pointer-events: auto;
  transition: opacity 180ms ease, transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.floating-action svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.whatsapp-action {
  background: #1ea85b;
}

.whatsapp-action:hover,
.whatsapp-action:focus-visible {
  background: #168a49;
  transform: translateY(-3px);
  box-shadow: 0 20px 42px rgba(22, 138, 73, 0.32);
}

.scroll-top-action {
  background: var(--ink);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
}

.scroll-top-action.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top-action:hover,
.scroll-top-action:focus-visible {
  background: var(--red);
  transform: translateY(-3px);
}

@media (max-width: 1060px) {
  h1 {
    font-size: 3.4rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .service-track {
    grid-auto-columns: calc((100% - 22px) / 2);
  }

  .process-layout,
  .proof-layout,
  .faq-layout,
  .contact-grid,
  .split,
  .intro-grid {
    grid-template-columns: 1fr;
  }

  .proof-layout {
    gap: 34px;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .strip-inner {
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
    padding: 6px 0;
  }

  .nav-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-call {
    display: none;
  }

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

  .site-menu {
    position: fixed;
    left: 14px;
    right: 14px;
    top: 112px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .menu-open .site-menu {
    display: flex;
  }

  .site-menu a {
    padding: 14px 12px;
    border-radius: 6px;
  }

  .site-menu a::after {
    display: none;
  }

  .site-menu a:hover,
  .site-menu a:focus-visible {
    background: var(--mint);
  }

  .hero,
  .hero-inner {
    min-height: auto;
  }

  .hero-inner {
    padding: 64px 0 78px;
  }

  h1 {
    font-size: 2.75rem;
  }

  h2 {
    font-size: 2rem;
  }

  .metrics {
    margin-top: -28px;
  }

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

  .section {
    padding: 64px 0;
  }

  .service-track {
    grid-auto-columns: minmax(280px, 72%);
  }

  .carousel-button.is-prev {
    left: 8px;
  }

  .carousel-button.is-next {
    right: 8px;
  }

  .check-list,
  .steps,
  .contact-form,
  .tab-list {
    grid-template-columns: 1fr;
  }

  .tab-list button {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .tab-list button:last-child {
    border-bottom: 0;
  }

  .gallery {
    grid-template-columns: 1fr;
    grid-template-rows: 280px 220px 220px;
  }

  .gallery-large {
    grid-row: auto;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: start;
  }
}

@media (max-width: 580px) {
  .floating-actions {
    left: 6px;
    right: 14px;
    bottom: 14px;
  }

  .floating-action {
    width: 48px;
    height: 48px;
  }

  .floating-action svg {
    width: 24px;
    height: 24px;
  }

  .whatsapp-action {
    opacity: 0;
    visibility: hidden;
    transform: translate(-8px, 12px);
  }

  .whatsapp-action.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateX(-8px);
  }

  .whatsapp-action:hover,
  .whatsapp-action:focus-visible {
    transform: translate(-8px, -2px);
  }

  .brand,
  .brand img {
    width: 156px;
  }

  .navbar {
    min-height: 68px;
  }

  .site-menu {
    top: 104px;
  }

  h1 {
    font-size: 2.18rem;
  }

  h2 {
    font-size: 1.68rem;
  }

  .hero-lead,
  .section-copy p,
  .intro-grid p:last-child,
  .proof-copy p,
  .contact-copy p {
    font-size: 1rem;
  }

  .hero-actions,
  .footer-links {
    flex-direction: column;
    align-items: stretch;
  }

  .button,
  .nav-call {
    width: 100%;
  }

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

  .metrics-grid div {
    min-height: 104px;
  }

  .service-card p {
    min-height: auto;
  }

  .service-track {
    grid-auto-columns: 88%;
    gap: 14px;
    padding-bottom: 20px;
  }

  .service-card-body {
    padding: 18px;
  }

  .tab-panel,
  .contact-form {
    padding: 22px;
  }
}

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

  .hero-video {
    display: none;
  }

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