:root {
  --red: #dc2322;
  --red-dark: #c8171b;
  --red-soft: #e23830;
  --ink: #121212;
  --muted: #666666;
  --cream: #fff9f5;
  --paper: #fffefa;
  --pink: #f7e2dc;
  --panel: #f4d9d0;
  --yellow: #fff9b7;
  --orange: #ff9b70;
  --line: #df2a28;
  --shadow: 0 20px 45px rgba(172, 47, 41, 0.16);
  --round: 24px;
  --max: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", YuGothic, Meiryo, sans-serif;
  font-weight: 700;
  line-height: 1.75;
  overflow-x: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

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

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 1000;
  padding: 10px 16px;
  border-radius: 999px;
  color: #fff;
  background: var(--red-dark);
  transform: translateY(-140%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

/* Hero */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
/*  background:
    radial-gradient(circle at 87% 20%, rgba(227, 58, 49, 0.18) 0 11vw, transparent 11.2vw),
    linear-gradient(145deg, #fff 0 68%, var(--red) 68% 100%);*/
}

.hero::before {
    content: "";
    position: absolute;
    right: -26vw;
    bottom: 2%;
    z-index: -1;
    width: 64vw;
    height: 52vw;
    background: #9b1e28;
    transform: rotate(-34deg);
    transform-origin: center;
}

.hero-header {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(calc(100% - 56px), 1320px);
  margin-inline: auto;
  padding: 24px 0 10px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: clamp(180px, 24vw, 327px);
}

.top-nav {
  display: flex;
  flex: 1;
  justify-content: flex-end;
  gap: clamp(14px, 2vw, 30px);
  color: var(--red-dark);
  font-size: clamp(0.82rem, 1vw, 1rem);
  letter-spacing: 0.04em;
}

.top-nav a {
  position: relative;
  padding: 6px 0;
}

.top-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.2s ease;
}

.top-nav a:hover::after,
.top-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.store-badge:hover,
.store-badge:focus-visible {
  transform: translateY(-2px);
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.22));
  outline: none;
}

.store-badge--header {
  flex: 0 0 auto;
  width: clamp(134px, 13vw, 174px);
}

.hero-body {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  align-items: center;
  gap: 0;
  padding: clamp(30px, 4.8vw, 80px) 0 clamp(16px, 2.5vw, 40px);
}

.hero-copy {
  width: min(780px, 63vw);
}

.hero-copy img {
  width: 100%;
  filter: drop-shadow(0 18px 24px rgba(116, 29, 25, 0.08));
}

.hero-product {
  justify-self: end;
  width: min(530px, 44vw);
  margin-top: 8vw;
  margin-left: -9vw;
}

.hero-product img {
  width: 100%;
  filter: drop-shadow(0 22px 20px rgba(0, 0, 0, 0.18));
}

.payment-card {
position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: minmax(150px, 220px) 1fr;
    align-items: center;
    gap: clamp(18px, 3vw, 38px);
    margin-bottom: clamp(34px, 5vw, 58px);
    padding: clamp(8px, 2.8vw, 0px) clamp(18px, 3.2vw, 22px);
    border: 6px solid var(--red);
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
}

.paycas-block {
  display: flex;
  justify-content: center;
  border-right: 1px solid rgba(150, 150, 150, 0.35);
}

.paycas-block img {
  width: min(100%, 190px);
}

.payment-logos img {
  width: 100%;
  object-fit: contain;
}

.payment-note {
  grid-column: 2;
  margin: -28px 0 0;
  color: var(--muted);
  text-align: right;
  font-size: clamp(0.75rem, 1.15vw, 0.95rem);
}

.hero-feature-strip {
  position: relative;
  z-index: 3;
  background: var(--red-dark);
  color: #fff;
  padding: clamp(26px, 3.2vw, 46px) 0 clamp(22px, 3vw, 40px);
}

.feature-icon-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: stretch;
}

.feature-icon-card {
  position: relative;
  display: grid;
  min-height: 155px;
  place-items: center;
  align-content: center;
  gap: 10px;
  padding: 8px 14px;
  text-align: center;
  font-size: clamp(0.95rem, 1.5vw, 1.35rem);
  letter-spacing: 0.03em;
}

.feature-icon-card + .feature-icon-card {
  border-left: 1px solid rgba(255, 255, 255, 0.72);
}

.feature-icon-card img {
  max-height: 82px;
  width: auto;
  transition: transform 0.2s ease;
}

.feature-icon-card span {
  display: block;
  white-space: nowrap;
}

.feature-icon-card:hover img,
.feature-icon-card:focus-visible img {
  transform: translateY(-5px);
}


/* Shared section styles */
.section {
  padding: clamp(66px, 8vw, 116px) 0;
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 3vw, 46px);
  margin: 0 0 clamp(40px, 5vw, 68px);
  color: var(--red-dark);
  text-align: center;
  font-size: clamp(2rem, 5vw, 4.1rem);
  line-height: 1.15;
  letter-spacing: 0.06em;
}

.section-title--lines::before,
.section-title--lines::after {
  content: "";
  flex: 1 1 140px;
  max-width: 230px;
  height: 6px;
  border-radius: 999px;
  background: currentColor;
}

.red-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: min(100%, 420px);
  margin: 0 0 22px;
  padding: 10px 32px 12px;
  border-radius: 999px;
  color: #fff;
  background: var(--red);
  font-size: clamp(1.55rem, 3vw, 2.4rem);
  line-height: 1.25;
  letter-spacing: 0.04em;
}

.brand-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: clamp(1.12rem, 2vw, 1.85rem);
  line-height: 1.42;
}

.brand-list li {
  position: relative;
  padding-left: 46px;
}

.brand-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.1em;
  width: 30px;
  height: 32px;
  background: url("../img/icon-gachareji-mark.png") center / contain no-repeat;
}

/* Feature section */
.features-section {
  background: var(--white);
}

.feature-panel {
  margin-top: 34px;
  padding: clamp(24px, 3.6vw, 42px);
  border-radius: var(--round);
  background: var(--panel);
  box-shadow: 0 6px 0 rgba(255, 255, 255, 0.35) inset;
}

.feature-panel--register,
.feature-panel--kitchen,
.feature-panel--touch {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(320px, 0.86fr);
  align-items: center;
  gap: clamp(28px, 4vw, 56px);
}

.feature-panel--kitchen {
  grid-template-columns: minmax(320px, 0.86fr) minmax(0, 0.94fr);
}

.feature-panel--touch {
  margin-top: clamp(38px, 5vw, 66px);
}

.feature-photo {
  margin: 0;
  text-align: center;
}

.feature-photo img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 16px 24px rgba(48, 24, 20, 0.16);
}

.feature-photo figcaption {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  color: #766a66;
  font-size: clamp(0.9rem, 1.4vw, 2.12rem);
  font-weight: 700;
}

.feature-photo figcaption::before {
  content: "";
  width: 48px;
  height: 24px;
  border-left: 3px solid #766a66;
  border-bottom: 3px solid #766a66;
  transform: translateY(-8px);
}

.feature-text {
  min-width: 0;
}

.kitchen-copy {
  display: grid;
  gap: 12px;
}

.kitchen-copy .red-pill:nth-of-type(2) {
  margin-top: 18px;
}

.feature-photo--kitchen img {
  box-shadow: none;
}

.feature-panel--menu {
  padding-bottom: clamp(32px, 4vw, 54px);
}

.feature-menu-top {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.85fr);
  align-items: center;
  gap: clamp(28px, 4vw, 56px);
}

.menu-design-grid {
  display: grid;
  grid-template-columns: minmax(240px, 390px) minmax(320px, 1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
  margin-top: clamp(32px, 4vw, 54px);
}

.menu-preview {
  margin: 0;
}

.menu-preview img {
  width: min(100%, 390px);
  margin-inline: auto;
  filter: drop-shadow(0 12px 14px rgba(82, 45, 40, 0.16));
}

.layer-visual {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 360px;
}

.layer-visual > img {
  width: min(74%, 540px);
  margin-left: 2%;
  filter: drop-shadow(0 18px 22px rgba(88, 30, 20, 0.1));
}

.layer-labels {
  position: absolute;
  /*top: 31%;*/
  right: 0;
  display: grid;
  gap: clamp(16px, 3vw, 44px);
  margin: 0;
  padding: 0;
  list-style: none;
  color: #fff;
  font-size: clamp(0.9rem, 1.5vw, 1.25rem);
}

.layer-labels li {
  position: relative;
  min-width: 112px;
  padding: 7px 22px 8px;
  border-radius: 12px;
  background: var(--orange);
  text-align: center;
}

.layer-labels li::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 100%;
  width: clamp(60px, 11vw, 190px);
  height: 4px;
  background: var(--orange);
  transform: translateY(-50%);
}

.feature-note {
margin: clamp(0px, 3vw, 34px) 0 11px;
    color: #786862;
    font-size: clamp(0.84rem, 1.2vw, 1rem);
    text-align: center;
}

.template-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(18px, 2.8vw, 38px);
}

.template-grid figure {
  margin: 0;
  text-align: center;
}

.template-grid img {
  width: 100%;
  filter: drop-shadow(0 8px 8px rgba(65, 40, 36, 0.15));
}

.template-grid figcaption {
  margin-top: 12px;
  color: #70615c;
  font-size: clamp(0.95rem, 1.45vw, 1.25rem);
}

/* Video */
.video-section {
  padding: clamp(56px, 7vw, 96px) 0;
  color: #fff;
  background: var(--red-dark);
  text-align: center;
}

.video-container {
  display: grid;
  gap: clamp(24px, 3vw, 38px);
  justify-items: center;
}

.video-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 3vw, 42px);
  width: 100%;
  margin: 0;
  font-size: clamp(2.3rem, 5vw, 4.7rem);
  line-height: 1.1;
  letter-spacing: 0.08em;
}

.video-title::before,
.video-title::after {
  content: "";
  flex: 1 1 90px;
  max-width: 190px;
  height: 5px;
  border-radius: 999px;
  background: currentColor;
}

.video-frame {
  width: min(100%, 960px);
  overflow: hidden;
  border: 8px solid rgba(255, 255, 255, 0.95);
  border-radius: 24px;
  background: #000;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.28);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.video-frame:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.34);
}

.video-frame video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
  background: #000;
}

/* Steps */
.steps-section {
  background: #fff;
}

.speech-bubble {
position: relative;
    width: min(980px, 100%);
    margin: 0 auto 60px;
    padding: 28px 40px;
    border: 8px solid var(--red);
    border-radius: 999px;
    background: #fff;
    color: var(--red-dark);
    text-align: center;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    line-height: 1.35;
    letter-spacing: 0.03em;
    box-shadow: 10px 15px 5px 0px rgba(220, 35, 34, 0.15);
    font-weight: 900;
}

.speech-bubble::before {
  bottom: -54px;
  border-right: 24px solid transparent;
  border-left: 24px solid transparent;
  border-top: 54px solid var(--red);

  filter: drop-shadow(0 10px 12px rgba(220, 35, 34, 0.15));
}

.speech-bubble::before,
.speech-bubble::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.speech-bubble::before {
  bottom: -54px;
  border-right: 24px solid transparent;
  border-left: 24px solid transparent;
  border-top: 54px solid var(--red);
}

.speech-bubble::after {
  bottom: -36px;
  border-right: 16px solid transparent;
  border-left: 16px solid transparent;
  border-top: 38px solid #fff;
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 36px);
}

.step-card {
  min-height: 410px;
  padding: clamp(28px, 3.6vw, 48px) clamp(24px, 3vw, 42px);
  border: 3px solid var(--red);
  border-radius: 24px;
  background: #fff;
}

.step-head {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--red);
}

.step-number {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(2.6rem, 4.8vw, 4.15rem);
  line-height: 1;
  letter-spacing: 0.02em;
}

.step-head img {
  width: auto;
  max-height: 52px;
}

.step-card h3 {
  margin: clamp(18px, 2.5vw, 32px) 0 clamp(18px, 2vw, 26px);
  color: var(--red-dark);
  font-size: clamp(1.45rem, 2.4vw, 1.8rem);
  line-height: 1.32;
}

.step-card ul,
.equipment-card ul {
  margin: 0;
  padding-left: 1.1em;
  color: #616161;
  font-size: clamp(0.97rem, 1.45vw, 1.2rem);
  line-height: 1.75;
}

.step-card li::marker,
.equipment-card li::marker {
  color: var(--red);
}

.tiny-note {
  margin: 10px 0 0;
  color: #777;
  font-size: clamp(0.78rem, 1.1vw, 0.95rem);
  line-height: 1.6;
}

.equipment-card {
  margin-top: 34px;
  padding: clamp(28px, 4vw, 48px);
  border: 3px solid var(--red);
  border-radius: 24px;
  background: #fff;
}

.equipment-card h3 {
  margin: 0 0 14px;
  color: var(--red-dark);
  font-size: clamp(1.5rem, 2.3vw, 2.05rem);
}

.equipment-card a {
  color: var(--red-dark);
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* FAQ */
.faq-section {
  background: #f8e1e1;
}

.faq-container {
  width: min(calc(100% - 44px), 1180px);
}



.faq-section .section-title {
  font-size: 3.1rem;
}

.qa-block {
  display: grid;
  gap: clamp(18px, 2.5vw, 28px);
  margin-top: clamp(26px, 3.5vw, 42px);
}

.question,
.answer {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 106px;
}

.question p,
.answer p {
  flex: 1;
  margin: 0;
  border: 3px solid var(--red);
  color: var(--red-dark);
  background: #fff;
  font-size: clamp(1.25rem, 2.35vw, 2.35rem);
  line-height: 1.35;
}

.question p {
padding: clamp(22px, 2.8vw, 34px) clamp(22px, 3vw, 58px) clamp(22px, 2.8vw, 34px) clamp(80px, 7vw, 140px);
    border-radius: 25px;
    box-shadow: 9px 8px 0 var(--red);
}

.answer {
  justify-content: flex-end;
  padding-right: clamp(46px, 6vw, 86px);
}

.answer > p,
.answer > div {
  width: min(880px, 86%);
  margin: 0;
  padding: clamp(22px, 3vw, 38px) clamp(24px, 4vw, 56px);
  border: 3px solid var(--red);
  border-radius: 25px;
  color: var(--red-dark);
  background: var(--yellow);
  box-shadow: 9px 8px 0 var(--red);
  font-size: clamp(1.25rem, 2.2vw, 2.2rem);
  line-height: 1.65;
}

.answer--large > p {
  width: min(890px, 88%);
}

.question span,
.answer > span {
position: absolute;
    z-index: 2;
    display: grid;
    width: clamp(72px, 7vw, 74px);
    height: clamp(72px, 7vw, 74px);
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--red);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    line-height: 1;
}

.question span {
left: -21px;
    top: -25px;;
}

.answer > span {
  right: 0;
  top: -18px;
}

.printer-answer > div {
  width: min(900px, 88%);
  /*padding-top: clamp(26px, 3vw, 40px);*/
  padding-top: 18px;
}

.printer-title {
  margin: 0 0 12px;
  padding: 0 !important;

  border: none !important;
  background: transparent !important;
  box-shadow: none !important;

  color: var(--red-dark);
  font-size: clamp(1.25rem, 2vw, 2rem);
  font-weight: 700;
}

.table-wrap {
  width: 100%;
  margin-top: 12px;
  overflow-x: auto;
}

.table-wrap table {
  width: 100%;
  min-width: 660px;
  border-collapse: collapse;
  background: #fffef8;
  text-align: center;
  font-size: clamp(0.95rem, 1.55vw, 1.45rem);
  line-height: 1.45;
}

.table-wrap th,
.table-wrap td {
  padding: 8px 12px;
  border: 2px solid var(--red);
}

.table-wrap th {
  color: var(--red-dark);
}

.table-wrap td {
  color: var(--ink);
}

.printer-answer > div {
  position: static;
  padding-bottom: 0;
}

.printer-note {
  display: block;
  width: 100%;

  margin: 8px 0 0;
  padding: 0;

  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;

  text-align: right;
  color: var(--red-dark);

  background: none;
  border: none;

  white-space: nowrap;
}
.answer p.printer-note {
  display: block;

  margin: 8px 0 0;
  padding: 0;

  border: none;
  background: transparent;
  box-shadow: none;

  color: var(--red-dark);
  text-align: right;

  font-size: 14px;
  font-weight: 700;
  line-height: 2;

  white-space: nowrap;
}
/* Plans */
.plans-section {
  background: #fff;
}

.plan-table {
  display: grid;
  grid-template-columns: minmax(160px, 220px) repeat(3, minmax(280px, 1fr));
  border: 3px solid var(--red);
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
}

.plan-table > * {
  border-right: 3px solid var(--red);
  border-bottom: 3px solid var(--red);
}

.plan-table > *:nth-child(4n) {
  border-right: 0;
}
.plan-card h3 {
  white-space: nowrap;
  font-size: clamp(1rem, 1.6vw, 1.65rem);
}


.plan-card,
.plan-label,
.plan-cell {
  padding: clamp(22px, 3vw, 23px);
}

.plan-card {
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
}

.plan-card h3 {
  margin: 0 0 12px;
  font-size: clamp(1.3rem, 2vw, 1.65rem);
  line-height: 1.35;
}

.price {
  display: inline-flex;
  min-width: min(100%, 270px);
  justify-content: center;
  margin: 0;
  padding: 8px 24px 10px;
  border-radius: 999px;
  color: #fff;
  background: var(--red);
  font-size: clamp(1.15rem, 1.9vw, 1.7rem);
  line-height: 1.2;
}

.plan-label {
  display: grid;
  align-items: center;
  color: var(--ink);
  font-size: clamp(1.2rem, 2vw, 1.75rem);
}

.plan-cell {
  display: grid;
  align-content: center;
  gap: 10px;
  color: #6b6b6b;
  font-size: clamp(1rem, 1.65vw, 1.5rem);
  line-height: 1.6;
  text-align: center;
}

.plan-cell--center {
  justify-content: center;
  color: #555;
  font-size: clamp(2rem, 4vw, 4rem);
}

.plan-cell ul {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  width: fit-content;
}

.plan-cell li {
  position: relative;
  padding-left: 0.7em;
  text-align: left;
}

.plan-cell li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
}

.plan-cell small {
  display: block;
  font-size: 0.6em;
}

.red-text {
  color: var(--red-dark) !important;
}

.plan-apply {
  grid-column: 1 / -1;
  padding: clamp(26px, 3vw, 42px);
  border-right: 0;
  border-bottom: 0;
  text-align: center;
}

.plan-apply p {
  margin: 0 0 22px;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
}

.apply-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(20px, 5vw, 86px);
}

.apply-links a {
  color: var(--red-dark);
  font-size: clamp(1.05rem, 1.7vw, 1.45rem);
  text-decoration: underline;
  text-underline-offset: 5px;
}

/* Download */
.download-section {
  position: relative;
  min-height: clamp(420px, 52vw, 750px);
  overflow: hidden;
  color: #fff;
  background: var(--red);
}

.download-section::before,
.download-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.download-section::before {
  right: -4vw;
  top: -12vw;
  width: 26vw;
  height: 26vw;
}

.download-section::after {
  left: -6vw;
  bottom: 10vw;
  width: 27vw;
  height: 27vw;
}

.download-content {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: clamp(340px, 42vw, 590px);
  place-items: center;
  align-content: center;
  text-align: center;
}

.download-content h2 {
  margin: 0 0 14px;
  font-size: clamp(2.8rem, 6vw, 5.8rem);
  line-height: 1.1;
  letter-spacing: 0.06em;
}

.download-content p {
  margin: 0 0 18px;
  font-size: clamp(1rem, 1.8vw, 1.45rem);
}

.store-badge--download {
  width: clamp(220px, 26vw, 311px);
}

.footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 160px;
  color: var(--red);
}

.footer img {
  width: min(270px, 48vw);
}

.download-section .footer {
  width: 100%;
  max-width: none;
  padding-left: max(22px, calc((100vw - var(--max)) / 2));
  background: #fff;
}

/* Floating CTA */
.floating-cta {
  position: fixed;
  right: clamp(16px, 2vw, 28px);
  bottom: clamp(16px, 2vw, 28px);
  z-index: 20;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 152px;
  padding: 12px 22px 14px;
  border-radius: 999px;
  color: #fff;
  background: var(--red-dark);
  box-shadow: 0 12px 28px rgba(138, 18, 20, 0.28);
  transform: translateY(120px);
  opacity: 0;
  transition: transform 0.25s ease, opacity 0.25s ease, background 0.2s ease;
}

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

.floating-cta:hover,
.floating-cta:focus-visible {
  background: #a90f12;
  outline: none;
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

/* Responsive */
@media (max-width: 1120px) {
  .top-nav {
    display: none;
  }

  .hero-body {
    grid-template-columns: 1fr 0.82fr;
  }

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

  .feature-icon-card:nth-child(4) {
    border-left: 0;
  }

  .feature-icon-card:nth-child(n + 4) {
    border-top: 1px solid rgba(255, 255, 255, 0.72);
  }
}

@media (max-width: 900px) {
  .container,
  .faq-container {
    width: min(calc(100% - 28px), var(--max));
  }


  .hero {
    background:
      radial-gradient(circle at 93% 13%, rgba(227, 58, 49, 0.18) 0 120px, transparent 122px),
      linear-gradient(160deg, #fff 0 72%, var(--red) 72% 100%);
  }

  .hero::before {
    right: -50vw;
    bottom: 31%;
    width: 110vw;
    height: 90vw;
  }

  .hero-header {
    width: min(calc(100% - 28px), 1320px);
    padding-top: 16px;
  }

  .store-badge--header {
    width: 132px;
  }

  .hero-body {
    grid-template-columns: 1fr;
    padding-top: 24px;
  }

  .hero-copy {
    width: min(100%, 680px);
    margin-inline: auto;
  }

  .hero-product {
    width: min(82%, 480px);
    margin: -80px auto 0;
    justify-self: center;
  }

  .payment-card {
        grid-template-columns: 60px 1fr;
        /* gap: 12px; */
        align-items: center;
  }

  .paycas-block {
    border-right: 1px solid rgba(150,150,150,.35);
    border-bottom: 0;
    padding-bottom: 0;
    padding-right: 12px;
  }

  .paycas-block img {
    width: 100%;
    max-width: 110px;
  }

  .payment-logos img {
    width: 100%;
  }

  .payment-note {
text-align: right;
        margin-top: -15px;
        font-size: 8px;
        left: 10px;
        margin-right: 10px;
  }

  .section-title--lines::before,
  .section-title--lines::after {
    max-width: 70px;
    height: 4px;
  }

  .feature-panel--register,
  .feature-panel--kitchen,
  .feature-panel--touch,
  .feature-menu-top,
  .menu-design-grid {
    grid-template-columns: 1fr;
  }

  .feature-panel--kitchen .feature-photo {
    order: -1;
  }

  .feature-text {
    text-align: left;
  }

  .red-pill {
    width: 100%;
  }

  .layer-visual > img {
    width: 72%;
  }

  .layer-labels li::before {
    width: 13vw;
  }

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

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

  .step-card {
    min-height: auto;
  }

  .speech-bubble {
    border-radius: 40px;
    border-width: 5px;
  }

  .speech-bubble::before {
    bottom: -38px;
    border-right-width: 17px;
    border-left-width: 17px;
    border-top-width: 38px;
  }

  .speech-bubble::after {
    bottom: -26px;
    border-right-width: 12px;
    border-left-width: 12px;
    border-top-width: 27px;
  }

  .question p,
  .answer > p,
  .answer > div {
    font-size: clamp(1.05rem, 4vw, 1.55rem);
  }

  .question p {
    padding-left: 76px;
    box-shadow: 7px 9px 0 var(--red);
  }

  .answer {
    padding-right: 36px;
  }

  .answer > p,
  .answer > div {
    width: calc(100% - 26px);
    box-shadow: 7px 9px 0 var(--red);
  }

  .question span,
  .answer > span {
    width: 58px;
    height: 58px;
  }

  .plan-table {
    grid-template-columns: 170px repeat(3, 270px);
    overflow-x: auto;
    min-width: 0;
    border-radius: 18px;
  }

  .plan-card,
  .plan-label,
  .plan-cell {
    padding: 22px;
  }
}

@media (max-width: 620px) {
  body {
    line-height: 1.65;
  }

  .brand {
    width: 156px;
  }

  .store-badge--header {
    width: 118px;
  }

  .hero-body {
    padding-top: 12px;
  }

  .hero-product {
    width: 65%;
    margin-top: -25px;
    justify-self: center;
  }

  .payment-card {
    padding: 9px;
    border:none;
    padding-bottom: 2px;
  }

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

  .feature-icon-card {
    min-height: 132px;
    font-size: 0.95rem;
  }

  .feature-icon-card:nth-child(odd) {
    border-left: 0;
  }

  .feature-icon-card:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.72);
  }

  .feature-icon-card img {
    max-height: 62px;
  }

  .section {
    padding: 54px 0;
  }

  .section-title {
    gap: 9px;
    margin-bottom: 32px;
  }

  .section-title--lines::before,
  .section-title--lines::after {
    flex-basis: 34px;
    max-width: 44px;
  }

  .feature-panel {
    padding: 18px;
    border-radius: 18px;
  }

  .feature-photo figcaption::before {
    width: 34px;
  }

  .brand-list li {
    padding-left: 34px;
  }

  .brand-list li::before {
    width: 24px;
    height: 26px;
  }

  .layer-visual {
    min-height: 280px;
  }

  .layer-visual > img {
    width: 77%;
  }

  .layer-labels {
    top: 18%;
    gap: 24px;
    font-size: 0.8rem;
    z-index: -1;
  }

  .layer-labels li {
    min-width: 80px;
    padding: 5px 10px;
    border-radius: 8px;
  }

  .layer-labels li::before {
    height: 3px;
    width: 16vw;
  }

  .template-grid {
    gap: 14px;
  }

  .template-grid figcaption {
    font-size: 0.9rem;
  }

  .video-section {
    min-height: 320px;
  }

  .step-card,
  .equipment-card {
    padding: 22px;
    border-width: 2px;
  }

  .question p {
    padding: 20px 18px 20px 64px;
  }

  .answer {
    padding-right: 24px;
  }

  .answer > p,
  .answer > div {
    padding: 22px 18px;
  }

  .question span,
  .answer > span {
    width: 48px;
    height: 48px;
    font-size: 2.1rem;
  }

  .table-wrap table {
    min-width: 600px;
  }

  .plan-table {
    grid-template-columns: 132px repeat(3, 245px);
  }

  .plan-card,
  .plan-label,
  .plan-cell,
  .plan-apply {
    padding: 18px;
  }

  .floating-cta {
    right: 12px;
    bottom: 12px;
    min-width: 132px;
    padding: 10px 16px 12px;
    font-size: 0.9rem;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

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

/* Floating and hover animation effects */
@keyframes soft-float {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
  50% { transform: translate3d(0, -14px, 0) rotate(0.6deg); }
}

@keyframes soft-float-reverse {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
  50% { transform: translate3d(0, 12px, 0) rotate(-0.5deg); }
}

@keyframes gentle-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.035); }
}

/*.hero-product,
.menu-preview,
.layer-visual > img,
.paycas-block img,
.store-badge--download {
  animation: soft-float 4.8s ease-in-out infinite;
  will-change: transform;
}

.hero-copy,
.feature-photo--kitchen img,
.payment-logos img {
  animation: soft-float-reverse 5.6s ease-in-out infinite;
  will-change: transform;
}
*/
.menu-preview { animation-delay: 0.25s; }
.layer-visual > img { animation-delay: 0.55s; }
.feature-photo--kitchen img { animation-delay: 0.4s; }
.paycas-block img { animation-delay: 0.7s; }
.store-badge--download { animation-delay: 0.2s; }

.menu-preview img,
.template-grid img,
.feature-photo img,
.step-card,
.plan-card,
.qa-block,
.feature-icon-card,
.layer-labels li {
  transition:
    transform 0.28s ease,
    filter 0.28s ease,
    box-shadow 0.28s ease;
}

.menu-preview:hover img,
.template-grid figure:hover img,
.feature-photo:hover img {
  transform: translateY(-10px) scale(1.025);
  filter: drop-shadow(0 18px 18px rgba(82, 45, 40, 0.22));
}

.layer-visual:hover > img {
  animation-play-state: paused;
  transform: translateY(-12px) scale(1.03);
  filter: drop-shadow(0 28px 24px rgba(88, 30, 20, 0.16));
}

.layer-labels li:hover {
  transform: translateX(-8px);
  box-shadow: 0 10px 18px rgba(255, 120, 78, 0.28);
}

.feature-icon-card:hover,
.feature-icon-card:focus-visible {
  transform: translateY(-8px);
}

.step-card:hover,
.plan-card:hover,
.qa-block:hover {
/*  transform: translateY(-8px);
  box-shadow: 0 18px 34px rgba(172, 47, 41, 0.13);*/
}

.red-pill,
.price,
.floating-cta {
  animation: gentle-pulse 3.8s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .hero-product,
  .menu-preview,
  .layer-visual > img,
  .paycas-block img,
  .store-badge--download,
  .hero-copy,
  .feature-photo--kitchen img,
  .payment-logos img,
  .red-pill,
  .price,
  .floating-cta {
    animation: none !important;
  }
}

/* Mobile table fixes: keep FAQ/pricing tables inside the viewport */
@media (max-width: 620px) {
  .printer-answer {
    padding-right: 0;
  }

  .printer-answer > div {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .table-wrap {
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .table-wrap table {
    min-width: 0;
    width: 100%;
    table-layout: fixed;
    font-size: clamp(0.62rem, 2.7vw, 0.78rem);
  }

  .table-wrap th,
  .table-wrap td {
    padding: 6px 4px;
    word-break: keep-all;
  }

  .printer-note {
    font-size: 10px;
    text-align: right;
    margin-top: 4px;
  }

.answer p.printer-note {
    font-size: 10px;
    text-align: right;
    margin-top: 6px;
  }

  .plan-table {
    grid-template-columns: 72px repeat(3, minmax(0, 1fr));
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .plan-card,
  .plan-label,
  .plan-cell,
  .plan-apply {
    padding: 10px 8px;
  }

  .plan-card h3 {
    font-size: clamp(0.68rem, 2.7vw, 0.9rem);
    line-height: 1.35;
  }



  .price {
    min-width: 0;
    width: 100%;
    padding: 6px 4px 7px;
    font-size: clamp(0.68rem, 2.7vw, 0.86rem);
  }

  .plan-label {
    font-size: clamp(0.72rem, 2.8vw, 0.95rem);
    line-height: 1.45;
  }

  .plan-cell {
    font-size: clamp(0.62rem, 2.55vw, 0.82rem);
    line-height: 1.5;
    word-break: break-word;
  }

  .plan-cell--center {
    font-size: 1.4rem;
  }

  .plan-cell ul {
    gap: 6px;
    padding-left: 0.8em;
  }

  .plan-apply p,
  .apply-links a {
    font-size: clamp(0.8rem, 3vw, 1rem);
  }

  h2#faq-title {
    font-size: 2.2rem;
}
h2#features-title {
    font-size: 3rem;
}
h2#steps-title {
    font-size: 1.4rem;
}
}

@media (max-width: 620px) {
  .plan-table {
    grid-template-columns: 64px repeat(3, minmax(86px, 1fr));
    width: 100%;
    overflow: visible;
  }

  .plan-card,
  .plan-label,
  .plan-cell,
  .plan-apply {
    padding: 8px 5px;
  }

  .plan-card h3 {
    white-space: normal;
    font-size: 9px;
    line-height: 1.25;
    letter-spacing: 0;
  }

  .price {
    font-size: 10px;
    padding: 5px 3px;
    white-space: nowrap;
  }

  .plan-label {
    font-size: 11px;
    line-height: 1.35;
  }

  .plan-cell {
    font-size: 10px;
    line-height: 1.45;
  }

  .plan-cell ul {
    padding-left: 1em;
    gap: 4px;
  }

  .plan-cell small {
    font-size: 8px;
  }
}
@media (max-width: 620px) {
  .printer-answer {
    padding-right: 0;
  }

  .printer-answer > div {
    width: 100%;
    padding: 18px 8px;
    overflow: visible;
  }

  .table-wrap {
    overflow: visible;
  }

  .table-wrap table {
    width: 100%;
    min-width: 0;
    table-layout: fixed;
    font-size: 10px;
  }

  .table-wrap th,
  .table-wrap td {
    padding: 6px 2px;
    white-space: nowrap;
    word-break: keep-all;
  }

  .table-wrap th:nth-child(1),
  .table-wrap td:nth-child(1) {
    width: 17%;
  }

  .table-wrap th:nth-child(2),
  .table-wrap td:nth-child(2) {
    width: 18%;
    font-size: 12px;
  }

  .table-wrap th:nth-child(3),
  .table-wrap td:nth-child(3) {
    width: 20%;
    font-size: 12px;
  }

  .table-wrap th:nth-child(4),
  .table-wrap td:nth-child(4),
  .table-wrap th:nth-child(5),
  .table-wrap td:nth-child(5),
  .table-wrap th:nth-child(6),
  .table-wrap td:nth-child(6) {
    width: 16%;
    font-size: 12px;
  }

  .printer-note,
  .answer p.printer-note {
    font-size: 9px;
    white-space: normal;
  }
}

.hero {
  position: relative;
}

.hero-disclaimer {
    position: absolute;
    right: 370px;
    bottom: 600px;
    z-index: 10;
    /* background: #dc2322; */
    color: #fff;
    padding: 10px 30px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    /* border: 2px solid #dc2322; */
}

.hero-disclaimer {
  white-space: nowrap;
  line-height: 1;
  transform: translateZ(0);
  -webkit-font-smoothing: antialiased;
}

@media (max-width: 900px) {
  .hero-disclaimer {
position: absolute;
        right: -1%;
        bottom: 54%;
        font-size: 10px;
        color: #ffffff;
  }
}

/* FAQ stagger layout */
.question {
  justify-content: flex-start;
}

.answer {
  justify-content: flex-end;
  padding-right: 0;
}

.question p {
  width: 88%;
  flex: 0 0 auto;
}

.answer > p,
.answer > div {
  width: 88%;
  flex: 0 0 auto;
}

.question span {
  left: -22px;
}

.answer > span {
  right: -42px;
}

@media (max-width: 620px) {
  .question p,
  .answer > p,
  .answer > div {
    width: 92%;
    margin: 0;
  }

  .question p {
    padding: 18px 18px 18px 54px;
  }

  .answer > p,
  .answer > div {
    padding: 18px;
  }

  .question span {
    left: -10px;
  }

  .answer > span {
    right: -10px;
  }

  .qa-block {
    gap: 16px;
    margin-top: 16px;
  }

  .question,
  .answer {
    min-height: auto;
  }
}

@media (max-width: 620px) {
  .speech-bubble {
    font-size: 1.5rem;
    line-height: 1.2;
    padding: 20px 24px;
  }
}

/* Equal spacing between FAQ items */
.qa-block {
  display: flex;
  flex-direction: column;
  gap: 16px; /* space between Q and A */
  margin-top: 24px;
}

.question,
.answer {
  margin: 0;
}

.question p,
.answer > p,
.answer > div {
  margin: 0;
}
@media (max-width: 620px) {
  .qa-block {
    gap: 12px;
    margin-top: 20px;
  }
}

.mobile-br {
  display: none;
}

@media (max-width: 620px) {
  .mobile-br {
    display: inline;
  }
}

.download-app-item img,
.download-app-single img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.download-new {
  background: #dc2322;
  padding: 60px 0 0;
}

.download-card-html {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto 40px;
  padding: 60px 40px;

  background: #ffffff;
  border: 3px solid rgba(255,255,255,.8);
  border-radius: 36px;

  text-align: center;
  color: #fff;
}

.download-card-html h3 {
  margin: 0 0 40px;
  font-size: clamp(1.8rem, 3vw, 3.2rem);
  line-height: 1.4;
  font-weight: 900;
  color: #d7401d;
}

.download-card-html .yellow {
    color: #ffffff;
    background: #d74014;
    padding: 10px;
}

.download-app-grid {
  display: grid;
  grid-template-columns: repeat(2, auto);
  justify-content: center;
  gap: 20px 60px;
  margin-bottom: 40px;
  color: #5a5a5a;
}

.download-app-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: clamp(1.2rem, 2vw, 2rem);
}

.download-app-item img {
  width: 34px;
}

.download-app-single {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 40px;
  color: #5a5a5a;
}

.download-app-single img {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
}

.download-app-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.download-app-text span {
  font-size: clamp(1.1rem, 2vw, 2rem);
  font-weight: 700;
}

.download-app-text small {
  margin-top: 4px;
  font-size: .7em;
}

.download-app-single small {
  font-size: .7em;
}

.download-store {
  display: inline-block;
}

.download-store img {
  width: 260px;
}

@media (max-width: 620px) {
  .download-card-html {
    padding: 32px 20px;
    border-radius: 24px;
  }

  .download-app-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .download-app-item{}
  .download-app-single {
    justify-content: center;
  }

  .download-store img {
    width: 200px;
  }
}
@media (max-width: 768px) {
  .download-card-html h3 {
    font-size: 1.10rem;
    line-height: 1.4;
    margin-bottom: 28px;
  }
}

@media (max-width: 620px) {
  .plan-cell ul {
    padding-left: 0.4em;
  }
}

@media (max-width: 620px) {
  .hero-product {
    position: relative;
    top: 0px;
  }
}


@media (max-width: 620px) {

  .feature-icon-card {
    border-left: none;
    border-top: none;
  }

  /* vertical center line */
  .feature-icon-card:nth-child(even) {
    border-left: 1px solid rgba(255,255,255,.72);
  }

  /* horizontal lines */
  .feature-icon-card:nth-child(n + 3) {
    border-top: 1px solid rgba(255,255,255,.72);
  }
}

.mobile-only-br {
  display: none;
}

@media (max-width: 620px) {
  .mobile-only-br {
    display: block;
  }
}

@media (max-width: 620px) {
  .faq-container {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.mobile-only-break {
  display: none;
}

@media (max-width: 620px) {
  .mobile-only-break {
    display: inline;
  }
}
.mobile-only-break {
  display: none;
}

@media (max-width: 620px) {
  .mobile-only-break {
    display: inline;
  }
}

@media (max-width: 620px) {
  .table-wrap td:first-child {
    font-size: 8px;
  }
}

/* iPhone 17 Pro / narrow mobile table fix */
@media (max-width: 430px) {
  .faq-container {
    width: 100%;
    padding-left: 12px;
    padding-right: 12px;
  }

  .printer-answer > div {
    width: 100%;
    padding: 16px 6px;
  }

  .table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .table-wrap table {
    table-layout: auto;
    font-size: 9px;
  }

  .table-wrap th,
  .table-wrap td {
    padding: 5px 1px;
    white-space: normal;
    word-break: keep-all;
  }

  .answer > span {
    right: -6px;
  }
}
@media (max-width: 430px) {
  #steps-title {
    font-size: 1.2rem;
    letter-spacing: 0;
  }
}

.payment-mobile-only {
  display: none;
}

@media (max-width: 900px) {
  .paycas-block,
  .payment-logos {
    display: none;
  }

  .payment-mobile-only {
    display: block;
    grid-column: 1 / -1;
  }

  .payment-mobile-only img {
    width: 100%;
    display: block;
  }

  .payment-note {
    grid-column: 1 / -1;
  }
}
@media (max-width: 620px) {
  .download-app-grid {
    grid-template-columns: 1fr;
    justify-content: stretch;
  }

  .download-app-item {
    justify-content: flex-start;
    text-align: left;
    width: fit-content;
    margin: 0 auto;
  }
}

@media (max-width: 620px) {
  .download-app-grid {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start !important;

    width: fit-content;
    margin: 0 auto 40px;
  }

  .download-app-item {
    justify-content: flex-start !important;
    text-align: left;
    width: auto;
  }

  .download-store {
    display: block;
    text-align: center;
  }

  .download-store img {
    margin: 0 auto;
  }
}

@media (max-width: 620px) {
  .download-app-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .download-app-item {
    width: 100%; /* fixed width */
    justify-content: flex-start;
    text-align: left;
  }
}

/* iPhone download UX fix */
.download-store.is-disabled {
  opacity: 0.45;
  pointer-events: none;
  cursor: not-allowed;
  filter: grayscale(1);
}

.download-device-note {
  margin: 14px auto 0;
  max-width: 520px;
  color: #d7401d;
  font-size: 0.80rem;
  line-height: 1.6;
  font-weight: 700;
  text-align: center;
}

@media (max-width: 620px) {
  .download-device-note {
    font-size: 0.80rem;
    line-height: 1.5;
  }
}

.download-app-text {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.download-app-text small {
  display: block;
}

@media (max-width: 620px) {
  .feature-panel--touch {
    display: grid;
    grid-template-columns: 1fr;
  }

  .feature-panel--touch .red-pill {
    order: 1;
  }

  .feature-panel--touch .feature-photo {
    order: 2;
  }

  .feature-panel--touch .brand-list {
    order: 3;
  }

  .feature-panel--touch .feature-text {
    display: contents;
  }
}

@media (max-width: 620px) {
  .feature-panel--kitchen {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .feature-panel--kitchen .feature-text {
    display: contents;
  }

  .feature-panel--kitchen .red-pill:nth-of-type(1) {
    order: 1;
  }

  .feature-panel--kitchen .red-pill:nth-of-type(2) {
    order: 2;
    margin-top: 0;
  }

  .feature-panel--kitchen .feature-photo {
    order: 3;
  }

  .feature-panel--kitchen .brand-list:nth-of-type(1) {
    order: 4;
  }

  .feature-panel--kitchen .brand-list:nth-of-type(2) {
    order: 5;
  }
}
@media (max-width: 620px) {
  .feature-panel--kitchen .red-pill {
    margin-bottom: 0px;
  }
}

@media (max-width: 620px) {
  .feature-panel--register {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .feature-panel--register .feature-text {
    display: contents;
  }

  .feature-panel--register .red-pill {
    order: 1;
    margin-bottom: 8px;
  }

  .feature-panel--register .feature-photo {
    order: 2;
  }

  .feature-panel--register .brand-list {
    order: 3;
  }
}

@media (max-width: 620px) {
  .feature-menu-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .feature-menu-top .feature-text {
    display: contents;
  }

  .feature-menu-top .red-pill {
    order: 1;
    margin-bottom: 8px;
  }

  .feature-menu-top .feature-photo {
    order: 2;
  }

  .feature-menu-top .brand-list {
    order: 3;
  }
}

.download-store.is-disabled {
  opacity: 0.45;
  pointer-events: auto;
  cursor: not-allowed;
  filter: grayscale(1);
}

.download-device-note{
  font-size: font-size: clamp(0.8rem, 1.6vw, 1rem) !important;
}

/* ── Contact Section ──────────────────────────────────────────── */
.contact-section {
  background: var(--cream);
}

.contact-form {
  max-width: 780px;
  margin: 0 auto;
  display: grid;
  gap: 32px;
}

.contact-fieldset {
  margin: 0;
  padding: clamp(24px, 3vw, 36px) clamp(20px, 3vw, 40px);
  border: 2px solid var(--panel);
  border-radius: var(--round);
  background: #fff;
  box-shadow: 0 4px 18px rgba(172, 47, 41, 0.07);
}

.contact-legend {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 8px;
  color: var(--red-dark);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  font-weight: 900;
  letter-spacing: 0.04em;
}

.contact-required {
  display: inline-flex;
  align-items: center;
  padding: 2px 10px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.contact-optional {
  display: inline-flex;
  align-items: center;
  padding: 2px 10px;
  border-radius: 999px;
  background: var(--muted);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
}

.contact-checks {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 18px;
}

.contact-checks--grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 32px;
}

.contact-check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  cursor: pointer;
}

.contact-check-item input[type="checkbox"],
.contact-check-item input[type="radio"] {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  accent-color: var(--red);
  cursor: pointer;
}

.contact-fields {
  display: grid;
  gap: 20px;
  margin-top: 18px;
}

.contact-field-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  align-items: start;
  gap: 12px;
}

.contact-label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 10px;
  font-size: clamp(0.9rem, 1.3vw, 1rem);
  font-weight: 800;
  color: var(--ink);
}

.contact-input {
  width: 100%;
  padding: 10px 14px;
  border: 2px solid var(--panel);
  border-radius: 10px;
  font-family: inherit;
  font-size: clamp(0.9rem, 1.3vw, 1rem);
  font-weight: 700;
  color: var(--ink);
  background: var(--paper);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}

.contact-input:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(220, 35, 34, 0.12);
}

.contact-textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-submit {
  text-align: center;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  padding: 16px 48px;
  border: none;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-family: inherit;
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
  font-weight: 900;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 8px 24px rgba(220, 35, 34, 0.28);
}

.contact-btn:hover,
.contact-btn:focus-visible {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(220, 35, 34, 0.36);
}

.contact-btn:active {
  transform: translateY(0);
}

@media (max-width: 620px) {
  .contact-checks--grid {
    grid-template-columns: 1fr;
  }

  .contact-field-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .contact-label {
    padding-top: 0;
  }
}
/* ── Contact fixes ──────────────────────────────────────────────── */
.contact-check-item {
  color: var(--ink);
}

.contact-fieldset {
  border: 1.5px solid var(--panel);
  box-shadow: none;
}

.contact-form {
  gap: 16px;
  background: #fff;
  border-radius: var(--round);
  padding: clamp(28px, 4vw, 48px);
  box-shadow: 0 6px 32px rgba(172, 47, 41, 0.09);
}

.contact-fieldset {
  border-radius: 14px;
  background: var(--cream);
}

@media (max-width: 620px) {
  .faq-container {
    width: 100%;
    padding-left: 24px;
    padding-right: 24px;
  }

  .question p,
  .answer > p,
  .answer > div {
    width: calc(100% - 36px);
    font-size: 1rem;
    line-height: 1.55;
  }

  .question p {
    padding: 18px 18px 18px 52px;
  }

  .answer > p,
  .answer > div {
    padding: 18px 18px;
  }

  .question span {
    left: 0;
  }

  .answer > span {
    right: 0;
  }

  .qa-block {
    gap: 16px;
  }
}

@media (max-width: 430px) {
  .faq-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .question p,
  .answer > p,
  .answer > div {
    width: calc(100% - 28px);
    font-size: 0.95rem;
  }
}

@media (max-width: 430px) {
  .printer-answer > div {
    width: calc(100% - 28px);
    padding: 16px 10px;
    overflow: visible;
  }

  .table-wrap {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .table-wrap table {
    width: 100%;
    min-width: 0;
    table-layout: fixed;
    font-size: 8px;
  }

  .table-wrap th,
  .table-wrap td {
    padding: 4px 1px;
    white-space: normal;
    word-break: keep-all;
  }

  .table-wrap small {
    font-size: 0.7em;
  }

  .printer-note,
  .answer p.printer-note {
    font-size: 8px;
    white-space: normal;
    text-align: right;
  }
}