/* ============================================================
   Google Ads LP — clean rebuild of landing.dentalaysturkey.com
   All numeric values measured from the live Framer page
   (migration/lp/style-probe-1440.json / -400.json).
   Fonts: /lp/fonts.css (loaded separately).
   Breakpoints mirror Framer: phone ≤809.98, tablet 810–1199.98.
   ============================================================ */

:root {
  --lp-ink: rgb(24, 28, 57);
  --lp-muted: rgb(94, 96, 117);
  --lp-orange: rgb(255, 109, 35);
  --lp-blue: rgb(20, 90, 255);
  --lp-font: 'Inter', 'Inter Placeholder', sans-serif;
}

html {
  scroll-behavior: smooth;
}

.lp-body {
  margin: 0;
  background: #fff;
  font-family: var(--lp-font);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.lp-body *,
.lp-body *::before,
.lp-body *::after {
  box-sizing: border-box;
}

/* :where() keeps the reset at (0,1,0) so later single-class rules can set
   margins on p/h* elements (a plain `.lp-body p` reset would outrank them). */
.lp-body :where(p, h1, h2, h3) {
  margin: 0;
}

.lp-body :where(img, video) {
  max-width: 100%;
  display: block;
}

.lp-body :where(a) {
  text-decoration: none;
  color: inherit;
}

.lp-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 20px;
  overflow: clip;
  min-height: 100vh;
}

.lp-page section {
  scroll-margin-top: 20px;
}

/* ---------- shared ---------- */

.lp-h2 {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -1.5px;
  line-height: 1.2;
  color: var(--lp-ink);
  text-align: center;
}

.lp-sub {
  font-size: 14px;
  line-height: 1.5;
  color: var(--lp-muted);
  text-align: center;
  margin-top: 12px;
}

.lp-fineprint {
  font-size: 11px;
  line-height: 1.5;
  color: var(--lp-muted);
  text-align: center;
}

.lp-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--lp-orange);
  color: #fff;
  border: none;
  border-radius: 100px;
  font-family: var(--lp-font);
  cursor: pointer;
  white-space: nowrap;
}

.lp-pill-nav {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.14px;
  line-height: 1;
  padding: 8px 20px;
}

.lp-pill-lg {
  gap: 8px;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.6px;
  line-height: 1.2;
  padding: 10px 12px 10px 24px;
  border-radius: 50px;
  min-height: 52px;
}

.lp-pill-connect {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.2px;
  padding: 16px 18px;
  border-radius: 10px;
}

.lp-pill-arrow {
  width: 32px;
  height: 32px;
  border-radius: 22px;
  background: #fff;
  color: var(--lp-orange);
  display: inline-grid;
  place-items: center;
  flex: none;
}

/* ---------- nav ---------- */

.lp-nav {
  width: 100%;
  max-width: 960px;
  background: #fff;
}

.lp-nav-inner {
  display: flex;
  align-items: center;
  height: 54px;
}

.lp-nav-logo img {
  width: 156px;
  height: auto;
}

.lp-nav-links {
  display: flex;
  gap: 37px;
  margin-left: 154px;
}

.lp-nav-links a {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.15px;
  line-height: 19px;
  color: rgb(74, 74, 74);
}

.lp-nav .lp-pill-nav {
  margin-left: auto;
  margin-right: 46px;
}

/* ---------- hero ---------- */

.lp-hero {
  position: relative;
  width: 100%;
  height: 425px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.lp-hero-media {
  position: absolute;
  inset: 0;
  background: #000;
}

.lp-hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lp-hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lp-hero-line {
  font-size: 45px;
  font-weight: 700;
  line-height: 54px;
  color: #fff;
  text-align: center;
}

.lp-hero-cta {
  margin-top: 11px;
}

/* ---------- ticker ---------- */

.lp-ticker {
  width: 100%;
  padding: 21px 50px;
  overflow: hidden;
}

.lp-ticker-track {
  display: flex;
  width: max-content;
  animation: lp-marquee 40s linear infinite;
}

.lp-ticker-group {
  display: flex;
  flex: none;
}

.lp-ticker-item {
  font-family: 'Geist', 'Geist Placeholder', sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.2px;
  line-height: 25.6px;
  color: #000;
  white-space: nowrap;
  margin-right: 210px;
}

@keyframes lp-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .lp-ticker-track {
    animation: none;
  }
}

/* ---------- benefits ---------- */

.lp-benefits {
  width: 100%;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lp-benefits-grid {
  margin-top: 76px;
  display: grid;
  grid-template-columns: repeat(2, 487px);
  column-gap: 40px;
  row-gap: 41px;
}

.lp-benefit {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.lp-benefit-icon {
  width: 60px;
  height: 60px;
  border-radius: 200px;
  flex: none;
  margin-top: 5px;
}

.lp-benefit-title {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.2px;
  line-height: 1.6;
  color: var(--lp-ink);
}

.lp-benefit-body {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--lp-muted);
  max-width: 397px;
}

.lp-benefits .lp-fineprint {
  margin-top: 22px;
}

.lp-benefits .lp-pill-lg {
  margin-top: 22px;
}

/* ---------- brands ---------- */

.lp-brands {
  width: 97%;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.lp-brands-title {
  font-size: 20px;
  font-weight: 400;
  letter-spacing: -0.8px;
  line-height: 1.8;
  color: rgb(17, 18, 44);
  text-align: center;
}

.lp-brands-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.lp-brands-row img {
  width: 184px;
  height: 74px;
  object-fit: contain;
}

/* ---------- patient connect ---------- */

.lp-connect {
  width: 97%;
  background: rgb(244, 244, 244);
  padding: 110px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.lp-connect-line {
  width: 100%;
  max-width: 1284px;
  height: 1px;
  background: rgb(223, 223, 223);
}

.lp-connect-card {
  position: relative;
  width: 100%;
  max-width: 1200px;
  height: 687px;
  background: #fff;
  border-radius: 10px;
}

.lp-connect-orbit {
  position: absolute;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  object-fit: cover;
  padding: 9px;
  background: #fff;
}

/* measured on the live 1200px-wide card */
.lp-connect-orbit:nth-of-type(1) { left: 268px; top: 127px; }
.lp-connect-orbit:nth-of-type(2) { left: 152px; top: 299px; }
.lp-connect-orbit:nth-of-type(3) { left: 268px; top: 459px; }
.lp-connect-orbit:nth-of-type(4) { left: 554px; top: 505px; }
.lp-connect-orbit:nth-of-type(5) { left: 849px; top: 459px; }
.lp-connect-orbit:nth-of-type(6) { left: 966px; top: 299px; }
.lp-connect-orbit:nth-of-type(7) { left: 839px; top: 127px; }

.lp-connect-content {
  position: absolute;
  inset: 0;
  padding-top: 149px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lp-connect-icon {
  width: 92px;
  height: 92px;
}

.lp-connect-title {
  margin-top: 0;
  max-width: 442px;
  font-size: 45px;
  font-weight: 600;
  letter-spacing: -1.5px;
  line-height: 54px;
  color: var(--lp-ink);
  text-align: center;
}

.lp-connect-text {
  margin-top: 30px;
  font-size: 18px;
  line-height: 27px;
  color: var(--lp-muted);
  text-align: center;
  max-width: 442px;
  white-space: pre-line;
}

.lp-connect-content .lp-pill-connect {
  margin-top: 30px;
}

/* ---------- story phone ---------- */

.lp-story {
  position: relative;
  width: 350px;
  height: 600px;
  margin: 30px auto 0;
  background: #000;
  border-radius: 20px;
  overflow: hidden;
  flex: none;
}

.lp-story video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lp-story-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 12px;
  background: linear-gradient(rgba(0, 0, 0, 0.4), transparent);
}

.lp-story-bars {
  display: flex;
  gap: 4px;
}

.lp-story-bar {
  flex: 1;
  height: 3px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.3);
  overflow: hidden;
}

.lp-story-bar span {
  display: block;
  height: 100%;
  border-radius: 2px;
  background: #fff;
  transform-origin: left;
  transform: scaleX(0);
}

.lp-story-head {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lp-story-user {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 14px;
  line-height: 1.2;
}

.lp-story-user img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

.lp-story-mute {
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
}

.lp-story-bottom {
  position: absolute;
  bottom: 12px;
  left: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.lp-story-check {
  flex: 1;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  border-radius: 24px;
  padding: 12px 16px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  line-height: 1.2;
  transition: background 0.2s;
}

.lp-story-check:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lp-story-tap {
  position: absolute;
  top: 60px;
  bottom: 70px;
  width: 50%;
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
}

.lp-story-tap-prev { left: 0; text-align: left; }
.lp-story-tap-next { right: 0; text-align: right; }

/* chevrons: glass discs that fade in while hovering the story */
.lp-story-arrow {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin: 0 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  opacity: 0;
  transition: opacity 0.2s, background 0.2s;
}

.lp-story:hover .lp-story-arrow {
  opacity: 1;
}

.lp-story-tap:hover .lp-story-arrow {
  background: rgba(255, 255, 255, 0.3);
}

/* touch devices have no hover — keep the chevrons visible */
@media (hover: none) {
  .lp-story-arrow {
    opacity: 0.85;
  }
}

/* ---------- why ---------- */

.lp-why {
  width: 97%;
  padding: 50px 30px 55px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lp-why-intro {
  margin-top: 16px;
  font-size: 14px;
  line-height: 21px;
  color: var(--lp-muted);
  text-align: center;
}

.lp-why-intro span {
  display: block;
}

.lp-why-grid {
  margin-top: 72px;
  width: 100%;
  max-width: 1296px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.lp-why-video {
  width: 648px;
  height: 532px;
  border-radius: 24px;
  overflow: hidden;
  flex: none;
}

.lp-why-video video,
.lp-why-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lp-why-list {
  width: 503px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.lp-why-item {
  display: flex;
  gap: 24px;
}

.lp-why-num {
  width: 48px;
  height: 48px;
  flex: none;
  border-radius: 50px;
  background: rgba(20, 90, 255, 0.1);
  color: var(--lp-blue);
  font-family: 'Plus Jakarta Sans', 'Plus Jakarta Sans Placeholder', sans-serif;
  font-size: 18px;
  font-weight: 700;
  display: grid;
  place-items: center;
}

.lp-why-item-title {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -1.5px;
  line-height: 1.2;
  color: var(--lp-ink);
}

.lp-why-item-body {
  margin-top: 8px;
  font-size: 14px;
  line-height: 21px;
  color: var(--lp-muted);
  max-width: 396px;
}

/* ---------- tech ---------- */

.lp-tech {
  width: 97%;
  padding: 50px 30px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lp-tech-row {
  margin-top: 26px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  justify-content: center;
}

.lp-tech-card {
  width: 404px;
  background: rgb(249, 249, 251);
  border-radius: 16px;
  padding: 24px;
}

.lp-tech-media {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 16px;
}

.lp-tech-media video {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.lp-tech-media img {
  width: 100%;
  height: 243px;
  object-fit: cover;
}

.lp-tech-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 34px;
  color: #000;
}

.lp-tech-body {
  margin-top: 8px;
  font-size: 14px;
  line-height: 23.8px;
  color: rgb(59, 59, 59);
}

.lp-tech .lp-fineprint {
  margin-top: 26px;
}

/* first card: no image variant keeps title at bottom like live */
.lp-tech-card:first-child .lp-tech-media {
  background: rgb(249, 249, 251);
}

/* ---------- testimonials ---------- */

.lp-testimonial {
  width: 94%;
  padding: 50px 30px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lp-testimonial .lp-sub {
  margin-top: 21px;
}

.lp-testimonial-badge {
  margin-top: 20px;
  width: 245px;
  height: auto;
}

.lp-wally {
  width: 100%;
  margin-top: 20px;
}

/* ---------- review carousel (Wally replacement) ---------- */

.lp-reviews {
  width: 100%;
  margin-top: 24px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.lp-reviews-track {
  display: flex;
  width: max-content;
  animation: lp-marquee 60s linear infinite;
}

.lp-reviews:hover .lp-reviews-track {
  animation-play-state: paused;
}

.lp-reviews-group {
  display: flex;
  gap: 20px;
  padding-right: 20px;
}

.lp-review-card {
  width: 340px;
  flex: none;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 1px 2px rgba(24, 28, 57, 0.06), 0 0 0 1px rgba(24, 28, 57, 0.08);
  padding: 20px;
  white-space: normal;
}

.lp-review-card header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lp-review-card header img,
.lp-review-initial {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex: none;
}

.lp-review-initial {
  display: grid;
  place-items: center;
  background: rgba(20, 90, 255, 0.1);
  color: var(--lp-blue);
  font-weight: 600;
  font-size: 18px;
}

.lp-review-author {
  font-size: 15px;
  font-weight: 600;
  color: var(--lp-ink);
}

.lp-review-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--lp-muted);
}

.lp-review-stars {
  color: #ffb400;
  letter-spacing: 1px;
  font-size: 13px;
}

.lp-review-source {
  margin-left: auto;
  flex: none;
}

.lp-review-text {
  margin-top: 12px;
  font-size: 14px;
  line-height: 21px;
  color: var(--lp-muted);
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  .lp-reviews-track {
    animation: none;
  }
}

/* ---------- certified ---------- */

.lp-certified {
  width: 97%;
  padding: 30px 30px 39px;
}

.lp-certified-card {
  position: relative;
  width: 100%;
  height: 588px;
  border-radius: 24px;
  overflow: hidden;
}

.lp-certified-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lp-certified-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(253deg, rgba(13, 17, 1, 0) 0%, rgb(13, 17, 1) 100%);
}

.lp-certified-content {
  position: absolute;
  left: 60px;
  top: 50%;
  transform: translateY(-50%);
  width: 496px;
}

.lp-certified-title {
  font-size: 48px;
  font-weight: 600;
  letter-spacing: -1.5px;
  line-height: 57.6px;
  color: #fff;
}

.lp-certified-text {
  margin-top: 24px;
  font-size: 14px;
  line-height: 21px;
  color: #fff;
}

.lp-certified-note {
  margin-top: 24px;
}

.lp-certified-panel {
  position: absolute;
  right: 60px;
  top: 127px;
  width: 565px;
  height: 334px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.34);
  padding: 50px 44px;
}

.lp-certified-inner {
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 8px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.lp-certified-inner h3 {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -1.5px;
  line-height: 38.4px;
  color: var(--lp-ink);
  text-align: center;
}

/* ---------- gallery ---------- */

.lp-gallery {
  width: 94%;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lp-gallery .lp-sub {
  margin-top: 24px;
}

.lp-gallery-row {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  justify-content: center;
  margin-top: 24px;
}

.lp-gallery-row-1 {
  margin-top: 30px;
  gap: 23px;
}

.lp-gallery-item {
  padding: 0;
  border: none;
  background: none;
  cursor: zoom-in;
  display: block;
}

.lp-gallery-row img {
  border-radius: 24px;
  object-fit: cover;
  height: 390px;
  width: auto;
}

.lp-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(10, 10, 14, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}

.lp-lightbox img {
  max-width: 92vw;
  max-height: 92vh;
  width: auto;
  height: auto;
  border-radius: 12px;
  cursor: default;
}

.lp-lightbox-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  backdrop-filter: blur(6px);
}

.lp-lightbox-btn:hover {
  background: rgba(255, 255, 255, 0.24);
}

.lp-lightbox-prev { left: 24px; }
.lp-lightbox-next { right: 24px; }

.lp-lightbox-close {
  top: 24px;
  right: 24px;
  transform: none;
  font-size: 24px;
}

.lp-gallery-row-1 .lp-gallery-item:nth-child(1) img { width: 716px; height: 390px; }
.lp-gallery-row-1 .lp-gallery-item:nth-child(2) img { width: 515px; height: 395px; }
.lp-gallery-row-2 .lp-gallery-item:nth-child(1) img { width: 377px; height: 388px; }
.lp-gallery-row-2 .lp-gallery-item:nth-child(2) img { width: 502px; height: 392px; }
.lp-gallery-row-2 .lp-gallery-item:nth-child(3) img { width: 327px; height: 395px; }

/* ---------- affordable ---------- */

.lp-afford {
  position: relative;
  width: 97%;
  padding: 80px 30px;
  overflow: hidden;
}

.lp-afford-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lp-afford-inner {
  position: relative;
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}

.lp-afford-left {
  width: 505px;
}

.lp-afford-title {
  text-align: left;
}

.lp-afford-text {
  margin: 12px 0 31px;
  font-size: 17px;
  line-height: 25.5px;
  color: rgb(73, 74, 94);
}

.lp-afford-left .lp-pill-lg {
  border-radius: 199px;
  min-height: 56px;
  padding: 18px 24px;
}

.lp-afford-right {
  width: 319px;
  display: flex;
  flex-direction: column;
}

.lp-afford-widget-r {
  text-align: right;
}

.lp-afford-kicker {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -1.5px;
  line-height: 30px;
  color: var(--lp-ink);
}

.lp-afford-widget:nth-child(2) .lp-afford-kicker {
  font-family: 'Outfit', 'Inter', 'Outfit Placeholder', sans-serif;
}

.lp-afford-dont {
  color: rgb(217, 47, 0);
}

.lp-afford-big {
  margin-top: 12px;
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -2px;
  line-height: 41.4px;
}

.lp-afford-divider {
  margin: 30px 0;
  height: 1px;
  background: var(--lp-ink);
}

/* ---------- team ---------- */

.lp-team {
  width: 100%;
  padding: 30px 30px 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lp-team-sub {
  margin-top: 25px;
  max-width: 445px;
}

.lp-team-metrics {
  margin-top: 24px;
  width: 100%;
  max-width: 1224px;
  background: rgb(227, 227, 227);
  border-radius: 24px;
  padding: 27px;
  display: flex;
  justify-content: space-between;
  gap: 27px;
}

.lp-team-metric {
  width: 357px;
  height: 178px;
  background: rgb(251, 249, 248);
  border-radius: 32px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.lp-team-count {
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -1.5px;
  line-height: 1.2;
  color: #000;
}

.lp-team-count-label {
  font-size: 18px;
  font-weight: 500;
  line-height: 31px;
  color: #000;
}

.lp-team-grid {
  margin-top: 49px;
  display: flex;
  gap: 24px;
  justify-content: center;
}

.lp-team-card {
  width: 288px;
  height: 390px;
  background: #fff;
  border-radius: 8px;
}

.lp-team-card img {
  width: 288px;
  height: 304px;
  border-radius: 8px;
  object-fit: cover;
}

.lp-team-name {
  margin: 16px 0 0 16px;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -1px;
  line-height: 32px;
  color: var(--lp-ink);
}

.lp-team-role {
  margin: 0 0 16px 16px;
  font-size: 14px;
  line-height: 22px;
  color: var(--lp-muted);
}

/* ---------- journey ---------- */

.lp-journey {
  width: 97%;
  padding: 10px 30px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lp-journey-row {
  margin-top: 77px;
  display: flex;
  gap: 10px;
  justify-content: space-between;
  width: 100%;
  max-width: 1298px;
}

.lp-journey-step {
  width: 252px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.lp-journey-num {
  width: 51px;
  height: 51px;
  border-radius: 8px;
  background: var(--lp-orange);
  color: #fff;
  font-family: 'Outfit', 'Inter', 'Outfit Placeholder', sans-serif;
  font-size: 20px;
  font-weight: 600;
  display: grid;
  place-items: center;
}

.lp-journey-title {
  margin-top: 24px;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: pre-line;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -1.5px;
  line-height: 24px;
  color: rgb(28, 65, 51);
}

.lp-journey-text {
  margin-top: 12px;
  font-size: 14px;
  line-height: 21px;
  color: var(--lp-muted);
}

.lp-journey-line {
  margin-top: 52px;
  width: 100%;
  height: 2px;
  border-radius: 8px;
  background: rgb(237, 244, 242);
}

/* ---------- contact ---------- */

.lp-contact {
  position: relative;
  width: 94%;
  padding: 30px;
  overflow: hidden;
}

.lp-contact-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lp-contact-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0 0 0 16px;
}

.lp-contact-title {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -1.5px;
  line-height: 38.4px;
  color: #fff;
}

.lp-contact-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.lp-contact-checks {
  width: 515px;
  background: rgb(250, 250, 251);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lp-contact-check {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lp-contact-check svg {
  flex: none;
}

.lp-contact-check p {
  font-size: 14px;
  line-height: 21px;
  color: var(--lp-muted);
}

.lp-contact-check strong {
  font-weight: 700;
}

/* ---------- form ---------- */

.lp-form {
  width: 600px;
  background: #fff;
  border-radius: 24px;
  padding: 37px 24px 26px;
  display: flex;
  flex-direction: column;
}

/* the live form's (invisible) Website honeypot row occupies ~35px */
.lp-form-spacer {
  height: 35px;
  overflow: hidden;
}

.lp-form-spacer input {
  opacity: 0;
  pointer-events: none;
  border: none;
}

.lp-form-input-error {
  border-color: rgb(217, 47, 0) !important;
}

.lp-form-error {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  font-style: normal;
  color: rgb(217, 47, 0);
}

.lp-form-error-global a {
  text-decoration: underline;
}

.lp-form-success {
  min-height: 300px;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--lp-ink);
  text-align: center;
}

.lp-form-field {
  display: block;
}

.lp-form-field > span {
  display: block;
  letter-spacing: -0.4px;
  font-size: 16px;
  line-height: 1.8;
  color: rgb(10, 9, 21);
}

.lp-form-input {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 16px;
}

.lp-form-input input {
  width: 100%;
  border: none;
  outline: none;
  font-family: var(--lp-font);
  font-size: 16px;
  line-height: 1.2;
  color: var(--lp-ink);
  padding: 0;
  background: transparent;
}

.lp-form-input input::placeholder {
  color: rgb(156, 163, 175);
}

/* intl-tel-input wraps the input in its own .iti container */
.lp-form-phone {
  width: 232px;
  height: 50px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  position: relative;
}

.lp-form-phone .iti {
  width: 100%;
}

.lp-form-phone input {
  width: 100%;
  min-width: 0;
  height: 48px;
  border: none;
  outline: none;
  font-family: var(--lp-font);
  font-size: 16px;
  color: var(--lp-ink);
  background: transparent;
}

.lp-form-phone .iti__dropdown-content {
  z-index: 10;
  border-radius: 8px;
}

.lp-form-trap {
  display: none !important;
}

.lp-form-submit {
  align-self: flex-start;
  margin-top: 34px;
  font-size: 16px;
  padding: 10px 12px 10px 16px;
  border-radius: 32px;
  min-height: 52px;
  box-shadow: rgba(179, 179, 179, 0.35) 0px 3px 7px -2px;
}

.lp-form-recaptcha {
  margin-top: 20px;
  font-size: 10px;
  line-height: 14px;
  color: rgb(156, 163, 175);
  text-align: center;
}

.lp-form-recaptcha a {
  color: rgb(107, 114, 128);
  text-decoration: underline;
}

/* ---------- faq ---------- */

.lp-faq {
  width: 97%;
  padding: 60px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lp-faq .lp-sub {
  margin-top: 16px;
  max-width: 490px;
}

.lp-faq-list {
  margin-top: 60px;
  width: 100%;
  max-width: 1004px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lp-faq-item {
  background: #fff;
  /* live outlines via shadow, not border (border would add 2px per item) */
  box-shadow: 0 0 0 1px rgba(24, 28, 57, 0.08);
  border-radius: 16px;
  padding: 20px 24px;
}

.lp-faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: var(--lp-font);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -1.5px;
  line-height: 34px;
  color: var(--lp-ink);
  text-align: left;
}

.lp-faq-icon {
  flex: none;
  color: var(--lp-ink);
}

.lp-faq-icon-v {
  transition: opacity 0.2s;
}

.lp-faq-item.is-open .lp-faq-icon-v {
  opacity: 0;
}

.lp-faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.lp-faq-item.is-open .lp-faq-a {
  grid-template-rows: 1fr;
}

.lp-faq-a > div {
  overflow: hidden;
}

.lp-faq-a p {
  padding-top: 8px;
  max-width: 740px;
  font-size: 16px;
  line-height: 27px;
  color: var(--lp-muted);
}

/* ---------- all-inclusive ---------- */

.lp-allinc {
  width: 97%;
  background: rgb(249, 249, 250);
  padding: 32px 30px;
  display: flex;
  justify-content: center;
}

.lp-allinc-card {
  position: relative;
  width: 100%;
  max-width: 1140px;
  height: 443px;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
}

.lp-allinc-bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: calc(100% - 79px);
  height: 100%;
  object-fit: cover;
}

.lp-allinc-content {
  position: absolute;
  left: 70px;
  top: 70px;
}

.lp-allinc-content h2 {
  font-size: 36px;
  font-weight: 500;
  line-height: 41.4px;
  color: #fff;
}

.lp-allinc-checks {
  list-style: none;
  margin: 41px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.lp-allinc-checks li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.2px;
  line-height: 27px;
  color: #fff;
}

.lp-allinc-content .lp-pill-lg {
  margin-top: 41px;
  border-radius: 230px;
  min-height: 56px;
  padding: 18px 24px;
}

/* ---------- seo text ---------- */

.lp-seotext {
  width: 97%;
  padding: 30px;
  display: flex;
  justify-content: center;
}

.lp-seotext p {
  max-width: 745px;
  font-size: 14px;
  line-height: 21px;
  color: var(--lp-muted);
  text-align: center;
}

/* ---------- footer ---------- */

.lp-footer {
  width: 100%;
  max-width: 960px;
  padding: 100px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.lp-footer-left {
  width: 372px;
}

.lp-footer-heading {
  font-size: 14px;
  font-weight: 600;
  line-height: 21px;
  color: var(--lp-muted);
}

.lp-footer-text {
  margin-top: 10px;
  font-size: 14px;
  line-height: 21px;
  color: var(--lp-muted);
  max-width: 268px;
}

/* ---------- floaters ---------- */

.lp-whatsapp-float {
  position: fixed;
  left: 40px;
  bottom: 100px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgb(37, 211, 102);
  display: grid;
  place-items: center;
  box-shadow: rgba(0, 0, 0, 0.18) 0px 2px 8px 0px;
  z-index: 50;
}

/* ============================================================
   Tablet: 810–1199.98 (Framer's middle variant, simplified)
   ============================================================ */

@media (min-width: 810px) and (max-width: 1199.98px) {
  .lp-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 40px;
    width: 100%;
  }

  .lp-benefit-body {
    max-width: 352px;
  }

  .lp-connect {
    padding: 80px 20px;
  }

  .lp-connect-card {
    height: auto;
    padding: 60px 24px;
  }

  .lp-connect-orbit {
    display: none;
  }

  .lp-connect-content {
    position: static;
    padding-top: 0;
  }

  .lp-why-grid {
    flex-direction: column;
    align-items: center;
    gap: 40px;
    width: 100%;
  }

  .lp-why-video {
    width: 100%;
    max-width: 894px;
    height: auto;
    aspect-ratio: 648 / 532;
  }

  .lp-why-list {
    width: 100%;
    max-width: 648px;
  }

  .lp-tech-row {
    flex-direction: column;
    width: 100%;
    gap: 24px;
  }

  .lp-tech-card {
    width: 100%;
  }

  .lp-tech-media video,
  .lp-tech-media img {
    height: auto;
    width: 100%;
  }

  .lp-certified-card {
    height: auto;
  }

  .lp-certified-content {
    position: static;
    transform: none;
    width: auto;
    padding: 48px 40px 0;
  }

  .lp-certified-panel {
    position: static;
    width: auto;
    height: auto;
    margin: 40px;
  }

  /* live tablet keeps the 2 + 3 rows but with fluid widths */
  .lp-gallery-row img {
    height: auto;
  }

  .lp-gallery-row-1 .lp-gallery-item:nth-child(1) img { width: 56.5%; }
  .lp-gallery-row-1 .lp-gallery-item:nth-child(2) img { width: 40.5%; }
  .lp-gallery-row-2 .lp-gallery-item:nth-child(1) img { width: 29%; }
  .lp-gallery-row-2 .lp-gallery-item:nth-child(2) img { width: 38.7%; }
  .lp-gallery-row-2 .lp-gallery-item:nth-child(3) img { width: 25.2%; }

  .lp-afford-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 48px;
  }

  .lp-team-metrics {
    flex-wrap: wrap;
    justify-content: center;
  }

  .lp-team-metric {
    width: calc(50% - 14px);
  }

  /* live tablet: 2×2 team grid with taller portrait crops */
  .lp-team-grid {
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
  }

  .lp-team-card {
    width: calc(50% - 12px);
    height: auto;
    padding-bottom: 16px;
  }

  .lp-team-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 450 / 610;
  }

  .lp-journey-row {
    flex-direction: column;
    gap: 40px;
    width: 100%;
    max-width: 894px;
  }

  .lp-journey-step {
    width: 100%;
  }

  .lp-contact-bottom {
    flex-direction: column;
    gap: 24px;
  }

  .lp-contact-checks {
    width: 100%;
  }

  .lp-form {
    width: 100%;
    max-width: 660px;
  }

  .lp-allinc-card {
    height: auto;
  }

  .lp-allinc-bg {
    width: 100%;
  }

  .lp-allinc-content {
    position: relative;
    left: 0;
    top: 0;
    padding: 56px 48px 64px;
  }
}

/* ============================================================
   Phone: ≤809.98 — values measured from the live 400px render
   (migration/lp/style-probe-400.json)
   ============================================================ */

@media (max-width: 809.98px) {
  .lp-nav {
    padding: 22px 0 0;
    height: 138px;
  }

  .lp-nav-inner {
    height: auto;
    align-items: flex-start;
  }

  .lp-nav-links {
    display: none;
  }

  .lp-nav .lp-pill-nav {
    margin-right: 0;
  }

  .lp-hero-line {
    font-size: 29px;
    line-height: 34.8px;
  }

  .lp-h2 {
    font-size: 24px;
    line-height: 28.8px;
  }

  .lp-ticker {
    padding: 20px;
    height: 132px;
  }

  .lp-benefits {
    padding: 30px 20px;
  }

  .lp-benefits-grid {
    grid-template-columns: 1fr;
    row-gap: 29px;
    margin-top: 35px;
  }

  .lp-benefit {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
  }

  .lp-benefit-icon {
    width: 50px;
    height: 50px;
    margin-top: 0;
  }

  .lp-benefit-title,
  .lp-benefit-body {
    text-align: center;
  }

  .lp-benefit-body {
    margin-top: 11px;
  }

  .lp-benefits .lp-fineprint {
    margin-top: 36px;
  }

  .lp-benefits .lp-pill-lg {
    margin-top: 36px;
  }

  .lp-brands {
    padding: 30px 20px;
  }

  .lp-brands-title {
    font-size: 16px;
    line-height: 29px;
    letter-spacing: -0.5px;
  }

  .lp-brands-row {
    gap: 24px;
  }

  .lp-brands-row img {
    width: 143px;
    height: 57px;
  }

  .lp-connect {
    padding: 30px 20px;
  }

  .lp-connect-line {
    display: none;
  }

  .lp-connect-card {
    height: auto;
    padding: 50px 16px;
  }

  .lp-connect-orbit {
    width: 50px;
    height: 50px;
    padding: 5px;
  }

  .lp-connect-orbit:nth-of-type(1) { left: 15px; top: 166px; }
  .lp-connect-orbit:nth-of-type(2) { display: none; }
  .lp-connect-orbit:nth-of-type(3) { left: 11px; top: 335px; }
  .lp-connect-orbit:nth-of-type(4) { left: 180px; top: 353px; }
  .lp-connect-orbit:nth-of-type(5) { left: 284px; top: 141px; }
  .lp-connect-orbit:nth-of-type(6) { left: 294px; top: 313px; }
  .lp-connect-orbit:nth-of-type(7) { display: none; }

  .lp-connect-content {
    position: static;
    padding-top: 0;
  }

  .lp-connect-icon {
    width: 50px;
    height: 50px;
  }

  .lp-connect-title {
    font-size: 30px;
    line-height: 36px;
  }

  .lp-connect-text {
    margin-top: 30px;
    font-size: 10px;
    line-height: 13.5px;
    max-width: 242px;
  }

  .lp-connect-content .lp-pill-connect {
    margin-top: 47px;
  }

  .lp-why {
    padding: 40px 20px;
  }

  .lp-why-grid {
    flex-direction: column;
    align-items: center;
    gap: 32px;
    width: 100%;
    margin-top: 32px;
  }

  .lp-why-video {
    width: 303px;
    height: 248px;
    max-width: none;
    aspect-ratio: auto;
  }

  .lp-why-list {
    width: 100%;
    max-width: none;
    gap: 24px;
  }

  .lp-why-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .lp-why-item-title,
  .lp-why-item-body {
    text-align: center;
  }

  .lp-tech {
    padding: 40px 20px 20px;
  }

  .lp-tech-row {
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 20px;
    margin-top: 24px;
  }

  .lp-tech-card {
    width: 309px;
  }

  .lp-tech-media video {
    width: 100%;
    height: 200px;
  }

  .lp-tech-media img {
    width: 100%;
    height: 178px;
  }

  .lp-testimonial {
    padding: 40px 20px 20px;
  }

  .lp-certified {
    padding: 20px 0 30px;
  }

  .lp-certified {
    padding: 20px 25px 30px;
  }

  /* live phone shows ONLY the seal image with the title overlaid */
  .lp-certified-card {
    height: 380px;
    border-radius: 24px;
    background: #fff;
  }

  .lp-certified-bg {
    position: absolute;
    left: 50%;
    top: 30px;
    transform: translateX(-50%);
    width: 309px;
    height: 320px;
    object-fit: cover;
    border-radius: 24px;
  }

  .lp-certified-shade {
    left: 50%;
    top: 30px;
    transform: translateX(-50%);
    width: 309px;
    height: 320px;
    border-radius: 24px;
    inset: auto;
  }

  .lp-certified-content {
    position: absolute;
    left: 35px;
    top: 60px;
    transform: none;
    width: 279px;
  }

  .lp-certified-title {
    font-size: 32px;
    line-height: 38.4px;
  }

  .lp-certified-text {
    display: none;
  }

  .lp-certified-panel {
    display: none;
  }

  .lp-gallery {
    padding: 30px 20px;
  }

  .lp-gallery-row {
    flex-direction: column;
    align-items: center;
    gap: 23px;
  }

  .lp-gallery-row img {
    width: 298px !important;
  }

  .lp-gallery-row-1 .lp-gallery-item:nth-child(1) img { height: 163px; }
  .lp-gallery-row-1 .lp-gallery-item:nth-child(2) img { height: 229px; }
  .lp-gallery-row-2 .lp-gallery-item:nth-child(1) img { height: 308px; }
  .lp-gallery-row-2 .lp-gallery-item:nth-child(2) img { height: 233px; }
  .lp-gallery-row-2 .lp-gallery-item:nth-child(3) img { height: 361px; }

  .lp-afford {
    padding: 48px 20px;
  }

  .lp-afford-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }

  .lp-afford-left,
  .lp-afford-right {
    width: 100%;
  }

  .lp-afford-widget-r {
    text-align: left;
  }

  .lp-team {
    padding: 30px 20px 50px;
  }

  .lp-team-metrics {
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    gap: 24px;
  }

  .lp-team-metric {
    width: 100%;
    height: 122px;
    padding: 12px 24px;
  }

  .lp-team-grid {
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 24px;
  }

  /* live phone: names overlay the photo bottom */
  .lp-team-card {
    position: relative;
    width: 320px;
    height: 434px;
    padding-bottom: 0;
    overflow: hidden;
  }

  .lp-team-card img {
    width: 320px;
    height: 434px;
    object-fit: cover;
  }

  .lp-team-card::after {
    content: '';
    position: absolute;
    inset: 50% 0 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.55));
    border-radius: 0 0 8px 8px;
  }

  .lp-team-name {
    position: absolute;
    left: 16px;
    bottom: 40px;
    margin: 0;
    color: #fff;
    z-index: 1;
  }

  .lp-team-role {
    position: absolute;
    left: 16px;
    bottom: 16px;
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
    z-index: 1;
  }

  .lp-journey {
    padding: 10px 20px 30px;
  }

  .lp-journey-row {
    flex-direction: column;
    gap: 30px;
    margin-top: 36px;
    max-width: none;
  }

  .lp-journey-step {
    width: 100%;
  }

  .lp-contact {
    padding: 24px 16px;
  }

  .lp-contact-inner {
    gap: 40px;
    padding: 0;
  }

  .lp-contact-title {
    font-size: 36px;
    line-height: 43.2px;
  }

  .lp-contact-bottom {
    flex-direction: column;
    gap: 24px;
  }

  .lp-contact-checks {
    width: 100%;
  }

  .lp-form {
    width: 100%;
    max-width: none;
    padding: 37px 24px 26px;
  }

  .lp-faq {
    padding: 40px 20px;
  }

  .lp-faq-q {
    font-size: 16px;
    line-height: 26px;
  }

  .lp-allinc {
    padding: 24px 0;
  }

  .lp-allinc-card {
    height: 478px;
    border-radius: 0;
  }

  .lp-allinc-bg {
    width: auto;
    height: 100%;
    max-width: none;
    left: 50%;
    transform: translateX(-58%);
  }

  .lp-allinc-content {
    position: absolute;
    left: 0;
    top: 0;
    padding: 32px 24px;
  }

  .lp-allinc-content h2 {
    font-size: 36px;
    line-height: 41.4px;
  }

  .lp-seotext {
    padding: 30px 20px;
  }

  .lp-footer {
    flex-direction: column;
    gap: 40px;
    padding: 50px 0;
  }

  .lp-footer-left,
  .lp-footer-right {
    width: 100%;
  }

  .lp-whatsapp-float {
    left: 16px;
    bottom: 24px;
    width: 52px;
    height: 52px;
  }
}

/* ---------- RU/DE language variants (live Framer parity) ---------- */

/* Long single-string hero headings wrap in a 700px box like the live pages. */
html:lang(ru) .lp-hero-line,
html:lang(de) .lp-hero-line {
  max-width: 700px;
}

/* RU/DE: the long benefits heading wraps at the live 1015px content width. */
html:lang(ru) .lp-benefits .lp-h2,
html:lang(de) .lp-benefits .lp-h2 {
  max-width: 1015px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 809.98px) {
  html:lang(ru) .lp-hero-line,
  html:lang(de) .lp-hero-line {
    max-width: 300px;
  }

  /* Live DE phone hero keeps the desktop type size. */
  html:lang(de) .lp-hero-line {
    font-size: 45px;
    line-height: 54px;
  }

  /* Live RU phone nav logo is larger than on the EN pages. */
  html:lang(ru) .lp-nav-logo img {
    width: 156px;
    height: auto;
  }
}
