.landing-body { min-height: 100svh; overflow-x: hidden; }
.landing-page { min-height: 100svh; padding: 16px 0; }

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100svh - 32px);
  border-radius: var(--radius-xxl);
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  right: -165px;
  top: 80px;
  width: 540px;
  height: 540px;
  border-radius: 999px;
  border: 82px solid rgba(255, 214, 0, .12);
  pointer-events: none;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.7), transparent 78%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  min-height: inherit;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(350px, .86fr);
  gap: clamp(22px, 4vw, 52px);
  align-items: center;
  padding: clamp(18px, 3.1vw, 38px);
}

.hero h1 {
  max-width: 840px;
  margin: 16px 0 12px;
  font-size: clamp(38px, 5.8vw, 72px);
  line-height: .9;
  letter-spacing: -.065em;
  font-weight: 950;
}

.hero-lead {
  max-width: 720px;
  margin: 0 0 14px;
  color: #dedede;
  font-size: clamp(16px, 1.65vw, 20px);
  line-height: 1.42;
  font-weight: 510;
}

.hero-lead strong { color: #fff; font-weight: 900; }

.points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 14px;
  max-width: 780px;
}

.point {
  min-height: 96px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(255,255,255,.055);
}
.point b { display: block; margin-bottom: 7px; color: #fff; font-size: 15px; line-height: 1.16; font-weight: 900; }
.point span { display: block; color: #bdbdbd; font-size: 13px; line-height: 1.42; }

.cta-row { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; margin: 0 0 22px; }
.cta-row .btn-primary { min-width: 252px; min-height: 72px; padding: 18px 30px; font-size: clamp(20px, 2.2vw, 26px); }
.micro { max-width: 350px; color: #a9a9a9; font-size: 14px; line-height: 1.45; }

.photo-offer-hero {
  position: relative;
  width: min(100%, 780px);
  min-height: 132px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  gap: 16px;
  align-items: center;
  margin: 0 0 12px;
  padding: 18px 18px 16px;
  border-radius: 28px;
  border: 1px solid rgba(255,214,0,.42);
  background:
    radial-gradient(circle at 88% 12%, rgba(255,214,0,.22), transparent 35%),
    linear-gradient(135deg, rgba(255,255,255,.09), rgba(255,255,255,.028));
  box-shadow: 0 20px 52px rgba(0,0,0,.34), 0 0 50px rgba(255,214,0,.10);
  overflow: hidden;
}
.photo-offer-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,.075) 38%, transparent 70%);
  transform: translateX(-125%) skewX(-18deg);
  animation: offerSweep 6s ease-in-out infinite;
}
.photo-offer-copy { position: relative; z-index: 1; min-width: 0; }
.offer-kicker {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 7px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--accent);
  background: rgba(255,214,0,.12);
  border: 1px solid rgba(255,214,0,.24);
  font-size: 11px;
  line-height: 1;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.photo-offer-copy b {
  display: block;
  color: #fff;
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.04;
  letter-spacing: -.035em;
  font-weight: 950;
}
.photo-offer-copy p {
  max-width: 560px;
  margin: 8px 0 0;
  color: rgba(255,255,255,.73);
  font-size: 14px;
  line-height: 1.38;
  font-weight: 610;
}
.offer-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 10px; }
.offer-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,.36);
  border: 1px solid rgba(255,255,255,.13);
  color: rgba(255,255,255,.84);
  font-size: 12px;
  font-weight: 850;
}
.photo-preview-stack { position: relative; z-index: 1; height: 118px; min-width: 176px; }
.preview-card {
  position: absolute;
  display: grid;
  align-content: end;
  gap: 4px;
  padding: 12px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.15);
  background:
    radial-gradient(circle at 50% 28%, rgba(255,214,0,.32), transparent 38%),
    linear-gradient(155deg, #1d1d1d, #050505);
  box-shadow: 0 18px 40px rgba(0,0,0,.48);
}
.preview-card i {
  position: absolute;
  left: 18px;
  right: 18px;
  top: 18px;
  height: 26px;
  border: 2px solid var(--accent);
  border-radius: 15px 15px 8px 8px;
  opacity: .9;
}
.preview-card strong { color: #fff; font-size: 14px; line-height: 1; font-weight: 950; }
.preview-card small { color: var(--accent); font-size: 11px; line-height: 1; font-weight: 900; }
.preview-main { width: 106px; height: 86px; left: 0; bottom: 4px; transform: rotate(-7deg); }
.preview-side { width: 98px; height: 78px; right: 2px; top: 5px; transform: rotate(7deg); }
.preview-badge {
  position: absolute;
  right: 18px;
  bottom: 0;
  z-index: 2;
  padding: 8px 11px;
  border-radius: 999px;
  background: var(--accent);
  color: #000;
  font-size: 12px;
  font-weight: 950;
  box-shadow: 0 12px 28px rgba(255,214,0,.25);
}

.client-benefits {
  width: min(100%, 780px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 14px;
}
.benefit-item {
  min-height: 118px;
  padding: 13px 13px 12px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.035));
}
.benefit-item span {
  display: inline-flex;
  margin-bottom: 9px;
  color: var(--accent);
  font-size: 12px;
  line-height: 1;
  font-weight: 950;
}
.benefit-item b { display: block; margin-bottom: 6px; color: #fff; font-size: 14px; line-height: 1.1; font-weight: 950; }
.benefit-item p { margin: 0; color: #bdbdbd; font-size: 12px; line-height: 1.34; font-weight: 560; }
.main-cta-row { margin-bottom: 12px; }
.main-cta-row .btn-primary { min-width: 252px; min-height: 70px; padding: 17px 30px; font-size: clamp(20px, 2.05vw, 25px); }


.hero-action-panel {
  width: min(100%, 780px);
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 14px;
  align-items: stretch;
  margin: 0 0 14px;
}
.hero-action-panel .btn-primary {
  min-height: 104px;
  padding: 18px 22px;
  font-size: clamp(21px, 2vw, 27px);
  align-self: stretch;
}
.photo-offer-mini {
  position: relative;
  overflow: hidden;
  min-height: 104px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 118px;
  gap: 12px;
  align-items: center;
  padding: 14px 14px 14px 16px;
  border-radius: 24px;
  border: 1px solid rgba(255,214,0,.36);
  background:
    radial-gradient(circle at 92% 18%, rgba(255,214,0,.22), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,.082), rgba(255,255,255,.027));
  box-shadow: 0 16px 38px rgba(0,0,0,.31), 0 0 38px rgba(255,214,0,.1);
}
.photo-offer-mini::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.07), transparent);
  transform: translateX(-120%) skewX(-18deg);
  animation: offerSweep 6s ease-in-out infinite;
}
.offer-copy { position: relative; z-index: 1; min-width: 0; }
.offer-kicker {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 6px;
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--accent);
  background: rgba(255,214,0,.12);
  border: 1px solid rgba(255,214,0,.22);
  font-size: 11px;
  line-height: 1;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .055em;
}
.offer-copy b {
  display: block;
  color: #fff;
  font-size: clamp(16px, 1.45vw, 20px);
  line-height: 1.05;
  letter-spacing: -.03em;
  font-weight: 950;
}
.offer-copy p {
  max-width: 390px;
  margin: 6px 0 0;
  color: rgba(255,255,255,.68);
  font-size: 13px;
  line-height: 1.32;
  font-weight: 600;
}
.mini-photo-stack {
  position: relative;
  z-index: 1;
  height: 86px;
  min-width: 112px;
}
.mini-photo {
  position: absolute;
  width: 76px;
  height: 58px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 8px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.16);
  background:
    radial-gradient(circle at 50% 28%, rgba(255,214,0,.3), transparent 38%),
    linear-gradient(155deg, #1d1d1d, #050505);
  box-shadow: 0 12px 30px rgba(0,0,0,.42);
}
.mini-photo::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 15px;
  right: 15px;
  height: 16px;
  border-radius: 9px;
  border: 2px solid var(--accent);
  opacity: .86;
}
.mini-photo em { position: relative; z-index: 1; color: var(--accent); font-style: normal; font-size: 11px; line-height: 1; font-weight: 950; }
.mini-photo.is-one { left: 0; top: 4px; transform: rotate(-8deg); }
.mini-photo.is-two { right: 0; top: 14px; transform: rotate(8deg); }
.mini-photo.is-three { left: 28px; bottom: 0; transform: rotate(-1deg); }
@keyframes offerSweep { 0%, 56% { transform: translateX(-120%) skewX(-18deg); opacity: 0; } 67% { opacity: 1; } 88%, 100% { transform: translateX(120%) skewX(-18deg); opacity: 0; } }

.tags { display: flex; flex-wrap: wrap; gap: 8px; max-width: 760px; }
.tags span { display: inline-flex; align-items: center; min-height: 30px; padding: 8px 12px; border-radius: 999px; border: 1px solid rgba(255,255,255,.16); background: #111; color: #e9e9e9; font-size: 12px; font-weight: 800; }

.showcase { position: sticky; top: 24px; align-self: start; display: grid; justify-items: center; gap: 18px; }
.phone-mockup {
  width: min(100%, 386px);
  aspect-ratio: 9 / 18.7;
  padding: 13px;
  border-radius: 48px;
  background: linear-gradient(135deg, #2b2b2b, #050505 34%, #343434 68%, #0b0b0b);
  border: 1px solid rgba(255,255,255,.2);
  box-shadow: 0 40px 90px rgba(0,0,0,.62), 0 0 0 8px rgba(255,255,255,.025), 0 0 80px rgba(255,214,0,.1);
}
.phone-top { height: 22px; display: grid; place-items: center; }
.phone-top span { width: 96px; height: 18px; border-radius: 999px; background: #000; box-shadow: inset 0 0 0 1px rgba(255,255,255,.05); }
.phone-screen {
  min-height: calc(100% - 22px);
  overflow: hidden;
  border-radius: 36px;
  padding: 22px 20px 18px;
  background:
    radial-gradient(circle at 72% 22%, rgba(255,214,0,.14), transparent 35%),
    linear-gradient(180deg, #080808, #020202);
  border: 1px solid rgba(255,255,255,.08);
}
.phone-status { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; color: #fff; font-size: 14px; }
.phone-status span { width: 44px; height: 15px; border-radius: 5px; border: 2px solid #fff; position: relative; opacity: .9; }
.phone-status span::after { content: ""; position: absolute; right: 3px; top: 3px; bottom: 3px; width: 24px; border-radius: 2px; background: #fff; }
.phone-badge { width: fit-content; margin-bottom: 15px; padding: 8px 11px; border-radius: 999px; border: 1px solid rgba(255,255,255,.14); color: var(--accent); background: rgba(255,255,255,.035); font-size: 12px; font-weight: 850; }
.phone-screen h2 { margin: 0; color: #fff; font-size: clamp(30px, 3vw, 44px); line-height: .98; letter-spacing: -.055em; font-weight: 950; }
.phone-screen h2 em { display: block; color: var(--accent); font-style: normal; }
.phone-screen p { margin: 14px 0 18px; color: rgba(255,255,255,.62); font-size: 14px; line-height: 1.35; }
.phone-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 10px; }
.phone-card { position: relative; min-height: 108px; padding: 12px 10px; display: grid; place-items: center; gap: 8px; border: 1px solid rgba(255,255,255,.14); border-radius: 21px; background: rgba(255,255,255,.025); text-align: center; }
.phone-card span { color: var(--accent); font-size: 28px; line-height: 1; }
.phone-card b { color: #fff; font-size: 13px; line-height: 1.15; }
.phone-card.active { border-color: var(--accent); box-shadow: var(--shadow-yellow); background: radial-gradient(circle at 50% 0, rgba(255,214,0,.13), transparent 60%), rgba(255,255,255,.035); }
.phone-card i { position: absolute; right: 9px; top: 9px; width: 26px; height: 26px; display: grid; place-items: center; border-radius: 999px; background: var(--accent); color: #000; font-style: normal; font-weight: 950; }
.phone-button { margin-top: 16px; min-height: 58px; display: grid; place-items: center; border-radius: 17px; background: linear-gradient(180deg, var(--accent-strong), var(--accent-dark)); color: #000; font-size: 20px; font-weight: 950; box-shadow: 0 18px 40px rgba(255,214,0,.18); }
.phone-time { width: fit-content; margin: 14px auto 0; padding: 8px 12px; border-radius: 999px; border: 1px solid rgba(255,255,255,.14); color: rgba(255,255,255,.6); font-size: 12px; font-weight: 800; }
.process-stack { width: min(100%, 386px); display: grid; gap: 8px; }

.attention-btn { position: relative; isolation: isolate; overflow: hidden; animation: ctaPulse 2.2s ease-in-out infinite; }
.attention-btn::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  border: 2px solid rgba(255,214,0,.35);
  box-shadow: 0 0 0 0 rgba(255,214,0,.24);
  animation: ctaRing 2.2s ease-out infinite;
  pointer-events: none;
}
.attention-btn::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0; left: -38%;
  width: 32%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), rgba(255,255,255,.48), rgba(255,255,255,.18), transparent);
  transform: skewX(-22deg);
  animation: ctaShine 2.8s linear infinite;
  pointer-events: none;
}
.attention-btn:hover, .attention-btn:focus-visible { animation-play-state: paused; }
@keyframes ctaPulse {
  0%, 100% { transform: translateY(0); box-shadow: 0 18px 42px rgba(255, 214, 0, .23), inset 0 1px 0 rgba(255,255,255,.35); }
  50% { transform: translateY(-2px); box-shadow: 0 24px 56px rgba(255, 214, 0, .34), 0 0 24px rgba(255,214,0,.18), inset 0 1px 0 rgba(255,255,255,.45); }
}
@keyframes ctaRing {
  0% { opacity: .85; transform: scale(1); }
  70% { opacity: 0; transform: scale(1.08); }
  100% { opacity: 0; transform: scale(1.08); }
}
@keyframes ctaShine {
  0% { left: -42%; }
  100% { left: 118%; }
}

.process-card { display: grid; grid-template-columns: 34px 1fr; align-items: center; gap: 10px; padding: 10px; border: 1px solid rgba(255,255,255,.13); border-radius: 18px; background: rgba(255,255,255,.05); backdrop-filter: blur(10px); }
.process-card strong { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 999px; background: var(--accent); color: #000; font-weight: 950; }
.process-card span { color: rgba(255,255,255,.78); font-size: 13px; line-height: 1.3; font-weight: 750; }

.below { display: none; }
.card { border: 1px solid rgba(255,255,255,.14); border-radius: 26px; background: #0f0f0f; padding: 24px; }
.card h2 { margin: 0 0 10px; font-size: clamp(24px, 3vw, 36px); line-height: 1; letter-spacing: -.04em; font-weight: 950; }
.card p { margin: 0; color: #c9c9c9; font-size: 16px; line-height: 1.55; }
.card-list { display: grid; gap: 10px; margin-top: 14px; }
.card-list div { padding: 14px; border-radius: 16px; background: #fff; color: #050505; font-size: 15px; line-height: 1.35; font-weight: 800; }

.mobile-sticky { display: none; position: fixed; left: 10px; right: 10px; bottom: max(10px, env(safe-area-inset-bottom)); z-index: 50; }
.mobile-sticky .btn-primary { width: 100%; min-height: 62px; border-radius: 18px; font-size: 21px; }


@media (max-height: 820px) and (min-width: 761px) {
  .hero-grid { padding-top: 20px; padding-bottom: 20px; }
  .hero h1 { font-size: clamp(38px, 5.5vw, 66px); margin: 14px 0 10px; }
  .hero-lead { font-size: clamp(16px, 1.55vw, 19px); line-height: 1.34; margin-bottom: 12px; }
  .hero-action-panel { margin-bottom: 10px; grid-template-columns: 238px minmax(0, 1fr); }
  .hero-action-panel .btn-primary { min-height: 88px; }
  .photo-offer-mini { min-height: 88px; padding: 12px; }
  .offer-copy p { display: none; }

  .photo-offer-hero { min-height: 112px; padding: 14px; grid-template-columns: minmax(0, 1fr) 150px; }
  .photo-offer-copy p { display: none; }
  .offer-tags { margin-top: 8px; }
  .photo-preview-stack { height: 92px; min-width: 142px; }
  .preview-main { width: 88px; height: 70px; }
  .preview-side { width: 82px; height: 64px; }
  .preview-badge { right: 8px; padding: 7px 9px; font-size: 11px; }
  .client-benefits { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 8px; margin-bottom: 10px; }
  .benefit-item { min-height: 74px; padding: 10px; }
  .benefit-item span { margin-bottom: 5px; font-size: 11px; }
  .benefit-item b { font-size: 13px; margin-bottom: 4px; }
  .benefit-item p { font-size: 11px; line-height: 1.25; }
  .main-cta-row { margin-bottom: 8px; }
  .main-cta-row .btn-primary { min-height: 62px; }
  .points { margin-bottom: 10px; }
  .point { min-height: 82px; padding: 12px; }
  .point span { font-size: 12px; line-height: 1.32; }
  .tags { display: none; }
  .phone-mockup { width: min(100%, 340px); }
  .process-stack { width: min(100%, 340px); }
}

@media (max-width: 1120px) { .hero-grid { grid-template-columns: 1fr; } .below { grid-template-columns: 1fr; } .showcase { position: relative; top: auto; grid-template-columns: minmax(280px, 386px) minmax(240px, 1fr); justify-content: center; align-items: center; } }
@media (max-width: 760px) {
  .landing-page { min-height: 100svh; padding: 8px 0 92px; overflow: visible; }
  .hero { min-height: calc(100svh - 16px); border-radius: 26px; }
  .hero-grid { padding: 18px; gap: 22px; }
  .hero h1 { font-size: clamp(38px, 12vw, 54px); margin: 18px 0 14px; }
  .hero-lead { font-size: 17px; line-height: 1.42; margin-bottom: 20px; }
  .points { display: none; }
  .point { min-height: auto; padding: 15px; }
  .hero-action-panel { display: none; }
  .photo-offer-hero { grid-template-columns: 1fr; min-height: auto; padding: 15px; margin-bottom: 12px; }
  .photo-offer-copy b { font-size: 20px; }
  .photo-offer-copy p { font-size: 13px; line-height: 1.35; }
  .photo-preview-stack { display: none; }
  .client-benefits { grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 12px; }
  .benefit-item { min-height: auto; padding: 10px; border-radius: 17px; }
  .benefit-item span { display: none; }
  .benefit-item b { font-size: 13px; }
  .benefit-item p { font-size: 11px; line-height: 1.27; }
  .main-cta-row { display: none; }
  .cta-row { display: none; }
  .tags { display: none; }
  .tags span { font-size: 12px; min-height: 32px; }
  .showcase { display: none; }
  .phone-mockup { width: min(100%, 330px); border-radius: 40px; padding: 10px; }
  .phone-screen { border-radius: 30px; padding: 18px 16px 16px; }
  .phone-screen h2 { font-size: 32px; }
  .phone-card { min-height: 92px; border-radius: 18px; }
  .phone-button { min-height: 52px; font-size: 18px; }
  .process-stack { width: min(100%, 330px); }
  .card { padding: 20px; border-radius: 22px; }
  .card p { font-size: 15px; }
  .mobile-sticky { display: block; }
}
