:root {
  --bg: #fff9f4;
  --bg-soft: #fff1e7;
  --bg-strong: #fffdf9;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: rgba(255, 255, 255, 0.92);
  --surface-warm: rgba(255, 247, 241, 0.92);
  --line: rgba(123, 67, 86, 0.12);
  --line-strong: rgba(123, 67, 86, 0.18);
  --text: #341f37;
  --muted: #6e5a70;
  --accent: #ffac45;
  --accent-strong: #ff6f61;
  --accent-soft: #ffd9b1;
  --berry: #ff6f9c;
  --lime: #82d97a;
  --gold: #ffd966;
  --shadow: 0 28px 80px rgba(148, 81, 73, 0.14);
  --shadow-soft: 0 18px 40px rgba(148, 81, 73, 0.1);
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --container: 1220px;
  --nav-height: 92px;
}

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

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  min-width: 320px;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--text);
  line-height: 1.6;
  background:
    radial-gradient(
      circle at 0% 5%,
      rgba(255, 188, 111, 0.28),
      transparent 26%
    ),
    radial-gradient(
      circle at 100% 0%,
      rgba(255, 126, 173, 0.18),
      transparent 18%
    ),
    radial-gradient(
      circle at 15% 88%,
      rgba(155, 221, 131, 0.22),
      transparent 20%
    ),
    radial-gradient(
      circle at 88% 82%,
      rgba(255, 213, 111, 0.14),
      transparent 18%
    ),
    linear-gradient(180deg, #fffaf6 0%, #fff4ec 45%, #fff9f5 100%);
}

body.menu-open {
  overflow: hidden;
}

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

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

:focus-visible {
  outline: 3px solid rgba(255, 143, 79, 0.55);
  outline-offset: 3px;
}

button,
input,
textarea,
select {
  font: inherit;
}

textarea {
  resize: vertical;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 16px;
  z-index: 200;
  padding: 10px 14px;
  border-radius: 999px;
  background: #ffffff;
  color: var(--text);
  box-shadow: var(--shadow-soft);
}

.skip-link:focus {
  top: 16px;
}

.site-shell {
  overflow: clip;
  overflow-x: hidden;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin-inline: auto;
}

.section {
  padding: 56px 0;
}

.section-heading,
.section-copy,
.faq-heading,
.simple-card,
.standalone-copy {
  max-width: 760px;
}

.eyebrow,
.mini-label,
.badge-chip,
.progress-pill,
.platform-pill,
.fruit-pill,
.stat-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 145, 88, 0.18);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
}

.eyebrow,
.mini-label {
  padding: 10px 16px;
  color: #a65b2e;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before,
.mini-label::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--berry));
}

.hero-copy h1,
.section-heading h2,
.section-copy h2,
.launch-panel h2,
.faq-heading h2,
.simple-card h1,
.contact-copy h1,
.contact-form-card h2,
.contact-method h3 {
  margin: 18px 0 16px;
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.hero-copy h1 {
  font-size: clamp(2.7rem, 5.2vw, 5.2rem);
  max-width: 10.6ch;
}

.hero-copy h1 span,
.contact-copy h1 span {
  background: linear-gradient(135deg, #ff8b38, #ff5b86 72%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-text,
.section-heading p,
.section-copy p,
.feature-card p,
.power-panel p,
.gallery-card p,
.launch-panel p,
.footer-text,
.faq-list p,
.simple-card p,
.standalone-copy p,
.contact-copy p,
.contact-form-card p,
.contact-method p,
.field-hint,
.form-status {
  color: var(--muted);
}

.button,
.nav-cta,
.header-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

.button:hover,
.button:focus-visible,
.gallery-card:hover,
.gallery-card:focus-visible,
.gallery-tile:hover,
.gallery-tile:focus-visible,
.header-link:hover,
.header-link:focus-visible {
  transform: translateY(-2px);
}

.button-primary,
.nav-cta {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #fff8f2 !important;
  box-shadow: 0 16px 30px rgba(255, 131, 76, 0.24);
}

.button-secondary,
.button-ghost,
.header-link {
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(123, 67, 86, 0.12);
  color: var(--text);
  box-shadow: var(--shadow-soft);
}

.button-secondary:hover,
.button-secondary:focus-visible,
.button-ghost:hover,
.button-ghost:focus-visible,
.header-link:hover,
.header-link:focus-visible {
  border-color: rgba(255, 131, 76, 0.32);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  backdrop-filter: blur(18px);
  background: rgba(255, 249, 243, 0.76);
  border-bottom: 1px solid rgba(123, 67, 86, 0.08);
  transition:
    background 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(255, 249, 243, 0.95);
  box-shadow: 0 18px 40px rgba(78, 43, 59, 0.08);
  border-bottom-color: rgba(123, 67, 86, 0.12);
}

.header-wrap {
  position: relative;
}

.header-inner {
  min-height: var(--nav-height);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand img {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  box-shadow: 0 16px 28px rgba(255, 143, 79, 0.22);
}

.brand span {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.brand strong {
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.01em;
}

.brand small {
  color: #9d6748;
  font-size: 0.81rem;
}

.desktop-nav {
  display: flex;
  justify-content: center;
}

.nav-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px;
  border-radius: 999px;
  border: 1px solid rgba(123, 67, 86, 0.1);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow-soft);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: rgba(52, 31, 55, 0.84);
  font-weight: 800;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.mobile-nav a:hover,
.mobile-nav a:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.86);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-actions .button,
.header-actions .header-link {
  min-height: 48px;
  padding-inline: 18px;
}

.header-panel {
  display: none;
}

.mobile-nav,
.mobile-actions {
  display: grid;
  gap: 10px;
}

.mobile-nav a {
  padding: 12px 14px;
  border-radius: 18px;
  font-weight: 800;
}

.mobile-actions .button,
.mobile-actions .header-link {
  width: 100%;
}

.menu-toggle {
  display: none;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 16px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.92),
    rgba(255, 243, 235, 0.84)
  );
  box-shadow: var(--shadow-soft);
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  color: var(--text);
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero-section {
  position: relative;
  padding: 40px 0 28px;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 88% 18%,
      rgba(255, 198, 101, 0.2),
      transparent 22%
    ),
    radial-gradient(
      circle at 12% 76%,
      rgba(255, 122, 170, 0.14),
      transparent 18%
    );
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.84fr);
  gap: 40px;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-surface {
  position: relative;
  padding: 24px;
  border-radius: var(--radius-xl);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.7),
    rgba(255, 247, 240, 0.78)
  );
  border: 1px solid rgba(123, 67, 86, 0.1);
  box-shadow: var(--shadow);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 30px 0 22px;
}

.platform-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}

.store-badges {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 22px;
}

.store-badge {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
  border-radius: 24px;
  border: 1px solid rgba(123, 67, 86, 0.12);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-soft);
}

.store-badge:hover,
.store-badge:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 131, 76, 0.28);
}

.store-badge-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(
    135deg,
    rgba(255, 174, 100, 0.16),
    rgba(255, 111, 156, 0.1)
  );
  color: var(--text);
}

.store-badge-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.store-badge-copy {
  display: grid;
  gap: 4px;
}

.store-badge-copy small {
  color: #8f684e;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.store-badge-copy strong {
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.2;
}

.launch-store-badges {
  width: min(100%, 520px);
  margin-bottom: 0;
}

.platform-pill {
  padding: 12px 16px;
  color: var(--text);
}

.platform-pill svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-stats li,
.feature-card,
.power-panel,
.gallery-card,
.gallery-tile,
.launch-panel,
.faq-list details,
.simple-card,
.showcase-note,
.highlight-panel,
.progress-panel,
.contact-form-card,
.contact-method,
.contact-surface,
.fruit-ribbon {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero-stats li {
  min-width: 152px;
  padding: 18px 18px;
  border-radius: 22px;
}

.hero-stats strong {
  display: block;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  line-height: 1;
  color: #e57037;
}

.hero-stats span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.94rem;
}

.floating-fruits,
.contact-fruits {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-fruit,
.contact-fruit {
  position: absolute;
  filter: drop-shadow(0 16px 22px rgba(112, 53, 50, 0.14));
  opacity: 0.96;
}

.hero-fruit img,
.contact-fruit img {
  width: 100%;
  height: auto;
}

.hero-fruit-1 {
  width: clamp(72px, 10vw, 118px);
  top: 2%;
  right: 8%;
  transform: rotate(-8deg);
}

.hero-fruit-2 {
  width: clamp(70px, 11vw, 124px);
  top: 36%;
  left: -4%;
  transform: rotate(-10deg);
}

.hero-fruit-3 {
  width: clamp(80px, 12vw, 136px);
  bottom: 4%;
  right: 2%;
  transform: rotate(8deg);
}

.hero-fruit-4 {
  width: clamp(66px, 10vw, 108px);
  bottom: 12%;
  left: 10%;
  transform: rotate(12deg);
}

.hero-visual {
  position: relative;
}

.hero-showcase {
  position: relative;
  border-radius: var(--radius-xl);
  padding: 28px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.88),
    rgba(255, 245, 237, 0.95)
  );
  border: 1px solid rgba(123, 67, 86, 0.1);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-showcase::before {
  content: "";
  position: absolute;
  inset: auto -40px -80px auto;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 190, 94, 0.18) 0%,
    rgba(255, 190, 94, 0) 72%
  );
  pointer-events: none;
}

.hero-showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 164px;
  gap: 18px;
  align-items: stretch;
}

.phone-stage {
  position: relative;
  padding: 8px 12px 92px;
}

.phone-frame,
.phone-mini {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #533942, #251927 70%);
  box-shadow:
    0 32px 72px rgba(60, 31, 53, 0.26),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.phone-frame {
  width: min(100%, 324px);
  margin-inline: auto;
  padding: 14px;
  border-radius: 42px;
}

.phone-frame::before,
.phone-mini::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 10px;
  width: 34%;
  height: 24px;
  border-radius: 0 0 18px 18px;
  background: #201620;
  z-index: 2;
}

.phone-screen,
.phone-mini-screen,
.hero-video,
.gallery-card img,
.gallery-tile img {
  width: 100%;
  aspect-ratio: 9 / 20;
  object-fit: cover;
  object-position: center top;
  border-radius: 30px;
  background: #f7ece5;
}

.power-card {
  position: absolute;
  width: min(250px, 48vw);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(123, 67, 86, 0.12);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.power-card img,
.power-panel img,
.fruit-pill img,
.contact-method-icon img {
  object-fit: contain;
}

.power-card img,
.power-panel img {
  width: 64px;
  height: 64px;
}

.power-card strong,
.feature-card h3,
.power-panel h3,
.gallery-card h3,
.gallery-tile strong,
.faq-list summary,
.showcase-note strong,
.stat-chip strong,
.progress-caption strong,
.footer-grid h3,
.contact-method h3,
.contact-form-card h2,
.contact-copy h1 {
  color: var(--text);
}

.power-card p,
.showcase-note p {
  margin: 4px 0 0;
  font-size: 0.9rem;
  line-height: 1.45;
}

.power-card-left {
  left: -6px;
  top: 28px;
}

.power-card-right {
  right: -8px;
  top: 180px;
}

.power-card-bottom {
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: min(280px, 72vw);
}

.showcase-note {
  position: relative;
  padding: 16px;
  border-radius: 24px;
  display: grid;
  gap: 14px;
  align-content: start;
}

.showcase-note img {
  width: 100%;
  max-height: 300px;
  object-fit: contain;
  border-radius: 22px;
  background: linear-gradient(180deg, #fff8f4, #ffeede);
}

.badge-chip,
.stat-chip,
.progress-pill,
.fruit-pill {
  padding: 10px 14px;
}

.badge-chip {
  width: fit-content;
  font-size: 0.82rem;
  font-weight: 700;
  color: #8f684e;
}

.stat-chip {
  justify-content: space-between;
  font-size: 0.92rem;
}

.stat-chip strong {
  font-size: 1.02rem;
  color: #dc6d32;
}

.feature-grid,
.power-grid,
.gallery-grid,
.contact-method-grid,
.footer-grid {
  display: grid;
  gap: 18px;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card {
  position: relative;
  padding: 26px;
  border-radius: 26px;
  overflow: hidden;
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: auto -28px -38px auto;
  width: 120px;
  height: 120px;
  background: radial-gradient(
    circle,
    rgba(255, 176, 104, 0.16),
    rgba(255, 176, 104, 0)
  );
  pointer-events: none;
}

.feature-card h3 {
  margin: 12px 0 10px;
  font-size: 1.18rem;
}

.feature-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-weight: 900;
  background: linear-gradient(
    135deg,
    rgba(255, 174, 100, 0.18),
    rgba(255, 104, 144, 0.12)
  );
  color: #d45f39;
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 34px;
  align-items: center;
}

.check-list,
.power-panel ul,
.footer-grid ul,
.contact-benefits,
.simple-points {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list,
.contact-benefits {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.check-list li,
.contact-benefits li {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 12px;
  align-items: start;
}

.check-list li::before,
.contact-benefits li::before {
  content: "✓";
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(123, 207, 118, 0.18),
    rgba(255, 159, 77, 0.18)
  );
  color: #3e9141;
  font-weight: 900;
}

.highlight-panel {
  position: relative;
  padding: 24px;
  border-radius: 30px;
  display: grid;
  gap: 20px;
}

.highlight-stack {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 18px;
  align-items: end;
}

.phone-mini {
  padding: 10px;
  border-radius: 34px;
}

.phone-mini.offset {
  transform: translateY(28px);
}

.progress-panel {
  padding: 22px;
  border-radius: 28px;
  display: grid;
  gap: 18px;
}

.progress-pills,
.fruit-ribbon-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.progress-pill {
  font-size: 0.92rem;
  font-weight: 700;
  color: #6b5568;
}

.progress-caption {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.power-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.power-panel {
  padding: 26px;
  border-radius: 26px;
}

.power-panel img {
  width: 76px;
  height: 76px;
}

.power-panel h3,
.gallery-card h3,
.contact-method h3 {
  margin: 18px 0 8px;
  font-size: 1.24rem;
}

.power-panel ul {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.power-panel li,
.footer-grid li,
.footer-grid a,
.faq-list summary + p {
  color: var(--muted);
}

.power-panel li {
  position: relative;
  padding-left: 18px;
}

.power-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--berry));
}

.fruit-ribbon {
  position: relative;
  padding: 22px;
  border-radius: 28px;
  margin-top: 18px;
  overflow: hidden;
}

.fruit-ribbon::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 174, 100, 0.08),
    rgba(255, 111, 156, 0.04)
  );
  pointer-events: none;
}

.fruit-ribbon > * {
  position: relative;
  z-index: 1;
}

.fruit-ribbon-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.fruit-ribbon-header strong {
  font-size: 1rem;
}

.fruit-pill {
  padding-inline: 12px 16px;
  color: #655063;
  font-weight: 800;
}

.fruit-pill img {
  width: 34px;
  height: 34px;
}

.gallery-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-card,
.gallery-tile {
  appearance: none;
  border: 0;
  background: transparent;
  border-radius: 28px;
  overflow: hidden;
  padding: 0;
  text-align: left;
  color: inherit;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.gallery-card-copy {
  padding: 18px 18px 20px;
}

.gallery-card-copy p {
  margin: 6px 0 0;
  font-size: 0.96rem;
}

.launch-panel {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  padding: 30px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}

.launch-panel::before {
  content: "";
  position: absolute;
  inset: auto -60px -80px auto;
  width: 220px;
  height: 220px;
  background: radial-gradient(
    circle,
    rgba(255, 204, 120, 0.18),
    rgba(255, 204, 120, 0)
  );
  pointer-events: none;
}

.launch-panel > * {
  position: relative;
  z-index: 1;
}

.launch-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
  align-items: center;
}

.contact-shell {
  position: relative;
  padding: 26px;
  border-radius: 34px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.8),
    rgba(255, 246, 240, 0.92)
  );
  border: 1px solid rgba(123, 67, 86, 0.1);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 24px;
  align-items: start;
}

.contact-copy,
.contact-form-card {
  position: relative;
}

.contact-copy {
  padding: 12px 8px 12px 6px;
}

.contact-copy h1 {
  font-size: clamp(2.6rem, 5vw, 4.7rem);
  max-width: 10ch;
}

.contact-copy p {
  max-width: 58ch;
}

.contact-surface {
  margin-top: 24px;
  padding: 18px;
  border-radius: 26px;
}

.contact-form-card {
  padding: 26px;
  border-radius: 30px;
}

.contact-form-card h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.form-grid {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.input-field,
.select-field,
.textarea-field {
  width: 100%;
  border: 1px solid rgba(123, 67, 86, 0.14);
  background: rgba(255, 255, 255, 0.86);
  border-radius: 18px;
  padding: 14px 16px;
  color: var(--text);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.input-field:focus,
.select-field:focus,
.textarea-field:focus {
  outline: 0;
  border-color: rgba(255, 131, 76, 0.42);
  box-shadow: 0 0 0 4px rgba(255, 179, 127, 0.18);
}

.textarea-field {
  min-height: 160px;
}

.form-label {
  display: grid;
  gap: 8px;
  font-weight: 700;
  color: var(--text);
}

.form-status {
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(123, 67, 86, 0.08);
  background: rgba(255, 255, 255, 0.72);
}

.form-status.success {
  border-color: rgba(110, 190, 101, 0.28);
  background: rgba(240, 255, 236, 0.82);
  color: #396f31;
}

.form-status.error {
  border-color: rgba(255, 111, 97, 0.28);
  background: rgba(255, 241, 238, 0.9);
  color: #9d4136;
}

.hidden-field {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  border: 0;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
}

.contact-method-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-method {
  position: relative;
  padding: 22px;
  border-radius: 26px;
  overflow: hidden;
}

.contact-method::after {
  content: "";
  position: absolute;
  inset: auto -34px -34px auto;
  width: 120px;
  height: 120px;
  background: radial-gradient(
    circle,
    rgba(255, 176, 104, 0.16),
    rgba(255, 176, 104, 0)
  );
  pointer-events: none;
}

.contact-method > * {
  position: relative;
  z-index: 1;
}

.contact-method-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(
    135deg,
    rgba(255, 174, 100, 0.16),
    rgba(255, 111, 156, 0.1)
  );
}

.contact-method-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.contact-fruit-1 {
  width: clamp(74px, 10vw, 128px);
  top: 6%;
  right: 8%;
  transform: rotate(8deg);
}

.contact-fruit-2 {
  width: clamp(76px, 10vw, 132px);
  bottom: 7%;
  left: 2%;
  transform: rotate(-10deg);
}

.contact-fruit-3 {
  width: clamp(74px, 10vw, 126px);
  bottom: 8%;
  right: 20%;
  transform: rotate(10deg);
}

.faq-heading {
  max-width: 720px;
}

.faq-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.faq-list details {
  border-radius: 22px;
  padding: 0 22px;
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 0;
  font-size: 1.02rem;
  font-weight: 800;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list p {
  margin: 0 0 18px;
  padding-right: 28px;
}

.site-footer {
  padding: 32px 0 18px;
}

.footer-grid {
  grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(180px, 0.7fr));
  gap: 28px;
  padding: 30px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(123, 67, 86, 0.08);
  box-shadow: var(--shadow-soft);
}

.footer-brand img {
  width: 48px;
  height: 48px;
}

.footer-text {
  max-width: 38ch;
}

.footer-grid h3 {
  margin: 0 0 12px;
  font-size: 1rem;
}

.footer-grid ul {
  display: grid;
  gap: 10px;
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
  color: var(--text);
}

.footer-bottom {
  padding: 18px 0 6px;
  color: #8a7486;
  text-align: center;
  font-size: 0.95rem;
}

.lightbox {
  width: min(560px, calc(100% - 24px));
  padding: 14px;
  border: 0;
  border-radius: 28px;
  background: rgba(255, 251, 246, 0.94);
  box-shadow: 0 28px 80px rgba(38, 22, 45, 0.26);
}

.lightbox::backdrop {
  background: rgba(35, 18, 39, 0.54);
  backdrop-filter: blur(5px);
}

.lightbox img {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 20px;
  background: #fff;
}

.lightbox p {
  margin: 12px 6px 4px;
  color: var(--muted);
}

.lightbox-close {
  margin-left: auto;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

main.section,
body > main.section,
.simple-page main {
  min-height: calc(100vh - 90px);
  display: grid;
  align-items: center;
}

.simple-card,
.launch-panel[style],
article.launch-panel {
  max-width: 920px;
  margin: 0 auto;
}

.simple-card,
.launch-panel[style] {
  padding: 32px;
  border-radius: 30px;
}

.simple-points {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.simple-points li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
}

.simple-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--berry));
}

@media (max-width: 1180px) {
  .hero-grid,
  .split-grid,
  .feature-grid,
  .power-grid,
  .gallery-grid,
  .footer-grid,
  .launch-panel,
  .hero-showcase-grid,
  .contact-grid,
  .contact-method-grid {
    grid-template-columns: 1fr;
  }

  .store-badges {
    grid-template-columns: 1fr;
  }

  .launch-actions {
    justify-content: flex-start;
  }

  .hero-showcase-grid {
    gap: 18px;
  }

  .showcase-note {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
  }

  .showcase-note img {
    max-width: 220px;
  }

  .power-card-left,
  .power-card-right,
  .power-card-bottom {
    position: static;
    width: 100%;
    transform: none;
  }

  .phone-stage {
    display: grid;
    gap: 14px;
    padding-bottom: 0;
  }
}

@media (max-width: 980px) {
  .desktop-nav,
  .header-actions .header-link,
  .header-actions .button-primary {
    display: none;
  }

  .header-actions .header-contact-link {
    display: inline-flex;
    min-height: 46px;
    padding-inline: 16px;
    white-space: nowrap;
  }

  .hero-copy h1 {
    font-size: clamp(2.5rem, 9vw, 4.2rem);
  }

  .menu-toggle {
    display: inline-flex;
  }

  .header-inner {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .header-panel {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    padding: 18px;
    border-radius: 26px;
    background: rgba(255, 250, 245, 0.98);
    border: 1px solid rgba(123, 67, 86, 0.1);
    box-shadow: var(--shadow);
  }

  .header-panel.is-open {
    display: grid;
    gap: 16px;
  }

  .hero-section {
    padding-top: 30px;
  }

  .hero-fruit-2,
  .hero-fruit-4,
  .contact-fruit-2 {
    display: none;
  }
}

@media (max-width: 860px) {
  .hero-actions,
  .platform-strip,
  .hero-stats,
  .progress-caption,
  .fruit-ribbon-header {
    justify-content: flex-start;
  }

  .highlight-stack,
  .form-row,
  .showcase-note {
    grid-template-columns: 1fr;
  }

  .phone-mini.offset {
    transform: none;
  }

  .contact-copy h1 {
    max-width: none;
  }
}

@media (max-width: 640px) {
  :root {
    --nav-height: 78px;
  }

  .hero-fruit-1 {
    width: 74px;
    right: 2%;
    top: 1%;
  }

  .hero-fruit-3 {
    width: 88px;
    right: -2%;
    bottom: 2%;
    opacity: 0.88;
  }

  .container {
    width: calc(100% - 20px);
    max-width: var(--container);
  }

  .section {
    padding: 42px 0;
  }

  .brand img {
    width: 48px;
    height: 48px;
    border-radius: 16px;
  }

  .brand strong {
    font-size: 0.95rem;
  }

  .brand small {
    font-size: 0.74rem;
  }

  .hero-surface,
  .hero-showcase,
  .feature-card,
  .power-panel,
  .launch-panel,
  .highlight-panel,
  .progress-panel,
  .footer-grid,
  .contact-shell,
  .contact-form-card,
  .contact-method,
  .simple-card,
  .launch-panel[style] {
    padding: 20px;
  }

  .button,
  .nav-cta,
  .header-link,
  .mobile-actions .button,
  .mobile-actions .header-link {
    width: 100%;
  }

  .hero-actions {
    display: grid;
    gap: 12px;
  }

  .hero-stats li {
    width: 100%;
  }

  .phone-frame {
    width: min(100%, 310px);
    border-radius: 34px;
    padding: 12px;
  }

  .phone-screen,
  .phone-mini-screen,
  .hero-video,
  .gallery-card img,
  .gallery-tile img {
    border-radius: 24px;
  }

  .faq-list details {
    padding-inline: 18px;
  }

  .footer-grid {
    gap: 20px;
  }

  .fruit-ribbon-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* --- 2026 refresh: premium header, clearer contact page, refined icons --- */
body.page-home,
body.page-contact {
  background:
    radial-gradient(
      circle at 8% 8%,
      rgba(255, 188, 111, 0.28),
      transparent 24%
    ),
    radial-gradient(
      circle at 92% 8%,
      rgba(255, 126, 173, 0.18),
      transparent 18%
    ),
    radial-gradient(
      circle at 16% 88%,
      rgba(155, 221, 131, 0.2),
      transparent 18%
    ),
    radial-gradient(
      circle at 86% 86%,
      rgba(255, 213, 111, 0.16),
      transparent 18%
    ),
    linear-gradient(180deg, #fffaf6 0%, #fff4ec 45%, #fff9f5 100%);
}

.site-header {
  top: 0;
  padding: 14px 0 0;
  background: transparent;
  border-bottom: 0;
  backdrop-filter: none;
  box-shadow: none;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: transparent;
  border-bottom-color: transparent;
  box-shadow: none;
}

.header-wrap {
  display: grid;
  gap: 10px;
}

.header-inner {
  position: relative;
  overflow: hidden;
  min-height: 0;
  padding: 14px 18px;
  border-radius: 30px;
  border: 1px solid rgba(123, 67, 86, 0.1);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.9),
    rgba(255, 248, 242, 0.96)
  );
  box-shadow: 0 18px 48px rgba(95, 53, 64, 0.1);
  backdrop-filter: blur(18px);
}

.header-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 16% 12%,
      rgba(255, 188, 111, 0.16),
      transparent 22%
    ),
    radial-gradient(
      circle at 84% 12%,
      rgba(255, 111, 156, 0.12),
      transparent 20%
    ),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.header-inner > * {
  position: relative;
  z-index: 1;
}

.header-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.header-decor-fruit {
  position: absolute;
  top: 50%;
  width: 58px;
  height: 58px;
  opacity: 0.26;
  transform: translateY(-50%);
  filter: drop-shadow(0 10px 16px rgba(95, 53, 64, 0.08));
}

.header-decor-fruit img {
  width: 100%;
  height: 100%;
}

.header-decor-fruit-left {
  left: 10px;
}

.header-decor-fruit-right {
  right: 10px;
}

.brand {
  z-index: 2;
}

.brand img {
  width: 56px;
  height: 56px;
  border-radius: 18px;
}

.nav-pill {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.site-nav {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  padding: 8px;
  border-radius: 999px;
  border: 1px solid rgba(123, 67, 86, 0.08);
  background: rgba(255, 255, 255, 0.84);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 10px 24px rgba(95, 53, 64, 0.06);
}

.site-nav a {
  position: relative;
  padding: 10px 16px;
  color: rgba(52, 31, 55, 0.86);
  font-size: 0.95rem;
  font-weight: 800;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: #fff9f4;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  box-shadow: 0 10px 22px rgba(255, 131, 76, 0.2);
}

.header-actions {
  gap: 10px;
}

.header-actions .button,
.header-actions .header-link {
  min-height: 46px;
  padding-inline: 18px;
}

.header-link {
  background: rgba(255, 255, 255, 0.84);
}

.menu-toggle {
  border: 1px solid rgba(123, 67, 86, 0.1);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.header-panel {
  display: none;
  padding: 18px;
  border-radius: 26px;
  background: rgba(255, 250, 245, 0.96);
  border: 1px solid rgba(123, 67, 86, 0.1);
  box-shadow: var(--shadow-soft);
}

.mobile-nav a,
.mobile-actions .button,
.mobile-actions .header-link {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(123, 67, 86, 0.08);
}

.platform-pill svg,
.store-badge-icon svg,
.contact-method-icon svg,
.contact-quick-icon svg {
  display: block;
  flex: 0 0 auto;
}

.platform-pill svg {
  width: 18px;
  height: 18px;
}

.store-badge-icon {
  width: 48px;
  min-width: 48px;
  height: 48px;
}

.store-badge-icon svg {
  width: 22px;
  height: 22px;
}

.power-card {
  grid-template-columns: 56px 1fr;
}

.power-card img,
.power-panel img {
  width: 56px;
  min-width: 56px;
  height: 56px;
  border-radius: 16px;
  padding: 6px;
  background: linear-gradient(
    135deg,
    rgba(255, 186, 112, 0.12),
    rgba(255, 111, 156, 0.08)
  );
}

.contact-page-main {
  padding-top: 40px;
}

.contact-shell {
  padding: 34px;
  border-radius: 36px;
  background:
    radial-gradient(
      circle at 10% 8%,
      rgba(255, 186, 112, 0.12),
      transparent 22%
    ),
    radial-gradient(
      circle at 90% 18%,
      rgba(255, 111, 156, 0.1),
      transparent 20%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.84),
      rgba(255, 246, 240, 0.94)
    );
}

.contact-grid {
  gap: 28px;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}

.contact-copy {
  padding: 8px 10px 8px 4px;
}

.contact-copy h1 {
  max-width: 11ch;
  font-size: clamp(2.7rem, 5vw, 4.8rem);
}

.contact-copy p a,
.contact-quick-card a,
.contact-form-meta-card a {
  color: #d45f39;
  font-weight: 800;
}

.contact-quick-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.contact-quick-card,
.contact-form-meta-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(123, 67, 86, 0.1);
  box-shadow: var(--shadow-soft);
}

.contact-card-label {
  display: inline-block;
  margin-bottom: 4px;
  color: #8f684e;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-quick-card strong,
.contact-form-meta-card strong {
  display: block;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.3;
}

.contact-quick-card p,
.contact-form-meta-card span {
  margin: 6px 0 0;
}

.contact-quick-icon,
.contact-method-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(
    135deg,
    rgba(255, 174, 100, 0.18),
    rgba(255, 111, 156, 0.12)
  );
  color: var(--text);
}

.contact-quick-icon svg,
.contact-method-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.contact-ribbon {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.contact-form-card {
  padding: 28px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.88);
}

.contact-form-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.contact-form-meta-card {
  grid-template-columns: 1fr;
  gap: 4px;
  padding: 16px 18px;
}

.contact-form-actions {
  gap: 12px;
}

.contact-methods-wrap {
  margin-top: 24px;
}

.contact-method-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.contact-method {
  padding: 24px;
}

.contact-method-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.contact-method-avatar {
  width: 68px;
  height: 68px;
  min-width: 68px;
  padding: 8px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(123, 67, 86, 0.08);
  box-shadow: var(--shadow-soft);
}

.contact-method-avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.contact-method h3 {
  margin-top: 0;
}

.contact-fruit-1 {
  width: clamp(78px, 10vw, 132px);
  top: 7%;
  right: 7%;
}

.contact-fruit-2 {
  width: clamp(78px, 10vw, 128px);
  left: 3%;
  bottom: 14%;
}

.contact-fruit-3 {
  width: clamp(88px, 11vw, 146px);
  right: 18%;
  bottom: 6%;
}

.contact-fruit-4 {
  position: absolute;
  width: clamp(74px, 10vw, 126px);
  top: 16%;
  left: 40%;
  transform: rotate(-8deg);
  filter: drop-shadow(0 16px 22px rgba(112, 53, 50, 0.14));
  opacity: 0.92;
}

@media (max-width: 1180px) {
  .contact-quick-grid,
  .contact-form-meta,
  .contact-method-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .site-header {
    padding-top: 10px;
  }

  .header-inner {
    padding: 12px 14px;
  }

  .header-decor-fruit {
    display: none;
  }

  .header-panel {
    display: none;
  }

  .header-panel.is-open {
    display: grid;
    gap: 16px;
  }

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

@media (max-width: 860px) {
  .contact-copy h1 {
    max-width: none;
  }

  .contact-fruit-4 {
    display: none;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding-top: 8px;
  }

  .header-wrap {
    gap: 8px;
  }

  .header-inner {
    border-radius: 24px;
  }

  .site-nav {
    padding: 6px;
  }

  .contact-page-main {
    padding-top: 30px;
  }

  .contact-shell,
  .contact-form-card,
  .contact-method {
    padding: 22px;
  }

  .contact-quick-grid,
  .contact-ribbon,
  .contact-form-meta {
    gap: 10px;
  }

  .contact-method-head {
    align-items: center;
  }

  .contact-method-avatar {
    width: 60px;
    height: 60px;
    min-width: 60px;
  }

  .contact-fruit-1,
  .contact-fruit-3 {
    width: 84px;
  }
}

/* --- mobile fit refinements after screenshot QA --- */
@media (max-width: 640px) {
  .hero-copy h1 {
    max-width: none;
    font-size: clamp(2.15rem, 10.6vw, 3.2rem);
    line-height: 1.06;
  }

  .hero-grid,
  .hero-copy,
  .hero-surface,
  .hero-showcase,
  .hero-showcase-grid,
  .phone-stage,
  .showcase-note,
  .contact-grid,
  .contact-shell,
  .contact-form-card,
  .contact-method,
  .store-badge,
  .platform-pill,
  .fruit-pill {
    min-width: 0;
  }

  .hero-copy h1,
  .contact-copy h1,
  .hero-text,
  .contact-copy p,
  .contact-form-card p,
  .contact-method p,
  .contact-quick-card p,
  .store-badge-copy strong,
  .fruit-pill span,
  .platform-pill span,
  .stat-chip strong,
  .stat-chip span {
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .hero-text,
  .contact-copy p,
  .contact-form-card p,
  .contact-method p,
  .contact-quick-card p {
    font-size: 0.97rem;
  }

  .hero-surface,
  .hero-showcase,
  .showcase-note {
    padding: 18px;
  }

  .showcase-note {
    grid-template-columns: 1fr;
  }

  .showcase-note img {
    max-width: 180px;
    margin-inline: auto;
  }

  .platform-strip,
  .contact-ribbon {
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .fruit-pill {
    width: 100%;
    justify-content: flex-start;
  }

  .store-badge {
    grid-template-columns: 44px 1fr;
    gap: 12px;
    padding: 12px 14px;
  }

  .store-badge-copy strong {
    font-size: 0.94rem;
  }

  .power-card {
    grid-template-columns: 52px 1fr;
  }

  .power-card img,
  .power-panel img {
    width: 52px;
    min-width: 52px;
    height: 52px;
  }

  .contact-copy h1 {
    font-size: clamp(2.1rem, 10vw, 3.05rem);
    line-height: 1.06;
  }

  .contact-quick-card {
    grid-template-columns: 1fr;
  }

  .contact-quick-icon {
    margin-bottom: 2px;
  }

  .contact-form-actions {
    display: grid;
    gap: 12px;
  }
}

/* --- Final refinement v3: cleaner header, simpler contact flow, archive logos/frames --- */
.header-launch-cta {
  white-space: nowrap;
}

.platform-logo,
.store-badge-icon img,
.contact-platform-pill img {
  display: block;
  object-fit: contain;
}

.platform-logo {
  width: 20px;
  height: 20px;
}

.store-badge-icon {
  overflow: hidden;
}

.store-badge-icon img {
  width: 28px;
  height: 28px;
}

.hero-surface-clean {
  padding: 28px;
}

.hero-copy h1 {
  max-width: 11.2ch;
  font-size: clamp(2.55rem, 5vw, 4.85rem);
}

.hero-text {
  max-width: 54ch;
  font-size: 1.04rem;
}

.hero-actions-clean {
  margin: 26px 0 18px;
}

.floating-fruits-clean .hero-fruit-1 {
  width: clamp(64px, 8vw, 94px);
  top: -10px;
  right: -6px;
  opacity: 0.88;
}

.floating-fruits-clean .hero-fruit-3 {
  width: clamp(72px, 9vw, 104px);
  bottom: -16px;
  right: 10px;
  opacity: 0.9;
}

.hero-showcase-clean {
  padding: 24px;
}

.hero-showcase-grid-clean {
  grid-template-columns: minmax(0, 1fr) 176px;
  gap: 16px;
}

.phone-stage-clean {
  padding: 0 0 78px;
}

.device-shell {
  position: relative;
  margin-inline: auto;
}

.device-shell-portrait {
  width: min(100%, 318px);
  aspect-ratio: 830 / 1754;
  filter: drop-shadow(0 26px 54px rgba(63, 36, 48, 0.22));
}

.device-shell-landscape {
  width: min(100%, 330px);
  aspect-ratio: 1046 / 508;
  filter: drop-shadow(0 18px 40px rgba(63, 36, 48, 0.14));
}

.device-screen-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 34px;
  background: #f7ece5;
}

.device-frame-overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
}

.showcase-note-clean {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 18px;
}

.showcase-stat-list {
  display: grid;
  gap: 10px;
}

.showcase-note-clean .stat-chip {
  width: 100%;
  justify-content: space-between;
  padding: 14px 16px;
  border-radius: 20px;
}

.contact-grid-clean {
  gap: 24px;
  align-items: start;
}

.contact-copy h1 {
  max-width: 8.7ch;
  font-size: clamp(2.35rem, 4.8vw, 4rem);
}

.contact-copy p {
  max-width: 50ch;
}

.contact-quick-grid-clean {
  margin-top: 22px;
}

.contact-platform-card {
  gap: 14px;
}

.contact-platform-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.contact-platform-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(123, 67, 86, 0.12);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-soft);
  font-weight: 800;
  color: var(--text);
}

.contact-preview-card {
  display: grid;
  grid-template-columns: minmax(0, 330px) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin-top: 18px;
  padding: 18px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(123, 67, 86, 0.1);
  box-shadow: var(--shadow-soft);
}

.contact-preview-card .device-screen-media {
  border-radius: 22px;
}

.contact-form-card-clean {
  padding: 24px;
}

.contact-form-note {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(123, 67, 86, 0.1);
  color: var(--muted);
}

.contact-form-note strong {
  color: var(--text);
}

.contact-form-note a {
  color: var(--text);
  font-weight: 800;
}

.contact-form-actions {
  display: flex;
  margin-top: 4px;
}

.contact-form-actions .button {
  width: 100%;
}

.contact-method-grid {
  margin-top: 8px;
}

.contact-method {
  padding: 20px;
}

.contact-method h3 {
  margin-top: 14px;
  margin-bottom: 8px;
}

@media (max-width: 1180px) {
  .contact-preview-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .header-actions {
    gap: 8px;
  }

  .hero-showcase-grid-clean {
    grid-template-columns: 1fr;
  }

  .showcase-note-clean {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .showcase-note-clean {
    grid-template-columns: 1fr;
  }

  .contact-preview-card {
    gap: 14px;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding-top: 12px;
  }

  .header-actions .header-contact-link {
    width: auto;
    padding-inline: 14px;
    font-size: 0.92rem;
  }

  .header-inner {
    padding: 12px 14px;
    border-radius: 24px;
  }

  .brand img {
    width: 50px;
    height: 50px;
  }

  .brand strong {
    font-size: 0.95rem;
  }

  .brand small {
    font-size: 0.74rem;
  }

  .hero-surface-clean,
  .hero-showcase-clean,
  .contact-form-card-clean,
  .contact-preview-card {
    padding: 18px;
  }

  .hero-copy h1 {
    font-size: clamp(2.15rem, 9vw, 3.25rem);
  }

  .hero-text,
  .contact-copy p,
  .contact-form-card p,
  .contact-method p,
  .contact-quick-card p {
    font-size: 0.96rem;
  }

  .store-badge {
    grid-template-columns: 44px 1fr;
    gap: 12px;
    padding: 12px 14px;
  }

  .store-badge-icon {
    width: 44px;
    height: 44px;
  }

  .store-badge-icon img {
    width: 24px;
    height: 24px;
  }

  .device-shell-portrait {
    width: min(100%, 276px);
  }

  .device-shell-landscape {
    width: min(100%, 284px);
  }

  .contact-copy h1 {
    font-size: clamp(2rem, 9vw, 3rem);
    max-width: 9.5ch;
  }

  .contact-platform-list {
    gap: 8px;
  }

  .contact-platform-pill {
    width: 100%;
    justify-content: center;
  }

  .contact-preview-card {
    display: none;
  }
}

/* --- Header and background refinement: sticky desktop, calmer mobile, richer fruit atmosphere --- */
body {
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(
      circle at 8% 8%,
      rgba(255, 186, 112, 0.34),
      transparent 24%
    ),
    radial-gradient(
      circle at 92% 6%,
      rgba(255, 129, 178, 0.24),
      transparent 20%
    ),
    radial-gradient(
      circle at 18% 82%,
      rgba(141, 222, 128, 0.18),
      transparent 18%
    ),
    radial-gradient(
      circle at 88% 78%,
      rgba(255, 213, 111, 0.2),
      transparent 20%
    ),
    linear-gradient(180deg, #fffaf7 0%, #fff2e8 24%, #fff7f2 54%, #fff1e7 100%);
}

.site-shell {
  position: relative;
  isolation: isolate;
}

.site-shell::before,
.site-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-repeat: no-repeat;
}

.site-shell::before {
  opacity: 0.115;
  background-image:
    url("/assets/img/fruits/lemon.png"), url("/assets/img/fruits/orange.png"),
    url("/assets/img/fruits/lime.png"),
    url("/assets/img/fruits/pomegranate.png"),
    url("/assets/img/fruits/watermelon.png");
  background-size: 138px, 164px, 112px, 156px, 218px;
  background-position:
    -26px 250px,
    calc(100% + 34px) 620px,
    5% 1380px,
    95% 1720px,
    calc(100% + 80px) 2320px;
}

.site-shell::after {
  opacity: 0.085;
  background-image:
    url("/assets/img/fruits/dragon-fruit.png"),
    url("/assets/img/fruits/avocado.png"), url("/assets/img/fruits/longan.png");
  background-size: 172px, 148px, 92px;
  background-position:
    calc(100% - 40px) 1080px,
    -34px 2040px,
    10% 2740px;
}

.site-shell > * {
  position: relative;
  z-index: 1;
}

.site-header {
  position: relative;
  top: auto;
  background: linear-gradient(
    180deg,
    rgba(255, 249, 243, 0.9),
    rgba(255, 247, 241, 0.74)
  );
  border-bottom-color: rgba(123, 67, 86, 0.08);
}

.site-header.is-scrolled,
.site-header.is-open {
  background: linear-gradient(
    180deg,
    rgba(255, 250, 245, 0.98),
    rgba(255, 246, 239, 0.92)
  );
}

.desktop-nav .site-nav,
.header-actions {
  position: relative;
  z-index: 2;
}

@media (min-width: 981px) {
  .site-header {
    position: sticky;
    top: 0;
  }
}

.mobile-actions .button.button-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #fff8f2 !important;
  border-color: transparent;
  box-shadow: 0 16px 30px rgba(255, 131, 76, 0.24);
}

@media (max-width: 980px) {
  .site-header {
    position: relative;
    top: auto;
    padding-top: 8px;
    backdrop-filter: none;
    background: transparent;
    border-bottom: 0;
    box-shadow: none;
  }

  .header-wrap {
    width: min(var(--container), calc(100% - 20px));
  }

  .header-inner {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 28px;
    background: linear-gradient(
      180deg,
      rgba(255, 251, 247, 0.92),
      rgba(255, 245, 238, 0.94)
    );
    border: 1px solid rgba(123, 67, 86, 0.08);
    box-shadow: 0 18px 38px rgba(143, 84, 76, 0.12);
  }

  .header-actions {
    justify-self: end;
    gap: 8px;
  }

  .header-actions .header-link,
  .header-actions .button-primary,
  .header-actions .header-contact-link {
    display: none !important;
  }

  .menu-toggle {
    display: inline-flex;
    flex: 0 0 auto;
  }

  .header-panel {
    top: calc(100% + 10px);
    padding: 16px;
    border-radius: 28px;
    background: linear-gradient(
      180deg,
      rgba(255, 251, 247, 0.98),
      rgba(255, 246, 240, 0.97)
    );
    box-shadow: 0 22px 44px rgba(110, 61, 69, 0.14);
  }

  .mobile-nav,
  .mobile-actions {
    gap: 12px;
  }

  .mobile-nav a,
  .mobile-actions .button,
  .mobile-actions .header-link {
    width: 100%;
    justify-content: flex-start;
    padding: 14px 16px;
    border-radius: 20px;
  }

  .mobile-actions .button.button-primary {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .site-shell::before {
    opacity: 0.09;
    background-size: 98px, 118px, 84px, 116px, 144px;
    background-position:
      -24px 180px,
      calc(100% + 18px) 520px,
      4% 1220px,
      97% 1560px,
      calc(100% + 36px) 2140px;
  }

  .site-shell::after {
    opacity: 0.065;
    background-size: 116px, 102px, 72px;
    background-position:
      calc(100% + 12px) 900px,
      -24px 1880px,
      8% 2460px;
  }

  .header-inner {
    min-height: 74px;
    padding: 10px 12px;
    border-radius: 24px;
  }

  .brand {
    gap: 12px;
  }

  .brand span {
    max-width: min(42vw, 170px);
  }

  .mobile-nav a,
  .mobile-actions .button,
  .mobile-actions .header-link {
    min-height: 52px;
    justify-content: center;
    text-align: center;
  }
}

/* --- final polish: sticky desktop header, calmer mobile header, richer fruit background --- */
body {
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(
      circle at 10% 8%,
      rgba(255, 177, 97, 0.34),
      transparent 24%
    ),
    radial-gradient(
      circle at 88% 6%,
      rgba(255, 120, 166, 0.22),
      transparent 20%
    ),
    radial-gradient(
      circle at 18% 34%,
      rgba(255, 226, 149, 0.16),
      transparent 18%
    ),
    radial-gradient(
      circle at 86% 42%,
      rgba(255, 170, 113, 0.13),
      transparent 18%
    ),
    radial-gradient(
      circle at 12% 86%,
      rgba(132, 216, 124, 0.16),
      transparent 18%
    ),
    radial-gradient(
      circle at 84% 92%,
      rgba(255, 145, 176, 0.14),
      transparent 18%
    ),
    linear-gradient(
      180deg,
      #fffaf7 0%,
      #fff2e8 22%,
      #fff7ef 48%,
      #fff3ea 74%,
      #fff9f4 100%
    );
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background:
    radial-gradient(
      circle at 50% -4%,
      rgba(255, 255, 255, 0.88),
      transparent 34%
    ),
    radial-gradient(
      circle at 8% 22%,
      rgba(255, 206, 146, 0.2),
      transparent 24%
    ),
    radial-gradient(
      circle at 92% 22%,
      rgba(255, 166, 194, 0.14),
      transparent 22%
    ),
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0));
}

.site-shell {
  position: relative;
  isolation: isolate;
}

.site-shell::before,
.site-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-repeat: no-repeat;
}

.site-shell::before {
  opacity: 0.09;
  background-image:
    url("/assets/img/fruits/lemon.png"), url("/assets/img/fruits/orange.png"),
    url("/assets/img/fruits/lime.png"),
    url("/assets/img/fruits/pomegranate.png"),
    url("/assets/img/fruits/watermelon.png"),
    url("/assets/img/fruits/dragon-fruit.png"),
    url("/assets/img/fruits/avocado.png"), url("/assets/img/fruits/longan.png");
  background-size: 130px, 158px, 108px, 148px, 198px, 142px, 118px, 86px;
  background-position:
    -24px 220px,
    calc(100% + 42px) 540px,
    3% 980px,
    96% 1320px,
    calc(100% + 76px) 1780px,
    -38px 2140px,
    93% 2580px,
    10% 3020px;
}

.site-shell::after {
  opacity: 0.06;
  background-image:
    url("/assets/img/fruits/orange.png"),
    url("/assets/img/fruits/watermelon.png"),
    url("/assets/img/fruits/lime.png"), url("/assets/img/fruits/lemon.png"),
    url("/assets/img/fruits/dragon-fruit.png"),
    url("/assets/img/fruits/pomegranate.png"),
    url("/assets/img/fruits/longan.png");
  background-size: 108px, 146px, 88px, 84px, 132px, 118px, 72px;
  background-position:
    12% 420px,
    86% 980px,
    calc(100% - 24px) 1540px,
    8% 1940px,
    88% 2300px,
    14% 2740px,
    82% 3200px;
}

.site-shell > * {
  position: relative;
  z-index: 1;
}

.site-header,
.header-inner,
.header-panel,
.lightbox {
  position: relative;
  z-index: 12;
}

.site-header {
  position: relative;
  top: auto;
  z-index: 30;
  padding: 14px 0 0;
  background: transparent;
  border-bottom: 0;
  backdrop-filter: none;
  box-shadow: none;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: transparent;
  border-bottom-color: transparent;
  box-shadow: none;
}

.header-wrap {
  display: grid;
  gap: 10px;
}

.header-inner {
  overflow: hidden;
  min-height: 0;
  padding: 14px 18px;
  border-radius: 30px;
  border: 1px solid rgba(123, 67, 86, 0.1);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.92),
    rgba(255, 247, 240, 0.96)
  );
  box-shadow: 0 20px 54px rgba(95, 53, 64, 0.1);
  backdrop-filter: blur(18px);
}

.header-panel {
  isolation: isolate;
  background: linear-gradient(
    180deg,
    rgba(255, 251, 247, 0.985),
    rgba(255, 246, 240, 0.975)
  );
  box-shadow: 0 22px 46px rgba(110, 61, 69, 0.14);
}

.mobile-actions .button.button-primary {
  background: linear-gradient(135deg, #ffab43, #ff7a5f 52%, #ff5f8d 100%);
  color: #fff8f2 !important;
  -webkit-text-fill-color: #fff8f2;
  border-color: transparent;
  box-shadow: 0 18px 32px rgba(255, 123, 93, 0.24);
  text-shadow: 0 1px 0 rgba(115, 42, 38, 0.14);
  font-weight: 900;
}

@media (min-width: 981px) {
  .site-header {
    position: sticky;
    top: 0;
  }

  .site-header::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(
      180deg,
      rgba(255, 250, 245, 0.7),
      rgba(255, 250, 245, 0)
    );
  }

  .site-header.is-scrolled .header-inner,
  .site-header.is-open .header-inner {
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.96),
      rgba(255, 247, 240, 0.98)
    );
    box-shadow: 0 22px 56px rgba(95, 53, 64, 0.14);
  }
}

@media (max-width: 980px) {
  .site-header {
    position: relative;
    top: auto;
    padding-top: 8px;
  }

  .header-wrap {
    width: min(var(--container), calc(100% - 20px));
  }

  .header-inner {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 28px;
    background: linear-gradient(
      180deg,
      rgba(255, 251, 247, 0.94),
      rgba(255, 245, 238, 0.96)
    );
    box-shadow: 0 18px 38px rgba(143, 84, 76, 0.12);
  }

  .header-actions {
    justify-self: end;
    gap: 8px;
  }

  .header-actions .header-link,
  .header-actions .button-primary,
  .header-actions .header-contact-link {
    display: none !important;
  }

  .menu-toggle {
    display: inline-flex;
    flex: 0 0 auto;
  }

  .header-panel {
    top: calc(100% + 10px);
    padding: 16px;
    border-radius: 28px;
  }

  .mobile-nav,
  .mobile-actions {
    gap: 12px;
  }

  .mobile-nav a,
  .mobile-actions .button,
  .mobile-actions .header-link {
    width: 100%;
    justify-content: flex-start;
    padding: 14px 16px;
    border-radius: 20px;
  }

  .mobile-actions .button.button-primary {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .site-shell::before {
    opacity: 0.072;
    background-size: 94px, 112px, 88px, 110px, 134px, 108px, 92px, 68px;
    background-position:
      -20px 188px,
      calc(100% + 20px) 470px,
      2% 900px,
      96% 1220px,
      calc(100% + 32px) 1660px,
      -26px 2020px,
      96% 2420px,
      8% 2860px;
  }

  .site-shell::after {
    opacity: 0.048;
    background-size: 84px, 118px, 76px, 70px, 96px, 92px, 60px;
    background-position:
      12% 360px,
      88% 880px,
      calc(100% - 12px) 1380px,
      8% 1780px,
      90% 2160px,
      12% 2520px,
      82% 2940px;
  }

  .header-inner {
    min-height: 74px;
    padding: 10px 12px;
    border-radius: 24px;
  }

  .brand {
    gap: 12px;
  }

  .brand span {
    max-width: min(42vw, 170px);
  }

  .mobile-nav a,
  .mobile-actions .button,
  .mobile-actions .header-link {
    min-height: 52px;
    justify-content: center;
    text-align: center;
  }
}
