body.canex-home-active #header,
body.canex-home-active .header-wrapper,
body.canex-home-active #footer,
body.canex-home-active .footer-wrapper {
  display: none !important;
}

.canex-home {
  --canex-bg: #dfe4f3;
  --canex-text: #0a0a0a;
  --canex-muted: #65656f;
  --canex-white: #ffffff;
  --canex-border: rgba(10, 10, 10, 0.08);
  --canex-action: #d8ff00;
  --canex-dark: #08090b;
  --canex-shadow: 0 20px 60px rgba(20, 20, 40, 0.08);
  --canex-glass-bg: rgba(255, 255, 255, 0.65);
  --canex-glass-border: rgba(255, 255, 255, 0.7);
  --canex-radius-xl: 28px;
  --canex-radius-lg: 24px;
  --canex-radius-md: 16px;
  position: relative;
  background: var(--canex-bg);
  color: var(--canex-text);
  font-family: "Inter", "Segoe UI", "Helvetica Neue", sans-serif;
  overflow-x: clip;
  min-height: 100vh;
}

.canex-home::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: min(1050px, calc(100vh + 260px));
  background: var(--canex-hero-bg, none);
  background-size: cover;
  background-position: 72% top;
  background-repeat: no-repeat;
  opacity: 1;
  pointer-events: none;
  z-index: 0;
}

.canex-home::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: min(1200px, calc(100vh + 420px));
  background: linear-gradient(
    180deg,
    rgba(223, 228, 243, 0) 56%,
    rgba(223, 228, 243, 0.72) 80%,
    #dfe4f3 100%
  );
  pointer-events: none;
  z-index: 0;
}

.canex-home * {
  box-sizing: border-box;
}

.canex-home a {
  color: inherit;
  text-decoration: none;
}

.canex-home a:focus-visible,
.canex-home button:focus-visible,
.canex-home input:focus-visible {
  outline: 2px solid #111;
  outline-offset: 2px;
}

.canex-home-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(80px);
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}

.canex-home-orb--lavender {
  width: 360px;
  height: 360px;
  top: -130px;
  left: -90px;
  background: rgba(153, 110, 255, 0.2);
}

.canex-home-orb--blue {
  width: 420px;
  height: 420px;
  right: -140px;
  top: 90px;
  background: rgba(80, 180, 255, 0.18);
}

.canex-home-orb--pink {
  width: 360px;
  height: 360px;
  bottom: 35%;
  left: -130px;
  background: rgba(255, 130, 190, 0.14);
}

.canex-home-orb--lime {
  width: 340px;
  height: 340px;
  bottom: 5%;
  right: -80px;
  background: rgba(216, 255, 0, 0.18);
}

.canex-home-header {
  position: sticky;
  top: 0;
  z-index: 80;
  padding: 16px 24px;
}

body.admin-bar .canex-home-header {
  top: 32px;
}

.canex-home-header.is-scrolled .canex-home-header__inner {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 10px 35px rgba(20, 20, 40, 0.1);
}

.canex-home-header__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 14px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.canex-home-logo {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  line-height: 0.9;
}

.canex-home-logo__img {
  display: block;
  width: auto;
  height: 26px;
}

.canex-home-logo__main {
  font-size: 35px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.canex-home-logo__sub {
  font-size: 10px;
  letter-spacing: 0.36em;
  font-weight: 700;
  margin-left: 3px;
}

.canex-home-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.canex-home-nav a {
  font-size: 14px;
  font-weight: 600;
  color: var(--canex-text);
  opacity: 0.86;
  transition: opacity 0.2s ease;
}

.canex-home-nav a:hover {
  opacity: 1;
}

.canex-home-header__actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.canex-home-icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--canex-border);
  background: rgba(255, 255, 255, 0.8);
  display: grid;
  place-items: center;
  position: relative;
}

.canex-home-icon-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.canex-home-cart-count {
  position: absolute;
  right: -2px;
  top: -2px;
  min-width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--canex-action);
  font-size: 11px;
  font-weight: 800;
  display: grid;
  place-items: center;
}

.canex-home-menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--canex-border);
  border-radius: 12px;
  background: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.canex-home-menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: #111;
}

.canex-home-mobile-nav {
  margin: 10px auto 0;
  max-width: 1440px;
  border-radius: 16px;
  border: 1px solid var(--canex-border);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 10px;
}

.canex-home-mobile-nav a {
  display: block;
  padding: 14px;
  border-radius: 12px;
  font-weight: 600;
}

.canex-home-mobile-nav a:hover {
  background: #f0f3f9;
}

.canex-home-main {
  position: relative;
  z-index: 1;
  width: min(1440px, 100% - 40px);
  margin: 0 auto;
  padding-bottom: 70px;
}

.canex-hero {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 30px;
  min-height: clamp(480px, 66vh, 700px);
  padding: 32px 0 24px;
}

.canex-hero__content {
  width: min(100%, 700px);
  max-width: 700px;
}

.canex-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 9px 20px;
  border-radius: 999px;
  border: 1px solid var(--canex-border);
  background: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  letter-spacing: 0.06em;
  font-weight: 800;
  margin: 0 0 20px;
}

.canex-hero h1 {
  margin: 0;
  font-size: clamp(64px, 7vw, 108px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  font-weight: 800;
}

.canex-hero h1 em {
  font-style: italic;
  font-weight: 700;
}

.canex-hero__lead {
  max-width: 700px;
  font-size: 19px;
  line-height: 1.42;
  color: black;
  margin: 24px 0 24px;
}

.canex-hero__benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 24px;
}

.canex-hero__benefit {
  display: flex;
  align-items: center;
  gap: 12px;
}

.canex-hero__benefit-icon {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 50%;
  background: var(--canex-action);
  display: grid;
  place-items: center;
}

.canex-hero__benefit-icon svg {
  width: 22px;
  height: 22px;
}

.canex-hero__benefit p {
  margin: 0;
  display: grid;
  gap: 2px;
  line-height: 1.3;
}

.canex-hero__benefit p strong {
  font-size: 16px;
  font-weight: 700;
  color: #222738;
}

.canex-hero__benefit p span {
  font-size: 14px;
  color: #4e5568;
}

.canex-hero__cta-wrap {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.canex-btn {
  min-height: 52px;
  border-radius: 20px;
  padding: 12px 30px;
  font-weight: 800;
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.canex-btn:hover {
  transform: translateY(-1px);
}

.canex-btn--primary {
  background: var(--canex-action);
  color: #0a0a0a;
  box-shadow: 0 12px 30px rgba(145, 180, 0, 0.35);
}

.canex-btn--secondary {
  background: rgba(255, 255, 255, 0.95);
  border-color: var(--canex-border);
}

.canex-hero__rating {
  margin: 18px 0 0;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-weight: 600;
  color: #111;
}

.canex-stars {
  color: #ffb300;
  font-size: 19px;
  letter-spacing: 0.14em;
}

.canex-trust {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: var(--canex-shadow);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 26px;
  padding: 10px 12px;
}

.canex-trust__item {
  min-height: 92px;
  border-radius: 18px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.canex-trust__icon {
  color: #23283a;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
}

.canex-trust__icon svg {
  width: 100%;
  height: 100%;
}

.canex-trust__flag-at {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  border-radius: 50%;
  border: 1px solid rgba(10, 10, 10, 0.08);
  background: linear-gradient(to bottom, #ed2939 0 33.333%, #ffffff 33.333% 66.666%, #ed2939 66.666% 100%);
}

.canex-trust__item p {
  margin: 0;
  display: grid;
  gap: 2px;
  line-height: 1.25;
}

.canex-trust__item p strong {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #151a2b;
}

.canex-trust__item p span {
  font-size: 15px;
  color: #3e4458;
}

.canex-section-head {
  margin: 90px 0 22px;
}

.canex-section-head p {
  margin: 0 0 8px;
  color: #7d7f8c;
  font-size: 13px;
  letter-spacing: 0.07em;
  font-weight: 800;
}

.canex-section-head h2 {
  margin: 0;
  font-size: clamp(34px, 4.4vw, 58px);
  letter-spacing: -0.03em;
  line-height: 1.05;
  font-weight: 800;
}

.canex-drinks {
  margin-top: 90px;
}

.canex-occasion-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.canex-occasion-card {
  position: relative;
  min-height: 340px;
  border-radius: var(--canex-radius-lg);
  overflow: hidden;
  background: #e8ebf3;
  border: 1px solid var(--canex-border);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.canex-occasion-card img,
.canex-home-placeholder-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.canex-home-placeholder-img {
  background: linear-gradient(135deg, #d4d8e5, #bcc2d4);
  display: grid;
  place-items: center;
  color: #4f5363;
  font-size: 13px;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.canex-occasion-card__overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 24px 20px;
  background: linear-gradient(180deg, rgba(12, 12, 14, 0) 0%, rgba(12, 12, 14, 0.82) 75%);
  color: #fff;
}

.canex-home .canex-occasion-card__overlay,
.canex-home .canex-occasion-card__overlay h3,
.canex-home .canex-occasion-card__overlay p,
.canex-home .canex-occasion-card__overlay a {
  color: #fff !important;
}

.canex-occasion-card__overlay h3 {
  margin: 0;
  font-size: 24px;
  letter-spacing: -0.02em;
}

.canex-occasion-card__overlay p {
  margin: 6px 0 0;
  font-size: 14px;
  opacity: 0.88;
}

.canex-occasion-card__arrow {
  position: absolute;
  right: 16px;
  bottom: 18px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  color: #111;
  display: grid;
  place-items: center;
  font-size: 18px;
  transition: transform 0.25s ease;
}

.canex-occasion-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(20, 20, 30, 0.14);
}

.canex-occasion-card:hover img,
.canex-occasion-card:hover .canex-home-placeholder-img {
  transform: scale(1.04);
}

.canex-occasion-card:hover .canex-occasion-card__arrow {
  transform: translateX(3px);
}

.canex-steps {
  margin-top: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: stretch;
}

.canex-steps__eyebrow {
  margin: 0 0 8px;
  color: #71758a;
  font-size: 13px;
  letter-spacing: 0.06em;
  font-weight: 800;
}

.canex-steps h2 {
  margin: 0;
  font-size: clamp(36px, 4.4vw, 56px);
  line-height: 1.03;
  letter-spacing: -0.03em;
}

.canex-steps__list {
  margin: 20px 0 24px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.canex-steps__list li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: start;
  background: #fff;
  border: 1px solid var(--canex-border);
  border-radius: 18px;
  padding: 14px;
}

.canex-steps__list span {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--canex-action);
  display: grid;
  place-items: center;
  font-weight: 800;
}

.canex-steps__list h3 {
  margin: 0;
  font-size: 20px;
  letter-spacing: -0.01em;
}

.canex-steps__list p {
  margin: 5px 0 0;
  color: var(--canex-muted);
  line-height: 1.45;
}

.canex-designer-preview {
  border-radius: var(--canex-radius-xl);
  border: 1px solid var(--canex-glass-border);
  background: var(--canex-glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--canex-shadow);
  padding: 14px;
  display: grid;
  grid-template-columns: 82px 1fr 160px;
  gap: 12px;
}

.canex-designer-preview__toolbar {
  border-radius: 14px;
  border: 1px solid var(--canex-border);
  background: #fff;
  padding: 8px;
  display: grid;
  gap: 8px;
}

.canex-designer-preview__toolbar button {
  border: 0;
  min-height: 42px;
  border-radius: 10px;
  font-weight: 700;
  background: #f3f5fa;
  cursor: pointer;
}

.canex-designer-preview__stage {
  border-radius: 18px;
  border: 1px solid var(--canex-border);
  background: linear-gradient(180deg, #fff, #eef2fa);
  display: grid;
  place-items: center;
  padding: 14px;
}

.canex-designer-preview__stage img {
  max-width: 100%;
  height: auto;
}

.canex-designer-preview__controls {
  border-radius: 14px;
  border: 1px solid var(--canex-border);
  background: #fff;
  padding: 12px;
  display: grid;
  align-content: start;
  gap: 8px;
}

.canex-designer-preview__controls h3 {
  margin: 0;
  font-size: 16px;
}

.canex-designer-preview__controls p {
  margin: 0;
  color: var(--canex-muted);
  font-size: 13px;
}

.canex-designer-preview__controls input {
  width: 100%;
}

.canex-designer-preview__controls .canex-btn {
  min-height: 44px;
  font-size: 13px;
  padding: 10px 14px;
  margin-top: 4px;
}

.canex-drinks-showcase {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(380px, 0.94fr) minmax(420px, 1.06fr);
  align-items: center;
  gap: 20px;
  min-height: 620px;
  padding: 42px 34px 34px;
  border-radius: 30px;
  background:
    linear-gradient(90deg, rgba(236, 240, 249, 0.98) 0%, rgba(236, 240, 249, 0.96) 24%, rgba(236, 240, 249, 0.36) 39%, rgba(236, 240, 249, 0) 52%),
    var(--canex-drinks-bg, none);
  background-size: 100% 100%, auto 100%;
  background-position: 0 0, right center;
  background-repeat: no-repeat, no-repeat;
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--canex-shadow);
}

.canex-drinks-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0) 28%);
  pointer-events: none;
}

.canex-drinks-showcase__content {
  position: relative;
  z-index: 1;
}

.canex-drinks-showcase__content h2 {
  margin: 0 0 26px;
  font-size: clamp(34px, 4vw, 60px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  font-weight: 800;
}

.canex-drinks-showcase__list {
  display: grid;
  gap: 14px;
  max-width: 540px;
}

.canex-drinks-showcase__item {
  display: grid;
  grid-template-columns: 76px 1fr 54px;
  align-items: center;
  gap: 18px;
  min-height: 106px;
  padding: 18px 20px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 18px 42px rgba(20, 20, 40, 0.08);
}

.canex-drinks-showcase__item-icon {
  width: 60px;
  height: 60px;
  border-radius: 20px;
  display: grid;
  place-items: center;
}

.canex-drinks-showcase__item-icon svg {
  width: 28px;
  height: 28px;
}

.canex-drinks-showcase__item--lemon .canex-drinks-showcase__item-icon {
  background: radial-gradient(circle, rgba(216, 255, 0, 0.55), rgba(216, 255, 0, 0.14));
  color: #586400;
}

.canex-drinks-showcase__item--energy .canex-drinks-showcase__item-icon {
  background: linear-gradient(180deg, #2f3442, #090b11);
  color: #fff;
}

.canex-drinks-showcase__item--coffee .canex-drinks-showcase__item-icon {
  background: linear-gradient(180deg, #b9926c, #6b4b33);
  color: #fff;
}

.canex-drinks-showcase__item-copy {
  display: grid;
  gap: 4px;
}

.canex-drinks-showcase__item-copy strong {
  font-size: 18px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.canex-drinks-showcase__item-copy span {
  color: #535b6f;
  font-size: 14px;
  line-height: 1.35;
}

.canex-drinks-showcase__item-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 20px;
  background: #fff;
  border: 1px solid rgba(10, 10, 10, 0.08);
}

.canex-drinks-showcase__item--lemon .canex-drinks-showcase__item-arrow {
  background: rgba(216, 255, 0, 0.36);
}

.canex-drinks-showcase__item--energy .canex-drinks-showcase__item-arrow {
  background: #161922;
  color: #fff;
}

.canex-drinks-showcase__item--coffee .canex-drinks-showcase__item-arrow {
  background: #3d2a1f;
  color: #fff;
}

.canex-drinks__note {
  margin: 18px 0 0;
  text-align: center;
  font-size: 28px;
  letter-spacing: -0.02em;
}

.canex-drinkchooser-embed {
  margin-top: 20px;
}

.canex-home .canex-home-drinkchooser-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.canex-home .canex-home-drinkchooser-item .drink-card {
  border-radius: var(--canex-radius-lg);
  border: 1px solid var(--canex-border);
  box-shadow: none;
}

.canex-home .canex-home-drinkchooser-item .drink-image {
  height: 320px;
}

.canex-home .canex-home-drinkchooser-item .drink-content {
  padding: 20px;
}

.canex-home .canex-home-drinkchooser-item .drink-content h2 {
  font-size: 32px;
  letter-spacing: -0.03em;
  line-height: 1;
}

.canex-home .canex-home-drinkchooser-item .drink-button {
  min-height: 50px;
  border-radius: 999px;
  background: var(--canex-action);
  color: #111;
  font-weight: 800;
}

.canex-home .canex-home-drinkchooser-item .drink-button:hover {
  background: #c1f000;
  color: #111;
}

.canex-home .canex-home-drinkchooser-item .pill.active {
  background: #111;
  border-color: #111;
}

.canex-reviews {
  margin-top: 76px;
}

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

.canex-review-card {
  border-radius: 18px;
  border: 1px solid var(--canex-border);
  background: #fff;
  padding: 20px;
}

.canex-review-card__stars {
  margin: 0 0 10px;
  color: #ffb300;
}

.canex-review-card blockquote {
  margin: 0;
  font-size: 17px;
  line-height: 1.45;
  color: #1a1a1e;
}

.canex-review-card__author {
  margin: 12px 0 0;
  color: #4f5363;
  font-weight: 700;
}

.canex-trust-numbers {
  margin-top: 24px;
  border-radius: 20px;
  border: 1px solid var(--canex-border);
  background: #fff;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.canex-trust-numbers article {
  padding: 18px;
  text-align: center;
}

.canex-trust-numbers h3 {
  margin: 0;
  font-size: 34px;
  line-height: 1;
  letter-spacing: -0.03em;
}

.canex-trust-numbers p {
  margin: 7px 0 0;
  color: var(--canex-muted);
  font-size: 14px;
}

.canex-final {
  margin-top: 80px;
  border-radius: var(--canex-radius-xl);
  background: var(--canex-dark);
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: 44px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
}

.canex-final__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 13% 20%, rgba(169, 210, 0, 0.2), rgba(8, 9, 11, 0)),
    radial-gradient(circle at 80% 20%, rgba(118, 155, 255, 0.23), rgba(8, 9, 11, 0)),
    linear-gradient(180deg, rgba(8, 9, 11, 0.52), rgba(8, 9, 11, 0.9)),
    var(--canex-final-bg, none);
  background-size: cover;
  background-position: center;
  opacity: 0.72;
}

.canex-final__content,
.canex-final__trust {
  position: relative;
  z-index: 1;
}

.canex-final__accent {
  margin: 0;
  color: #d8ff00;
  font-size: clamp(30px, 3.7vw, 52px);
  letter-spacing: -0.01em;
  line-height: 1.04;
  font-weight: 700;
}

.canex-final h2 {
  margin: 16px 0 10px;
  font-size: clamp(42px, 5vw, 70px);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.canex-final__content p {
  max-width: 520px;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.88);
}

.canex-final__trust {
  align-self: end;
  display: grid;
  gap: 10px;
}

.canex-final__trust article {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.06);
}

.canex-final__trust h3 {
  margin: 0;
  font-size: 18px;
}

.canex-final__trust p {
  margin: 4px 0 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.canex-home-footer {
  margin-top: 30px;
  border-radius: 18px;
  border: 1px solid var(--canex-border);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 20px;
  display: grid;
  gap: 12px;
}

.canex-home-logo--footer .canex-home-logo__main {
  font-size: 30px;
}

.canex-home-footer__nav,
.canex-home-footer__social,
.canex-home-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.canex-home-footer__nav a,
.canex-home-footer__social a,
.canex-home-footer__legal a {
  border-radius: 999px;
  border: 1px solid var(--canex-border);
  padding: 8px 12px;
  font-size: 14px;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
}

.canex-home-footer__copy,
.canex-home-footer__demo-note,
.canex-home-footer__missing-note {
  margin: 0;
  font-size: 13px;
  color: #5f6374;
}

.canex-home [data-canex-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.canex-home [data-canex-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1439px) {
  .canex-hero {
    min-height: auto;
  }
}

@media (min-width: 1280px) and (max-width: 1599px) {
  .canex-home::before {
    background-size: auto 940px;
    background-position: 82% 0;
  }

  .canex-home::after {
    height: min(1120px, calc(100vh + 320px));
  }

  .canex-home-header__inner {
    max-width: 1320px;
    padding: 13px 18px;
  }

  .canex-home-nav {
    gap: 24px;
  }

  .canex-home-main {
    width: min(1320px, 100% - 64px);
  }

  .canex-hero {
    min-height: 760px;
    padding: 24px 0 18px;
  }

  .canex-hero__content {
    width: min(100%, 620px);
    max-width: 620px;
  }

  .canex-hero h1 {
    font-size: clamp(56px, 5.8vw, 90px);
    line-height: 0.94;
  }

  .canex-hero__lead {
    max-width: 560px;
    font-size: 18px;
    margin: 20px 0 20px;
  }

  .canex-hero__benefits {
    gap: 12px;
    margin-bottom: 20px;
  }

  .canex-hero__benefit-icon {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }

  .canex-hero__benefit p strong {
    font-size: 15px;
  }

  .canex-hero__benefit p span {
    font-size: 13px;
  }

  .canex-btn {
    min-height: 50px;
    padding: 11px 24px;
  }

  .canex-hero__rating {
    margin-top: 14px;
  }

  .canex-trust {
    margin-top: 28px;
  }
}

@media (min-width: 768px) and (max-width: 1279px) {
  .canex-home::before {
    background-size: auto 760px;
    background-position: calc(100% + 264px) 22px;
  }

  .canex-home::after {
    height: min(1040px, calc(100vh + 260px));
    background: linear-gradient(
      180deg,
      rgba(223, 228, 243, 0) 52%,
      rgba(223, 228, 243, 0.8) 78%,
      #dfe4f3 100%
    );
  }

  .canex-hero {
    min-height: 680px;
  }

  .canex-hero__content {
    width: min(100%, 620px);
    max-width: 620px;
  }

  .canex-hero h1 {
    font-size: clamp(56px, 7.1vw, 78px);
  }

  .canex-hero__lead {
    max-width: 560px;
    font-size: 18px;
  }
}

@media (max-width: 1024px) {
  .canex-home-main {
    width: min(100% - 28px, 1024px);
  }

  .canex-home-header {
    padding-inline: 14px;
  }

  .canex-home-nav {
    display: none;
  }

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

  .canex-home-header__inner {
    border: 1px solid var(--canex-border);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }

  .canex-hero {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-top: 16px;
  }

  .canex-hero__content {
    max-width: 100%;
  }

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

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

  .canex-steps {
    grid-template-columns: 1fr;
  }

  .canex-designer-preview {
    grid-template-columns: 68px 1fr;
  }

  .canex-designer-preview__controls {
    grid-column: 1 / -1;
  }

  .canex-home .canex-home-drinkchooser-grid {
    grid-template-columns: 1fr;
  }

  .canex-review-grid {
    grid-template-columns: 1fr;
  }

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

  .canex-final {
    grid-template-columns: 1fr;
    padding: 28px;
  }
}

@media (max-width: 767px) {
  body.admin-bar .canex-home-header {
    top: 46px;
  }

  .canex-home {
    padding-bottom: 26px;
  }

  .canex-home::before {
    background-size: auto 640px;
    background-position: calc(100% + 420px) 72px;
  }

  .canex-home::after {
    height: min(980px, calc(100vh + 300px));
    background: linear-gradient(
      180deg,
      rgba(223, 228, 243, 0) 46%,
      rgba(223, 228, 243, 0.88) 74%,
      #dfe4f3 100%
    );
  }

  .canex-home-main {
    width: min(100% - 20px, 767px);
    padding-bottom: 20px;
  }

  .canex-home-header {
    padding: 10px 10px 0;
  }

  .canex-home-header__inner {
    padding: 10px 12px;
    border-radius: 14px;
  }

  .canex-home-logo__main {
    font-size: 30px;
  }

  .canex-home-logo__sub {
    font-size: 9px;
  }

  .canex-home-logo__img {
    height: 22px;
  }

  .canex-home-icon-btn {
    width: 40px;
    height: 40px;
  }

  .canex-hero {
    min-height: 640px;
    padding-top: 8px;
  }

  .canex-hero h1 {
    font-size: clamp(44px, 13vw, 62px);
    line-height: 0.95;
  }

  .canex-hero__lead {
    width: 50%;
    max-width: 50%;
    font-size: 16px;
    margin-top: 14px;
  }

  .canex-hero__benefits {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 20px;
  }

  .canex-hero__benefit-icon {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }

  .canex-hero__benefit p strong {
    font-size: 15px;
  }

  .canex-hero__benefit p span {
    font-size: 13px;
  }

  .canex-hero__cta-wrap {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .canex-btn {
    width: 100%;
    min-height: 48px;
    padding-inline: 16px;
    border-radius: 18px;
  }

  .canex-trust {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 8px;
    gap: 8px;
  }

  .canex-trust__item {
    min-height: 82px;
    padding: 12px;
    gap: 10px;
  }

  .canex-trust__item p strong {
    font-size: 15px;
  }

  .canex-trust__item p span {
    font-size: 13px;
  }

  .canex-section-head {
    margin-top: 62px;
  }

  .canex-drinks {
    margin-top: 62px;
  }

  .canex-section-head h2 {
    font-size: clamp(32px, 9vw, 44px);
  }

  .canex-occasion-grid {
    gap: 12px;
  }

  .canex-occasion-card {
    min-height: 230px;
  }

  .canex-occasion-card__overlay {
    padding: 16px;
  }

  .canex-occasion-card__overlay h3 {
    font-size: 20px;
  }

  .canex-occasion-card__arrow {
    width: 34px;
    height: 34px;
    right: 12px;
    bottom: 12px;
  }

  .canex-steps {
    margin-top: 60px;
  }

  .canex-steps__list li {
    grid-template-columns: 34px 1fr;
  }

  .canex-designer-preview {
    grid-template-columns: 1fr;
  }

  .canex-designer-preview__toolbar {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    padding: 6px;
  }

  .canex-designer-preview__toolbar button {
    min-height: 38px;
    font-size: 12px;
  }

  .canex-drinks-showcase {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 24px 22px;
    gap: 18px;
    background-size: 100% 100%, auto 78%;
    background-position: 0 0, center bottom;
  }

  .canex-drinks-showcase__content h2 {
    margin-bottom: 18px;
  }

  .canex-drinks__note {
    font-size: 24px;
  }

  .canex-home .canex-home-drinkchooser-item .drink-content h2 {
    font-size: 28px;
  }

  .canex-home .canex-home-drinkchooser-item .drink-image {
    height: 260px;
  }

  .canex-trust-numbers article {
    padding: 14px;
  }

  .canex-final {
    min-height: 82vh;
    padding: 22px;
  }

  .canex-final h2 {
    font-size: clamp(38px, 11vw, 54px);
  }

  .canex-final__content p {
    font-size: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .canex-home *,
  .canex-home *::before,
  .canex-home *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .canex-home [data-canex-reveal] {
    opacity: 1;
    transform: none;
  }
}
