@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/Inter-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/fonts/Inter-Medium.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/fonts/Inter-SemiBold.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/fonts/Inter-Bold.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("/fonts/Inter-ExtraBold.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("/fonts/Inter-Black.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/Inter-Italic.woff2") format("woff2");
}

/* ─── Reset ─────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 60px;
}
body {
  background: #f3f3f3;
  color: #111;
  -webkit-font-smoothing: antialiased;
}
a {
  text-decoration: none;
  color: inherit;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}
img {
  max-width: 100%;
  display: block;
}
ul {
  list-style: none;
}

@keyframes menu-in {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* ─── Layout ─────────────────────────────────────────── */
main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
  padding-bottom: 56px;
}

/* ─── Utilities ──────────────────────────────────────── */
.hidden {
  display: none !important;
}
.grad-text {
  background: linear-gradient(to bottom, #000, #666);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

section[id] {
  scroll-margin-top: 64px;
}

/* ─── Section header ─────────────────────────────────── */
.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  max-width: 654px;
  margin: 0 auto;
  padding: 0 20px;
}
.section-h2 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.3px;
  text-align: center;
}
.section-sub {
  font-size: 13px;
  color: #757575;
  text-align: center;
}

/* ─── Nav dots (shared) ──────────────────────────────── */
.nav-dots-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #e0e0e0;
  background: #f5f5f5;
  font-size: 14px;
  font-weight: 500;
  color: #666;
  transition: all 0.15s;
}
.nav-btn:hover {
  background: #e8e8e8;
}
.nav-btn:active {
  transform: scale(0.95);
}
.dots {
  display: flex;
  align-items: center;
  gap: 6px;
}
.dot {
  width: 5px;
  height: 5px;
  border-radius: 5px;
  background: #757575;
  transition: all 0.3s;
}
.dot.active {
  width: 16px;
  background: #111;
}

/* ─── Before/After Slider ───────────────────────────── */
.ba {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  cursor: ew-resize;
  user-select: none;
  touch-action: pan-y;
}
.ba img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}
.ba-line {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
  pointer-events: none;
  transform: translateX(-50%);
}
.ba-handle {
  position: absolute;
  top: 50%;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  pointer-events: none;
  transform: translate(-50%, -50%);
}
.ba-handle svg {
  width: 14px;
  height: 14px;
}
.ba-badge {
  position: absolute;
  bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 6px;
  padding: 4px 8px;
  pointer-events: none;
}
.ba-badge span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #111;
}
.ba-badge-l {
  left: 10px;
}
.ba-badge-r {
  right: 10px;
}

/* ─── NAVBAR ─────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #f3f3f3;
}
/* desktop nav — hidden by default, shown in media query */
.navbar-desk {
  display: none;
  max-width: 1360px;
  margin: 0 auto;
  height: 56px;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
}
/* mobile nav — visible by default */
.navbar-mob {
  display: flex;
  height: 56px;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}
.mob-menu {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-top: 1px solid #e8e8e8;
  background: #f3f3f3;
  padding: 16px 20px 24px;
  animation: menu-in 0.22s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.logo-img {
  display: block;
}
.logo-desk {
  height: 21px;
  width: 148px;
}
.logo-mob {
  height: 17px;
  width: 120px;
}
.logo-link {
  transition: opacity 0.15s;
}
.logo-link:hover {
  opacity: 0.7;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-link {
  position: relative;
  font-size: 15px;
  font-weight: 500;
  color: #111;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background: #111;
  transition: width 0.3s;
}
.nav-link:hover::after {
  width: 100%;
}
.mob-nav-link {
  font-size: 15px;
  font-weight: 500;
  color: #111;
  transition: opacity 0.15s;
}
.mob-nav-link:hover {
  opacity: 0.6;
}
.mob-lang-switch {
  display: flex;
  gap: 8px;
  padding-top: 8px;
  border-top: 1px solid #e8e8e8;
}
.mob-lang-option {
  padding: 6px 14px;
  border-radius: 9999px;
  font-size: 13px;
  font-weight: 600;
  color: #555;
  text-decoration: none;
  border: 1px solid #d9d9d9;
  transition: all 0.15s;
}
.mob-lang-option:hover {
  background: #e8e8e8;
}
.mob-lang-active {
  background: #111;
  color: #fff;
  border-color: #111;
}
.mob-lang-active:hover {
  background: #333;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.lang-wrap {
  position: relative;
}
.lang-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  border-radius: 9999px;
  border: 1px solid #d9d9d9;
  font-size: 13px;
  font-weight: 600;
  color: #111;
  transition: background 0.15s;
  cursor: pointer;
  background: transparent;
}
.lang-btn:hover {
  background: #e8e8e8;
}
.lang-btn svg {
  width: 16px;
  height: 16px;
  color: #555;
}
.lang-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  min-width: 140px;
  z-index: 100;
}
.lang-dropdown.hidden {
  display: none;
}
.lang-option {
  display: block;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 500;
  color: #333;
  text-decoration: none;
  transition: background 0.1s;
}
.lang-option:hover {
  background: #f5f5f5;
}
.lang-active {
  font-weight: 700;
  color: #111;
}
.btn-cta-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 24px;
  border-radius: 9999px;
  background: #eb0000;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  transition: all 0.15s;
  white-space: nowrap;
}
.btn-cta-nav:hover {
  box-shadow: 0 4px 16px rgba(255, 0, 0, 0.35);
  opacity: 0.9;
}
.btn-cta-nav:active {
  transform: scale(0.97);
}
.btn-cta-mob {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 9999px;
  background: #eb0000;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  transition: all 0.15s;
}
.btn-cta-mob:hover {
  opacity: 0.85;
}
.btn-cta-mob:active {
  transform: scale(0.97);
}
.hamburger {
  transition: opacity 0.15s;
}
.hamburger:hover {
  opacity: 0.6;
}
.hamburger svg {
  width: 24px;
  height: 24px;
  display: block;
}

/* ─── HERO ───────────────────────────────────────────── */
.hero {
  width: 100%;
}
/* desktop hero — hidden by default */
.hero-desk {
  display: none;
  max-width: 1122px;
  margin: 0 auto;
  align-items: center;
  gap: clamp(24px, 4vw, 80px);
  padding: 0 24px;
}
/* mobile hero — visible by default */
.hero-mob {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 0 20px;
}
.slider-wrap {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.hero-slider-outer {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  flex-shrink: 0;
  background: #eb0000;
  border: none;
  cursor: pointer;
  transition: all 0.15s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.hero-arrow:hover {
  background: #e00;
  box-shadow: 0 4px 14px rgba(255, 0, 0, 0.35);
}
.hero-arrow:active {
  transform: scale(0.93);
}
.hero-arrow svg {
  width: 16px;
  height: 16px;
}
.hero-ba {
  width: clamp(260px, 32vw, 380px);
  aspect-ratio: 449/560;
  height: auto;
}
.hero-ba-mob {
  width: 100%;
  max-width: 350px;
  aspect-ratio: 449/634;
  height: auto;
}
.hero-text {
  flex: 1;
  min-width: 0;
  max-width: 519px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hero-h1 {
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.8px;
  color: #111;
}
.hero-h1-mob {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: #111;
  text-align: center;
}
.hero-p {
  font-size: 16px;
  color: #111;
  max-width: 425px;
}
/* scroll hint */
.scroll-hint {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin: 0 auto;
  text-decoration: none;
  color: #999;
  transition: color 0.2s;
}
.scroll-hint:hover {
  color: #555;
}
.scroll-hint-text {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.scroll-hint-arrow {
  width: 28px;
  height: 28px;
  animation: scrollBounce 2s ease-in-out infinite;
}
.scroll-hint-arrow svg {
  width: 100%;
  height: 100%;
}
@keyframes scrollBounce {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.5;
  }
  50% {
    transform: translateY(6px);
    opacity: 1;
  }
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-note {
  font-size: 12px;
  color: #888;
  line-height: 1.4;
}
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.hero-tag {
  font-size: 11px;
  color: #444;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 9999px;
  padding: 4px 12px;
  white-space: nowrap;
}
.hero-p-mob {
  font-size: 14px;
  color: #555;
  text-align: center;
  line-height: 1.5;
}
.cta-card {
  width: 100%;
  max-width: 516px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  border-radius: 30px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  background: #fff;
  padding: 24px clamp(24px, 5%, 61px);
  box-shadow: 0 14px 27px rgba(0, 0, 0, 0.1), 0 57px 50px rgba(0, 0, 0, 0.09);
}
.cta-card-mob {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  border-radius: 24px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  background: #fff;
  padding: 28px 24px;
  box-shadow: 0 14px 27px rgba(0, 0, 0, 0.1);
}
.cta-title {
  font-size: 16px;
  font-weight: 700;
  color: #555;
  text-align: center;
  line-height: 1.4;
}
.cta-title-sm {
  font-size: 14px;
  font-weight: 700;
  color: #555;
  text-align: center;
  line-height: 1.4;
}
.btn-red {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 45px;
  width: 207px;
  border-radius: 22px;
  background: #eb0000;
  font-size: 16px;
  color: #fff;
  transition: all 0.15s;
}
.btn-red:hover {
  opacity: 0.9;
  box-shadow: 0 6px 20px rgba(255, 0, 0, 0.35);
}
.btn-red:active {
  transform: scale(0.97);
}
.btn-red svg {
  width: 18px;
  height: 18px;
}
.btn-red-full {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 44px;
  width: 100%;
  border-radius: 22px;
  background: #eb0000;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}
.btn-red-full svg {
  width: 18px;
  height: 18px;
}
.cta-check {
  font-size: 16px;
  color: #111;
  text-align: center;
}
.cta-legal {
  font-size: 11px;
  color: #757575;
  text-align: center;
  max-width: 258px;
}
/* hero desktop dots */
.hero-desk .dots {
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero-desk .dot {
  width: 6px;
  height: 6px;
}
.hero-desk .dot.active {
  width: 20px;
  height: 6px;
}

/* ─── HOW IT WORKS ───────────────────────────────────── */
.how {
  width: 100%;
}
/* desktop — hidden by default */
.how-desk {
  display: none;
  max-width: 1228px;
  margin: 0 auto;
  align-items: center;
  gap: 56px;
  padding: 0 24px;
}
.how-title-desk {
  display: none;
  font-size: 48px;
  font-weight: 700;
  text-align: center;
  margin: 0 auto 40px;
  max-width: 654px;
}
/* mobile — visible by default */
.how-mob {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  padding: 0 20px;
}
.how-title-mob {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #111;
  text-align: center;
}
.how-steps {
  width: 360px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}
.how-steps-mob {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.how-step {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
}
.step-divider {
  height: 1px;
  background: #e8e8e8;
}
.step-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  flex-shrink: 0;
}
.step-badge.red {
  background: #eb0000;
}
.step-badge.dark {
  background: #111;
  color: #fff;
}
.step-badge span {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}
.step-badge svg {
  width: 14px;
  height: 14px;
}
.step-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.step-title {
  font-size: 15px;
  font-weight: 700;
  color: #111;
}
.step-desc {
  font-size: 12px;
  color: #666;
  line-height: 1.4;
}
.how-cta {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 48px;
  border-radius: 9999px;
  background: #eb0000;
  padding: 0 28px;
  box-shadow: 0 6px 11px rgba(0, 0, 0, 0.1), 0 23px 20px rgba(0, 0, 0, 0.09);
  font-size: 16px;
  color: #fff;
  transition: all 0.15s;
}
.how-cta:hover {
  box-shadow: 0 8px 20px rgba(255, 0, 0, 0.3);
  opacity: 0.9;
}
.how-cta:active {
  transform: scale(0.97);
}
.how-cta svg {
  width: 18px;
  height: 18px;
}
.how-screenshot {
  flex: 1;
  min-width: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 48px rgba(0, 0, 0, 0.1), 0 99px 87px rgba(0, 0, 0, 0.09);
}
.how-screenshot-mob {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.how-video {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: #000;
  border-radius: inherit;
  overflow: hidden;
}
.how-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.vp-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
  z-index: 2;
  opacity: 0;
  transition: opacity 0.25s;
}
.vp-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.vp-btn svg {
  width: 16px;
  height: 16px;
}
.vp-time {
  font: 500 11px/1 -apple-system, sans-serif;
  color: #fff;
  min-width: 30px;
  opacity: 0.85;
}
.vp-track {
  flex: 1;
  height: 4px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 2px;
  cursor: pointer;
  position: relative;
}
.vp-progress {
  height: 100%;
  background: #fff;
  border-radius: 2px;
  width: 0;
  transition: width 0.15s linear;
}
.vp-track:hover {
  height: 6px;
}

/* ─── CAROUSEL ───────────────────────────────────────── */
.carousel {
  width: 100%;
}
.carousel-outer {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}
.carousel-slides-outer {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}
.carousel-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
}
.carousel-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 48px;
  border-radius: 9999px;
  background: #eb0000;
  padding: 0 28px;
  box-shadow: 0 6px 11px rgba(0, 0, 0, 0.1);
  font-size: 16px;
  color: #fff;
}
.carousel-cta svg {
  width: 18px;
  height: 18px;
}
.carousel-card {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}
.carousel-card .ba {
  width: 100%;
}
.carousel-card-label {
  font-size: 14px;
  color: #111;
  text-align: center;
}

/* ─── PRICING ─────────────────────────────────────────── */
.pricing {
  width: 100%;
}
/* desktop — hidden by default */
.pricing-desk {
  display: none;
  max-width: 1200px;
  margin: 56px auto 0;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 0 24px;
}
/* mobile — visible by default */
.pricing-mob {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0 20px;
  margin-top: 24px;
}
.pricing-footer {
  display: none;
  text-align: center;
  font-size: 14px;
  color: #6e6e6e;
  margin: 40px auto 0;
}
.pricing-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 16px;
  background: #fff;
  cursor: pointer;
  transition: box-shadow 0.2s, transform 0.2s;
  text-decoration: none;
  color: inherit;
}
.pricing-card.regular {
  border: 1px solid #e8e8e8;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
.pricing-card.regular:hover {
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.13);
  transform: translateY(-4px);
}
.pricing-card.popular {
  outline: 2px solid #eb0000;
  box-shadow: 0 8px 48px rgba(232, 39, 43, 0.22);
}
.pricing-card.popular:hover {
  box-shadow: 0 16px 56px rgba(232, 39, 43, 0.32);
  transform: translateY(-4px);
}
.pricing-card-img {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.pricing-card-img img {
  width: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.pricing-img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 14px 10px;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.3) 60%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.pricing-img-overlay .pricing-name {
  color: #fff;
}
.pricing-img-overlay .pricing-sub {
  color: rgba(255, 255, 255, 0.7);
}
.pricing-img-overlay .pricing-price {
  color: #fff;
}
.popular-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #eb0000;
  border-radius: 9999px;
  padding: 5px 12px;
  display: flex;
  align-items: center;
}
.popular-badge span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #fff;
  line-height: 1;
}
.pricing-card-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  flex: 1;
}
.pricing-name {
  font-size: 14px;
  font-weight: 700;
  color: #111;
}
.pricing-sub {
  font-size: 11px;
  color: #888;
  margin-top: 2px;
}
.pricing-price {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: #111;
}
.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 6px;
}
.pf-check {
  font-size: 10px;
  color: #4caf50;
  margin-top: 2px;
}
.pf-text {
  font-size: 11px;
  color: #555;
  line-height: 1.3;
}
.pricing-benefit {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.pricing-per-photo {
  font-size: 11px;
  color: #888;
}
.pricing-save {
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  font-weight: 700;
  color: #4caf50;
  background: #f1f8e9;
  border-radius: 9999px;
  padding: 2px 8px;
  line-height: 1;
}
.pcm-benefit {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 2px;
  flex-wrap: wrap;
}
.pcm-per-photo {
  font-size: 10px;
  color: #888;
}
.pcm-save {
  display: inline-flex;
  align-items: center;
  font-size: 9px;
  font-weight: 700;
  color: #4caf50;
  background: #f1f8e9;
  border-radius: 9999px;
  padding: 2px 6px;
  line-height: 1;
}
.pricing-btn {
  display: block;
  text-align: center;
  text-decoration: none;
  margin-top: auto;
  width: 100%;
  border-radius: 9999px;
  padding: 10px 0;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  transition: all 0.15s;
  box-sizing: border-box;
}
.pricing-btn:hover {
  opacity: 0.8;
}
.pricing-btn:active {
  transform: scale(0.97);
}
/* mobile pricing card */
.pricing-card-m {
  display: flex;
  width: 100%;
  overflow: hidden;
  border-radius: 16px;
  background: #fff;
}
.pricing-card-m.regular {
  border: 1px solid #e8e8e8;
}
.pricing-card-m.popular {
  outline: 2px solid #eb0000;
  box-shadow: 0 4px 24px rgba(232, 39, 43, 0.18);
}
.pcm-img {
  position: relative;
  width: 100px;
  min-height: 100px;
  flex-shrink: 0;
  overflow: hidden;
}
.pcm-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pcm-pop-badge {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  background: #eb0000;
  border-radius: 9999px;
  padding: 3px 8px;
  white-space: nowrap;
  display: flex;
  align-items: center;
}
.pcm-pop-badge span {
  font-size: 9px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.pcm-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  padding: 12px 16px;
}
.pcm-price {
  font-size: 17px;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: #111;
}
.pcm-name {
  font-size: 13px;
  font-weight: 600;
  color: #111;
}
.pcm-sub {
  font-size: 11px;
  color: #888;
}
.pcm-features {
  list-style: none;
  padding: 0;
  margin: 4px 0 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.pcm-features li {
  font-size: 11px;
  color: #666;
  line-height: 1.3;
}
.pcm-features li::before {
  content: "✓ ";
  color: #111;
  font-weight: 600;
}
.pcm-action {
  display: flex;
  align-items: center;
  padding-right: 16px;
}
.pcm-btn {
  display: inline-block;
  text-align: center;
  text-decoration: none;
  border-radius: 9999px;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  transition: all 0.15s;
  white-space: nowrap;
}
.pcm-btn:hover {
  opacity: 0.8;
}
.pcm-btn:active {
  transform: scale(0.97);
}

/* ─── REVIEWS ─────────────────────────────────────────── */
.reviews {
  width: 100%;
}
/* desktop — hidden by default */
.reviews-desk {
  display: none;
}
/* mobile — visible by default */
.reviews-mob {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 0 20px;
  margin-top: 24px;
}
.reviews-cards {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 1158px;
  margin: 28px auto 0;
  padding: 0 24px;
}
.review-card-wrap {
  flex: 1;
}
.review-card {
  display: flex;
  height: clamp(200px, 28vh, 280px);
  overflow: hidden;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.2s;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}
.review-card-img {
  width: clamp(130px, 13vw, 190px);
  flex-shrink: 0;
  overflow: hidden;
}
.review-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.review-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 16px;
}
.review-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
.stars {
  color: #f5a623;
  font-size: 14px;
}
.review-quote {
  font-size: 12px;
  font-style: italic;
  line-height: 1.4;
  color: #111;
}
.review-author {
  font-size: 13px;
  font-weight: 600;
  color: #333;
}
.review-card-m {
  width: 100%;
  overflow: hidden;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
.rcm-img {
  height: 230px;
  overflow: hidden;
}
.rcm-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.rcm-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px 20px;
}
.review-quote-sm {
  font-size: 13px;
  font-style: italic;
  line-height: 1.5;
  color: #111;
}
.review-author-sm {
  font-size: 12px;
  font-weight: 600;
  color: #666;
}
.reviews-desk-nav {
  max-width: 300px;
  margin: 40px auto 0;
}

/* review CTA */
.review-cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.btn-review-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 9999px;
  border: 2px solid #111;
  background: transparent;
  font-size: 14px;
  font-weight: 600;
  color: #111;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-review-cta:hover {
  background: #111;
  color: #fff;
}
.btn-review-cta:active {
  transform: scale(0.97);
}
.btn-review-cta svg {
  width: 16px;
  height: 16px;
}
.review-cta-sub {
  text-align: center;
  margin-top: 8px;
  font-size: 12px;
  color: #6e6e6e;
}

/* feedback modal — mirrors review-card layout */
.fb-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(6px);
  padding: 20px;
}
.fb-overlay.open {
  display: flex;
}
.fb-modal {
  width: 100%;
  max-width: 460px;
  max-height: 90vh;
  overflow-y: auto;
  background: #fff;
  border-radius: 20px;
  padding: 28px 24px 24px;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05), 0 24px 64px rgba(0, 0, 0, 0.18);
}
.fb-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: #f5f5f5;
  font-size: 18px;
  color: #999;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.15s;
  z-index: 1;
}
.fb-close:hover {
  background: #e8e8e8;
  color: #111;
}
.fb-header {
  text-align: center;
  margin-bottom: 20px;
}
.fb-header .section-sub {
  margin-top: 4px;
}
/* card that mirrors .review-card */
.fb-card {
  display: flex;
  min-height: 220px;
  overflow: hidden;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
}
.fb-card-img {
  width: 190px;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #f5f5f5;
  transition: background 0.2s;
}
.fb-card-img:hover {
  background: #eee;
}
.fb-card-img svg {
  width: 32px;
  height: 32px;
  color: #ccc;
}
.fb-card-img span {
  font-size: 12px;
  color: #bbb;
}
.fb-card-img input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}
.fb-card-img.has-file {
  background: transparent;
}
.fb-card-img.has-file svg,
.fb-card-img.has-file span {
  display: none;
}
.fb-photo-preview {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.fb-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 24px;
  justify-content: center;
}
.fb-stars {
  display: flex;
  gap: 2px;
}
.fb-star {
  cursor: pointer;
  border: none;
  background: transparent;
  padding: 0;
  color: #e0e0e0;
  font-size: 16px;
  transition: color 0.15s;
  line-height: 1;
}
.fb-star.active {
  color: #f5a623;
}
.fb-star:hover {
  color: #f5a623;
}
.fb-quote-input {
  width: 100%;
  padding: 0;
  border: none;
  outline: none;
  resize: none;
  font-size: 13px;
  font-style: italic;
  line-height: 1.5;
  color: #111;
  font-family: inherit;
  background: transparent;
  box-sizing: border-box;
}
.fb-quote-input::placeholder {
  color: #ccc;
}
.fb-author-input {
  width: 100%;
  padding: 0;
  border: none;
  outline: none;
  font-size: 13px;
  font-weight: 600;
  color: #333;
  font-family: inherit;
  background: transparent;
  box-sizing: border-box;
}
.fb-author-input::placeholder {
  color: #ccc;
  font-weight: 600;
}
.fb-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
}
.fb-label span {
  font-weight: 400;
  color: #999;
}
.fb-input {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid #e0e0e0;
  border-radius: 10px;
  font-size: 13px;
  font-family: inherit;
  color: #111;
  outline: none;
  transition: border-color 0.15s;
  box-sizing: border-box;
  margin-bottom: 16px;
}
.fb-input:focus {
  border-color: #111;
}
.fb-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 44px;
  border: none;
  border-radius: 22px;
  background: #eb0000;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  transition: all 0.15s;
}
.fb-submit:hover {
  opacity: 0.9;
  box-shadow: 0 6px 20px rgba(255, 0, 0, 0.35);
}
.fb-submit:active {
  transform: scale(0.97);
}
.fb-submit:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  box-shadow: none;
}
.fb-success {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 24px 0 8px;
  text-align: center;
}
.fb-success.show {
  display: flex;
}
.fb-success-check {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #f1f8e9;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}
/* mobile: stack card vertically */
@media (max-width: 479px) {
  .fb-card {
    flex-direction: column;
    min-height: auto;
  }
  .fb-card-img {
    width: 100%;
    height: 180px;
  }
}

/* ─── BLOG ───────────────────────────────────────────── */
.blog {
  width: 100%;
}
/* desktop — hidden by default */
.blog-desk {
  display: none;
  max-width: 1158px;
  margin: 59px auto 0;
  align-items: stretch;
  gap: 27px;
  padding: 0 24px;
}
/* mobile — visible by default */
.blog-mob {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0 20px;
  margin-top: 24px;
}
.blog-card-wrap {
  flex: 1;
  max-width: 353px;
}
.blog-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  transition: all 0.2s;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
}
.blog-card-img {
  height: 160px;
  overflow: hidden;
  position: relative;
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.blog-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #111;
  border-radius: 9999px;
  padding: 5px 12px;
  display: flex;
  align-items: center;
}
.blog-tag span {
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  line-height: 1;
}
.blog-card-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px 16px 16px;
}
.blog-card-title {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  color: #111;
}
.blog-card-desc {
  font-size: 12px;
  line-height: 1.5;
  color: #666;
}
.blog-card-more {
  font-size: 12px;
  font-weight: 600;
  color: #111;
}

/* ─── FAQ ─────────────────────────────────────────────── */
.faq {
  width: 100%;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 760px;
  margin: 24px auto 0;
  padding: 0 20px;
}
.faq-item {
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid #e8e8e8;
  background: #fff;
}
.faq-btn {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  transition: background 0.15s;
  text-align: left;
}
.faq-btn:hover {
  background: #f7f7f7;
}
.faq-question {
  font-size: 14px;
  font-weight: 700;
  color: #111;
  flex: 1;
  text-align: left;
}
.faq-icon {
  font-size: 20px;
  font-weight: 300;
  color: #111;
  flex-shrink: 0;
  margin-left: 12px;
  transition: transform 0.3s;
  line-height: 1;
}
.faq-icon.open {
  transform: rotate(45deg);
}
.faq-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.faq-body.open {
  grid-template-rows: 1fr;
}
.faq-body-inner {
  overflow: hidden;
}
.faq-answer {
  padding: 0 16px 16px;
  font-size: 14px;
  line-height: 1.7;
  color: #111;
}

/* ─── LAST CALL ───────────────────────────────────────── */
.last-call {
  width: 100%;
}
.last-call-inner {
  max-width: 519px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 0 20px;
}
.last-call-h2 {
  font-size: 26px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: #111;
  text-align: center;
}
.last-call-p {
  font-size: 14px;
  color: #555;
  text-align: center;
  max-width: 425px;
}
/* desktop card — hidden by default */
.last-call-card {
  display: none;
  width: 100%;
  max-width: 516px;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  border-radius: 30px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  background: #fff;
  padding: 32px 61px;
  box-shadow: 0 14px 27px rgba(0, 0, 0, 0.1), 0 57px 50px rgba(0, 0, 0, 0.09);
}
.last-call-card-title {
  font-size: 16px;
  font-weight: 700;
  color: #555;
  text-align: center;
  line-height: 1.4;
}
.btn-last-call-desk {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 45px;
  width: 207px;
  border-radius: 22px;
  background: #eb0000;
  font-size: 16px;
  color: #fff;
  transition: all 0.15s;
}
.btn-last-call-desk:hover {
  box-shadow: 0 6px 20px rgba(255, 0, 0, 0.35);
  opacity: 0.9;
}
.btn-last-call-desk:active {
  transform: scale(0.97);
}
.btn-last-call-desk svg {
  width: 18px;
  height: 18px;
}
/* mobile CTA — visible by default */
.btn-last-call-mob {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 48px;
  width: 100%;
  border-radius: 22px;
  background: #eb0000;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  transition: all 0.15s;
}
.btn-last-call-mob:hover {
  opacity: 0.85;
}
.btn-last-call-mob:active {
  transform: scale(0.97);
}
.btn-last-call-mob svg {
  width: 18px;
  height: 18px;
}
.last-call-legal {
  font-size: 11px;
  color: #757575;
  text-align: center;
  max-width: 258px;
}

/* ─── FOOTER ──────────────────────────────────────────── */
.footer {
  width: 100%;
  background: #111;
}
/* desktop — hidden by default */
.footer-desk {
  display: none;
  max-width: 1440px;
  margin: 0 auto;
  flex-direction: column;
  gap: 28px;
  padding: 40px 109px;
}
/* mobile — visible by default */
.footer-mob {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px 20px 24px;
}
.footer-top {
  display: flex;
  width: 100%;
  align-items: flex-start;
  gap: 117px;
}
.footer-brand {
  width: 273px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-brand-logo {
  height: 28px;
  width: 198px;
  filter: invert(1);
}
.footer-tagline {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
}
.footer-cols {
  display: flex;
  flex: 1;
  align-items: flex-start;
  gap: 34px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col-title {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
}
.footer-col-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-link {
  font-size: 13px;
  line-height: 2.2;
  color: #fff;
  transition: opacity 0.15s;
}
.footer-link:hover {
  opacity: 0.8;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}
.footer-copy {
  font-size: 12px;
  color: #fff;
}
.footer-badges {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-badge {
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
}
.footer-mob-logo {
  height: 17px;
  width: 120px;
  filter: invert(1);
}
.footer-mob-tagline {
  font-size: 13px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.5);
}
.footer-mob-cols {
  display: flex;
  width: 100%;
  gap: 20px;
}
.footer-mob-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-mob-col-title {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
}
.footer-mob-link {
  font-size: 13px;
  line-height: 2.2;
  color: #fff;
}
.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}
.footer-mob-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.footer-mob-copy {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
}

/* ═══════════════════════════════════════════════════════
   DESKTOP OVERRIDES — must be at the END of the file so
   these rules win over the default mobile rules above.
   ═══════════════════════════════════════════════════════ */
@media (min-width: 768px) {
  main {
    gap: 93px;
    padding-bottom: 93px;
  }

  .section-header {
    gap: 12px;
    max-width: 800px;
  }
  .section-h2 {
    font-size: clamp(36px, 3.2vw, 48px);
  }
  .section-sub {
    font-size: 16px;
    color: #111;
  }

  .faq-list {
    margin-top: 85px;
    gap: 10px;
  }
  .faq-item {
    border-radius: 14px;
    border-width: 2px;
  }
  .faq-btn {
    padding: 20px 22px;
  }
  .faq-answer {
    padding: 0 22px 20px;
  }

  .step-badge {
    width: 32px;
    height: 32px;
  }
  .step-badge span {
    font-size: 14px;
  }
  .step-badge svg {
    width: 16px;
    height: 16px;
  }
  .step-title {
    font-size: 16px;
  }
  .step-desc {
    font-size: 13px;
    line-height: 1.5;
  }
  .how-step {
    gap: 16px;
  }

  .last-call-h2 {
    font-size: 40px;
    letter-spacing: -0.8px;
  }
  .last-call-p {
    font-size: 16px;
    color: #111;
  }

  /* ── Show desktop layouts ── */
  .navbar-desk {
    display: flex;
  }
  .hero-desk {
    display: flex;
  }
  .scroll-hint {
    display: flex;
  }
  .hero {
    padding-top: 72px;
  }
  .how-desk {
    display: flex;
  }
  .how-title-desk {
    display: block;
  }
  .carousel-outer {
    padding: 0 40px;
  }
  .pricing-desk {
    display: flex;
    margin-top: 28px;
    gap: 14px;
  }
  .pricing-card-outer {
    flex: 1;
    min-width: 0;
  }
  .pricing-card-img img {
    height: clamp(200px, 32vh, 320px);
  }
  .pricing-card-body {
    gap: 8px;
    padding: 10px 14px 14px;
  }
  .pricing-btn {
    padding: 8px 0;
    font-size: 11px;
  }
  .pricing-footer {
    display: block;
  }
  .reviews-desk {
    display: block;
  }
  .blog-desk {
    display: flex;
  }
  .last-call-card {
    display: flex;
  }
  .footer-desk {
    display: flex;
  }

  /* ── Hide mobile layouts ── */
  .navbar-mob {
    display: none;
  }
  .mob-menu {
    display: none;
  }
  .hero-mob {
    display: none;
  }
  .how-mob {
    display: none;
  }
  .pricing-mob {
    display: none;
  }
  .reviews-mob {
    display: none;
  }
  .blog-mob {
    display: none;
  }
  .btn-last-call-mob {
    display: none;
  }
  .footer-mob {
    display: none;
  }
}

.carousel,
.pricing,
.reviews,
.faq {
  content-visibility: auto;
  contain-intrinsic-size: auto 600px;
}
