:root {
  --ink: #0a0a0a;
  --muted: #666666;
  --line: #dedede;
  --paper: #ffffff;
  --soft: #f6f6f6;
  --night: #090909;
  --accent: #000000;
  --accent-soft: #2a2a2a;
  --whatsapp: #25d366;
  --whatsapp-dark: #128c4a;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.1);
  --header-height: 72px;
}

.campaign-page-body {
  padding-top: 0;
  background: #ffffff;
}

.campaign-lp {
  overflow: hidden;
}

.lp-container {
  width: min(100% - 32px, 1120px);
  margin: 0 auto;
}

.lp-hero,
.lp-proof,
.lp-services,
.lp-process,
.lp-form-section {
  position: relative;
  padding: 72px 0;
}

.lp-hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  color: #ffffff;
  background:
    linear-gradient(115deg, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.68)),
    url("https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-4.1.0&q=85&fm=jpg&crop=entropy&cs=srgb&w=1600") center / cover;
}

.lp-hero-grid,
.lp-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}

.lp-hero-copy {
  max-width: 840px;
}

.lp-logo {
  width: 176px;
  max-width: 52vw;
  margin-bottom: 38px;
  filter: invert(1);
}

.lp-hero h1,
.lp-section-head h2,
.lp-form-copy h2 {
  letter-spacing: 0;
  line-height: 0.96;
}

.lp-hero h1 {
  max-width: 760px;
  margin-bottom: 22px;
  color: #ffffff;
  font-size: clamp(46px, 8vw, 84px);
}

.lp-hero p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.lp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.lp-mini-proof,
.lp-service-list article,
.lp-proof-grid article,
.lp-process-list article,
.lp-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.lp-mini-proof img,
.lp-service-list img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.lp-proof,
.lp-process {
  background: var(--soft);
}

.lp-section-head {
  max-width: 780px;
  margin-bottom: 28px;
}

.lp-section-head h2,
.lp-form-copy h2 {
  font-size: clamp(36px, 6vw, 68px);
}

.lp-section-head p,
.lp-form-copy p,
.lp-proof-grid p,
.lp-process-list p,
.lp-service-list p {
  color: var(--muted);
}

.lp-proof-grid,
.lp-process-list,
.lp-service-list {
  display: grid;
  gap: 14px;
}

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

.lp-process-list,
.lp-service-list {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.lp-proof-grid article,
.lp-process-list article {
  padding: 22px;
}

.lp-proof-grid article {
  overflow: hidden;
  padding: 0;
}

.lp-proof-grid img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}

.lp-proof-grid strong,
.lp-proof-grid p {
  margin-right: 22px;
  margin-left: 22px;
}

.lp-proof-grid strong {
  margin-top: 20px;
}

.lp-proof-grid p {
  margin-bottom: 22px;
}

.lp-proof-grid strong,
.lp-process-list strong {
  display: block;
  margin-bottom: 10px;
  font-size: 22px;
}

.lp-service-list article {
  overflow: hidden;
}

.lp-service-list h3 {
  padding: 18px 18px 8px;
  font-size: 20px;
}

.lp-service-list p {
  padding: 0 18px 18px;
  font-size: 15px;
}

.lp-process-list span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #ffffff;
  background: #000000;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
}

.lp-process-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 20px;
}

.lp-process-top span {
  margin-bottom: 0;
}

.lp-process-top svg {
  width: 48px;
  height: 48px;
  padding: 10px;
  color: var(--ink);
  background: #f4f4f4;
  border: 1px solid var(--line);
  border-radius: 8px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.lp-form-section {
  padding-bottom: 110px;
  background: #ffffff;
}

.lp-mini-proof {
  overflow: hidden;
  margin-top: 26px;
}

.lp-form {
  padding: 24px;
}

.lp-sticky-cta {
  position: fixed;
  right: 16px;
  bottom: 16px;
  left: 16px;
  z-index: 30;
  display: none;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: #000000;
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  font-weight: 800;
}

@media (max-width: 900px) {
  .lp-hero-grid,
  .lp-form-grid,
  .lp-proof-grid,
  .lp-process-list,
  .lp-service-list {
    grid-template-columns: 1fr;
  }

  .lp-hero {
    min-height: auto;
    padding: 42px 0 56px;
  }

  .lp-logo {
    width: 150px;
    margin-bottom: 34px;
  }

  .lp-hero h1 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .lp-hero p {
    font-size: 16px;
  }

  .lp-hero,
  .lp-proof,
  .lp-services,
  .lp-process,
  .lp-form-section {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .lp-form-section {
    padding-bottom: 96px;
  }

  .lp-sticky-cta {
    display: flex;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
  overflow-x: hidden;
}

body {
  margin: 0;
  padding-top: var(--header-height);
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

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

.section-band {
  padding: 88px 0;
}

.tech-bg {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.tech-bg > .container {
  position: relative;
  z-index: 1;
}

.tech-bg::before {
  content: "";
  position: absolute;
  inset: auto -80px -120px auto;
  z-index: 0;
  width: min(560px, 60vw);
  aspect-ratio: 1;
  background-image: var(--tech-pattern);
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: contain;
  filter: invert(1);
  opacity: 0.07;
  pointer-events: none;
}

.tech-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(120deg, rgba(0, 0, 0, 0.025), rgba(255, 255, 255, 0) 34%),
    radial-gradient(circle at 92% 84%, rgba(0, 0, 0, 0.04), rgba(255, 255, 255, 0) 30%);
  pointer-events: none;
}

.tech-bg-1 {
  --tech-pattern: url("assets/tech-circuit-1.webp");
}

.tech-bg-2 {
  --tech-pattern: url("assets/tech-circuit-2.webp");
}

.tech-bg-3 {
  --tech-pattern: url("assets/tech-circuit-3.webp");
}

.tech-bg-4 {
  --tech-pattern: url("assets/tech-circuit-4.webp");
}

.testimonials.tech-bg::before {
  inset: auto -70px -150px auto;
  filter: none;
  opacity: 0.16;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px max(20px, calc((100vw - 1160px) / 2));
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(217, 222, 231, 0.75);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

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

.language-switcher {
  display: inline-flex;
  align-items: center;
  padding: 3px;
  background: #f4f4f4;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.language-switcher button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-width: 54px;
  min-height: 30px;
  padding: 0 9px;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
}

.language-switcher .flag {
  width: 18px;
  height: 12px;
  flex: 0 0 18px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.28);
}

.flag-id {
  background: linear-gradient(#ce1126 0 50%, #ffffff 50% 100%);
}

.flag-uk {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 40'%3E%3CclipPath id='a'%3E%3Cpath d='M0 0h60v40H0z'/%3E%3C/clipPath%3E%3Cg clip-path='url(%23a)'%3E%3Cpath fill='%23012169' d='M0 0h60v40H0z'/%3E%3Cpath stroke='%23fff' stroke-width='8' d='m0 0 60 40M60 0 0 40'/%3E%3Cpath stroke='%23C8102E' stroke-width='4.8' d='m0 0 60 40M60 0 0 40'/%3E%3Cpath stroke='%23fff' stroke-width='13' d='M30 0v40M0 20h60'/%3E%3Cpath stroke='%23C8102E' stroke-width='8' d='M30 0v40M0 20h60'/%3E%3C/g%3E%3C/svg%3E");
  background-position: center;
  background-size: cover;
}

.language-switcher button.is-active {
  color: #ffffff;
  background: #000000;
}

.nav-cta,
.button,
.contact-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.nav-cta,
.button.primary,
.contact-form button {
  color: #ffffff;
  background: var(--accent);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.16);
}

.whatsapp-link,
.nav-cta.whatsapp-link,
.button.primary.whatsapp-link,
.contact-form button.whatsapp-link,
.floating-whatsapp.whatsapp-link {
  gap: 9px;
  background: var(--whatsapp);
  box-shadow: 0 10px 22px rgba(37, 211, 102, 0.24);
}

.whatsapp-link:hover,
.whatsapp-link:focus,
.nav-cta.whatsapp-link:hover,
.nav-cta.whatsapp-link:focus,
.button.primary.whatsapp-link:hover,
.button.primary.whatsapp-link:focus,
.contact-form button.whatsapp-link:hover,
.contact-form button.whatsapp-link:focus,
.floating-whatsapp.whatsapp-link:hover,
.floating-whatsapp.whatsapp-link:focus {
  background: var(--whatsapp-dark);
}

.whatsapp-link::before {
  content: "";
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  background-color: currentColor;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 308 308'%3E%3Cpath d='M227.904 176.981c-.6-.288-23.054-11.345-27.044-12.781-1.629-.585-3.374-1.156-5.23-1.156-3.032 0-5.579 1.511-7.563 4.479-2.243 3.334-9.033 11.271-11.131 13.642-.274.313-.648.687-.872.687-.201 0-3.676-1.431-4.728-1.888-24.087-10.463-42.37-35.624-44.877-39.867-.358-.61-.373-.887-.376-.887.088-.323.898-1.135 1.316-1.554 1.223-1.21 2.548-2.805 3.83-4.348.607-.731 1.215-1.463 1.812-2.153 1.86-2.164 2.688-3.844 3.648-5.79l.503-1.011c2.344-4.657.342-8.587-.305-9.856-.531-1.062-10.012-23.944-11.02-26.348-2.424-5.801-5.627-8.502-10.078-8.502-.413 0 0 0-1.732.073-2.109.089-13.594 1.601-18.672 4.802-5.385 3.395-14.495 14.217-14.495 33.249 0 17.129 10.87 33.302 15.537 39.453.116.155.329.47.638.922 17.873 26.102 40.154 45.446 62.741 54.469 21.745 8.686 32.042 9.69 37.896 9.69 2.46 0 4.429-.193 6.166-.364l1.102-.105c7.512-.666 24.02-9.22 27.775-19.655 2.958-8.219 3.738-17.199 1.77-20.458-1.325-2.287-3.648-3.402-6.589-4.814z'/%3E%3Cpath d='M156.734 0C73.318 0 5.454 67.354 5.454 150.143c0 26.777 7.166 52.988 20.741 75.928L.212 302.716c-.484 1.429-.124 3.009.933 4.085.763.779 1.798 1.199 2.855 1.199.405 0 .813-.061 1.211-.188l79.92-25.396c21.87 11.685 46.588 17.853 71.604 17.853C240.143 300.27 308 232.923 308 150.143 308 67.354 240.143 0 156.734 0zm0 268.994c-23.539 0-46.338-6.797-65.936-19.657-.659-.433-1.424-.655-2.194-.655-.407 0-.815.062-1.212.188l-40.035 12.726 12.924-38.129c.418-1.234.209-2.595-.561-3.647-14.924-20.392-22.813-44.485-22.813-69.677 0-65.543 53.754-118.867 119.826-118.867 66.064 0 119.812 53.324 119.812 118.867 0 65.535-53.747 118.851-119.811 118.851z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.button.secondary {
  color: var(--ink);
  background: #ffffff;
  border-color: var(--line);
}

.nav-cta:hover,
.button:hover,
.contact-form button:hover {
  transform: translateY(-2px);
}

.hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  color: #ffffff;
  overflow: hidden;
  background: #000000;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.58)),
    url("https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-4.1.0&q=85&fm=jpg&crop=entropy&cs=srgb&w=1800") center / cover;
  filter: grayscale(1);
}

.hero > * {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.75fr);
  gap: 56px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

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

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(44px, 7vw, 82px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4.5vw, 54px);
  line-height: 1.05;
  letter-spacing: 0;
}

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

.hero-lead {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-panel {
  padding: 22px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.panel-top strong {
  color: #ffffff;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.metric-card {
  min-height: 116px;
  padding: 18px;
  background: #ffffff;
  border-radius: 8px;
  color: var(--ink);
}

.metric-card.large {
  min-height: 172px;
  margin-bottom: 12px;
  background: var(--accent);
  color: #ffffff;
}

.metric-card span {
  display: block;
  margin-bottom: 12px;
  color: inherit;
  opacity: 0.75;
  font-size: 13px;
  font-weight: 700;
}

.metric-card strong {
  display: block;
  font-size: clamp(28px, 4vw, 50px);
  line-height: 1;
}

.services,
.contact {
  background: var(--soft);
}

.intro {
  background:
    linear-gradient(90deg, #ffffff 0%, #ffffff 48%, #f3f3f3 48%, #f3f3f3 100%);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: 64px;
  align-items: center;
}

.intro-copy p {
  max-width: 620px;
  color: var(--muted);
  font-size: 17px;
}

.intro-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.intro-tags span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 14px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.intro-visual {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 30px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.intro-visual::before {
  content: "";
  position: absolute;
  top: 64px;
  bottom: 88px;
  left: 49px;
  width: 2px;
  background: #d8d8d8;
}

.funnel-card {
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 18px;
  background: #f7f7f7;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
}

.funnel-card span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
}

.funnel-card.active {
  color: #ffffff;
  background: #000000;
  border-color: #000000;
}

.funnel-card.active span {
  color: #000000;
}

.funnel-card strong {
  display: block;
  margin-bottom: 2px;
  font-size: 19px;
}

.funnel-card p {
  margin-bottom: 0;
  color: inherit;
  opacity: 0.72;
  font-size: 14px;
}

.intro-score {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 4px;
  padding: 18px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.intro-score span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.intro-score strong {
  text-align: right;
}

.process,
.case-preview,
.faq {
  background: #ffffff;
}

.offers,
.tool-stack,
.page-hero,
.detail-services,
.case-study-section {
  background: var(--soft);
}

.process-grid,
.offer-grid,
.case-study-grid {
  display: grid;
  gap: 16px;
}

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

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

.process-grid article,
.offer-grid article,
.case-card,
.case-mini-grid article,
.detail-service-card,
.page-hero-panel,
.faq details {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}

.process-grid article,
.offer-grid article,
.case-card,
.detail-service-card,
.faq details {
  padding: 24px;
}

.process-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.process-top svg {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  padding: 9px;
  color: var(--ink);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.process-grid span,
.offer-grid span,
.detail-service-card > span,
.case-meta span,
.page-hero-panel span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.process-top span {
  margin-bottom: 0;
}

.offer-visual {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 74px;
  margin: -4px 0 18px;
  color: var(--ink);
}

.offer-visual svg {
  width: min(148px, 42%);
  min-width: 118px;
  height: auto;
  opacity: 0.9;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.process-grid p,
.offer-grid p,
.case-card p,
.detail-service-card p,
.detail-service-card li,
.page-hero-panel p,
.faq p {
  color: var(--muted);
}

.case-preview .button {
  margin-top: 18px;
}

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

.case-mini-grid article {
  min-height: 190px;
  padding: 22px;
}

.case-mini-visual {
  display: flex;
  justify-content: flex-end;
  min-height: 42px;
  margin-bottom: 10px;
  color: var(--ink);
}

.case-mini-visual svg {
  width: 64px;
  height: 48px;
  opacity: 0.88;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.case-mini-grid span,
.case-results strong {
  display: block;
  margin-bottom: 10px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1;
  font-weight: 800;
}

.tool-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tool-grid span {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 14px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

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

.faq summary {
  cursor: pointer;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
}

.faq details p {
  margin: 14px 0 0;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.56fr);
  gap: 56px;
  align-items: center;
}

.page-hero p {
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
}

.page-hero-panel {
  padding: 28px;
}

.service-stack-visual {
  overflow: hidden;
  margin: -4px 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.service-stack-visual img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.page-hero-panel strong {
  display: block;
  margin-bottom: 14px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
}

.case-hero-panel {
  padding: 18px;
}

.case-hero-panel > span,
.case-hero-panel strong,
.case-hero-panel p {
  margin-right: 10px;
  margin-left: 10px;
}

.case-hero-visual {
  overflow: hidden;
  margin: 0 0 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.case-hero-visual img {
  width: 100%;
  display: block;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.detail-service-list {
  display: grid;
  gap: 18px;
}

.detail-service-card {
  display: grid;
  grid-template-columns: minmax(0, 0.65fr) minmax(260px, 0.35fr);
  gap: 28px;
  align-items: start;
}

.detail-service-card > span {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.detail-service-card h2 {
  margin-bottom: 0;
}

.detail-service-card p {
  font-size: 16px;
}

.detail-service-card ul {
  margin: 0;
  padding-left: 18px;
}

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

.detail-service-visual {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.detail-service-visual img {
  width: 100%;
  height: 100%;
  min-height: 230px;
  display: block;
  object-fit: cover;
}

.detail-service-card a {
  grid-column: 1 / -1;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.case-study-grid {
  grid-template-columns: 1fr;
  gap: 22px;
}

.case-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.38fr) minmax(0, 0.62fr);
  gap: 28px;
  min-height: 0;
  overflow: hidden;
}

.case-content {
  min-width: 0;
}

.case-card h2 {
  max-width: 760px;
  margin-bottom: 14px;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.05;
}

.case-visual {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  overflow: hidden;
  padding: 0;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.case-visual img {
  width: 100%;
  min-height: 260px;
  display: block;
  object-fit: cover;
}

.case-visual div {
  padding: 20px 24px 24px;
  border-top: 1px solid var(--line);
}

.case-visual strong {
  display: block;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 0.95;
  font-weight: 800;
}

.case-visual span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

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

.case-meta span {
  min-height: 30px;
  align-items: center;
  margin-bottom: 0;
  padding: 0 10px;
  background: #f4f4f4;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.case-results {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 24px 0;
  padding: 18px;
  background: #f7f7f7;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.case-results strong {
  margin-bottom: 0;
  font-size: clamp(30px, 4vw, 46px);
}

.case-results span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.case-card ul {
  margin-bottom: 0;
  padding-left: 18px;
  color: var(--muted);
}

.split,
.why-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: start;
}

.split p,
.section-copy p,
.section-heading p {
  color: var(--muted);
  font-size: 17px;
}

.section-heading {
  width: min(820px, 100%);
  margin-bottom: 38px;
}

.section-heading.compact {
  width: min(720px, 100%);
}

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

.reasons article,
.service-card,
.testimonial-track figure,
.contact-form {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}

.reasons article {
  padding: 24px;
}

.reason-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.reason-top span {
  display: inline-flex;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
}

.reason-top svg {
  width: 48px;
  height: 48px;
  padding: 12px;
  background: #f4f4f4;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.reasons article:hover .reason-top svg {
  background: #000000;
  border-color: #000000;
  color: #ffffff;
}

.reasons p,
.service-card p,
.testimonial-track blockquote {
  color: var(--muted);
}

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

.service-card {
  display: flex;
  min-height: 430px;
  flex-direction: column;
  padding: 24px;
}

.service-card img {
  width: 76px;
  height: 76px;
  margin-bottom: 22px;
  object-fit: contain;
}

.service-icon {
  display: inline-flex;
  width: 76px;
  height: 76px;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7f7f7;
}

.service-icon svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.meta-icon,
.ads-icon,
.kol-icon,
.landing-icon,
.social-icon,
.tiktok-icon {
  color: #000000;
  background: #ffffff;
}

.web-icon {
  color: #000000;
  background: #ffffff;
}

.service-card a {
  margin-top: auto;
  color: var(--accent);
  font-weight: 800;
}

.clients {
  background: #ffffff;
}

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

.logo-grid img,
.client-logo-tile {
  width: 100%;
  height: 112px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.logo-grid img {
  padding: 28px 44px;
  object-fit: scale-down;
  object-position: center;
  image-rendering: auto;
}

.client-logo-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  font-size: clamp(15px, 1.6vw, 22px);
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
}

.testimonials {
  background: var(--night);
  color: #ffffff;
}

.testimonials .section-heading p,
.testimonials blockquote {
  color: rgba(255, 255, 255, 0.76);
}

.testimonial-marquee {
  position: relative;
  overflow: hidden;
  contain: layout paint;
  width: 100%;
  max-width: 100%;
}

.testimonial-marquee::before,
.testimonial-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  z-index: 2;
  width: 120px;
  height: 100%;
  pointer-events: none;
}

.testimonial-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--night), rgba(9, 9, 9, 0));
}

.testimonial-marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--night), rgba(9, 9, 9, 0));
}

.testimonial-track {
  display: flex;
  width: max-content;
  gap: 18px;
  animation: testimonialRun 42s linear infinite;
  will-change: transform;
}

.testimonial-marquee:hover .testimonial-track {
  animation-play-state: paused;
}

.testimonial-track figure {
  width: min(520px, calc(100vw - 56px));
  min-height: 250px;
  flex: 0 0 auto;
  margin: 0;
  padding: 30px;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.testimonial-track blockquote {
  margin: 0 0 26px;
  font-size: 17px;
}

.testimonial-track figcaption {
  display: grid;
  gap: 2px;
}

.testimonial-track span {
  color: rgba(255, 255, 255, 0.62);
}

@keyframes testimonialRun {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 9px));
  }
}

@media (prefers-reduced-motion: reduce) {
  .testimonial-track {
    animation: none;
    flex-wrap: wrap;
    width: auto;
  }
}

.contact-form label {
  color: inherit;
  font-weight: 700;
}

.contact-form input,
.contact-form select {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  outline: none;
}

.contact-form select {
  appearance: none;
  padding-right: 42px;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--muted) 50%),
    linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position:
    calc(100% - 22px) 21px,
    calc(100% - 15px) 21px;
  background-size: 7px 7px, 7px 7px;
  background-repeat: no-repeat;
}

.contact-form input:focus,
.contact-form select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.1);
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 28px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
}

.contact-form button {
  width: 100%;
}

.contact-page {
  background: var(--soft);
}

.contact-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: 56px;
  align-items: center;
}

.contact-page-copy p {
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
}

.connection-map {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 22px;
  overflow: hidden;
  padding: 28px;
  background:
    linear-gradient(#ededed 1px, transparent 1px),
    linear-gradient(90deg, #ededed 1px, transparent 1px),
    #ffffff;
  background-size: 34px 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.connection-map::before {
  content: "";
  position: absolute;
  top: 28px;
  bottom: 28px;
  left: 50%;
  width: 1px;
  background: #d0d0d0;
}

.flow-step {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 46px;
  gap: 12px;
  align-items: center;
  min-height: 76px;
  padding: 14px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.flow-step::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -23px;
  width: 22px;
  height: 1px;
  background: #d0d0d0;
}

.flow-step:nth-child(even)::after {
  right: auto;
  left: -23px;
}

.flow-step span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: #000000;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
}

.flow-step svg {
  grid-column: 3;
  grid-row: 1;
  width: 46px;
  height: 46px;
  padding: 10px;
  color: var(--ink);
  background: #f1f1f1;
  border: 1px solid #cfcfcf;
  border-radius: 8px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.flow-step strong {
  grid-column: 2;
  grid-row: 1;
  font-size: 17px;
  line-height: 1.1;
}

.flow-step:last-child {
  color: #ffffff;
  background: #000000;
  border-color: #000000;
}

.flow-step:last-child span {
  color: #000000;
  background: #ffffff;
}

.flow-step:last-child svg {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
}

.contact-info {
  background: #ffffff;
}

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

.contact-info-grid article {
  min-height: 260px;
  padding: 28px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}

.contact-info-icon {
  display: inline-flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  background: #f4f4f4;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
}

.contact-info-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.contact-info-grid h2 {
  margin-bottom: 10px;
  font-size: 22px;
}

.contact-info-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.contact-info-grid a {
  color: var(--ink);
  font-weight: 800;
}

.about-hero-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1fr);
  gap: 58px;
  align-items: center;
}

.about-hero {
  background: var(--soft);
}

.about-hero p,
.about-services p,
.timeline p {
  color: var(--muted);
  font-size: 17px;
}

.about-media {
  position: relative;
  overflow: hidden;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 8px;
  box-shadow: none;
}

.about-media::after {
  content: none;
}

.about-media img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: transparent;
  border-radius: 8px;
  filter: none;
}

.about-circuit-media {
  display: grid;
  min-height: 520px;
  place-items: center;
}

.about-circuit-media img {
  width: min(100%, 560px);
  height: auto;
  padding: 0;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  object-position: left bottom;
  image-rendering: auto;
  opacity: 0.78;
}

.about-hero-copy {
  max-width: 660px;
}

.about-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.about-values,
.timeline {
  background: #ffffff;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.value-grid article,
.about-service-list article,
.timeline-list article {
  padding: 22px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}

.value-top {
  display: flex;
  min-height: 50px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.value-top svg {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  padding: 12px;
  background: #f4f4f4;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.value-grid article:hover .value-top svg {
  background: #000000;
  border-color: #000000;
  color: #ffffff;
}

.value-grid span,
.timeline-list span {
  display: inline-flex;
  font-size: 13px;
  font-weight: 800;
}

.value-grid p,
.about-service-list p,
.timeline-list p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

.about-services {
  background: var(--soft);
}

.about-service-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.about-service-list article {
  min-height: 360px;
}

.about-service-list .service-icon,
.about-service-list .service-card img {
  width: 68px;
  height: 68px;
  margin-bottom: 20px;
}

.about-service-list .service-icon svg {
  width: 38px;
  height: 38px;
}

.timeline-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding-top: 54px;
}

.timeline-list::before {
  content: "";
  position: absolute;
  top: 19px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #000000, #d4d4d4);
}

.timeline-list article {
  position: relative;
  min-height: 300px;
}

.timeline-list article:nth-child(even) {
  margin-top: 42px;
}

.timeline-marker {
  position: absolute;
  top: -43px;
  left: 22px;
  width: 18px;
  height: 18px;
  background: #ffffff;
  border: 5px solid #000000;
  border-radius: 50%;
  box-shadow: 0 0 0 8px #ffffff;
}

.timeline-list article::before {
  content: "";
  position: absolute;
  top: -25px;
  left: 30px;
  width: 1px;
  height: 25px;
  background: var(--line);
}

.timeline-list article:last-child .timeline-marker {
  background: #000000;
}

.timeline-list article:last-child {
  background: #0b0b0b;
  color: #ffffff;
  border-color: #0b0b0b;
}

.timeline-list article:last-child p {
  color: rgba(255, 255, 255, 0.7);
}

.timeline-list article:last-child span {
  color: #ffffff;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  color: #ffffff;
  background: var(--whatsapp);
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(37, 211, 102, 0.28);
  font-weight: 800;
}

.site-footer {
  padding: 24px 0;
  color: rgba(255, 255, 255, 0.7);
  background: #060b13;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 14px;
}

@media (max-width: 980px) {
  .site-header {
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: center;
  }

  .hero-grid,
  .intro-grid,
  .page-hero-grid,
  .contact-page-grid,
  .about-hero-grid,
  .case-card,
  .detail-service-card,
  .split,
  .why-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .intro {
    background: var(--soft);
  }

  .hero {
    min-height: auto;
  }

  .service-grid,
  .process-grid,
  .offer-grid,
  .case-study-grid,
  .case-mini-grid,
  .faq-grid,
  .contact-info-grid,
  .value-grid,
  .timeline-list,
  .about-service-list,
  .logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .timeline-list {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-top: 0;
    padding-left: 34px;
  }

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

  .detail-service-visual {
    min-height: 220px;
  }

  .timeline-list::before {
    top: 0;
    right: auto;
    bottom: 0;
    left: 9px;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, #000000, #d4d4d4);
  }

  .timeline-list article:nth-child(even) {
    margin-top: 0;
  }

  .timeline-marker {
    top: 26px;
    left: -34px;
  }

  .timeline-list article::before {
    top: 34px;
    left: -16px;
    width: 24px;
    height: 1px;
  }

  .connection-map {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 22px;
  }

  .connection-map::before {
    top: 22px;
    bottom: 22px;
    left: 43px;
    display: block;
  }

  .flow-step::after,
  .flow-step:nth-child(even)::after {
    top: auto;
    right: auto;
    bottom: -13px;
    left: 42px;
    width: 1px;
    height: 12px;
  }

  .flow-step:last-child::after {
    display: none;
  }
}

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

  .section-band {
    padding: 64px 0;
  }

  .site-header {
    padding: 12px 14px;
  }

  .brand span {
    font-size: 15px;
  }

  .nav-links {
    gap: 12px;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 2px;
  }

  .nav-cta {
    min-height: 40px;
    padding: 0 13px;
  }

  h1 {
    font-size: 44px;
  }

  .hero-grid {
    gap: 34px;
  }

  .intro-visual {
    padding: 20px;
  }

  .intro-visual::before {
    left: 39px;
  }

  .hero-metrics,
  .reasons,
  .service-grid,
  .process-grid,
  .offer-grid,
  .case-study-grid,
  .case-mini-grid,
  .faq-grid,
  .contact-info-grid,
  .value-grid,
  .timeline-list,
  .about-service-list,
  .logo-grid {
    grid-template-columns: 1fr;
  }

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

  .case-card {
    gap: 18px;
  }

  .case-visual {
    min-height: 220px;
    padding: 22px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
