:root {
  --ink: #0e1512;
  --ink-2: #18231f;
  --paper: #f5f1e8;
  --surface: #fffdf8;
  --mist: #e7eee8;
  --line: rgba(14, 21, 18, 0.14);
  --gold: #c5963d;
  --amber: #f3c96b;
  --green: #2f7f65;
  --wine: #7b3142;
  --steel: #d9dedb;
  --shadow: 0 26px 70px rgba(14, 21, 18, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

.section-inner {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.site-header {
  position: relative;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 16px clamp(18px, 4vw, 54px);
  color: var(--ink);
  background: rgba(245, 241, 232, 0.96);
  box-shadow: 0 12px 34px rgba(14, 21, 18, 0.1);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(245, 241, 232, 0.94);
  box-shadow: 0 12px 34px rgba(14, 21, 18, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--ink);
  border-radius: 8px;
  color: #fff;
  background: var(--ink);
  font-size: 0.82rem;
}

.is-scrolled .brand-mark {
  color: #fff;
  border-color: var(--ink);
  background: var(--ink);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.95rem;
  font-weight: 750;
}

.desktop-nav a {
  opacity: 0.82;
}

.desktop-nav a:hover {
  opacity: 1;
}

.header-cta,
.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 8px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.header-cta,
.primary-btn {
  color: #10130d;
  background: var(--amber);
  box-shadow: 0 14px 42px rgba(197, 150, 61, 0.28);
}

.secondary-btn {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.1);
}

.hero {
  position: relative;
  min-height: calc(94vh - 76px);
  display: grid;
  align-items: end;
  padding-top: 44px;
  overflow: hidden;
  isolation: isolate;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -3;
}

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

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(8, 13, 11, 0.94) 0%, rgba(14, 21, 18, 0.82) 38%, rgba(14, 21, 18, 0.18) 74%),
    linear-gradient(0deg, rgba(8, 13, 11, 0.86) 0%, rgba(8, 13, 11, 0.08) 58%);
}

.hero-content {
  width: min(820px, calc(100% - 36px));
  margin: 0 0 clamp(32px, 7vw, 84px) clamp(18px, 6vw, 76px);
  color: #fff;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--amber);
  font-size: 0.77rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 790px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 7vw, 6.35rem);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.1rem, 5vw, 4.8rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.32rem;
  line-height: 1.12;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.55;
}

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

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 820px;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.hero-proof strong {
  margin-right: 6px;
  color: #fff;
}

.authority-strip {
  color: #fff;
  background: var(--ink);
}

.authority-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: start;
  padding: 26px 0 30px;
}

.authority-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
}

.authority-grid a {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: #fff;
  font-weight: 850;
}

.path-section {
  padding: 18px 0;
  background: #101713;
}

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

.path-card {
  min-height: 120px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.04);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.path-card:hover {
  transform: translateY(-2px);
  border-color: rgba(243, 201, 107, 0.42);
  background:
    linear-gradient(180deg, rgba(243, 201, 107, 0.13), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.05);
}

.path-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--amber);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.path-card strong {
  display: block;
  line-height: 1.25;
}

.section {
  padding: clamp(76px, 9vw, 126px) 0;
}

.pain-section {
  background: var(--paper);
}

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

.pain-grid article {
  min-height: 230px;
  padding: 26px;
  border: 1px solid rgba(14, 21, 18, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.96), rgba(255, 253, 248, 0.8)),
    var(--surface);
  box-shadow: 0 16px 44px rgba(14, 21, 18, 0.08);
}

.pain-grid strong {
  display: block;
  margin-bottom: 16px;
  color: var(--ink);
  font-size: 1.1rem;
  line-height: 1.18;
}

.pain-grid p {
  margin: 0;
  color: #52615a;
  line-height: 1.58;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 26px;
  padding: 22px;
  border: 1px solid rgba(14, 21, 18, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, #101713, #24362f);
  box-shadow: var(--shadow);
}

.cta-band.light {
  background:
    linear-gradient(135deg, #fffdf8, #e7eee8);
}

.cta-band span {
  display: block;
  margin-bottom: 7px;
  color: var(--amber);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cta-band strong {
  display: block;
  max-width: 760px;
  color: #fff;
  font-size: clamp(1.08rem, 1.9vw, 1.5rem);
  line-height: 1.25;
}

.cta-band.light span {
  color: var(--green);
}

.cta-band.light strong {
  color: var(--ink);
}

.intro {
  background:
    linear-gradient(180deg, rgba(231, 238, 232, 0.76), rgba(245, 241, 232, 0));
}

.intro-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  gap: 48px;
  align-items: start;
}

.intro-copy {
  position: sticky;
  top: 24px;
}

.intro-copy > p:not(.eyebrow) {
  max-width: 520px;
  margin-top: 22px;
  color: #52615a;
  font-size: 1.04rem;
  line-height: 1.6;
}

.intro-showcase {
  position: relative;
  min-height: 360px;
  margin-top: 30px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(14, 21, 18, 0.12);
  border-radius: 8px;
  background:
    radial-gradient(circle at 22% 14%, rgba(243, 201, 107, 0.2), transparent 30%),
    radial-gradient(circle at 74% 24%, rgba(47, 127, 101, 0.14), transparent 28%),
    linear-gradient(145deg, #fbfaf6 0%, #f1eee5 58%, #e4ebe4 100%);
  box-shadow: 0 24px 58px rgba(14, 21, 18, 0.14);
}

.intro-showcase::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(14, 21, 18, 0.08);
  border-radius: 8px;
  pointer-events: none;
}

.intro-showcase img {
  position: absolute;
  z-index: 1;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 28px 30px rgba(14, 21, 18, 0.18));
}

.showcase-xl {
  left: 14px;
  bottom: 42px;
  width: 63%;
  height: 82%;
}

.showcase-coffee {
  right: 18px;
  bottom: 70px;
  width: 33%;
  height: 64%;
  opacity: 0.98;
}

.showcase-note {
  position: absolute;
  right: 22px;
  bottom: 18px;
  left: 22px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid rgba(14, 21, 18, 0.1);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.9);
  backdrop-filter: blur(10px);
}

.showcase-note strong {
  display: block;
  color: var(--ink);
  font-size: 0.95rem;
}

.showcase-note span {
  color: #52615a;
  font-size: 0.84rem;
  line-height: 1.35;
}

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

.promise-grid article,
.choice-list article,
.service-steps div,
details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 12px 36px rgba(14, 21, 18, 0.07);
}

.promise-grid article {
  min-height: 230px;
  padding: 26px;
}

.promise-grid span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 26px;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  font-weight: 950;
}

.promise-grid p,
.section-heading p,
.machine-info p,
.choice-layout p,
.service-copy p,
.faq-list p,
.contact-layout p {
  color: #52615a;
  line-height: 1.62;
}

.section-heading {
  max-width: 860px;
  margin-bottom: 42px;
}

.section-heading h2 + p,
.choice-layout h2 + p,
.service-copy h2 + p,
.contact-layout h2 + p {
  margin-top: 22px;
}

.section-heading.compact {
  max-width: 650px;
}

.gift-section {
  padding: clamp(58px, 8vw, 96px) 0;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(14, 21, 18, 0.96), rgba(123, 49, 66, 0.86)),
    var(--ink);
}

.gift-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 52px;
  align-items: center;
}

.gift-layout h2 {
  max-width: 720px;
}

.gift-copy {
  display: grid;
  gap: 14px;
}

.gift-copy p {
  margin: 0;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.07);
  line-height: 1.62;
}

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

.reward-grid article {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05)),
    rgba(255, 255, 255, 0.06);
}

.reward-grid span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--amber);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reward-grid strong {
  display: block;
  color: #fff;
  font-size: 1.08rem;
  line-height: 1.28;
}

.catalog-section {
  padding-top: clamp(54px, 7vw, 88px);
  background: var(--surface);
}

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

.machine-card {
  position: relative;
  display: grid;
  grid-template-rows: 360px 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.machine-card.flagship {
  grid-column: span 2;
  grid-template-columns: 1.05fr 0.95fr;
  grid-template-rows: minmax(420px, auto);
  color: #fff;
  background:
    linear-gradient(135deg, #111a16, #23362d 62%, #47301d);
}

.card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 5;
  padding: 9px 12px;
  border-radius: 999px;
  color: #111a16;
  background: var(--amber);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.machine-visual {
  display: grid;
  place-items: center;
  height: 100%;
  min-height: 0;
  padding: 18px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 16%, rgba(243, 201, 107, 0.22), transparent 34%),
    linear-gradient(145deg, #17201c, #2c3932);
}

.machine-visual img {
  width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 24px 30px rgba(0, 0, 0, 0.28));
}

.machine-card:not(.flagship) .machine-visual img {
  max-width: 86%;
  max-height: 320px;
}

.flagship .machine-visual {
  background:
    radial-gradient(circle at 52% 18%, rgba(243, 201, 107, 0.22), transparent 32%),
    linear-gradient(145deg, #0d1311, #20352d);
}

.xl-secure img {
  transform: scale(1.04);
}

.photo-visual {
  position: relative;
  background:
    radial-gradient(circle at 50% 16%, rgba(243, 201, 107, 0.18), transparent 32%),
    linear-gradient(180deg, #fbfaf6 0%, #f2efe7 70%, #e4ebe4 100%);
}

.photo-visual::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(14, 21, 18, 0.08);
  border-radius: 8px;
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), transparent),
    radial-gradient(ellipse at 50% 93%, rgba(14, 21, 18, 0.08), transparent 42%);
  pointer-events: none;
}

.photo-visual img {
  position: relative;
  z-index: 1;
  width: auto;
  height: auto;
  max-width: 92%;
  max-height: 92%;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 22px 26px rgba(14, 21, 18, 0.16));
}

.machine-card:not(.flagship) .photo-visual img {
  width: auto;
  height: auto;
  max-width: 92%;
  max-height: 324px;
}

.flagship .photo-visual {
  background:
    radial-gradient(circle at 50% 16%, rgba(243, 201, 107, 0.2), transparent 30%),
    linear-gradient(180deg, #fbfaf6 0%, #f3f0e8 72%, #e4ebe4 100%);
}

.flagship-photo img {
  max-width: 100%;
  max-height: 100%;
}

.tall-product img {
  max-height: 98%;
}

.machine-info {
  padding: 28px;
}

.flagship .machine-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 4vw, 54px);
}

.flagship .machine-info p,
.flagship li {
  color: rgba(255, 255, 255, 0.76);
}

.machine-type {
  margin-bottom: 10px;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.flagship .machine-type {
  color: var(--amber);
}

.machine-info ul {
  display: grid;
  gap: 9px;
  padding-left: 18px;
  margin: 22px 0;
}

.machine-info li {
  color: #43524b;
  line-height: 1.45;
}

.flagship .machine-info li {
  color: rgba(255, 255, 255, 0.78);
}

.gift-mark {
  color: #6f3d17;
  font-weight: 950;
}

.flagship .gift-mark {
  color: var(--amber);
}

.gift-ribbon {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  min-height: 42px;
  margin-top: 2px;
  padding: 0 12px;
  border: 1px solid rgba(197, 150, 61, 0.32);
  border-radius: 999px;
  color: #5a3a12;
  background:
    linear-gradient(180deg, rgba(243, 201, 107, 0.3), rgba(243, 201, 107, 0.14)),
    rgba(255, 253, 248, 0.86);
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1.2;
}

.flagship .gift-ribbon {
  border-color: rgba(243, 201, 107, 0.42);
  color: #fff;
  background: rgba(243, 201, 107, 0.14);
}

li::marker {
  color: var(--gold);
}

.price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.flagship .price-row {
  border-color: rgba(255, 255, 255, 0.22);
}

.price-row span {
  color: #6b776f;
  font-weight: 800;
}

.flagship .price-row span {
  color: rgba(255, 255, 255, 0.62);
}

.price-row strong {
  font-size: 1.22rem;
}

.solution-visual {
  position: relative;
  justify-items: start;
  align-content: end;
  gap: 18px;
  padding: 28px;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}

.solution-visual::before {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.solution-visual::after {
  content: "";
  position: absolute;
  right: -48px;
  top: -48px;
  z-index: -2;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(243, 201, 107, 0.22);
  border-radius: 50%;
  background: rgba(243, 201, 107, 0.08);
}

.security-visual {
  background:
    linear-gradient(145deg, rgba(13, 19, 17, 0.96), rgba(47, 127, 101, 0.76)),
    var(--ink);
}

.compact-visual {
  background:
    linear-gradient(145deg, rgba(24, 35, 31, 0.96), rgba(197, 150, 61, 0.72)),
    var(--ink);
}

.coffee-visual {
  background:
    linear-gradient(145deg, rgba(90, 56, 39, 0.96), rgba(47, 127, 101, 0.78)),
    var(--ink);
}

.stock-visual {
  background:
    linear-gradient(145deg, rgba(14, 21, 18, 0.96), rgba(123, 49, 66, 0.78)),
    var(--ink);
}

.visual-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 999px;
  color: #121712;
  background: var(--amber);
  font-weight: 950;
}

.visual-title {
  max-width: 360px;
  font-size: clamp(1.65rem, 3vw, 2.8rem);
  line-height: 0.98;
  font-weight: 950;
}

.visual-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.visual-points span {
  padding: 9px 11px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.84rem;
  font-weight: 800;
}

.space-meter {
  width: min(260px, 100%);
  height: 14px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.space-meter span {
  display: block;
  width: 72%;
  height: 100%;
  border-radius: inherit;
  background: var(--amber);
}

.cup-row,
.stock-grid {
  display: flex;
  gap: 10px;
}

.cup-row span {
  width: 42px;
  height: 54px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 8px 8px 18px 18px;
  background: linear-gradient(180deg, transparent 0 42%, rgba(243, 201, 107, 0.8) 42% 100%);
}

.stock-grid {
  display: grid;
  grid-template-columns: repeat(3, 46px);
}

.stock-grid span {
  width: 46px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
}

.stock-grid span:nth-child(2n) {
  background: var(--amber);
}

.stock-grid span:nth-child(3n) {
  background: rgba(47, 127, 101, 0.95);
}

.muted-card {
  grid-column: 1 / -1;
  grid-template-columns: 0.8fr 1.2fr;
  grid-template-rows: minmax(420px, auto);
  box-shadow: 0 14px 42px rgba(14, 21, 18, 0.1);
}

.muted-card .machine-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.muted-card .photo-visual img {
  max-height: 380px;
}

.dark-panel {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(14, 21, 18, 0.98), rgba(47, 127, 101, 0.92)),
    var(--ink);
}

.choice-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 54px;
  align-items: start;
}

.choice-layout h2 {
  max-width: 700px;
}

.choice-layout p {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.08rem;
}

.choice-list {
  display: grid;
  gap: 12px;
}

.choice-list article {
  display: grid;
  gap: 6px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.choice-list strong {
  color: #fff;
  font-size: 1.05rem;
}

.choice-list span {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.45;
}

.compare-section {
  background: var(--mist);
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

table {
  width: 100%;
  min-width: 850px;
  border-collapse: collapse;
}

th,
td {
  padding: 18px;
  border-bottom: 1px solid rgba(14, 21, 18, 0.1);
  text-align: left;
  vertical-align: top;
}

th {
  color: #fff;
  background: var(--ink);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

td {
  color: #44524c;
}

td:first-child,
td:last-child {
  color: var(--ink);
  font-weight: 900;
}

tr:last-child td {
  border-bottom: 0;
}

.service-section {
  background: var(--surface);
}

.service-layout {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 54px;
  align-items: center;
}

.service-copy p {
  max-width: 680px;
  font-size: 1.08rem;
}

.service-steps {
  display: grid;
  gap: 14px;
}

.service-steps div {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px;
}

.service-steps span {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #fff;
  background: var(--wine);
  font-weight: 950;
}

.service-steps p {
  margin: 0;
  color: #4d5a54;
  line-height: 1.45;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.trust-row span {
  min-height: 68px;
  display: grid;
  place-items: center;
  padding: 14px;
  border: 1px solid rgba(14, 21, 18, 0.1);
  border-radius: 8px;
  color: var(--ink);
  background: var(--paper);
  font-weight: 900;
  text-align: center;
}

.faq-section {
  background: var(--paper);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 46px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  box-shadow: none;
}

summary {
  cursor: pointer;
  padding: 20px;
  font-weight: 950;
}

details:not([open]) p {
  display: none;
}

details p {
  margin: 0;
  padding: 0 20px 20px;
}

.contact-section {
  padding: clamp(78px, 9vw, 126px) 0;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(14, 21, 18, 0.96), rgba(24, 35, 31, 0.9)),
    var(--ink);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 56px;
  align-items: start;
}

.contact-layout p {
  max-width: 670px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.08rem;
}

.contact-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.contact-meta span {
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
}

.lead-form {
  display: grid;
  gap: 14px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.form-head {
  padding-bottom: 4px;
}

.form-head strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-size: 1.08rem;
  line-height: 1.25;
}

.form-head span {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
  line-height: 1.45;
}

label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 850;
}

input,
select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 0 14px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  font: inherit;
}

select option {
  color: var(--ink);
}

.full {
  width: 100%;
  border: 0;
  cursor: pointer;
  font: inherit;
}

.lead-form p,
.form-legal {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.86rem;
}

.site-footer {
  color: rgba(255, 255, 255, 0.72);
  background:
    radial-gradient(circle at 12% 0%, rgba(243, 201, 107, 0.12), transparent 30%),
    linear-gradient(180deg, #111a16 0%, #070b09 100%);
}

.footer-premium {
  display: grid;
  grid-template-columns: minmax(260px, 1.25fr) minmax(160px, 0.7fr) minmax(190px, 0.85fr) minmax(260px, 1.1fr);
  gap: 34px;
  padding-top: 48px;
  padding-bottom: 34px;
}

.footer-brand strong,
.footer-links strong,
.footer-contact strong,
.footer-legal-menu > strong {
  display: block;
  margin-bottom: 14px;
  color: #fff;
  font-size: 0.95rem;
}

.footer-brand p {
  max-width: 420px;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.58;
}

.footer-brand span,
.footer-contact span,
.footer-bottom span {
  display: block;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
  line-height: 1.5;
}

.footer-links,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-links a,
.footer-contact a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #fff;
}

.footer-legal-menu {
  display: grid;
  gap: 8px;
}

.footer-legal-menu details {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: none;
}

.footer-legal-menu summary {
  cursor: pointer;
  padding: 12px 14px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 850;
}

.footer-legal-menu p {
  margin: 0;
  padding: 0 14px 14px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.86rem;
  line-height: 1.52;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 18px;
  padding-bottom: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 84px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  padding: 0;
  border-radius: 50%;
  color: #fff;
  background: #25d366;
  box-shadow: 0 18px 44px rgba(37, 211, 102, 0.34);
  font-size: 0;
  font-weight: 950;
}

.whatsapp-float::before {
  content: "WA";
  font-size: 0.92rem;
  letter-spacing: 0.02em;
}

.sticky-conversion {
  position: fixed;
  right: 92px;
  bottom: 18px;
  z-index: 58;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 58px;
  padding: 8px 10px 8px 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: #fff;
  background: rgba(14, 21, 18, 0.92);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
}

.sticky-conversion span {
  font-size: 0.92rem;
  font-weight: 850;
}

.sticky-conversion a {
  display: inline-grid;
  place-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  color: #10130d;
  background: var(--amber);
  font-weight: 950;
}

.sticky-conversion.is-hidden {
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
}

@media (max-width: 1120px) {
  .pain-grid,
  .path-grid,
  .trust-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .machine-card.flagship {
    grid-column: span 2;
  }

  .intro-layout,
  .gift-layout,
  .choice-layout,
  .service-layout,
  .faq-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .intro-copy {
    position: static;
  }

  .intro-showcase {
    max-width: 720px;
  }

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

  .contact-layout {
    gap: 34px;
  }

  .lead-form {
    max-width: 620px;
  }

  .sticky-conversion {
    right: 18px;
    left: 18px;
    justify-content: space-between;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 66px;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .hero {
    min-height: 94vh;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(8, 13, 11, 0.96), rgba(14, 21, 18, 0.64)),
      linear-gradient(0deg, rgba(8, 13, 11, 0.84) 0%, rgba(8, 13, 11, 0.24) 74%);
  }

  .hero-content {
    width: calc(100% - 32px);
    margin: 0 16px 30px;
  }

  h1 {
    font-size: clamp(2.65rem, 13vw, 4.15rem);
    line-height: 0.98;
  }

  .authority-grid,
  .pain-grid,
  .path-grid,
  .reward-grid,
  .promise-grid,
  .footer-premium,
  .trust-row,
  .catalog-grid {
    grid-template-columns: 1fr;
  }

  .cta-band {
    display: grid;
    gap: 18px;
  }

  .cta-band .primary-btn {
    width: 100%;
  }

  .intro-showcase {
    min-height: 300px;
  }

  .showcase-xl {
    left: 12px;
    width: 60%;
  }

  .showcase-coffee {
    right: 14px;
    width: 34%;
  }

  .showcase-note {
    display: block;
  }

  .authority-grid {
    align-items: start;
  }

  .machine-card,
  .machine-card.flagship {
    grid-column: span 1;
    grid-template-columns: 1fr;
    grid-template-rows: minmax(300px, auto) auto;
  }

  .muted-card {
    grid-column: span 1;
    grid-template-columns: 1fr;
    grid-template-rows: minmax(300px, auto) auto;
  }

  .machine-card.flagship {
    min-height: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .sticky-conversion {
    right: 12px;
    bottom: 12px;
    left: 12px;
    min-height: 58px;
  }

  .sticky-conversion span {
    display: none;
  }

  .sticky-conversion a {
    width: 100%;
  }

  .whatsapp-float {
    bottom: 82px;
  }

  .visual-title {
    font-size: 2rem;
  }
}
