:root {
  --ink: #061522;
  --muted: #536271;
  --line: #dce6ef;
  --paper: #ffffff;
  --soft: #eef8fb;
  --cyan: #00a8c6;
  --teal: #087d8f;
  --blue: #1167a8;
  --violet: #6e3fb1;
  --magenta: #b23ca6;
  --green: #22b66e;
  --shadow: 0 24px 70px rgba(6, 21, 34, .14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #f7fbfd;
  color: var(--ink);
  font-family: "Assistant", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.site-header {
  align-items: center;
  backdrop-filter: blur(16px);
  background: white;
  border-bottom: 1px solid rgba(6, 21, 34, .08);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  padding: 18px clamp(20px, 5vw, 72px);
  position: sticky;
  top: 0;
  z-index: 20;
}

.brand {
  align-items: center;
  display: inline-flex;
  font-size: 1.05rem;
  font-weight: 800;
  gap: 10px;
  letter-spacing: 0;
  text-decoration: none;
}

.brand-mark {
  align-items: center;
  background: white;
  border-radius: 8px;
  display: inline-flex;
  height: 42px;
  justify-content: center;
  padding: 4px;
  width: 42px;
}

.brand-mark img {
  height: 100%;
  object-fit: contain;
  object-position: center;
  width: 100%;
}

nav {
  align-items: center;
  display: flex;
  gap: 22px;
  font-size: .95rem;
  font-weight: 700;
}

nav a {
  color: #243646;
  text-decoration: none;
}

main {
  overflow: hidden;
}

.hero {
  align-items: center;
  display: grid;
  gap: clamp(26px, 5vw, 72px);
  grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr);
  min-height: calc(100vh - 74px);
  padding: clamp(38px, 6vw, 82px) clamp(20px, 5vw, 72px) 52px;
  position: relative;
}

.hero::before {
  background:
    linear-gradient(135deg, rgba(0, 168, 198, .15), transparent 38%),
    linear-gradient(315deg, rgba(178, 60, 166, .16), transparent 44%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 1;
}

.eyebrow,
.section-label {
  color: var(--teal);
  font-size: .92rem;
  font-weight: 800;
  margin: 0 0 12px;
}

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

h1 {
  font-size: clamp(3.1rem, 7vw, 6.4rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: .92;
  margin-bottom: 22px;
  max-width: 790px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.02;
  margin-bottom: 18px;
}

h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.one-line {
  white-space: nowrap;
}

.lead {
  color: #283b4d;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-weight: 600;
  max-width: 680px;
}

.hero-actions,
.contact-copy .button {
  margin-top: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-left: clamp(0px, 7vw, 92px);
}

.button {
  align-items: center;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-weight: 800;
  justify-content: center;
  min-height: 54px;
  padding: 14px 24px;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

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

.button.primary {
  background: var(--green);
  box-shadow: 0 14px 36px rgba(34, 182, 110, .28);
  color: white;
}

.button.primary:hover {
  background: #1fa866;
  box-shadow: 0 18px 42px rgba(34, 182, 110, .34);
  transform: translateY(-2px) scale(1.025);
}

.button.primary:active {
  transform: translateY(0) scale(.99);
}

.button.secondary {
  background: white;
  border: 1px solid var(--line);
  color: var(--ink);
}

.button.is-nudging {
  animation: whatsapp-nudge .55s ease both;
}

@keyframes whatsapp-nudge {
  0%, 100% { transform: translateX(0); }
  18% { transform: translateX(-3px) rotate(-1deg); }
  36% { transform: translateX(3px) rotate(1deg); }
  54% { transform: translateX(-2px) rotate(-.6deg); }
  72% { transform: translateX(2px) rotate(.6deg); }
}

.trust-list {
  color: var(--muted);
  display: grid;
  gap: 8px;
  list-style: none;
  margin: 30px 0 0;
  margin-left: clamp(0px, 7vw, 92px);
  padding: 0;
}

.trust-list li {
  align-items: center;
  display: flex;
  gap: 10px;
}

.trust-list li::before {
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  border-radius: 999px;
  content: "";
  flex: 0 0 9px;
  height: 9px;
  width: 9px;
}

.hero-visual {
  background:
    radial-gradient(circle at 80% 0%, rgba(0, 168, 198, .25), transparent 34%),
    linear-gradient(135deg, rgba(17, 103, 168, .15), rgba(178, 60, 166, .12));
  border: 1px solid rgba(255, 255, 255, .9);
  border-radius: 8px;
  box-shadow: var(--shadow);
  min-height: 440px;
  overflow: hidden;
  padding: clamp(12px, 2vw, 20px);
}

.hero-visual img {
  aspect-ratio: 16 / 11;
  border-radius: 6px;
  height: 100%;
  object-fit: cover;
}

.hero-note {
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(6, 21, 34, .08);
  border-radius: 8px;
  bottom: 34px;
  box-shadow: 0 18px 42px rgba(6, 21, 34, .16);
  display: grid;
  gap: 2px;
  left: 34px;
  max-width: min(420px, calc(100% - 68px));
  padding: 18px;
  position: absolute;
}

.hero-note strong {
  display: block;
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.15;
  max-width: 100%;
  white-space: nowrap;
}

.hero-note span {
  color: var(--muted);
  font-size: .95rem;
  font-weight: 700;
}

section {
  padding: clamp(48px, 8vw, 96px) clamp(20px, 5vw, 72px);
}

.quote-section {
  background: white;
  padding-bottom: clamp(44px, 6vw, 72px);
  padding-top: clamp(44px, 6vw, 72px);
}

.quote-section blockquote {
  border-right: 6px solid var(--cyan);
  margin: 0 auto;
  max-width: 980px;
  padding: 8px clamp(22px, 4vw, 44px) 8px 0;
  position: relative;
}

.quote-section blockquote::before {
  color: rgba(0, 168, 198, .22);
  content: "”";
  font-size: clamp(5rem, 9vw, 8rem);
  font-weight: 800;
  line-height: .7;
  position: absolute;
  right: clamp(18px, 4vw, 40px);
  top: 0;
}

.quote-section p {
  color: var(--ink);
  font-size: clamp(1.1rem, 1.9vw, 1.9rem);
  font-weight: 800;
  line-height: 1.18;
  margin: 0 0 18px;
  position: relative;
}

.quote-section cite {
  color: var(--muted);
  display: block;
  font-size: 1.05rem;
  font-style: normal;
  font-weight: 700;
  text-align: left;
  position: relative;
}

.strip {
  background: var(--ink);
  color: white;
  display: grid;
  gap: 32px;
  grid-template-columns: .75fr 1.25fr;
}

.strip .section-label,
.strip p {
  color: #c8e7ef;
}

.strip .section-label {
  color: white;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.05;
  margin: 0;
}

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

.steps article,
.case-grid article,
.lead-form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.steps article {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .14);
  display: flex;
  flex-direction: column;
  padding: 22px;
}

.steps span {
  color: #69dff0;
  display: block;
  font-size: .9rem;
  font-weight: 800;
  margin-bottom: 18px;
}

.step-lottie {
  align-self: center;
  height: 104px;
  margin: auto 0 0;
  width: 124px;
}

.value {
  align-items: center;
  background: white;
  display: grid;
  gap: clamp(28px, 5vw, 64px);
  grid-template-columns: .8fr 1fr;
  padding-bottom: clamp(14px, 2.2vw, 28px);
  padding-top: clamp(14px, 2.2vw, 28px);
}

.value-image {
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.value-image img {
  aspect-ratio: 4 / 5;
  height: 100%;
  object-fit: cover;
}

.value-carousel {
  position: relative;
}

.value-carousel img {
  inset: 0;
  position: absolute;
  transform: translateX(100%);
  transition: transform .8s ease;
  z-index: 0;
}

.value-carousel img.is-active {
  transform: translateX(0);
  z-index: 2;
}

.value-carousel img.is-leaving {
  transform: translateX(-100%);
  z-index: 1;
}

.value-carousel img.is-resetting {
  transition: none;
}

.value-copy p {
  color: var(--muted);
}

.value-points {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.value-points p {
  background: var(--soft);
  border: 1px solid #cfe8ef;
  border-radius: 8px;
  color: var(--ink);
  font-weight: 700;
  margin: 0;
  padding: 14px 16px;
}

.use-cases {
  background:
    linear-gradient(135deg, rgba(0, 168, 198, .1), transparent 36%),
    #f7fbfd;
}

.use-cases h2 {
  max-width: 980px;
}

.case-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 30px;
}

.case-grid article {
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.case-grid p {
  color: var(--muted);
  margin-bottom: 18px;
}

.case-card-image {
  aspect-ratio: 1 / 1;
  border-radius: 7px;
  margin-top: auto;
  object-fit: cover;
  overflow: hidden;
}

.instagram-showcase {
  align-items: stretch;
  background: white;
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
  padding-bottom: clamp(34px, 5vw, 58px);
  padding-top: clamp(34px, 5vw, 58px);
}

.instagram-copy {
  display: flex;
  justify-content: center;
}

.instagram-showcase .instagram-link {
  width: fit-content;
}

.instagram-carousel {
  min-width: 0;
}

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

.instagram-card {
  background: #eef3f6;
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(6, 21, 34, .1);
  display: block;
  min-height: 0;
  overflow: hidden;
  position: relative;
  text-decoration: none;
}

.instagram-card::after {
  background: linear-gradient(180deg, transparent 45%, rgba(6, 21, 34, .38));
  content: "";
  inset: 0;
  opacity: 0;
  position: absolute;
  transition: opacity .2s ease;
}

.instagram-card:hover::after {
  opacity: 1;
}

.instagram-card img {
  aspect-ratio: 1 / 1;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.instagram-card:hover img {
  transform: scale(1.035);
}

.instagram-card.is-active {
  grid-row: auto;
}

.instagram-controls {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 18px;
}

.instagram-control {
  align-items: center;
  background: var(--ink);
  border: 0;
  border-radius: 999px;
  color: white;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-size: 1.55rem;
  font-weight: 800;
  height: 42px;
  justify-content: center;
  line-height: 1;
  padding: 0 0 3px;
  width: 42px;
}

.instagram-dots {
  display: flex;
  gap: 7px;
}

.instagram-dot {
  background: #bdd4df;
  border-radius: 999px;
  height: 8px;
  transition: background .2s ease, width .2s ease;
  width: 8px;
}

.instagram-dot.is-active {
  background: var(--teal);
  width: 24px;
}

.gallery {
  background: white;
  display: grid;
  gap: 34px;
  grid-template-columns: .55fr 1.45fr;
}

.gallery-copy {
  align-self: center;
}

.gallery-copy p:not(.section-label) {
  color: var(--muted);
}

.gallery-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: 1.35fr .75fr;
}

.gallery-grid img {
  background: #eef3f6;
  border-radius: 8px;
  height: 100%;
  object-fit: cover;
}

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

.practical {
  background: linear-gradient(135deg, var(--blue), var(--violet) 62%, var(--magenta));
  color: white;
  display: grid;
  gap: 34px;
  grid-template-columns: .8fr 1.2fr;
}

.practical .section-label {
  color: #dbf8ff;
}

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

.practical-list p {
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  margin: 0;
  padding: 18px;
}

.contact {
  align-items: start;
  background: #f7fbfd;
  display: grid;
  gap: clamp(28px, 5vw, 64px);
  grid-template-columns: .82fr 1.18fr;
}

.contact-copy p:not(.section-label) {
  color: var(--muted);
}

.contact-copy .pricing-note {
  color: var(--teal);
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.lead-form {
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, 1fr);
  padding: clamp(20px, 4vw, 34px);
}

label {
  color: #273b4d;
  display: grid;
  font-size: .95rem;
  font-weight: 800;
  gap: 8px;
}

.honeypot {
  display: none;
}

input,
select,
textarea {
  background: #fbfdff;
  border: 1px solid #cad8e4;
  border-radius: 7px;
  color: var(--ink);
  font: inherit;
  min-height: 48px;
  padding: 10px 12px;
  width: 100%;
}

textarea {
  resize: vertical;
}

.textarea-wrap {
  display: block;
  position: relative;
}

.textarea-wrap textarea {
  position: relative;
  z-index: 1;
}

.animated-placeholder {
  color: #7a8794;
  font-weight: 500;
  inset: 11px 13px auto 13px;
  line-height: 1.45;
  max-width: calc(100% - 26px);
  pointer-events: none;
  position: absolute;
  z-index: 2;
}

.textarea-wrap.has-value .animated-placeholder {
  display: none;
}

.typing-caret {
  animation: caret-blink 1s steps(1) infinite;
  border-left: 2px solid var(--teal);
  display: inline-block;
  height: 1.1em;
  margin-right: 2px;
  transform: translateY(3px);
}

@keyframes caret-blink {
  0%, 48% { opacity: 1; }
  49%, 100% { opacity: 0; }
}

.full {
  grid-column: 1 / -1;
}

.thank-you {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(0, 168, 198, .14), transparent 42%),
    linear-gradient(315deg, rgba(178, 60, 166, .14), transparent 48%),
    #f7fbfd;
  display: grid;
  justify-items: center;
  min-height: calc(100vh - 74px);
  padding: clamp(56px, 9vw, 120px) clamp(20px, 5vw, 72px);
  text-align: center;
}

.thank-you-copy {
  max-width: 760px;
}

.thank-you h1 {
  font-size: clamp(2.8rem, 6.5vw, 5.8rem);
  margin-bottom: 24px;
}

.thank-you p {
  color: #283b4d;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-weight: 700;
  margin-bottom: 28px;
}

.thank-you-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.instagram-button {
  background: linear-gradient(135deg, #6e3fb1 0%, #b23ca6 52%, #e45b7f 100%);
  box-shadow: 0 14px 36px rgba(178, 60, 166, .28);
  color: white;
}

.instagram-button:hover {
  box-shadow: 0 18px 42px rgba(178, 60, 166, .34);
  transform: translateY(-2px) scale(1.025);
}

.instagram-button:active {
  transform: translateY(0) scale(.99);
}

footer {
  align-items: center;
  background: white;
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  padding: 28px clamp(20px, 5vw, 72px);
}

footer strong {
  color: var(--ink);
}

footer a {
  color: var(--teal);
  font-weight: 800;
  text-decoration: none;
}

.instagram-link {
  align-items: center;
  display: inline-flex;
  gap: 8px;
}

.instagram-link svg {
  fill: none;
  height: 22px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  width: 22px;
}

@media (max-width: 980px) {
  .hero,
  .strip,
  .value,
  .instagram-showcase,
  .gallery,
  .practical,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

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

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

  .instagram-card.is-active {
    grid-column: auto;
    grid-row: auto;
  }

}

@media (max-width: 680px) {
  body {
    font-size: 17px;
  }

  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    gap: 14px;
    overflow-x: auto;
    width: 100%;
  }

  h1 {
    font-size: clamp(2.8rem, 18vw, 4.1rem);
  }

  .one-line {
    max-width: 100%;
    overflow-wrap: break-word;
    white-space: normal;
  }

  .button {
    width: 100%;
  }

  .steps,
  .case-grid,
  .gallery-grid,
  .lead-form {
    grid-template-columns: 1fr;
  }

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

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

  .hero-note {
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: none;
  }
}
