/* ==========================================================================
   Recept Landing — Design Tokens
   ========================================================================== */

:root {
  --orange: #f4511e;
  --orange-dark: #e64a19;
  --orange-soft: #ffede4;
  --orange-tint: #fff5f0;
  --ink: #1f2937;
  --muted: #6b7280;
  --line: #f0e6e0;
  --white: #ffffff;
  --shadow: 0 18px 40px -18px rgba(244, 81, 30, 0.28);
  --shadow-soft: 0 12px 30px -16px rgba(31, 41, 55, 0.22);
  --radius: 22px;
  --radius-sm: 14px;
  --maxw: 1180px;
  --phone-width: 210px;
  --phone-screen-h: 380px;
  --phone-wrap-h: calc(var(--phone-screen-h) + 20px);
}

/* ==========================================================================
   Base
   ========================================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  font-family: "Poppins", -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #fff8f4 0%, #fff2ec 100%);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

section {
  position: relative;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================================================
   Components — Buttons & Store Badges
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  border: none;
  cursor: pointer;
  padding: 13px 22px;
  border-radius: 999px;
  transition: transform 0.2s, background 0.2s;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
}

.store {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #111;
  color: var(--white);
  padding: 10px 18px;
  border-radius: 14px;
  transition: transform 0.2s, background 0.2s;
}

.store:hover {
  transform: translateY(-2px);
  background: #000;
}

.store .ic {
  font-size: 22px;
  line-height: 1;
}

.store small {
  display: block;
  font-size: 10px;
  opacity: 0.8;
  font-weight: 400;
}

.store strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-top: -2px;
}

/* ==========================================================================
   Components — Section Headers
   ========================================================================== */

.eyebrow {
  text-align: center;
  color: var(--orange);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.sec-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 6px;
}

.squiggle {
  display: block;
  margin: 6px auto 36px;
  width: 60px;
  height: 10px;
}

.squiggle path {
  stroke: var(--orange);
  stroke-width: 3;
  fill: none;
  stroke-linecap: round;
}

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

.logo__img {
  display: block;
    height: 36px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    margin-top: 8px;
}

/* ==========================================================================
   Header
   ========================================================================== */

header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 14px 0;
}

.nav {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 22px;
  position: relative;
}

.nav-links {
  display: flex;
  gap: 30px;
  font-weight: 500;
  font-size: 15px;
}

.nav-links a {
  color: var(--ink);
  transition: color 0.2s;
}

.nav-mobile-download {
  display: none;
}

.nav-links a:hover {
  color: var(--orange);
}

.nav-end {
  display: contents;
}

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

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  background: var(--cream, #f8f4ef);
  border-radius: 999px;
  flex-shrink: 0;
}

.lang-btn {
  min-width: 36px;
  padding: 6px 10px;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.lang-btn:hover {
  color: var(--orange);
}

.lang-btn.is-active {
  background: var(--white);
  color: var(--orange);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  line-height: 1;
  color: var(--orange);
  cursor: pointer;
  flex-shrink: 0;
  padding: 4px;
}

.nav-links.is-open {
  display: flex;
  position: absolute;
  flex-direction: column;
  top: calc(100% + 12px);
  left: 0;
  right: 0;
  background: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft);
  gap: 16px;
  z-index: 10;
}

/* ==========================================================================
   Hero
   ========================================================================== */

main {
  position: relative;
}

.hero {
  position: relative;
  padding: 5px 0 30px;
  overflow: visible;
}

.hero-shell {
  position: relative;
}

.hero-right-deco {
  position: absolute;
  top: 100px;
  right: -150px;
  bottom: 0;
  width: clamp(120px, 16vw, 220px);
  z-index: 3;
  pointer-events: none;
}

.hero-right-deco__item {
  position: absolute;
  right: 0;
  width: auto;
  object-fit: contain;
  opacity: 0;
  filter: drop-shadow(0 16px 32px rgba(31, 41, 55, 0.16));
}

.hero-right-deco__item--top {
  top: 6%;
  right: 6%;
  height: 50px;
  animation:
    hero-deco-enter 1s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards,
    hero-deco-float 6s ease-in-out 1.2s infinite;
}

.hero-right-deco__item--center {
  top: 50%;
  right: 0;
  height: 200px;
  animation:
    hero-deco-enter-center 1s cubic-bezier(0.22, 1, 0.36, 1) 0.45s forwards,
    hero-deco-float-center 7s ease-in-out 1.45s infinite;
}

.hero-right-deco__item--bottom {
  bottom: -30%;
  right: 10%;
  height: 150px;
  animation:
    hero-deco-enter 1s cubic-bezier(0.22, 1, 0.36, 1) 0.7s forwards,
    hero-deco-float 6.5s ease-in-out 1.7s infinite;
}

@keyframes hero-deco-enter {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.85) rotate(-6deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(0deg);
  }
}

@keyframes hero-deco-enter-center {
  from {
    opacity: 0;
    transform: translateY(calc(-50% + 18px)) scale(0.85);
  }
  to {
    opacity: 1;
    transform: translateY(-50%) scale(1);
  }
}

@keyframes hero-deco-float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-14px) rotate(4deg);
  }
}

@keyframes hero-deco-float-center {
  0%,
  100% {
    transform: translateY(-50%) translateX(0);
  }
  50% {
    transform: translateY(calc(-50% - 16px)) translateX(-6px);
  }
}

.hero-cake {
  position: relative;
  z-index: 10;
  height: 0;
  margin: 0;
  pointer-events: none;
}

.hero-cake img {
  position: absolute;
  left: 48px;
  top: -240px;
  display: block;
  width: clamp(200px, 42vw, 200px);
  height: auto;
  object-fit: contain;
  transform: translateX(-50%);
  opacity: 0;
  filter: drop-shadow(0 32px 56px rgba(31, 41, 55, 0.18))
    drop-shadow(0 12px 24px rgba(244, 81, 30, 0.12));
  animation:
    hero-cake-reveal 1.3s cubic-bezier(0.22, 1, 0.36, 1) forwards,
    hero-cake-drift 8s ease-in-out 1.3s infinite;
}

@keyframes hero-cake-drift {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-22px);
  }
}

@keyframes hero-cake-reveal {
  from {
    opacity: 0;
    transform: translateX(-58%) translateY(24px) scale(0.88) rotate(-4deg);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1) rotate(0deg);
  }
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 40px;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange-soft);
  color: var(--orange-dark);
  font-weight: 600;
  font-size: 13px;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 22px;
}

.hero h1 {
  font-size: 48px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -1px;
}

.hero h1 .accent {
  color: var(--orange);
}

.hero .lead {
  color: var(--muted);
  font-size: 17px;
  margin: 20px 0 28px;
  max-width: 480px;
}

.hero-stores {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.rating {
  display: flex;
  align-items: center;
  gap: 14px;
}

.avatars {
  display: flex;
}

.avatars img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 3px solid var(--white);
  margin-left: -12px;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

.avatars img:first-child {
  margin-left: 0;
}

.rating .score {
  font-weight: 800;
  font-size: 22px;
  color: var(--orange);
}

.rating .score-sub {
  font-size: 13px;
  color: var(--muted);
}

.hero-visual {
  --phone-width: 228px;
  --phone-screen-h: 460px;
  --phone-wrap-h: 500px;
  --phone-screen-ratio: 2.02;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  min-height: 500px;
}

.hero-phones {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
  z-index: 1;
}

.float {
  position: absolute;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.15);
  animation: bob 5s ease-in-out infinite;
  z-index: 3;
}

.float--1 {
  width: 64px;
  height: 64px;
  top: 6px;
  left: 4%;
}

.float--2 {
  width: 70px;
  height: 70px;
  top: 36px;
  right: 0;
  animation-delay: 1s;
}

.hero-cupcake {
  position: absolute;
  bottom: -52px;
  left: -70px;
  z-index: 0;
  width: auto;
  height: clamp(88px, 18vw, 170px);
  object-fit: contain;
  pointer-events: none;
  animation: bob 5s ease-in-out 1.6s infinite;
  filter: drop-shadow(0 14px 28px rgba(31, 41, 55, 0.14));
}

@keyframes bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

/* ==========================================================================
   Phone Mockup
   ========================================================================== */

.phone {
  width: var(--phone-width);
  border-radius: 34px;
  background: #111;
  padding: 10px;
  box-shadow: 0 30px 60px -20px rgba(31, 41, 55, 0.45);
  position: relative;
  flex-shrink: 0;
}

.phone::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 54px;
  height: 5px;
  border-radius: 5px;
  background: #333;
  z-index: 2;
}

.phone .screen {
  background: linear-gradient(180deg, #fff, #fff7f3);
  border-radius: 26px;
  overflow: hidden;
  height: var(--phone-screen-h);
  display: flex;
  flex-direction: column;
}

.screen--shot {
  padding: 0;
  display: block;
  background: #000;
}

.screen--video {
  position: relative;
}

.screen--video::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.18);
  z-index: 1;
  pointer-events: none;
}

.phone-screen-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.phone.tilt-l {
  transform: rotate(-6deg) translateY(20px);
  z-index: 1;
}

.phone.tilt-r {
  transform: rotate(6deg);
  margin-left: -44px;
  z-index: 2;
}

.scr-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 14px 6px;
  font-size: 11px;
  color: var(--muted);
}

.scr-search {
  margin: 6px 12px;
  background: #f3f0ee;
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 11px;
  color: #9ca3af;
  display: flex;
  gap: 6px;
  align-items: center;
}

.scr-h {
  font-weight: 700;
  font-size: 12px;
  margin: 10px 12px 6px;
}

.scr-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 0 12px;
}

.scr-card {
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.scr-card .ph {
  height: 56px;
  overflow: hidden;
}

.scr-card .ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.scr-card .cap {
  padding: 6px 8px;
  font-size: 9px;
  font-weight: 600;
}

.scr-card .cap small {
  display: block;
  color: var(--muted);
  font-weight: 400;
  font-size: 8px;
}

.scr-hero {
  height: 120px;
  overflow: hidden;
}

.scr-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.scr-meta {
  padding: 0 14px;
  font-size: 10px;
  color: var(--muted);
}

.scr-ingredients {
  padding: 0 14px;
  font-size: 10px;
  color: #374151;
}

.scr-row {
  display: flex;
  justify-content: space-between;
  padding: 3px 0;
  border-bottom: 1px solid #f3eae5;
}

.scr-row:last-child {
  border-bottom: none;
}

.scr-cta {
  margin: 12px;
  background: var(--orange);
  color: var(--white);
  text-align: center;
  padding: 9px;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 600;
}

/* ==========================================================================
   Features
   ========================================================================== */

#funksiyalar {
  position: relative;
  z-index: 2;
}

.features {
  background: var(--white);
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
  padding: 34px 20px;
  margin: 10px 0 70px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.feat {
  text-align: center;
  padding: 8px 14px;
  border-right: 1px solid var(--line);
}

.feat:last-child {
  border-right: none;
}

.feat .ic {
  width: 54px;
  height: 54px;
  margin: 0 auto 12px;
  border-radius: 16px;
  background: var(--orange-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
}

.feat .ic svg {
  width: 26px;
  height: 26px;
}

.feat h4 {
  font-size: 15px;
  margin-bottom: 4px;
}

.feat p {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.4;
}

/* ==========================================================================
   Capabilities
   ========================================================================== */

.caps {
  padding: 10px 0 60px;
}

.cap-row {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 30px;
  padding: 34px 40px;
  margin-bottom: 24px;
  overflow: hidden;
}

.cap-row.rev .cap-media {
  order: 2;
}

.cap-ic {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(145deg, #fff8f4 0%, var(--orange-soft) 100%);
  border: none;
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    0 10px 28px -14px rgba(244, 81, 30, 0.22);
}

.cap-ic svg {
  width: 30px;
  height: 30px;
}

.cap-copy {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 20px;
  row-gap: 8px;
  align-items: start;
  align-self: center;
  max-width: 440px;
}

.cap-copy .cap-ic {
  grid-row: 1 / span 2;
  align-self: start;
  margin-top: 2px;
}

.cap-copy h3 {
  grid-column: 2;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--ink);
  margin: 0;
}

.cap-copy p {
  grid-column: 2;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
  max-width: none;
  margin: 0;
}

.cap-row--recipes,
.cap-row--search {
  padding: 40px 48px;
  gap: 40px;
  align-items: center;
  overflow: hidden;
}

.cap-ic--chef svg {
  width: 32px;
  height: 32px;
}

.cap-ic--chef {
  background: linear-gradient(145deg, rgba(255, 249, 246, 0.98) 0%, rgba(255, 237, 228, 0.92) 100%);
  border: 2px solid var(--orange);
  box-shadow: none;
}

/* Half-visible portrait phones (block 1 & 2) */
.cap-media--half {
  position: relative;
  overflow: visible;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0 12px;
  min-height: unset;
  align-self: end;
}

.cap-media--half-search {
  justify-content: center;
  padding-left: 0;
}

.cap-scene {
  position: relative;
  display: inline-flex;
  align-items: flex-end;
  justify-content: center;
  min-height: calc(var(--phone-screen-h) * 0.52 + 12px);
}

.cap-phone-clip {
  overflow: hidden;
  height: calc(var(--phone-screen-h) * 0.52 + 12px);
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  line-height: 0;
}

.cap-deco {
  position: absolute;
  height: auto;
  object-fit: contain;
  pointer-events: none;
  filter: drop-shadow(0 18px 32px rgba(31, 41, 55, 0.14));
  opacity: 0;
  z-index: 1;
}

.cap-deco--left {
  animation:
    cap-deco-enter-left 0.95s cubic-bezier(0.22, 1, 0.36, 1) forwards,
    cap-deco-float-left 6s ease-in-out 1.1s infinite;
}

.cap-deco--right {
  animation:
    cap-deco-enter-right 0.95s cubic-bezier(0.22, 1, 0.36, 1) 0.18s forwards,
    cap-deco-float-right 6.5s ease-in-out 1.25s infinite;
}

@keyframes cap-deco-enter-left {
  from {
    opacity: 0;
    transform: translateY(22px) translateX(-12px) scale(0.86) rotate(-8deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1) rotate(0deg);
  }
}

@keyframes cap-deco-enter-right {
  from {
    opacity: 0;
    transform: translateY(22px) translateX(12px) scale(0.86) rotate(8deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1) rotate(0deg);
  }
}

@keyframes cap-deco-float-left {
  0%,
  100% {
    transform: translateY(0) rotate(-3deg);
  }
  50% {
    transform: translateY(-11px) rotate(2deg);
  }
}

@keyframes cap-deco-float-right {
  0%,
  100% {
    transform: translateY(0) rotate(3deg);
  }
  50% {
    transform: translateY(-13px) rotate(-2deg);
  }
}

/* Block 1 — basil + cake */
.cap-scene--1 .cap-deco--left {
  left: -110px;
  bottom: 0px;
  width: 110px;
}

.cap-scene--1 .cap-deco--right {
  right: -160px;
    bottom: -20px;
    width: 160px;
    z-index: 3;
}

/* Block 2 — desserts plate + cheesecake */
.cap-scene--2 .cap-deco--left {
  left: -130px;
  bottom: -20px;
  width: 130px;
  z-index: 3;
}

.cap-scene--2 .cap-deco--right {
  right: -115px;
  bottom: -35px;
  width: 130px;
  z-index: 3;
}

/* Block 3 — herbs + cupcake */
.cap-scene--3 {
  min-height: unset;
  padding: 12px 0;
}

.cap-scene--3 .cap-deco--left {
  left: -52px;
  bottom: 18px;
  width: 86px;
}

.cap-scene--3 .cap-deco--right {
  right: -58px;
  bottom: 4px;
  width: 114px;
  z-index: 3;
}

@media (prefers-reduced-motion: reduce) {
  .cap-deco--left,
  .cap-deco--right {
    animation: none;
    opacity: 1;
  }
}

.cap-phone-wrap,
.cap-search-wrap {
  position: relative;
  display: flex;
  align-items: flex-end;
  z-index: 2;
}

.cap-search-wrap {
  justify-content: center;
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
}

.scr-greet {
  padding: 18px 14px 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}

.scr-cats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  padding: 10px 12px 4px;
}

.scr-cat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 8px;
  font-weight: 500;
  color: var(--muted);
  text-align: center;
  line-height: 1.2;
}

.scr-cat__ic {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid #f0e6e0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.scr-cat.is-active {
  color: var(--orange-dark);
  font-weight: 600;
}

.scr-cat.is-active .scr-cat__ic {
  background: var(--orange-soft);
  border-color: var(--orange);
}

.scr-row-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 14px 0;
}

.scr-row-head .scr-h {
  margin: 0;
  font-size: 12px;
}

.scr-more {
  font-size: 10px;
  font-weight: 600;
  color: var(--orange);
}

/* Search block */
.cap-ic--search svg {
  width: 32px;
  height: 32px;
}

.scr-title {
  padding: 18px 14px 10px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}

.scr-chips {
  display: flex;
  gap: 6px;
  padding: 0 12px 12px;
  flex-wrap: wrap;
}

.scr-chip {
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 500;
  background: #f3f0ee;
  color: var(--muted);
  white-space: nowrap;
}

.scr-chip.is-active {
  background: var(--orange);
  color: var(--white);
  font-weight: 600;
}

.scr-products {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 0 12px;
}

.scr-product {
  position: relative;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.scr-product img {
  width: 100%;
  height: 78px;
  object-fit: cover;
}

.scr-product > span:last-child {
  display: block;
  padding: 7px 8px;
  font-size: 9px;
  font-weight: 600;
  color: var(--ink);
}

.scr-product__heart {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  color: var(--orange);
  box-shadow: 0 4px 10px rgba(31, 41, 55, 0.12);
}

/* Video block */
.cap-row--video {
  padding: 40px 48px;
  gap: 40px;
}

.cap-ic--play svg {
  width: 32px;
  height: 32px;
}

.cap-media--video {
  justify-content: center;
  align-items: center;
  min-height: 200px;
  padding-left: 0;
  overflow: visible;
}

.cap-video-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  flex-shrink: 0;
}

.phone--landscape {
  width: 400px;
  padding: 9px;
  border-radius: 26px;
  flex-shrink: 0;
}

.phone--landscape::before {
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  width: 5px;
  height: 36px;
}

.phone--landscape .screen {
  height: 180px;
  border-radius: 18px;
}

.video-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  box-shadow:
    0 0 0 4px rgba(255, 255, 255, 0.28),
    0 8px 24px rgba(0, 0, 0, 0.22);
  z-index: 2;
}

.video-play svg {
  width: 20px;
  height: 20px;
  margin-left: 2px;
}

.video-bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: rgba(255, 255, 255, 0.35);
  z-index: 3;
}

.video-bar i {
  display: block;
  width: 38%;
  height: 100%;
  background: #e53935;
}

.cap-media {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  position: relative;
  min-height: 220px;
}

.cap-img {
  border-radius: 18px;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

.cap-img--tall {
  width: 150px;
  height: 200px;
}

.cluster {
  display: flex;
  align-items: center;
  gap: 14px;
}

.cluster img {
  border-radius: 16px;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

.cluster__main {
  width: 130px;
  height: 170px;
}

.cluster__stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cluster__stack img {
  width: 120px;
  height: 90px;
}

.video-card {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 16 / 10;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.8);
}

.video-card .play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 22px;
}

.video-card .bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
}

.video-card .bar i {
  display: block;
  width: 40%;
  height: 100%;
  background: var(--orange);
}

/* ==========================================================================
   Stats
   ========================================================================== */

.stats {
  background: #f4511e;
  border-radius: var(--radius);
  color: var(--white);
  display: flex;
  align-items: center;
  padding: 38px 280px 38px 36px;
  margin-bottom: 64px;
  position: relative;
  overflow: hidden;
}

.stats__grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat {
  position: relative;
  text-align: center;
  z-index: 1;
  padding: 0 16px;
}

.stat:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 58%;
  background: rgba(255, 255, 255, 0.28);
}

.stat__ic {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  margin: 0 auto 10px;
  opacity: 0.95;
}

.stat__ic svg {
  width: 35px;
  height: 35px;
}

.stat .num {
  font-size: 36px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.5px;
}

.stat .lbl {
  font-size: 13px;
  font-weight: 400;
  opacity: 0.95;
  margin-top: 6px;
}

.stats__cake {
  position: absolute;
  right: 50px;
  width: 243px;
  height: auto;
  object-fit: contain;
  z-index: 2;
  pointer-events: none;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.18));
}

/* ==========================================================================
   Download CTA
   ========================================================================== */

.dl {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  padding: 44px 48px 0;
  margin-bottom: 70px;
  overflow: hidden;
}

.dl-copy {
  align-self: center;
  padding-bottom: 44px;
}

.dl h3 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--ink);
}

.dl p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 22px;
  max-width: 380px;
}

.dl-stores {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.dl-stores .store .ic--play {
  display: flex;
  align-items: center;
  justify-content: center;
}

.dl-visual {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  align-self: end;
  min-height: calc(var(--phone-screen-h) * 0.68 + 20px);
  overflow: visible;
}

.dl-scene {
  position: relative;
  display: inline-flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: calc(var(--phone-screen-h) * -0.34 - 8px);
}

.dl-phone-wrap {
  position: relative;
  z-index: 2;
  transform: rotate(20deg);
  transform-origin: 80% 10%;
  flex-shrink: 0;
}

.dl-app-badge {
  position: absolute;
  top: 8px;
  right: -18px;
  width: 52px;
  height: 52px;
  background: var(--white);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 14px 28px -8px rgba(244, 81, 30, 0.45);
  z-index: 3;
  border: 2px solid var(--orange);
}

.dl-app-badge img {
  width: 80%;
}

.dl-deco {
  position: absolute;
  pointer-events: none;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(31, 41, 55, 0.16));
  z-index: 1;
}

.dl-deco--left {
  left: -180px;
    bottom: 200px;
    width: 120px;
    height: auto;
}

.dl-deco--right {
  right: -140px;
    bottom: 135px;
    width: 140px;
    height: auto;
    z-index: 3;
}

/* ==========================================================================
   Testimonials
   ========================================================================== */

.tst {
  padding: 10px 0 60px;
}

.tst-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}

.tcard {
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--line);
  box-shadow: none;
  padding: 28px 28px 24px;
  margin: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 220px;
}

.tcard .stars {
  color: var(--orange);
  margin-bottom: 7px;
  letter-spacing: 3px;
  font-size: 19px;
  line-height: 1;
}

.tcard p {
  flex: 1;
  font-size: 14px;
  line-height: 1.65;
  color: #374151;
  margin: 0;
}

.tcard .who {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 0px 0px;
  margin-top: auto;
}

.tcard .who img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.tcard .who b {
  font-size: 14px;
  font-weight: 700;
  display: block;
  color: var(--ink);
  line-height: 1.3;
}

.tcard .who span {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
  line-height: 1.3;
}

.dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 26px;
}

.dots i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #f0c9bb;
}

.dots i.on {
  background: var(--orange);
  width: 24px;
  border-radius: 6px;
}

/* ==========================================================================
   FAQ & Newsletter
   ========================================================================== */

.faq-sec {
  padding: 10px 0 70px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: stretch;
}

.faq-list,
.news {
  background: linear-gradient(160deg, #fff3eb 0%, #ffe8dc 100%);
  border: 1px solid rgba(244, 81, 30, 0.1);
  border-radius: var(--radius);
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.faq-list {
  padding: 30px;
  position: relative;
  overflow: hidden;
}

.faq-list .eyebrow {
  text-align: left;
  margin-bottom: 4px;
}

.faq-list h3 {
  font-size: 26px;
  margin-bottom: 20px;
}

.faq-item {
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 15px 18px;
  border: none;
  background: none;
  text-align: left;
  font-family: inherit;
  color: inherit;
  cursor: pointer;
  font-weight: 500;
  font-size: 15px;
}

.faq-q .chev {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  transition: transform 0.3s;
  color: var(--orange);
}

.faq-q .chev svg {
  width: 18px;
  height: 18px;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  color: var(--muted);
  font-size: 14px;
}

.faq-a div {
  padding: 0 18px 16px;
}

.faq-item.open .faq-a {
  max-height: 200px;
}

.faq-item.open .chev {
  transform: rotate(180deg);
}

.faq-cake {
  position: absolute;
  right: -10px;
  bottom: -10px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  opacity: 0.5;
}

.news {
  padding: 34px;
  position: relative;
  overflow: hidden;
}

.news h3 {
  font-size: 25px;
  margin-bottom: 12px;
  max-width: 340px;
}

.news p {
  color: var(--muted);
  margin-bottom: 22px;
  max-width: 380px;
}

.news-form {
  margin-top: auto;
}

.news .field {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: var(--shadow-soft);
  margin-bottom: 14px;
  max-width: 420px;
  border: 1px solid rgba(244, 81, 30, 0.08);
}

.news .field__ic {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--orange);
}

.news .field__ic svg {
  width: 20px;
  height: 20px;
}

.news .field input {
  border: none;
  outline: none;
  flex: 1;
  font-size: 14px;
  font-family: inherit;
}

.news .btn-primary {
  width: 100%;
  max-width: 420px;
  justify-content: center;
}

.news .news-food {
  position: absolute;
  right: 18px;
  bottom: 14px;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

/* ==========================================================================
   Footer
   ========================================================================== */

footer {
  background: #171c28;
  color: #e5e7eb;
  padding: 50px 0 26px;
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr;
  gap: 30px;
  margin-bottom: 30px;
}

.foot-brand p {
  color: #9ca3af;
  font-size: 14px;
  margin: 14px 0 16px;
  max-width: 260px;
}

.socials {
  display: flex;
  gap: 10px;
}

.socials a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.socials a svg {
  width: 18px;
  height: 18px;
}

.socials a:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
}

.foot-col h5 {
  font-size: 15px;
  margin-bottom: 14px;
  color: #f9fafb;
}

.foot-col a {
  display: block;
  color: #9ca3af;
  font-size: 14px;
  margin-bottom: 10px;
  transition: color 0.2s;
}

.foot-col a:hover {
  color: var(--orange);
}

.foot-contact div {
  color: #9ca3af;
  font-size: 14px;
  margin-bottom: 10px;
  display: flex;
  gap: 10px;
  align-items: center;
}

.foot-contact__ic {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--orange);
}

.foot-contact__ic svg {
  width: 16px;
  height: 16px;
}

.foot-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #9ca3af;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 10px;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 980px) {
  .wrap {
    padding: 0 20px;
  }

  .nav {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 12px;
  }

  .logo {
    margin-right: auto;
  }

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

  .nav-links {
    display: none;
  }

  .nav-links.is-open {
    display: flex;
    position: static;
    flex-basis: 100%;
    width: 100%;
    margin-top: 4px;
    padding: 12px 0 4px;
    border-top: 1px solid var(--line);
    border-radius: 0;
    box-shadow: none;
  }

  .nav-mobile-download {
    display: inline-flex;
    justify-content: center;
    width: 100%;
    margin-top: 8px;
  }

  .nav-actions .nav-download {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .hero-visual {
    --phone-width: min(190px, calc((100vw - 96px) / 2.05));
    --phone-screen-h: calc(var(--phone-width) * var(--phone-screen-ratio));
    min-height: calc(var(--phone-screen-h) + 72px);
    width: 100%;
    overflow: hidden;
    padding-bottom: 12px;
  }

  .hero-phones {
    width: 100%;
    max-width: calc(var(--phone-width) * 1.85);
    margin: 0 auto;
  }

  .hero-visual .phone.tilt-l {
    transform: rotate(-5deg) translateY(10px);
  }

  .hero-visual .phone.tilt-r {
    transform: rotate(5deg);
    margin-left: calc(var(--phone-width) * -0.2);
  }

  .hero-right-deco {
    right: 0;
    width: clamp(100px, 22vw, 200px);
    opacity: 0.7;
  }

  .hero-cake img {
    top: -140px;
    width: clamp(200px, 48vw, 300px);
    opacity: 0.45;
    animation: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero .lead {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-stores,
  .rating {
    justify-content: center;
  }

  .hero h1 {
    font-size: 42px;
  }

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

  .feat {
    border-right: none;
    border-bottom: 1px solid var(--line);
    padding-bottom: 16px;
  }

  .cap-row,
  .dl,
  .faq-grid,
  .foot-grid {
    grid-template-columns: 1fr;
  }

  .cap-row--recipes,
  .cap-row--search,
  .dl-visual,
  .cap-media--video {
    --phone-width: 190px;
    --phone-screen-h: 320px;
    --phone-wrap-h: calc(var(--phone-screen-h) + 20px);
  }

  .cap-row--recipes,
  .cap-row--search {
    padding: 28px 24px;
  }

  .cap-copy {
    max-width: 100%;
    margin: 0 auto;
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .cap-copy .cap-ic {
    grid-row: 1;
    grid-column: 1;
    margin: 0 0 4px;
  }

  .cap-copy h3,
  .cap-copy p {
    grid-column: 1;
  }

  .cap-media--half {
    padding: 0 8px;
  }

  .cap-scene--1 .cap-deco--left {
    left: -48px;
    width: 72px;
  }

  .cap-scene--1 .cap-deco--right {
    right: -64px;
    width: 148px;
  }

  .cap-scene--2 .cap-deco--left {
    left: -56px;
    width: 108px;
  }

  .cap-scene--2 .cap-deco--right {
    right: -52px;
    width: 118px;
  }

  .cap-scene--3 .cap-deco--left {
    left: -36px;
    width: 68px;
  }

  .cap-scene--3 .cap-deco--right {
    right: -40px;
    width: 88px;
  }

  .phone--landscape {
    width: 260px;
  }

  .phone--landscape .screen {
    height: 150px;
  }

  .cap-row--video {
    padding: 28px 24px;
  }

  .cap-media--video {
    min-height: unset;
    padding-left: 0;
    justify-content: center;
  }

  .cap-row.rev .cap-media {
    order: 0;
  }

  .stats {
    padding: 32px 24px;
    flex-direction: column;
    align-items: stretch;
  }

  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 12px;
  }

  .stat:not(:last-child)::after {
    display: none;
  }

  .stat:nth-child(odd):not(:nth-last-child(1))::after {
    display: block;
    right: 0;
    height: 70%;
  }

  .stats__cake {
    position: relative;
    right: auto;
    bottom: auto;
    width: 160px;
    margin: 24px auto 0;
  }

  .dl {
    grid-template-columns: 1fr;
    padding: 32px 24px 0;
    text-align: center;
  }

  .dl-copy {
    padding-bottom: 32px;
  }

  .dl p {
    margin-left: auto;
    margin-right: auto;
  }

  .dl-stores {
    justify-content: center;
  }

  .dl-visual {
    min-height: calc(var(--phone-screen-h) * 0.62 + 16px);
    margin-top: 8px;
    align-self: end;
  }

  .dl-scene {
    margin-bottom: calc(var(--phone-screen-h) * -0.32 - 6px);
  }

  .dl-phone-wrap {
    transform: rotate(16deg);
  }

  .dl-deco--left {
    left: -48px;
    bottom: 56px;
    width: 62px;
  }

  .dl-deco--right {
    right: -44px;
    bottom: 64px;
    width: 72px;
  }

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

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

@media (max-width: 640px) {
  .wrap {
    padding: 0 16px;
  }

  .nav {
    padding: 10px 12px;
    gap: 8px;
  }

  .logo__img {
    height: 32px;
    max-width: 108px;
    margin-top: 0;
  }

  .lang-switcher {
    padding: 2px;
  }

  .lang-btn {
    min-width: 28px;
    padding: 5px 7px;
    font-size: 11px;
  }

  .hero-visual {
    --phone-width: min(142px, calc((100vw - 72px) / 2.15));
    --phone-screen-h: calc(var(--phone-width) * var(--phone-screen-ratio));
    min-height: 0;
    padding: 4px 0 20px;
    overflow: hidden;
  }

  .hero-phones {
    max-width: min(100%, calc(var(--phone-width) * 1.82));
  }

  .hero-visual .phone {
    padding: 7px;
    border-radius: 26px;
  }

  .hero-visual .phone::before {
    top: 12px;
    width: 42px;
    height: 4px;
  }

  .hero-visual .phone .screen {
    border-radius: 20px;
  }

  .hero-visual .phone.tilt-l {
    transform: rotate(-4deg) translateY(6px);
  }

  .hero-visual .phone.tilt-r {
    transform: rotate(4deg);
    margin-left: calc(var(--phone-width) * -0.17);
  }

  .hero-stores {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .hero-stores .store {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .rating {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .rating .score-sub {
    font-size: 12px;
    text-align: center;
  }

  .dl-stores {
    flex-direction: column;
    align-items: center;
  }

  .dl-stores .store {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .cap-media--half,
  .cap-media--video {
    overflow: hidden;
  }

  .tst {
    padding-bottom: 48px;
  }

  .tcard {
    padding: 22px 20px 20px;
    min-height: unset;
  }

  .news .news-food {
    width: 72px;
    height: 72px;
    right: 8px;
    bottom: 8px;
    opacity: 0.55;
  }

  .dl-visual,
  .cap-media--video,
  .cap-row--recipes,
  .cap-row--search {
    --phone-width: 160px;
    --phone-screen-h: 280px;
    --phone-wrap-h: calc(var(--phone-screen-h) + 20px);
  }

  .hero h1 {
    font-size: clamp(28px, 8vw, 34px);
  }

  .hero .lead {
    font-size: 15px;
  }

  .hero-cupcake {
    display: none;
  }

  .hero-cake {
    display: none;
  }

  .hero-right-deco {
    display: none;
  }

  .sec-title {
    font-size: 26px;
  }

  .features {
    grid-template-columns: 1fr;
    padding: 28px 16px;
    margin-bottom: 48px;
  }

  .cap-row,
  .cap-row--recipes,
  .cap-row--search,
  .cap-row--video {
    padding: 24px 16px;
    gap: 20px;
  }

  .cap-copy h3 {
    font-size: 20px;
  }

  .phone--landscape {
    width: min(100%, 240px);
  }

  .stats {
    padding: 28px 20px;
  }

  .stats__grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px 8px;
  }

  .stat .num {
    font-size: 28px;
  }

  .dl {
    padding: 28px 20px 0;
  }

  .dl h3 {
    font-size: 24px;
  }

  .faq-list,
  .news {
    padding: 24px 20px;
  }

  .faq-list h3,
  .news h3 {
    font-size: 22px;
  }

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

  .foot-bottom {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }

  .cap-scene--1 .cap-deco--left {
    left: -32px;
    width: 58px;
  }

  .cap-scene--1 .cap-deco--right {
    right: -44px;
    width: 112px;
  }

  .cap-scene--2 .cap-deco--left {
    left: -36px;
    width: 82px;
  }

  .cap-scene--2 .cap-deco--right {
    right: -36px;
    width: 92px;
  }

  .cap-scene--3 .cap-deco--left {
    left: -24px;
    width: 52px;
  }

  .cap-scene--3 .cap-deco--right {
    right: -28px;
    width: 68px;
  }
}
