:root {
  --navy: #061735;
  --navy-2: #0d2852;
  --navy-3: #123663;
  --gold: #c69a39;
  --gold-2: #e3bd66;
  --ink: #102039;
  --muted: #667187;
  --paper: #f7f5ef;
  --white: #ffffff;
  --soft: #ede8dc;
  --line: rgba(6, 23, 53, 0.12);
  --dark-line: rgba(255, 255, 255, 0.14);
  --shadow: 0 24px 70px rgba(6, 23, 53, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, Arial, sans-serif;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

.site-header {
  position: fixed;
  top: 22px;
  left: 50%;
  z-index: 100;
  width: min(1200px, calc(100% - 32px));
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  overflow: hidden;
  padding: 10px 18px 10px 22px;
  transform: translateX(-50%);
  border: 1px solid rgba(227, 189, 102, 0.28);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 22px 54px rgba(6, 23, 53, 0.2);
  backdrop-filter: blur(18px);
}

.brand {
  width: 180px;
  height: 58px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}

.brand img {
  width: 100%;
  max-height: 58px;
  object-fit: contain;
  object-position: left center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(6, 23, 53, 0.76);
  font-size: 0.9rem;
  font-weight: 800;
}

.nav-links a {
  position: relative;
  padding: 8px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 1px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--gold);
  transition: transform 180ms ease;
}

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

.header-action,
.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-action {
  padding: 0 18px;
  color: var(--white);
  background: var(--navy);
  box-shadow: inset 0 0 0 1px rgba(227, 189, 102, 0.18);
}

.btn {
  padding: 0 22px;
}

.btn:hover,
.header-action:hover {
  transform: translateY(-2px);
}

.btn:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.btn-primary {
  color: var(--navy);
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  box-shadow: 0 16px 34px rgba(198, 154, 57, 0.25);
}

.btn-secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

.btn-outline {
  color: var(--navy);
  border: 1px solid var(--line);
  background: var(--white);
}

.motion-ready [data-animate="section"],
.motion-ready [data-animate="card"],
.motion-ready [data-animate="fade"] {
  opacity: 0;
  will-change: opacity, transform;
  transition: opacity 760ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.motion-ready [data-animate="section"] {
  transform: translateY(32px);
}

.motion-ready [data-animate="card"] {
  transform: translateY(26px) scale(0.985);
}

.motion-ready [data-animate="fade"] {
  transform: none;
}

.motion-ready [data-animate="section"].is-visible,
.motion-ready [data-animate="card"].is-visible,
.motion-ready [data-animate="fade"].is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.motion-ready .service-card[data-animate="card"].is-visible:hover,
.motion-ready .portfolio-card[data-animate="card"].is-visible:hover,
.motion-ready .feature-card[data-animate="card"].is-visible:hover,
.motion-ready .process-item[data-animate="card"].is-visible:hover,
.motion-ready .trust-item[data-animate="card"].is-visible:hover,
.motion-ready .related-service-grid a[data-animate="card"].is-visible:hover,
.motion-ready .service-decision-list article[data-animate="card"].is-visible:hover {
  transform: translateY(-4px) scale(1);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
  cursor: pointer;
  touch-action: manipulation;
  position: relative;
  z-index: 140;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--navy);
  transition: opacity 180ms ease, transform 180ms ease;
}

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

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

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

.hero-slider {
  position: relative;
  min-height: 820px;
  overflow: hidden;
  color: var(--white);
  background: #030a18;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 700ms ease, visibility 700ms ease;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(3, 10, 24, 0.95) 0%, rgba(6, 23, 53, 0.85) 42%, rgba(6, 23, 53, 0.24) 100%),
    linear-gradient(to bottom, rgba(3, 10, 24, 0.22), rgba(3, 10, 24, 0.78));
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.22;
  background-image: linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to bottom, black, transparent 90%);
}

.hero-wrap {
  position: relative;
  z-index: 3;
  width: min(1200px, calc(100% - 32px));
  display: grid;
  grid-template-columns: minmax(0, 780px);
  align-items: center;
  margin: 0 auto;
  padding: 172px 0 96px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold-2);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
.display-title {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 800;
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  color: var(--white);
  font-size: clamp(3rem, 5vw, 5.05rem);
  line-height: 1;
}

h2 {
  color: var(--navy);
  font-size: clamp(2.2rem, 5vw, 4.25rem);
  line-height: 1;
}

h3 {
  margin: 0;
  color: var(--navy);
}

p {
  line-height: 1.72;
}

.hero-copy {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  line-height: 1.65;
}

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

.banner-visual {
  display: none;
}

.visual-window {
  height: 100%;
  min-height: 372px;
  display: grid;
  align-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(3, 10, 24, 0.42);
}

.visual-bar {
  display: flex;
  gap: 8px;
  padding: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.visual-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold-2);
}

.visual-body {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 18px;
  padding: 24px;
}

.visual-card,
.visual-chart,
.visual-list span {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
}

.visual-card {
  min-height: 170px;
  padding: 18px;
}

.visual-card strong {
  display: block;
  color: var(--gold-2);
  font-size: 2.6rem;
}

.visual-card span {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.visual-chart {
  min-height: 170px;
  display: flex;
  align-items: end;
  gap: 12px;
  padding: 18px;
}

.visual-chart span {
  flex: 1;
  min-height: 44px;
  background: linear-gradient(to top, var(--gold), var(--gold-2));
}

.visual-chart span:nth-child(2) {
  min-height: 88px;
}

.visual-chart span:nth-child(3) {
  min-height: 128px;
}

.visual-chart span:nth-child(4) {
  min-height: 104px;
}

.visual-list {
  display: grid;
  gap: 10px;
  padding: 0 24px 24px;
}

.visual-list span {
  height: 16px;
}

.slider-controls {
  position: absolute;
  right: max(16px, calc((100% - 1200px) / 2));
  bottom: 42px;
  z-index: 5;
  display: flex;
  gap: 10px;
}

.slider-dot {
  width: 38px;
  height: 4px;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.35);
}

.slider-dot.active {
  background: var(--gold-2);
}

.section {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  padding: 104px 0;
}

.section-tight {
  padding-top: 68px;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 42px;
}

.section-heading.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading p:not(.eyebrow),
.lead,
.muted {
  color: var(--muted);
}

.lead {
  font-size: 1.08rem;
}

.trust-strip {
  position: relative;
  z-index: 8;
  width: min(1200px, calc(100% - 32px));
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: -36px auto 0;
  border: 1px solid rgba(227, 189, 102, 0.28);
  background: linear-gradient(135deg, #061735, #0d2852);
  box-shadow: 0 24px 70px rgba(6, 23, 53, 0.22);
}

.trust-item {
  min-height: 120px;
  padding: 25px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item span {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 900;
}

.trust-item strong {
  display: block;
  margin-top: 10px;
  color: var(--white);
}

.home-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.78fr);
  gap: 34px 58px;
  align-items: start;
}

.intro-copy h2 {
  max-width: 760px;
  font-size: clamp(2.45rem, 4vw, 3.75rem);
  line-height: 1.03;
}

.intro-copy .lead {
  max-width: 720px;
  margin-bottom: 0;
}

.intro-panel {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--navy);
  box-shadow: var(--shadow);
}

.intro-panel img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  opacity: 0.82;
}

.intro-badge {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: min(250px, calc(100% - 44px));
  padding: 18px;
  color: var(--white);
  border: 1px solid rgba(227, 189, 102, 0.32);
  background: rgba(6, 23, 53, 0.88);
  backdrop-filter: blur(12px);
}

.intro-badge strong {
  display: block;
  color: var(--gold-2);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.25rem;
  line-height: 1;
}

.intro-badge span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 800;
}

.signature-list {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 18px;
}

.signature-list div {
  display: block;
  min-height: 178px;
  padding: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 38px rgba(6, 23, 53, 0.05);
}

.signature-list span {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-weight: 900;
}

.signature-list p {
  margin: 0;
}

.signature-list strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
}

.services-premium {
  padding: 104px max(16px, calc((100% - 1200px) / 2));
  background: linear-gradient(180deg, var(--paper), #ffffff);
}

.services-premium .section-heading {
  width: min(820px, 100%);
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.services-premium .cards-grid {
  width: min(1200px, 100%);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 auto;
  align-items: stretch;
}

.services-premium .service-card:first-child {
  grid-column: auto;
}

.services-premium .service-card:first-child .service-image {
  height: 178px;
}

.services-premium .service-card:first-child h3 {
  font-family: Inter, Arial, sans-serif;
  font-size: 1.12rem;
  line-height: 1.25;
}

.services-premium .service-card {
  background: rgba(255, 255, 255, 0.92);
}

.services-premium .service-card:nth-child(3),
.services-premium .service-card:nth-child(6) {
  transform: none;
}

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

.service-card,
.portfolio-card,
.team-card,
.testimonial-card,
.feature-card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 38px rgba(6, 23, 53, 0.06);
}

.service-card {
  min-height: 392px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover,
.portfolio-card:hover {
  transform: translateY(-4px);
  border-color: rgba(198, 154, 57, 0.45);
  box-shadow: 0 24px 54px rgba(6, 23, 53, 0.12);
}

.service-card.featured {
  color: var(--white);
  background: linear-gradient(145deg, var(--navy), var(--navy-2));
}

.service-image {
  width: 100%;
  height: 178px;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}

.service-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin: -24px 28px 22px;
  position: relative;
  z-index: 2;
  color: var(--navy);
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.4rem;
  font-weight: 800;
}

.service-icon svg {
  width: 25px;
  height: 25px;
  stroke: currentColor;
}

.service-card p {
  margin-right: 28px;
  margin-left: 28px;
  color: var(--muted);
}

.service-card h3 {
  margin-right: 28px;
  margin-left: 28px;
  font-size: 1.12rem;
  line-height: 1.25;
}

.service-card.featured h3,
.service-card.featured p {
  color: var(--white);
}

.service-card.featured p {
  opacity: 0.75;
}

.card-link {
  margin-top: auto;
  padding: 0 28px 28px;
  color: var(--navy);
  font-weight: 900;
}

.service-card.featured .card-link {
  color: var(--gold-2);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: 64px;
  align-items: center;
}

.dark-band {
  color: var(--white);
  background: linear-gradient(135deg, #030a18, var(--navy));
}

.dark-band h2,
.dark-band h3 {
  color: var(--white);
}

.dark-band .process-item h3 {
  color: var(--navy);
}

.dark-band .lead,
.dark-band .muted {
  color: rgba(255, 255, 255, 0.72);
}

.dark-band .process-item .muted {
  color: var(--muted);
}

.dark-band .feature-card {
  border-color: var(--dark-line);
  background: rgba(255, 255, 255, 0.08);
}

.process-list {
  display: grid;
  gap: 14px;
}

.process-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  padding: 24px;
  border-left: 3px solid var(--gold);
  background: var(--white);
}

.process-item span {
  color: var(--gold);
  font-weight: 900;
}

.team-google-section {
  position: relative;
  overflow: hidden;
}

.team-google-section::before {
  content: "";
  position: absolute;
  top: 72px;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, #4285f4, #ea4335, #fbbc05, #34a853);
  opacity: 0.55;
}

.team-google-section .section-heading p:not(.eyebrow) {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
}

.team-google-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.team-profile-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(6, 23, 53, 0.1);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 46px rgba(6, 23, 53, 0.08);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 520ms ease, transform 520ms ease, box-shadow 180ms ease, border-color 180ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.team-profile-card:nth-child(2) {
  transition-delay: 90ms;
}

.team-profile-card:nth-child(3) {
  transition-delay: 180ms;
}

.team-profile-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.team-profile-card:hover {
  transform: translateY(-6px);
  border-color: rgba(198, 154, 57, 0.42);
  box-shadow: 0 28px 70px rgba(6, 23, 53, 0.14);
}

.team-profile-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  background: linear-gradient(90deg, #4285f4, #ea4335, #fbbc05, #34a853);
}

.team-photo-wrap {
  padding: 16px 16px 0;
}

.team-photo-wrap img {
  width: 100%;
  aspect-ratio: 1 / 1.02;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid rgba(6, 23, 53, 0.08);
  background: var(--paper);
}

.team-profile-body {
  position: relative;
  min-height: 230px;
  padding: 26px;
}

.team-role {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  color: var(--navy);
  border: 1px solid rgba(198, 154, 57, 0.36);
  border-radius: 999px;
  background: rgba(227, 189, 102, 0.16);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.team-profile-body h3 {
  margin-top: 18px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.7rem, 2.6vw, 2.2rem);
  line-height: 1;
}

.team-profile-body p {
  margin: 12px 0 0;
  color: var(--muted);
}

.linkedin-link,
.email-link {
  position: absolute;
  bottom: 24px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #ffffff;
  border-radius: 50%;
  background: #0a66c2;
  box-shadow: 0 12px 28px rgba(10, 102, 194, 0.24);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.linkedin-link {
  right: 24px;
}

.email-link {
  right: 74px;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  box-shadow: 0 12px 28px rgba(198, 154, 57, 0.24);
}

.linkedin-link:hover,
.email-link:hover {
  transform: translateY(-3px);
}

.linkedin-link:hover {
  box-shadow: 0 18px 36px rgba(10, 102, 194, 0.32);
}

.email-link:hover {
  box-shadow: 0 18px 36px rgba(198, 154, 57, 0.34);
}

.linkedin-link svg,
.email-link svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.email-link svg {
  width: 20px;
  height: 20px;
}

.portfolio-card {
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.portfolio-image {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.project-visual {
  min-height: 210px;
  padding: 20px;
  background: linear-gradient(135deg, var(--navy), var(--navy-3));
}

.project-visual.light {
  background: linear-gradient(135deg, #ebe4d5, #ffffff);
}

.project-ui {
  height: 170px;
  display: grid;
  grid-template-columns: 0.34fr 1fr;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.1);
}

.project-visual.light .project-ui {
  border-color: var(--line);
  background: rgba(6, 23, 53, 0.04);
}

.project-side,
.project-main {
  background: rgba(255, 255, 255, 0.16);
}

.project-visual.light .project-side,
.project-visual.light .project-main {
  background: rgba(6, 23, 53, 0.08);
}

.project-main {
  display: grid;
  align-content: end;
  gap: 10px;
  padding: 12px;
}

.project-main span {
  height: 12px;
  background: var(--gold-2);
}

.portfolio-card .card-body {
  padding: 24px;
}

.portfolio-showcase .section-heading p:not(.eyebrow) {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
}

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

.portfolio-case {
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 46px rgba(6, 23, 53, 0.08);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 520ms ease, transform 520ms ease, border-color 180ms ease, box-shadow 180ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.portfolio-case.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.portfolio-case:hover {
  transform: translateY(-6px);
  border-color: rgba(198, 154, 57, 0.44);
  box-shadow: 0 28px 70px rgba(6, 23, 53, 0.14);
}

.portfolio-case.featured {
  grid-column: span 2;
}

.portfolio-shot {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--navy);
}

.portfolio-shot img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform 420ms ease;
}

.portfolio-case.featured .portfolio-shot img {
  height: 310px;
}

.portfolio-case:hover .portfolio-shot img {
  transform: scale(1.045);
}

.portfolio-case-body {
  padding: 26px;
}

.case-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.case-meta span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  gap: 7px;
  padding: 0 10px;
  color: var(--navy);
  border: 1px solid rgba(198, 154, 57, 0.26);
  background: rgba(227, 189, 102, 0.14);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.case-meta svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
}

.portfolio-case h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.55rem, 2.3vw, 2.1rem);
  line-height: 1;
}

.portfolio-case p {
  color: var(--muted);
}

.portfolio-case a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-weight: 900;
}

.testimonial-band {
  padding: 106px 0;
  color: var(--white);
  background: radial-gradient(circle at 12% 18%, rgba(227, 189, 102, 0.18), transparent 26%),
    linear-gradient(135deg, #030a18, var(--navy) 58%, #102f5a);
}

.testimonial-inner {
  width: min(1200px, calc(100% - 32px));
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1fr);
  gap: 22px;
  margin: 0 auto;
}

.testimonial-heading {
  padding-right: 34px;
}

.testimonial-heading h2 {
  color: var(--white);
  font-size: clamp(2.35rem, 4.2vw, 4rem);
}

.testimonial-heading .lead {
  color: rgba(255, 255, 255, 0.72);
}

.testimonial-slider {
  position: relative;
  min-height: 390px;
}

.testimonial-featured {
  position: absolute;
  inset: 0;
  min-height: 390px;
  padding: 42px;
  border: 1px solid rgba(227, 189, 102, 0.3);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
  opacity: 0;
  visibility: hidden;
  transform: translateX(18px);
  transition: opacity 500ms ease, transform 500ms ease, visibility 500ms ease;
}

.testimonial-featured.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.quote-mark {
  display: block;
  height: 62px;
  color: var(--gold-2);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 6rem;
  line-height: 0.75;
}

.testimonial-featured p {
  margin: 10px 0 34px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.55;
}

.client-row {
  display: flex;
  gap: 14px;
  align-items: center;
}

.client-avatar {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: var(--navy);
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  font-weight: 900;
}

.client-row strong,
.client-row span {
  display: block;
}

.client-row span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.62);
}

.testimonial-controls {
  position: absolute;
  right: 34px;
  bottom: 34px;
  z-index: 4;
  display: flex;
  gap: 9px;
}

.testimonial-dot {
  width: 32px;
  height: 4px;
  border: 0;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.28);
}

.testimonial-dot.active {
  background: var(--gold-2);
}

.testimonial-proof {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 0.75fr 0.75fr 1.55fr;
  gap: 0;
  margin-top: 12px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.06);
}

.proof-copy {
  min-height: 190px;
  padding: 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.proof-copy p {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.02rem;
}

.proof-copy span {
  display: block;
  color: var(--gold-2);
  font-weight: 900;
}

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

.proof-metrics div {
  display: grid;
  align-content: end;
  min-height: 190px;
  padding: 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.proof-metrics div:last-child {
  border-right: 0;
}

.proof-metrics strong {
  color: var(--gold-2);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.55rem, 2.4vw, 2.45rem);
  line-height: 1;
}

.proof-metrics span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.page-hero {
  padding: 154px 0 86px;
  color: var(--white);
  background: radial-gradient(circle at 18% 20%, rgba(227, 189, 102, 0.24), transparent 28%),
    linear-gradient(135deg, #030a18, var(--navy) 60%, var(--navy-3));
}

.page-hero-inner {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

.page-hero h1 {
  max-width: 900px;
}

.page-hero .lead {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.76);
}

.services-index-hero,
.service-hero-premium {
  position: relative;
  overflow: hidden;
  padding: 154px 0 78px;
  color: var(--white);
  background: radial-gradient(circle at 16% 24%, rgba(227, 189, 102, 0.2), transparent 28%),
    linear-gradient(135deg, #030a18 0%, var(--navy) 58%, #123663 100%);
}

.services-index-hero::after,
.service-hero-premium::after,
.service-process-band::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.15;
  background-image: linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 64px 64px;
}

.services-index-inner,
.service-hero-inner {
  position: relative;
  z-index: 2;
  width: min(1200px, calc(100% - 32px));
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.78fr);
  gap: 54px;
  align-items: center;
  margin: 0 auto;
}

.services-index-copy h1,
.service-hero-copy h1 {
  max-width: 780px;
}

.services-index-copy .lead,
.service-hero-copy .lead {
  color: rgba(255, 255, 255, 0.76);
}

.services-index-media,
.service-hero-visual {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(227, 189, 102, 0.28);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.32);
}

.services-index-media img,
.service-hero-visual img {
  width: 100%;
  height: 430px;
  object-fit: cover;
}

.service-hero-visual::before,
.services-index-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 45%, rgba(3, 10, 24, 0.74));
}

.service-visual-card {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  padding: 22px;
  border: 1px solid rgba(227, 189, 102, 0.34);
  color: var(--white);
  background: rgba(6, 23, 53, 0.9);
  backdrop-filter: blur(14px);
}

.service-visual-card span,
.service-stat-strip span,
.service-hub-card span,
.service-decision-list span {
  color: var(--gold-2);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-visual-card strong {
  display: block;
  margin-top: 8px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  line-height: 1;
}

.service-stat-strip {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(227, 189, 102, 0.24);
  background: rgba(255, 255, 255, 0.07);
}

.service-stat-strip span {
  min-height: 82px;
  display: grid;
  place-items: center;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.service-stat-strip span:last-child {
  border-right: 0;
}

.services-hub .section-heading p:not(.eyebrow) {
  max-width: 780px;
  margin-right: auto;
  margin-left: auto;
}

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

.service-hub-card {
  display: grid;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 46px rgba(6, 23, 53, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-hub-card[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 520ms ease, transform 520ms ease, box-shadow 180ms ease, border-color 180ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.service-hub-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.service-hub-card:hover {
  transform: translateY(-4px);
  border-color: rgba(198, 154, 57, 0.45);
  box-shadow: 0 28px 68px rgba(6, 23, 53, 0.13);
}

.service-hub-card.featured {
  grid-column: span 2;
}

.service-hub-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.service-hub-card.featured img {
  height: 230px;
}

.service-hub-card div {
  display: flex;
  flex-direction: column;
  padding: 26px;
}

.service-hub-card h3 {
  margin-top: 18px;
  font-size: 1.18rem;
}

.service-hub-card.featured h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1;
}

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

.service-hub-card a {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--navy);
  font-weight: 900;
}

.service-hub-card a svg,
.portfolio-case a svg {
  width: 18px;
  height: 18px;
  transition: transform 180ms ease;
}

.service-hub-card:hover a svg,
.portfolio-case:hover a svg {
  transform: translateX(4px);
}

.service-overview {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 0.72fr);
  gap: 44px;
  align-items: start;
}

.service-overview-copy h2 {
  max-width: 760px;
}

.service-outcome-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.service-outcome-grid article {
  min-height: 132px;
  padding: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.74);
}

.service-outcome-grid span {
  display: block;
  margin-bottom: 16px;
  color: var(--gold);
  font-weight: 900;
}

.service-outcome-grid strong {
  color: var(--navy);
}

.service-deliverables-panel {
  position: sticky;
  top: 130px;
  padding: 34px;
  border: 1px solid rgba(198, 154, 57, 0.36);
  background: var(--white);
  box-shadow: var(--shadow);
}

.panel-number {
  display: inline-grid;
  width: 54px;
  height: 54px;
  place-items: center;
  margin-bottom: 22px;
  color: var(--navy);
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  font-weight: 900;
}

.service-deliverables-panel h3 {
  margin-bottom: 22px;
  font-size: 1.35rem;
}

.service-process-band {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: radial-gradient(circle at 80% 20%, rgba(227, 189, 102, 0.18), transparent 26%),
    linear-gradient(135deg, #030a18, var(--navy) 68%, #102f5a);
}

.service-process-inner {
  position: relative;
  z-index: 2;
}

.service-process-inner h2,
.service-process-inner h3,
.services-decision-band h2 {
  color: var(--white);
}

.process-grid-premium {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
}

.process-grid-premium article {
  min-height: 260px;
  padding: 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.process-grid-premium article:last-child {
  border-right: 0;
}

.process-grid-premium span {
  color: var(--gold-2);
  font-weight: 900;
}

.process-grid-premium h3 {
  margin-top: 62px;
  font-size: 1.25rem;
}

.process-grid-premium p,
.services-decision-band .lead {
  color: rgba(255, 255, 255, 0.72);
}

.related-services {
  padding-bottom: 70px;
}

.service-work-section {
  padding-bottom: 70px;
}

.service-work-section .section-heading p:not(.eyebrow) {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
}

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

.service-work-card {
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 46px rgba(6, 23, 53, 0.08);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 520ms ease, transform 520ms ease, border-color 180ms ease, box-shadow 180ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.service-work-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.service-work-card:hover {
  transform: translateY(-5px);
  border-color: rgba(198, 154, 57, 0.44);
  box-shadow: 0 26px 64px rgba(6, 23, 53, 0.13);
}

.service-work-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
  transition: transform 420ms ease;
}

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

.service-work-card div {
  padding: 24px;
}

.service-work-card span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-work-card span svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
}

.service-work-card h3 {
  margin-top: 18px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.55rem;
  line-height: 1;
}

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

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

.related-service-grid a,
.service-decision-list article {
  min-height: 150px;
  padding: 26px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 38px rgba(6, 23, 53, 0.06);
}

.related-service-grid a {
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.related-service-grid a:hover {
  transform: translateY(-4px);
  border-color: rgba(198, 154, 57, 0.45);
  box-shadow: 0 24px 54px rgba(6, 23, 53, 0.12);
}

.related-service-grid span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.related-service-grid strong {
  display: block;
  margin-top: 24px;
  color: var(--navy);
  font-size: 1.25rem;
}

.service-decision-list {
  display: grid;
  gap: 14px;
}

.service-decision-list article {
  min-height: 128px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}

.service-decision-list strong {
  display: block;
  margin-top: 14px;
  color: var(--white);
  font-size: 1.12rem;
  line-height: 1.45;
}

.content-panel {
  padding: 38px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 16px 38px rgba(6, 23, 53, 0.07);
}

.service-side {
  display: grid;
  gap: 16px;
}

.service-page-media {
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 20px 48px rgba(6, 23, 53, 0.11);
}

.service-page-media img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.feature-card {
  padding: 24px;
}

.feature-card span {
  color: var(--gold);
  font-weight: 900;
}

.service-detail-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-detail-list li {
  padding: 16px 18px;
  border-left: 3px solid var(--gold);
  background: var(--white);
  color: var(--muted);
}

.contact-section {
  width: min(1200px, calc(100% - 32px));
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(340px, 0.88fr);
  gap: 46px;
  margin: 0 auto 92px;
  padding: 54px;
  color: var(--white);
  background: linear-gradient(135deg, #030a18, var(--navy));
  box-shadow: var(--shadow);
}

.contact-section h2 {
  color: var(--white);
}

.contact-section .lead {
  color: rgba(255, 255, 255, 0.72);
}

.contact-form {
  display: grid;
  gap: 16px;
}

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

label {
  display: grid;
  gap: 8px;
}

label span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.84rem;
  font-weight: 900;
}

.light-form label span {
  color: var(--navy);
}

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 4px;
  padding: 12px 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.light-form input,
.light-form select,
.light-form textarea {
  color: var(--ink);
  border-color: var(--line);
  background: var(--white);
}

textarea {
  resize: vertical;
}

select option {
  color: var(--navy);
}

input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.light-form input::placeholder,
.light-form textarea::placeholder {
  color: #8a93a5;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold-2);
}

.is-invalid {
  border-color: #dc3545 !important;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.12);
}

.field-error {
  display: block;
  margin-top: 2px;
  color: #ffb8c0;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.35;
}

.light-form .field-error {
  color: #b42318;
}

.alert {
  padding: 14px 16px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.45;
}

.alert-success {
  color: #0f5132;
  border-color: #badbcc;
  background: #d1e7dd;
}

.alert-danger {
  color: #842029;
  border-color: #f5c2c7;
  background: #f8d7da;
}

.d-none {
  display: none !important;
}

.contact-info {
  display: grid;
  gap: 14px;
}

.info-card {
  position: relative;
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--white);
}

.info-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: var(--navy);
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
}

.info-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
}

.info-card span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.info-card strong {
  display: block;
  margin-top: 8px;
  color: var(--navy);
}

.site-footer {
  position: relative;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.72);
  background: radial-gradient(circle at 14% 18%, rgba(227, 189, 102, 0.16), transparent 24%),
    linear-gradient(135deg, #030a18 0%, #061735 58%, #0d2852 100%);
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  right: max(16px, calc((100% - 1200px) / 2));
  left: max(16px, calc((100% - 1200px) / 2));
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(227, 189, 102, 0.8), transparent);
}

.footer-inner {
  position: relative;
  width: min(1200px, calc(100% - 32px));
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 0.68fr);
  gap: 54px;
  margin: 0 auto;
  padding: 72px 0 64px;
}

.footer-brand img {
  width: 230px;
  max-width: 100%;
  padding: 18px 24px;
  border: 1px solid rgba(227, 189, 102, 0.28);
  background: rgba(247, 245, 239, 0.96);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.22);
}

.footer-brand p {
  max-width: 360px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.02rem;
  line-height: 1.75;
}

.footer-contact {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--gold-2);
  font-weight: 900;
}

.footer-contact svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  stroke: currentColor;
}

.footer-col h3 {
  position: relative;
  margin: 0 0 20px;
  color: var(--white);
  font-size: 1rem;
}

.footer-col h3::after {
  content: "";
  display: block;
  width: 34px;
  height: 2px;
  margin-top: 12px;
  background: var(--gold);
}

.footer-col a {
  display: block;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.98rem;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-col a:hover {
  color: var(--gold-2);
  transform: translateX(4px);
}

.footer-bottom {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.16);
}

.footer-bottom div {
  width: min(1200px, calc(100% - 32px));
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin: 0 auto;
  padding: 22px 0;
  font-size: 0.9rem;
}

.footer-bottom a {
  color: var(--gold-2);
  font-weight: 800;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 28px;
  z-index: 120;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  padding: 0;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 14px 30px rgba(3, 10, 24, 0.26);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(3, 10, 24, 0.32);
}

.whatsapp-icon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: transparent;
  font-size: 0.8rem;
  font-weight: 900;
}

.whatsapp-icon svg {
  width: 27px;
  height: 27px;
  fill: currentColor;
}

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

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
    transition-delay: 0ms !important;
  }

  [data-animate],
  .team-profile-card,
  .portfolio-case,
  .service-hub-card,
  .service-work-card {
    opacity: 1 !important;
    transform: none !important;
  }
}

@media (max-width: 1040px) {
  .nav-links,
  .header-action {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .site-header {
    overflow: visible;
  }

  .nav-links.is-open,
  body.menu-open .nav-links {
    position: fixed;
    top: 92px;
    right: 16px;
    left: 16px;
    z-index: 130;
    display: grid;
    gap: 0;
    width: auto;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
    overscroll-behavior: contain;
  }

  .nav-links.is-open a,
  body.menu-open .nav-links a {
    padding: 16px;
    border-bottom: 1px solid var(--line);
  }

  .nav-links.is-open a:last-child,
  body.menu-open .nav-links a:last-child {
    border-bottom: 0;
  }

  .hero-wrap,
  .split,
  .contact-section {
    grid-template-columns: 1fr;
  }

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

  .services-index-inner,
  .service-hero-inner,
  .service-overview {
    grid-template-columns: 1fr;
  }

  .service-deliverables-panel {
    position: static;
  }

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

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

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

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

  .service-hub-card.featured {
    grid-column: span 2;
  }

  .process-grid-premium {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid-premium article:nth-child(2) {
    border-right: 0;
  }

  .process-grid-premium article:nth-child(1),
  .process-grid-premium article:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .testimonial-heading {
    padding-right: 0;
  }

  .testimonial-proof {
    grid-template-columns: 1fr;
  }

  .proof-copy {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

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

  .hero-wrap {
    gap: 34px;
    padding-top: 132px;
  }

  .cards-grid,
  .footer-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-inner {
    gap: 34px;
  }

  .home-intro {
    grid-template-columns: 1fr;
  }

  .signature-list {
    grid-template-columns: 1fr;
  }

  .services-premium .service-card:first-child {
    grid-column: auto;
  }

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

  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-item:nth-child(2) {
    border-right: 0;
  }
}

@media (max-width: 680px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    height: 68px;
    padding-left: 14px;
  }

  .nav-links.is-open,
  body.menu-open .nav-links {
    top: 84px;
    right: 10px;
    left: 10px;
    max-height: calc(100vh - 104px);
  }

  .brand {
    width: 132px;
    height: 48px;
  }

  .brand img {
    max-height: 48px;
  }

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

  .hero-slide {
    position: relative;
    display: none;
  }

  .hero-slide.active {
    display: grid;
  }

  .hero-wrap {
    min-height: auto;
    padding: 116px 0 72px;
  }

  .banner-visual {
    min-height: 300px;
    padding: 18px;
  }

  .visual-window {
    min-height: 260px;
  }

  .visual-body {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .footer-bottom div {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .trust-strip,
  .cards-grid,
  .feature-list,
  .form-grid,
  .footer-inner,
  .testimonial-proof,
  .proof-metrics {
    grid-template-columns: 1fr;
  }

  .testimonial-band {
    padding: 76px 0;
  }

  .services-index-hero,
  .service-hero-premium {
    padding: 128px 0 58px;
  }

  .services-index-media,
  .service-hero-visual {
    min-height: 320px;
  }

  .services-index-media img,
  .service-hero-visual img {
    height: 320px;
  }

  .service-stat-strip,
  .services-hub-grid,
  .team-google-grid,
  .portfolio-showcase-grid,
  .service-work-grid,
  .service-outcome-grid,
  .process-grid-premium,
  .related-service-grid {
    grid-template-columns: 1fr;
  }

  .team-profile-body {
    min-height: auto;
    padding-bottom: 82px;
  }

  .service-stat-strip span,
  .process-grid-premium article,
  .process-grid-premium article:nth-child(2) {
    border-right: 0;
  }

  .service-stat-strip span {
    min-height: 66px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .service-stat-strip span:last-child,
  .process-grid-premium article:last-child {
    border-bottom: 0;
  }

  .service-hub-card.featured {
    grid-column: auto;
  }

  .portfolio-case.featured {
    grid-column: auto;
  }

  .service-hub-card,
  .service-hub-card.featured {
    min-height: auto;
  }

  .service-hub-card img,
  .service-hub-card.featured img {
    height: 190px;
  }

  .portfolio-shot img,
  .portfolio-case.featured .portfolio-shot img {
    height: 220px;
  }

  .service-hub-card.featured h3 {
    font-size: 1.55rem;
  }

  .service-deliverables-panel {
    padding: 24px;
  }

  .process-grid-premium article {
    min-height: auto;
  }

  .process-grid-premium h3 {
    margin-top: 36px;
  }

  .testimonial-featured {
    position: relative;
    min-height: auto;
    padding: 28px;
  }

  .testimonial-slider {
    min-height: auto;
  }

  .testimonial-featured:not(.active) {
    display: none;
  }

  .testimonial-controls {
    position: static;
    margin-top: 18px;
  }

  .proof-metrics div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .proof-metrics div:last-child {
    border-bottom: 0;
  }

  .services-premium {
    padding: 76px 16px;
  }

  .services-premium .service-card:first-child {
    grid-column: auto;
  }

  .services-premium .cards-grid {
    grid-template-columns: 1fr;
  }

  .services-premium .service-card:nth-child(3),
  .services-premium .service-card:nth-child(6) {
    transform: none;
  }

  .services-premium .service-card:first-child .service-image,
  .service-image {
    height: 190px;
  }

  .intro-panel,
  .intro-panel img {
    min-height: 320px;
    height: 320px;
  }

  .intro-badge {
    position: static;
    width: 100%;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
  }

  .signature-list div {
    min-height: auto;
  }

  .trust-item,
  .trust-item:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 76px 0;
  }

  .page-hero {
    padding: 128px 0 70px;
  }

  .contact-section,
  .content-panel {
    padding: 24px;
  }

  .site-footer {
    text-align: center;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 18px;
    width: 46px;
    height: 46px;
  }

  .whatsapp-icon {
    width: 25px;
    height: 25px;
  }

  .footer-inner {
    padding: 54px 0 42px;
  }

  .footer-brand img {
    width: min(230px, 100%);
    margin: 0 auto;
  }

  .footer-brand p {
    margin-right: auto;
    margin-left: auto;
  }

  .footer-col h3::after {
    margin-right: auto;
    margin-left: auto;
  }
}
