:root {
  --pink: #ec0b7d;
  --pink-dark: #c80069;
  --ink: #08091f;
  --muted: #565b6d;
  --soft: #fff4fa;
  --line: #f7c8dd;
  --green: #10bd4b;
  --blue: #2531a6;
  --shadow: 0 18px 48px rgb(8 9 31 / 10%);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #ffffff;
  color: var(--ink);
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

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

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid rgb(247 200 221 / 70%);
  background: rgb(255 255 255 / 92%);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  width: 112px;
  height: 40px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 44px);
  color: #15172a;
  font-size: 14px;
  font-weight: 750;
}

.main-nav a {
  text-decoration: none;
}

.main-nav a:hover {
  color: var(--pink);
}

.header-cta,
.button,
.lead-form button,
.whatsapp-link {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  padding: 0 22px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
}

.header-cta,
.button-primary,
.lead-form button {
  background: var(--pink);
  color: #ffffff;
  box-shadow: 0 12px 28px rgb(236 11 125 / 22%);
}

.header-cta:hover,
.button-primary:hover,
.lead-form button:hover {
  background: var(--pink-dark);
}

.button-secondary,
.whatsapp-link {
  border: 1px solid #14c653;
  background: #ffffff;
  color: #087f32;
}

.hero {
  overflow: hidden;
  background:
    linear-gradient(180deg, #ffffff 0%, #fff7fb 100%);
}

.hero-grid {
  display: grid;
  min-height: 560px;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 520px);
  align-items: center;
  gap: clamp(36px, 6vw, 84px);
  padding: clamp(58px, 8vw, 96px) 0;
}

.hero-copy h1 {
  max-width: 660px;
  margin: 0;
  font-size: clamp(42px, 5.7vw, 72px);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.96;
}

.hero-copy h1 span,
.section-title span,
.audit-copy h2 span,
.opportunity-grid h2 span,
.about-copy h2 span,
.form-grid h2 span {
  color: var(--pink);
}

.hero-copy p {
  max-width: 570px;
  margin: 26px 0 28px;
  color: #25293a;
  font-size: clamp(18px, 1.5vw, 22px);
  font-weight: 700;
  line-height: 1.42;
}

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

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  color: #17202b;
  font-size: 14px;
  font-weight: 800;
}

.hero-trust li {
  position: relative;
  padding-left: 24px;
}

.hero-trust li::before,
.check-list li::before {
  position: absolute;
  left: 0;
  top: 1px;
  display: grid;
  width: 16px;
  height: 16px;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: #ffffff;
  content: "✓";
  font-size: 11px;
  font-weight: 950;
  line-height: 1;
}

.hero-media {
  position: relative;
}

.hero-media img {
  width: min(100%, 560px);
  margin-inline: auto;
  filter: drop-shadow(0 26px 36px rgb(236 11 125 / 16%));
}

.section {
  padding: clamp(58px, 7vw, 92px) 0;
}

.section-tight {
  padding-top: clamp(44px, 5vw, 70px);
}

.section-title {
  max-width: 900px;
  margin: 0 auto 28px;
  text-align: center;
  font-size: clamp(30px, 3.2vw, 46px);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.08;
}

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

.problem-card,
.service-card,
.step-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgb(236 11 125 / 6%);
}

.problem-card {
  display: grid;
  min-height: 172px;
  place-items: center;
  padding: 24px 18px;
  text-align: center;
}

.problem-icon {
  display: block;
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.problem-google {
  background-image: url("assets/slices/problem-google-icon.png");
}

.problem-instagram {
  background-image: url("assets/slices/problem-instagram-icon.png");
}

.problem-web {
  background-image: url("assets/slices/problem-web-icon.png");
}

.problem-ads {
  background-image: url("assets/slices/problem-ads-icon.png");
}

.problem-card h3,
.service-card h3,
.step-card h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 950;
  line-height: 1.18;
}

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

.ba-card {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  border-radius: 8px;
  padding: clamp(28px, 3.2vw, 42px);
  background-color: #08091f;
  background-position: right center;
  background-size: auto 100%;
  background-repeat: no-repeat;
  box-shadow: var(--shadow);
  color: #ffffff;
}

.ba-card::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgb(5 6 20 / 96%) 0%, rgb(5 6 20 / 88%) 48%, rgb(5 6 20 / 26%) 100%);
  content: "";
}

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

.ba-before {
  background-image: url("assets/slices/04-before-bg.png");
}

.ba-after {
  background-image: url("assets/slices/04-after-bg.png");
}

.ba-label,
.pill {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  border-radius: 8px;
  background: var(--pink);
  color: #ffffff;
  padding: 0 14px;
  font-size: 14px;
  font-weight: 950;
}

.ba-card h2 {
  max-width: 360px;
  margin: 18px 0;
  font-size: clamp(25px, 2.5vw, 34px);
  font-weight: 950;
  line-height: 1.05;
}

.ba-list,
.check-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ba-list li,
.check-list li {
  position: relative;
  padding-left: 28px;
  font-weight: 850;
  line-height: 1.3;
}

.ba-list li::before {
  position: absolute;
  left: 0;
  top: 2px;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  font-size: 14px;
  font-weight: 950;
  line-height: 1;
}

.ba-list-negative li::before {
  background: #ff335f;
  content: "×";
}

.ba-list-positive li::before {
  background: var(--green);
  content: "✓";
  font-size: 12px;
}

.audit-section,
.services-section {
  background: #fff8fc;
}

.audit-grid,
.opportunity-grid,
.about-grid,
.form-grid {
  display: grid;
  align-items: center;
  gap: clamp(28px, 5vw, 76px);
}

.audit-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.8fr);
}

.audit-copy h2,
.opportunity-grid h2,
.about-copy h2,
.form-grid h2 {
  margin: 18px 0 14px;
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 950;
  line-height: 1.02;
}

.audit-copy p,
.opportunity-grid p,
.about-copy p,
.form-grid p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: clamp(17px, 1.3vw, 20px);
  font-weight: 700;
  line-height: 1.45;
}

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

.audit-media img,
.opportunity-grid img {
  margin-inline: auto;
  filter: drop-shadow(0 22px 34px rgb(8 9 31 / 12%));
}

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

.step-card {
  min-height: 160px;
  padding: 28px 18px;
  text-align: center;
}

.step-card span {
  display: grid;
  width: 42px;
  height: 42px;
  margin: 0 auto 16px;
  place-items: center;
  border-radius: 50%;
  background: var(--pink);
  color: #ffffff;
  font-size: 20px;
  font-weight: 950;
}

.opportunity-section {
  background: linear-gradient(180deg, #ffffff 0%, #fff8fc 100%);
}

.opportunity-grid {
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1fr);
}

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

.service-card {
  min-height: 162px;
  padding: 24px;
}

.service-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
}

.about-section {
  background: #ffffff;
}

.about-grid {
  grid-template-columns: 260px minmax(0, 1fr);
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(26px, 4vw, 46px);
  box-shadow: 0 18px 48px rgb(236 11 125 / 7%);
}

.about-photo {
  width: 220px;
  border: 6px solid #ffffff;
  border-radius: 50%;
  box-shadow: 0 18px 32px rgb(236 11 125 / 15%);
}

.about-proof {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 20px;
  color: var(--blue);
  font-weight: 900;
}

.about-proof strong {
  font-size: 28px;
}

.client-logos {
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.client-logos p {
  margin: 0 0 12px;
  color: #505567;
  font-size: 13px;
  font-weight: 900;
}

.client-logos ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.client-logos li {
  display: flex;
  min-height: 30px;
  align-items: center;
}

.client-logos img {
  width: 78px;
  max-height: 34px;
  opacity: 0.82;
  object-fit: contain;
}

.form-section {
  background: var(--pink);
  color: #ffffff;
}

.form-grid {
  grid-template-columns: minmax(0, 0.72fr) minmax(430px, 1fr);
}

.form-grid .pill {
  background: #ffffff;
  color: var(--pink);
}

.form-grid h2,
.form-grid p {
  color: #ffffff;
}

.form-grid h2 span {
  color: #ffe855;
}

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

.lead-form input {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgb(255 255 255 / 56%);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  padding: 0 14px;
  font-weight: 750;
  outline: none;
}

.lead-form input:focus {
  border-color: #ffe855;
  box-shadow: 0 0 0 3px rgb(255 232 85 / 28%);
}

.lead-form button,
.whatsapp-link,
.form-message {
  grid-column: 1 / -1;
}

.lead-form button {
  background: #08091f;
  box-shadow: none;
}

.lead-form button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.whatsapp-link {
  min-height: 42px;
  border-color: #ffffff;
  background: #ffffff;
  color: #087f32;
}

.form-message {
  min-height: 18px;
  margin: 0;
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
}

[aria-invalid="true"] {
  border-color: #ff335f !important;
}

@media (max-width: 900px) {
  .container {
    width: min(100% - 32px, 720px);
  }

  .main-nav {
    display: none;
  }

  .hero-grid,
  .audit-grid,
  .opportunity-grid,
  .about-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: 0;
    padding: 42px 0 52px;
  }

  .hero-copy h1 {
    font-size: clamp(38px, 8vw, 58px);
  }

  .hero-media {
    order: 2;
  }

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

  .before-after {
    grid-template-columns: 1fr;
  }

  .ba-card {
    min-height: 260px;
  }

  .about-grid {
    text-align: left;
  }

  .about-photo {
    width: 150px;
  }
}

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

  .header-inner {
    min-height: 64px;
    gap: 12px;
  }

  .brand img {
    width: 98px;
    height: 34px;
  }

  .header-cta {
    min-height: 36px;
    padding: 0 12px;
    font-size: 12px;
    white-space: nowrap;
  }

  .hero-copy h1 {
    font-size: clamp(34px, 11vw, 44px);
    line-height: 1.04;
  }

  .hero-copy p {
    margin: 18px 0 20px;
    font-size: 15px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .button {
    min-height: 48px;
  }

  .hero-trust {
    gap: 10px 14px;
    font-size: 13px;
  }

  .section {
    padding: 46px 0;
  }

  .section-title {
    margin-bottom: 20px;
    font-size: 28px;
  }

  .problem-grid,
  .steps-grid,
  .service-grid,
  .check-list,
  .lead-form {
    grid-template-columns: 1fr;
  }

  .problem-card {
    min-height: 148px;
  }

  .ba-card {
    min-height: 230px;
    padding: 22px;
  }

  .ba-card h2 {
    font-size: 25px;
  }

  .audit-copy h2,
  .opportunity-grid h2,
  .about-copy h2,
  .form-grid h2 {
    font-size: 30px;
  }

  .about-grid {
    padding: 22px;
  }

  .about-photo {
    width: 124px;
  }

  .client-logos img {
    width: 64px;
    max-height: 28px;
  }
}
