/* ---------- Fonts ---------- */
/* Bricolage Grotesque: variable font, wght 200-800, wdth 75-100%, opsz 12-96. */
@font-face {
  font-family: 'Bricolage Grotesque';
  src: url('../fonts/BricolageGrotesque-Variable.woff2') format('woff2'),
       url('../fonts/BricolageGrotesque-Variable.ttf') format('truetype-variations');
  font-weight: 200 800;
  font-stretch: 75% 100%;
  font-style: normal;
  font-display: swap;
}

/* ---------- Reset / Tokens ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg-dark: #1E1638;
  --purple: #B298E6;
  --lime: #CFEF3E;
  --navy: #251C3E;
  --navy-70: rgba(37, 28, 62, 0.72);
  --white: #FFFFFF;
  --radius-card: 32px;
  --container: 1400px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Bricolage Grotesque', 'Poppins', sans-serif;
  font-optical-sizing: auto;
  background: var(--bg-dark);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

.page {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

/* ---------- Buttons (shared) ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  border-radius: 999px;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 0.15s ease, opacity 0.15s ease;
}
.btn:hover { transform: translateY(-1px); opacity: 0.92; }

.btn--primary {
  background: var(--navy);
  color: var(--lime);
  padding: 20px 28px;
  font-size: 16px;
}

.btn--ghost {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--navy);
  padding: 19px 28px;
  font-size: 16px;
}

.btn--nav {
  background: var(--lime);
  color: var(--navy);
  padding: 12px 22px;
  font-size: 14px;
}

/* ---------- Navbar ---------- */
.navbar {
  position: relative;
  z-index: 101;
  padding: 32px 0 24px;
}


.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo__img {
  height: 30px;
  width: auto;
  display: block;
}

.navmenu {
  display: flex;
  align-items: center;
  gap: 36px;
  font-size: 15px;
  font-weight: 600;
  font-stretch: 88%;
}

.navmenu a {
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.15s ease;
}
.navmenu a:hover { color: var(--lime); }

.navbar__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 4px;
}

.lang-switch__btn {
  display: flex;
  align-items: center;
  gap: 6px;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.lang-switch__btn.is-active,
.lang-switch__btn:hover {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
}

.flag {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-block;
  object-fit: cover;
}

.link-login {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  opacity: 0.85;
}
.link-login:hover { opacity: 1; color: var(--lime); }

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  width: 22px;
  height: 22px;
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
  flex-shrink: 0;
}

.menu-toggle__bar {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: var(--white);
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.menu-toggle.is-active .menu-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-active .menu-toggle__bar:nth-child(2) { opacity: 0; }
.menu-toggle.is-active .menu-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-dark);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-menu__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  font-size: 24px;
  font-weight: 600;
}

.mobile-menu__links a { color: var(--white); }
.mobile-menu__links a:hover { color: var(--lime); }

/* ---------- Hero ---------- */
.hero {
  padding: 12px 0 64px;
}

.hero__card {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--purple);
  aspect-ratio: 1672 / 878;
}

.hero__card--alt { background: #F3E8FF; }
.hero__card--alt .avatars__img,
.hero__card--alt .avatars__more { border-color: #F3E8FF; }

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  display: block;
}

.hero__media--contain .hero__bg {
  object-fit: contain;
  object-position: right center;
  transform: scale(0.9);
  transform-origin: right bottom;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 42%;
  height: 100%;
  padding: 6% 0 6% 5.5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.8vw;
}

.hero__title {
  font-size: clamp(28px, 4.4vw, 62px);
  line-height: 0.98;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -1.2px;
}

.hero__subtitle {
  font-size: clamp(13px, 1.15vw, 17px);
  line-height: 1.55;
  font-weight: 500;
  color: var(--navy-70);
  max-width: 480px;
}

.hero__ctas {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero__social-proof {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 12px;
}

.avatars {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.avatars__img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--purple);
  margin-left: -10px;
}
.avatars__img:first-child { margin-left: 0; }

.avatars__more {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--lime);
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -10px;
  border: 2px solid var(--purple);
}

.hero__social-text {
  font-size: 14px;
  line-height: 1.4;
  font-weight: 600;
  color: var(--navy);
}

.accent-lime { color: var(--lime); }

/* ---------- Services (bento) ---------- */
.services {
  padding: 90px 0 120px;
}

.services__intro {
  max-width: 980px;
  font-size: clamp(20px, 2.4vw, 30px);
  line-height: 1.4;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 48px;
}

.services__intro .emoji {
  font-style: normal;
  font-size: 0.85em;
}

.bento {
  display: grid;
  grid-template-columns: 1.05fr 1.15fr 1.05fr;
  grid-template-rows: auto auto;
  gap: 20px;
}

.bento__card {
  position: relative;
  background: var(--card-bg);
  border-radius: 24px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 20px;
}

.bento__card--col1 { grid-column: 1; grid-row: 1 / 3; }
.bento__card--col2top { grid-column: 2; grid-row: 1; }
.bento__card--col2bottom { grid-column: 2; grid-row: 2; }
.bento__card--col3 { grid-column: 3; grid-row: 1 / 3; }
.bento__card--wide { grid-column: 1 / 4; grid-row: 3; }

.bento__card--col1,
.bento__card--col3 {
  min-height: 420px;
}

.bento__card--col2top,
.bento__card--col2bottom {
  justify-content: flex-end;
}

.bento__badge {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}
.bento__badge img {
  width: 18px;
  height: 18px;
  display: block;
}

.bento__tag {
  display: inline-flex;
  align-self: flex-start;
  background: rgba(37, 28, 62, 0.85);
  color: var(--white);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.bento__text h3 {
  font-size: clamp(34px, 4.6vw, 60px);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -1.5px;
  text-transform: lowercase;
  color: var(--navy);
  margin-bottom: 14px;
}

.bento__card--col2top .bento__text h3,
.bento__card--col2bottom .bento__text h3 {
  font-size: clamp(17px, 2.3vw, 30px);
  letter-spacing: -0.75px;
  margin-bottom: 8px;
}

.bento__text p {
  font-size: 14.5px;
  line-height: 1.55;
  font-weight: 500;
  color: var(--navy-70);
  max-width: 34ch;
}

.bento__card--purple {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.bento__cta-heading {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.bento__card--purple .bento__badge { position: static; }

.bento__cta-heading h3 {
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  text-transform: lowercase;
  letter-spacing: -0.5px;
}

.bento__cta-support {
  font-size: 14.5px;
  line-height: 1.5;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  max-width: 32ch;
}

.bento__cta-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.btn--ghost-light {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 15px 24px;
  font-size: 15px;
}

.btn--light {
  background: var(--white);
  color: var(--navy);
  padding: 16px 24px;
  font-size: 15px;
}

/* ---------- Works ---------- */
.works {
  padding: 40px 0 100px;
}

.svc-ai + .works { padding-top: 100px; }

.works-head {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 48px;
}

.works-head__title {
  flex-shrink: 0;
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  text-transform: lowercase;
}

.works-head__support {
  flex: 1;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  max-width: 46ch;
}

.works-head__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  margin-left: auto;
}

.works-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 2fr;
  gap: 28px;
  align-items: start;
}

.works-item__media {
  position: relative;
  display: block;
  aspect-ratio: 1.04 / 1;
  border-radius: 20px;
  overflow: hidden;
}

.works-item:nth-child(2) .works-item__media { aspect-ratio: 0.47 / 1; }
.works-item:nth-child(3) .works-item__media { aspect-ratio: 0.95 / 1; }

.works-grid--square { grid-template-columns: repeat(3, 1fr); }
.works-grid--square .works-item .works-item__media { aspect-ratio: 1 / 1; }

.works-item__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.works-item__media:hover img { transform: scale(1.05); }

.works-item__arrow {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.works-item__arrow img {
  position: static;
  inset: auto;
  width: 8.4px;
  height: 8.4px;
}

.works-item h3 {
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 700;
  color: var(--white);
  margin-top: 20px;
  margin-bottom: 12px;
}

.works-item__tags {
  display: flex;
  gap: 8px;
}

.works-item__tags span {
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  padding: 5px 12px;
}

/* ---------- How it works ---------- */
.hiw {
  padding: 40px 0 100px;
}

.hiw__card {
  background: #F3E8FF;
  border-radius: var(--radius-card);
  padding: 64px 48px;
}

.hiw__head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.hiw__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--navy);
}

.hiw__eyebrow-line {
  width: 22px;
  height: 2px;
  background: var(--navy);
}

.hiw__title {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -1px;
  color: var(--navy);
}

.hiw__steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.hiw__steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 12.5%;
  right: 12.5%;
  border-top: 2px dashed rgba(37, 28, 62, 0.25);
  z-index: 0;
}

.hiw__step { position: relative; }

.hiw__number {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 28px;
}

.hiw__number--navy { background: var(--navy); color: var(--lime); }
.hiw__number--lime { background: var(--lime); color: var(--navy); }
.hiw__number--purple { background: #DBC2F9; color: var(--navy); }

.hiw__step h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.hiw__step p {
  font-size: 14.5px;
  line-height: 1.55;
  font-weight: 500;
  color: var(--navy-70);
}

/* ---------- Testimonial ---------- */
.testimonial {
  padding: 40px 0 120px;
}

.testimonial__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
}

.testimonial__photo {
  position: relative;
}

.testimonial__photo-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-card);
  overflow: hidden;
}

.testimonial__photo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.testimonial__play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: none;
  background: var(--lime);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  transition: transform 0.15s ease;
}
.testimonial__play-btn svg { margin-left: 3px; }
.testimonial__play-btn:hover { transform: translate(-50%, -50%) scale(1.08); }

.testimonial__rating-badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  background: var(--lime);
  border-radius: 999px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.testimonial__stars {
  display: flex;
  align-items: center;
  gap: 2px;
  color: var(--navy);
}

.testimonial__rating-text {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
}

.testimonial__rating-text span {
  font-weight: 600;
  opacity: 0.75;
}

.testimonial__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 20px;
}

.testimonial__eyebrow .hiw__eyebrow-line { background: var(--lime); }

.testimonial__quote-icon { margin-bottom: 16px; }

.testimonial__quote {
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.4;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 40px;
}

.testimonial__stats {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
}

.testimonial__stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.testimonial__stat-number {
  font-size: 40px;
  font-weight: 700;
  color: var(--lime);
  line-height: 1;
}

.testimonial__stat-label {
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.6);
  max-width: 20ch;
}

.testimonial__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.testimonial__author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial__author-name {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
}

.testimonial__author-role {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
}

.testimonial__stars--footer { color: var(--lime); }

/* ---------- Case study page ---------- */
.case { padding: 40px 0 100px; }

.case-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 40px;
}
.case-back:hover { color: var(--white); }

.case-hero {
  max-width: 720px;
  margin-bottom: 48px;
}

.case-tag {
  display: inline-flex;
  background: var(--tag-bg, var(--lime));
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.case-title {
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -1px;
  color: var(--white);
  margin-bottom: 20px;
}

.case-intro {
  font-size: 18px;
  line-height: 1.55;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
}

.case-media {
  border-radius: var(--radius-card);
  overflow: hidden;
  margin-bottom: 56px;
}
.case-media img { width: 100%; display: block; }

.case-about {
  max-width: 720px;
  margin-bottom: 56px;
}

.case-about h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.case-about p {
  font-size: 16px;
  line-height: 1.7;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
}

.case-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  padding: 40px 0;
  margin-bottom: 56px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.case-cta {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.case-cta .btn--primary { background: var(--lime); color: var(--navy); }

.case-cta h2 {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

/* ---------- Video modal ---------- */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease;
}

.video-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 6, 26, 0.85);
}

.video-modal__dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 960px;
}

.video-modal__close {
  position: absolute;
  top: -48px;
  right: 0;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.video-modal__close:hover { background: rgba(255, 255, 255, 0.22); }

.video-modal__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
}

.video-modal__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---------- Compare ---------- */
.compare {
  padding: 40px 0 100px;
}

.compare__head {
  max-width: 640px;
  margin-bottom: 56px;
}

.compare__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 20px;
}

.compare__eyebrow .hiw__eyebrow-line { background: var(--lime); }

.compare__title {
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -1px;
  color: var(--white);
  margin-bottom: 16px;
}

.compare__support {
  font-size: 15px;
  line-height: 1.6;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
}

.compare__table-scroll {
  overflow-x: auto;
}

.compare__table {
  min-width: 960px;
}

.compare__cols,
.compare__row {
  display: grid;
  grid-template-columns: 2.6fr repeat(7, 1fr);
  align-items: center;
  gap: 16px;
}

.compare__cols {
  padding: 0 32px 16px;
}

.compare__cols span {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.2px;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
}

.compare__row {
  padding: 28px 32px;
}

.compare__row + .compare__row {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.compare__row--featured {
  background: var(--lime);
  border-radius: 20px;
  margin-bottom: 4px;
}

.compare__entity {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.compare__mark-icon {
  flex-shrink: 0;
  width: 77px;
  height: 77px;
  border-radius: 21px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
}

.compare__mark-icon img {
  width: 39px;
  height: 39px;
  display: block;
}

.compare__mark-icon--logo img {
  width: 26px;
  height: 26px;
}

.compare__mark-icon--muted {
  background: rgba(255, 255, 255, 0.08);
}

.compare__mark-icon--muted img {
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.compare__entity-text h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.compare__entity-text p {
  font-size: 13.5px;
  line-height: 1.5;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  max-width: 34ch;
}

.compare__row--featured .compare__entity-text h3 { color: var(--navy); }
.compare__row--featured .compare__entity-text p { color: rgba(37, 28, 62, 0.7); }

.compare__cell {
  display: flex;
  align-items: center;
  justify-content: center;
}

.compare__cell--yes { color: #2FB86A; }
.compare__cell--no { color: rgba(255, 255, 255, 0.3); }

.compare__row--featured .compare__cell--yes { color: var(--navy); }

.compare__cell--price {
  font-size: 16px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
}

.compare__row--featured .compare__cell--price {
  font-size: 20px;
  color: var(--navy);
}

/* ---------- Pricing ---------- */
.pricing {
  padding: 0 0 120px;
}

.pricing__card {
  background: #F3E8FF;
  border-radius: var(--radius-card);
  padding: 64px 40px;
}

.pricing__head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.pricing__title {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -1px;
  color: var(--navy);
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: stretch;
}

.plan-card {
  position: relative;
  background: var(--white);
  border-radius: 20px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(37, 28, 62, 0.08);
  overflow: hidden;
}

.plan-card__ribbon {
  position: absolute;
  top: 20px;
  right: -30px;
  transform: rotate(40deg);
  background: var(--lime);
  color: var(--navy);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 4px 34px;
}

.plan-card__ribbon--navy {
  background: var(--navy);
  color: var(--lime);
  padding-right: 24px;
}

.plan-card__tag {
  display: inline-flex;
  align-self: flex-start;
  background: var(--tag-bg);
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.plan-card__price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 4px 8px;
  margin-bottom: 24px;
}

.plan-card__price-old {
  width: 100%;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy-70);
  text-decoration: line-through;
  opacity: 0.6;
}

.plan-card__price-now {
  font-size: 40px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.plan-card__currency {
  font-size: 20px;
  font-weight: 700;
  vertical-align: super;
}

.plan-card__price-period {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy-70);
}

.plan-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 28px;
  flex: 1;
  padding-top: 20px;
  border-top: 1px solid rgba(37, 28, 62, 0.1);
}

.plan-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--navy);
}

.plan-card__check { flex-shrink: 0; margin-top: 2px; }

.plan-card__group {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--navy-70);
  margin-top: 6px;
  cursor: pointer;
  user-select: none;
}
.plan-card__group:first-child { margin-top: 0; }

.plan-card__group-icon {
  flex-shrink: 0;
  width: 12px;
  font-weight: 700;
}
.plan-card__group-icon::before { content: '+'; }
.plan-card__group.is-expanded .plan-card__group-icon::before { content: '\2212'; }

.plan-card__group--plus { color: var(--navy); opacity: 0.55; }

.plan-card__sub {
  font-size: 12.5px;
  color: var(--navy-70);
  padding-left: 22px;
}

.plan-card__more {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy-70);
}

.plan-card__cta { width: 100%; margin-bottom: 12px; }

.plan-card__call {
  display: block;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy-70);
}
.plan-card__call:hover { color: var(--navy); }

.plan-card--featured {
  background: var(--navy);
  border-color: transparent;
  transform: translateY(-12px);
}

.plan-card--featured .plan-card__price-old,
.plan-card--featured .plan-card__price-now,
.plan-card--featured .plan-card__price-period,
.plan-card--featured .plan-card__group,
.plan-card--featured .plan-card__sub,
.plan-card--featured .plan-card__more,
.plan-card--featured .plan-card__features li {
  color: var(--white);
}
.plan-card--featured .plan-card__group--plus { color: var(--white); opacity: 0.55; }
.plan-card--featured .plan-card__price-old { opacity: 0.5; }
.plan-card--featured .plan-card__features { border-top-color: rgba(255, 255, 255, 0.15); }

.plan-card__badge {
  align-self: flex-start;
  background: var(--lime);
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.plan-card__call--light { color: rgba(255, 255, 255, 0.6); }
.plan-card__call--light:hover { color: var(--white); }

/* ---------- Pricing note ---------- */
.pricing-note {
  padding: 0 0 100px;
}

.pricing-note__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.pricing-note__text {
  max-width: 980px;
  font-size: clamp(20px, 2.4vw, 30px);
  line-height: 1.4;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.pricing-note__cta {
  cursor: pointer;
}

/* ---------- Final CTA ---------- */
.final-cta {
  padding: 0 0 100px;
}

.final-cta__stage {
  position: relative;
}

.final-cta__card {
  position: relative;
  margin-top: 8%;
  border-radius: var(--radius-card);
  background: #5826E5;
  aspect-ratio: 2.4 / 1;
  z-index: 1;
}

.final-cta__content {
  position: relative;
  z-index: 1;
  max-width: 46%;
  height: 100%;
  padding: 6% 0 6% 5.5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
}

.final-cta__model {
  position: absolute;
  z-index: 2;
  right: 1%;
  bottom: 0;
  width: 70%;
  pointer-events: none;
}

.final-cta__sticker {
  position: absolute;
  z-index: 3;
  pointer-events: none;
}

.final-cta__sticker--heart {
  top: 9%;
  left: 4%;
  width: 6.5%;
}

.final-cta__sticker--star {
  top: 54%;
  left: 33%;
  width: 6%;
}

.final-cta__sticker--ideas {
  top: 13%;
  right: 0.5%;
  width: 40%;
}

.final-cta__title {
  font-size: clamp(28px, 4.4vw, 62px);
  line-height: 0.98;
  font-weight: 600;
  letter-spacing: -1.2px;
  color: var(--white);
}

.final-cta__ctas {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* ---------- FAQ ---------- */
.faq {
  padding: 40px 0 120px;
}

.faq__head {
  max-width: 640px;
  margin-bottom: 48px;
}

.faq__title {
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -1px;
  color: var(--white);
  margin-top: 20px;
}

.faq__list {
  max-width: 860px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.faq__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 4px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
}

.faq__icon {
  position: relative;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--lime);
}

.faq__icon::before,
.faq__icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: currentColor;
  transform: translate(-50%, -50%);
}

.faq__icon::before { width: 14px; height: 2px; }
.faq__icon::after { width: 2px; height: 14px; transition: transform 0.25s ease; }

.faq__item.is-open .faq__icon::after { transform: translate(-50%, -50%) rotate(90deg); }

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq__item.is-open .faq__answer { max-height: 320px; }

.faq__answer p {
  padding: 0 30px 26px 4px;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
}

/* ---------- Footer ---------- */
.footer {
  padding: 80px 0 48px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__logo {
  display: inline-flex;
  margin-bottom: 32px;
}

.footer__logo .logo__img { height: 26px; }

.footer__address {
  font-size: 15px;
  line-height: 1.6;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 24px;
}

.footer__registered {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.footer__copyright {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 40px;
}

.footer__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 40px;
  margin-bottom: 40px;
}

.footer__nav a {
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.15s ease;
}
.footer__nav a:hover { color: var(--lime); }

.footer__social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 56px;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--white);
  opacity: 0.85;
  transition: opacity 0.15s ease;
}
.footer__social-link:hover { opacity: 1; }

.footer__legal {
  max-width: 780px;
  margin: 0 auto 16px;
  font-size: 13px;
  line-height: 1.6;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.35);
}

.footer__legal a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: underline;
}
.footer__legal a:hover { color: var(--white); }

/* ---------- Book a Call ---------- */
.book-hero {
  padding: 12px 0 100px;
}

.book-hero__card {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--purple);
  aspect-ratio: 1672 / 878;
}

.book-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  display: block;
}

.book-hero__widget {
  position: absolute;
  z-index: 1;
  top: 6%;
  left: 5.5%;
  bottom: 6%;
  width: 37%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  overflow-y: auto;
}

.book-hero__heading {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--navy-70);
}

.book-hero__host {
  display: flex;
  align-items: center;
  gap: 10px;
}

.book-hero__host-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.book-hero__host-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy-70);
}

.book-hero__title {
  font-size: clamp(20px, 1.8vw, 24px);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.3px;
}

.book-hero__meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(37, 28, 62, 0.15);
}

.book-hero__meta-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--navy-70);
}

.book-hero__meta-item svg {
  flex-shrink: 0;
  margin-top: 1px;
}

.book-hero__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.book-hero__input {
  font-family: inherit;
  background: var(--white);
  border: none;
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
}

.book-hero__input::placeholder { color: rgba(37, 28, 62, 0.45); }
.book-hero__input:focus { outline: 2px solid var(--lime); outline-offset: 1px; }

.book-hero__hint {
  margin-top: -4px;
  font-size: 11px;
  font-weight: 500;
  color: var(--navy-70);
}

.book-hero__feedback {
  display: none;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
  background: #b3261ee3;
  color: #fff;
}

.book-hero__feedback.is-visible { display: block; }

.book-hero__feedback.success-info-box { background: #1b7c3de3; }

.book-hero__submit {
  width: 100%;
  margin-top: 4px;
  border: none;
}

/* ---------- Service landing page ---------- */
.svc-features {
  padding: 60px 0;
}

.svc-features__head {
  max-width: 600px;
  margin: 0 auto 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.svc-features__head .hiw__eyebrow { color: var(--lime); }
.svc-features__head .hiw__eyebrow-line { background: var(--lime); }

.svc-features__title {
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.2;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.5px;
}

.svc-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 24px;
}

.svc-platforms {
  padding: 60px 0;
}

.svc-platforms__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 24px;
}

.svc-platforms__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #5826E5;
  margin-bottom: 20px;
}

.svc-platforms__item h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.svc-platforms__item p {
  font-size: 14.5px;
  line-height: 1.55;
  font-weight: 500;
  color: var(--navy-70);
}

.svc-channels {
  padding: 90px 0;
}

.svc-channels__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}

.svc-channels__intro {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 100px;
}

.svc-channels__title {
  font-size: clamp(28px, 4.4vw, 62px);
  font-weight: 700;
  line-height: 0.98;
  color: var(--white);
  letter-spacing: -1.2px;
}

.svc-channels__text {
  font-size: 16px;
  line-height: 1.6;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  max-width: 40ch;
}

.svc-channels__list {
  display: flex;
  flex-direction: column;
}

.svc-channels__item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding-bottom: 44px;
}

.svc-channels__item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 56px;
  left: 27px;
  bottom: 0;
  border-left: 2px dashed rgba(255, 255, 255, 0.15);
}

.svc-channels__icon {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
}

.svc-channels__icon--navy { background: var(--navy); color: var(--lime); }
.svc-channels__icon--lime { background: var(--lime); color: var(--navy); }
.svc-channels__icon--purple { background: #DBC2F9; color: var(--navy); }
.svc-channels__icon--cyan { background: #6CBECF; color: var(--navy); }
.svc-channels__icon--offwhite { background: #F3E8FF; color: var(--navy); }

.svc-channels__item-body h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.svc-channels__item-body p {
  font-size: 14px;
  line-height: 1.5;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
}

.svc-features__item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.svc-features__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lime);
  flex-shrink: 0;
}

.svc-features__item h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
}

.svc-features__item p {
  font-size: 13.5px;
  line-height: 1.5;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .navmenu { display: none; }

  .menu-toggle { display: flex; }

  .hero__card {
    aspect-ratio: auto;
    display: flex;
    flex-direction: column;
    background: var(--purple);
    border-radius: var(--radius-card);
    overflow: hidden;
  }

  .hero__card--alt { background: #F3E8FF; }

  .hero__media {
    order: 2;
  }

  .hero__bg {
    position: static;
    display: block;
    width: 100%;
    height: auto;
  }

  .hero__media--contain .hero__bg { transform: none; }

  .hero__content {
    order: 1;
    position: static;
    max-width: 100%;
    height: auto;
    text-align: center;
    padding: 40px 24px 32px;
  }

  .hero__content .hiw__eyebrow { align-self: center; }

  .hero__title { font-size: 36px; }

  .hero__subtitle { margin-top: 16px; }

  .hero__ctas {
    flex-wrap: nowrap;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
  }

  .hero__ctas .btn {
    padding: 14px 22px;
    font-size: 14px;
  }

  .hero__social-text { font-size: 11px; text-align: left; }

  .hero__social-proof {
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
  }

  .hero { padding: 8px 0 45px; }
  .services { padding: 50px 0 62px; }
  .works { padding: 28px 0 70px; }
  .svc-ai + .works { padding-top: 56px; }
  .hiw { padding: 28px 0 70px; }
  .testimonial { padding: 28px 0 84px; }
  .compare { padding: 28px 0 70px; }
  .pricing { padding: 0 0 84px; }
  .pricing-note { padding: 0 0 70px; }
  .final-cta { padding: 0 0 70px; }
  .faq { padding: 28px 0 84px; }
  .footer { padding: 56px 0 34px; }

  .bento {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .bento__card--col1,
  .bento__card--col2top,
  .bento__card--col2bottom,
  .bento__card--col3 {
    grid-column: auto;
    grid-row: auto;
    min-height: 280px;
    min-width: 0;
  }
  .bento__card--wide { grid-column: 1 / 3; }

  .bento__text { padding-top: 56px; }
  .bento__text h3 { overflow-wrap: break-word; }

  .bento__text h3,
  .bento__card--col2top .bento__text h3,
  .bento__card--col2bottom .bento__text h3 {
    font-size: clamp(31px, 4.6vw, 60px);
    letter-spacing: -1.5px;
    margin-bottom: 14px;
  }

  .svc-features__grid { grid-template-columns: repeat(2, 1fr); }
  .svc-platforms__grid { grid-template-columns: repeat(2, 1fr); }

  .svc-channels { padding: 56px 0; }
  .svc-channels__grid { grid-template-columns: 1fr; gap: 40px; }
  .svc-channels__intro { position: static; }

  .hiw__card { padding: 48px 32px; }
  .hiw__steps {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 48px;
  }
  .hiw__steps::before { display: none; }

  .testimonial__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .testimonial__photo-frame { aspect-ratio: 16 / 9; }

  .pricing__card { padding: 48px 28px; }
  .pricing__grid { grid-template-columns: repeat(2, 1fr); }
  .plan-card--featured { transform: none; }

  .final-cta__card {
    margin-top: 0;
    aspect-ratio: auto;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }
  .final-cta__content {
    order: 1;
    max-width: 100%;
    height: auto;
    text-align: center;
    padding: 40px 24px 32px;
  }
  .final-cta__title { font-size: 36px; }
  .final-cta__ctas {
    flex-wrap: nowrap;
    justify-content: center;
    gap: 10px;
  }
  .final-cta__ctas .btn {
    padding: 14px 22px;
    font-size: 14px;
  }

  .final-cta__media {
    order: 2;
    position: relative;
  }
  .final-cta__model {
    position: static;
    display: block;
    width: 100%;
    height: auto;
  }
  .final-cta__sticker--ideas { width: 46%; top: 6%; right: 4%; bottom: auto; }
  .final-cta__sticker--star { display: none; }
  .final-cta__sticker--heart { top: 6%; left: 6%; right: auto; width: 40px; }

  .works-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .works-head__actions { width: 100%; }
  .works-head__actions .btn { flex: 1; justify-content: center; }

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

@media (max-width: 520px) {
  .navbar__actions .link-login { display: none; }
  .page { padding: 0 20px; }

  .navbar__inner { gap: 10px; }
  .navbar__actions { gap: 10px; }
  .lang-switch__btn span:last-child { display: none; }
  .lang-switch__btn { padding: 6px 8px; }
  .btn--nav { padding: 10px 14px; font-size: 13px; }
  .logo__img { height: 24px; }

  .bento { grid-template-columns: 1fr 1fr; }
  .bento__card--col1,
  .bento__card--col2top,
  .bento__card--col2bottom,
  .bento__card--col3 {
    grid-column: auto;
    grid-row: auto;
    min-height: auto;
  }
  .bento__card--wide {
    grid-column: 1 / 3;
    grid-row: auto;
    flex-direction: column;
    align-items: flex-start;
  }

  .bento__cta-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }
  .bento__cta-actions .btn { justify-content: center; }

  .hiw__card { padding: 36px 24px; }
  .hiw__steps { grid-template-columns: 1fr; row-gap: 32px; }

  .hiw__step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
  }

  .hiw__step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 40px;
    left: 19px;
    bottom: -32px;
    border-left: 2px dashed rgba(37, 28, 62, 0.25);
  }

  .hiw__number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    font-size: 13px;
    margin-bottom: 0;
  }

  .hiw__step-body h3 { font-size: 17px; margin-bottom: 6px; }
  .hiw__step-body p { font-size: 13.5px; }

  .testimonial__stats { flex-direction: column; gap: 20px; }
  .testimonial__footer { flex-direction: column; align-items: flex-start; gap: 16px; }

  .pricing__card { padding: 36px 20px; }
  .pricing__grid { grid-template-columns: 1fr; }
  .plan-card--featured { transform: none; }

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

  .final-cta__content { padding: 32px 20px 24px; }

  .case-stats { flex-direction: column; gap: 24px; }
}

@media (max-width: 900px) {
  .book-hero { padding: 8px 0 45px; }

  .book-hero__card {
    aspect-ratio: auto;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

  .book-hero__bg {
    position: static;
    display: block;
    width: 100%;
    height: auto;
  }

  .book-hero__widget {
    position: static;
    width: auto;
    margin: 20px;
    padding: 24px 20px;
  }
}

/* ---------- Plan details (video-plan-details) ---------- */
.plan-details {
  padding: 20px 0 90px;
}

.plan-details__head {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 48px;
}

.plan-details__head .hiw__eyebrow { color: var(--lime); }
.plan-details__head .hiw__eyebrow-line { background: var(--lime); }

.plan-details__title {
  font-size: clamp(38px, 5.4vw, 68px);
  line-height: 1.03;
  font-weight: 700;
  letter-spacing: -1.5px;
  color: var(--white);
}

.plan-details__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 400px;
  gap: 40px;
  align-items: start;
}

.plan-details__content {
  background: #F3E8FF;
  border-radius: var(--radius-card);
  padding: 48px 44px;
}

.plan-details__block-title {
  font-size: clamp(24px, 2.6vw, 30px);
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--navy);
  margin-bottom: 28px;
}

.deliveries {
  list-style: none;
  counter-reset: delivery;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.deliveries__item {
  position: relative;
  counter-increment: delivery;
  padding-left: 44px;
}

/* numero da entrega — counter em vez de <ol> nativo para poder estilizar o marcador */
.deliveries__item::before {
  content: counter(delivery);
  position: absolute;
  left: 0;
  top: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--lime);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.deliveries__title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--navy);
  padding-top: 4px;
}

.deliveries__sub {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.deliveries__sub li {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy-70);
  background: var(--white);
  border-radius: 999px;
  padding: 6px 14px;
}

.plan-details__note {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(37, 28, 62, 0.12);
}

.plan-details__note-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
}

.plan-details__note p {
  font-size: 14.5px;
  line-height: 1.6;
  font-weight: 500;
  color: var(--navy-70);
}
.plan-details__note p + p { margin-top: 12px; }

.plan-details__note-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.plan-details__note-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  line-height: 1.5;
  font-weight: 500;
  color: var(--navy-70);
}

.plan-details__note-list li::before {
  content: '\00d7';
  flex-shrink: 0;
  font-weight: 700;
  color: #D0455F;
}

.plan-details__aside {
  position: sticky;
  top: 24px;
}

.plan-details__fineprint {
  margin-top: 32px;
  font-size: 12.5px;
  line-height: 1.7;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.45);
}

/* ---------- Video portfolio ---------- */
.video-works {
  padding: 20px 0 100px;
}

.video-works__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.video-item__media {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  padding: 0;
  border-radius: 20px;
  overflow: hidden;
  background: var(--navy);
  cursor: pointer;
}

.video-item__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.video-item__media:hover img { transform: scale(1.05); }

.video-item__play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 52px;
  height: 52px;
  padding-left: 3px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s ease;
}

.video-item__media:hover .video-item__play { transform: scale(1.08); }

.video-item__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-top: 16px;
}

@media (max-width: 1080px) {
  .plan-details__grid { grid-template-columns: 1fr; }
  .plan-details__aside { position: static; max-width: 420px; }
}

@media (max-width: 900px) {
  .plan-details { padding-bottom: 60px; }
  .plan-details__content { padding: 36px 26px; }
  .video-works__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 520px) {
  .plan-details__content { padding: 30px 20px; }
  .plan-details__aside { max-width: none; }
  .video-works__grid { grid-template-columns: 1fr; }
}

/* ---------- Paginas legais (privacy-policy) ---------- */
.legal {
  padding: 20px 0 100px;
}

.legal__head {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 44px;
}

.legal__head .hiw__eyebrow { color: var(--lime); }
.legal__head .hiw__eyebrow-line { background: var(--lime); }

.legal__title {
  font-size: clamp(38px, 5.4vw, 68px);
  line-height: 1.03;
  font-weight: 700;
  letter-spacing: -1.5px;
  color: var(--white);
}

.legal__updated {
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.45);
}

.legal__card {
  background: #F3E8FF;
  border-radius: var(--radius-card);
  padding: 56px 60px;
  max-width: 900px;
}

.legal__section + .legal__section {
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid rgba(37, 28, 62, 0.12);
}

.legal__section-title {
  font-size: clamp(20px, 2.2vw, 24px);
  font-weight: 700;
  letter-spacing: -0.4px;
  color: var(--navy);
  margin-bottom: 14px;
}

.legal__section p {
  font-size: 15px;
  line-height: 1.65;
  font-weight: 500;
  color: var(--navy-70);
}
.legal__section p + p { margin-top: 14px; }
.legal__list + p { margin-top: 16px; }

.legal__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

.legal__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.55;
  font-weight: 500;
  color: var(--navy-70);
}

/* marcador proprio: o list-style nativo nao alinha com o texto multilinha */
.legal__list li::before {
  content: '';
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--navy);
  opacity: 0.45;
  margin-top: 9px;
}

.legal__link {
  color: var(--navy);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal__link:hover { opacity: 0.7; }

@media (max-width: 900px) {
  .legal { padding-bottom: 60px; }
  .legal__card { padding: 36px 26px; }
}

@media (max-width: 520px) {
  .legal__card { padding: 30px 20px; }
}

/* ---------- Agradecimento pos-compra (thank-you-*) ---------- */
/* navbar sem menu: pos-checkout a pagina nao oferece caminhos de saida */
.navbar--bare .navbar__inner { justify-content: center; }

/* centraliza o card na vertical: a pagina e curta e ficava com o pe vazio */
.thanks {
  padding: 60px 0 120px;
  min-height: calc(100vh - 220px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.thanks__card {
  background: #F3E8FF;
  border-radius: var(--radius-card);
  padding: 64px 56px;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.thanks__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--lime);
  margin-bottom: 28px;
}

.thanks__title {
  font-size: clamp(32px, 4.4vw, 52px);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -1.2px;
  color: var(--navy);
  margin-bottom: 24px;
}

.thanks__title .accent-lime { color: var(--navy); font-style: italic; }

.thanks__lead {
  font-size: 17px;
  line-height: 1.5;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 18px;
}

.thanks__text {
  font-size: 15px;
  line-height: 1.65;
  font-weight: 500;
  color: var(--navy-70);
  max-width: 52ch;
  margin: 0 auto;
}
.thanks__text + .thanks__text { margin-top: 14px; }

.thanks__link {
  color: var(--navy);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.thanks__link:hover { opacity: 0.7; }

.thanks__ctas {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

@media (max-width: 900px) {
  .thanks { padding: 40px 0 80px; }
  .thanks__card { padding: 44px 26px; }
}

@media (max-width: 520px) {
  .thanks__card { padding: 36px 20px; }
  .thanks__ctas .btn { width: 100%; }
}

/* ---------- /works/ — embed do prototipo em tela cheia ---------- */
/* escopado no body: esta pagina nao usa o fundo escuro nem o scroll do site */
body.works-embed {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background: var(--white);
}

.works-embed__frame {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

/* tipografia do .btn do site (Bricolage 700, pill) + degrade navy -> roxo da marca */
.btn-book-call {
  position: fixed;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  background: linear-gradient(39deg, var(--navy) 0%, #3D22A6 45%, #5826E5 100%);
  animation: book-call-pulse 2s infinite;
  transition: opacity 0.15s ease;
}

/* o pulso ja usa transform, entao o hover mexe so na opacidade */
.btn-book-call:hover { opacity: 0.92; }

.btn-book-call__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--lime);
  animation: book-call-dot 2s infinite;
}

@keyframes book-call-pulse {
  0%, 100% { transform: translateX(-50%) scale(1); }
  50%      { transform: translateX(-50%) scale(1.05); }
}

@keyframes book-call-dot {
  0%   { box-shadow: 0 0 0 0 rgba(207, 239, 62, 0.45); }
  100% { box-shadow: 0 0 0 14px rgba(207, 239, 62, 0); }
}

/* o embed do Figma tem barra propria no rodape em telas pequenas */
@media (max-width: 768px) {
  .btn-book-call {
    bottom: 43px;
    max-width: 200px;
    padding: 10px 18px;
    font-size: 12px;
    line-height: 1.3;
    text-align: left;
    /* com o texto em duas linhas o ponto centralizado fica solto no meio */
    align-items: flex-start;
  }
  .btn-book-call__dot { margin-top: 4px; }
}

@media (prefers-reduced-motion: reduce) {
  .btn-book-call,
  .btn-book-call__dot { animation: none; }
  .btn-book-call { transform: translateX(-50%); }
}
