﻿@font-face {
  font-family: "Verveine Corp";
  src: url("Fonts/Verveine Corp.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Euclid Circular A";
  src: url("Fonts/Euclid Circular A Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
:root {
  --red: #eb3701;
  --pink: #fb9c9c;
  --white: #ffffff;
  --page: #ffffff;
  --container: 1272px;
  --radius: 20px;
  --display-font: "Verveine Corp", "Comic Sans MS", "Segoe Print", cursive;
  --text-font: "Euclid Circular A", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--page);
  color: var(--red);
  font-family: var(--text-font);
  overflow-x: hidden;
}

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

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

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

.section {
  padding: 20px 0;
  background: #fff;
}

.site-header {
  padding: 24px 16px 16px;
  background: #fff;
}

.header-inner {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
}

.button-row,
.social-links,
.app-links {
  display: flex;
  align-items: center;
}

.brand-gordan {
  width: 184.5px;
}

.brand-iskorka {
  width: 97.3px;
}

.btn {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 20px;
  border: 1px solid transparent;
  font: 400 24px/0.92 var(--text-font);
  white-space: nowrap;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

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

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

.btn:focus-visible {
  outline: 3px solid rgba(235, 55, 1, 0.28);
  outline-offset: 3px;
}

.btn-small {
  min-height: 40px;
  padding: 12px 24px;
  font-size: 16px;
}

.btn-light {
  background: #fff;
  color: var(--red);
}

.btn-outline-light {
  border-color: #fff;
  color: #fff;
}

.btn-red {
  background: var(--red);
  color: #fff;
}

.btn-outline-red {
  border-color: var(--red);
  color: var(--red);
  background: transparent;
}

.hero-grid {
  height: 440px;
  display: flex;
  align-items: flex-start;
  position: relative;
}

.red-panel {
  background: var(--red);
  border-radius: var(--radius);
  color: #fff;
  overflow: hidden;
}

.hero-copy {
  width: 902px;
  height: 440px;
  padding: 24px 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin-right: -143px;
}

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

.hero-copy h1,
.end-copy h2,
.section-steps h2,
.section-progress h2 {
  font-family: var(--display-font);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0;
}

.hero-copy h1 {
  width: 644px;
  font-size: 106px;
  margin-bottom: 16px;
}

.hero-copy h1 span {
  display: block;
}

.hero-copy p,
.end-copy p {
  width: 644px;
  font-size: 24px;
  line-height: 0.92;
}

.button-row {
  gap: 24px;
}

.hero-visual {
  width: 512px;
  height: 440px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  flex: 0 0 512px;
  z-index: 2;
}

.hero-visual img,
.info-visual img,
.end-visual img {
  position: absolute;
  max-width: none;
  pointer-events: none;
  will-change: transform;
}

.main-fire-2 {
  width: 154px;
  height: 238px;
  left: 250px;
  top: 4px;
  z-index: 1;
  --rotate: -8.62deg;
  transform: rotate(var(--rotate));
}

.main-heart {
  width: 330px;
  height: 304px;
  left: -92px;
  top: 36px;
  --rotate: 12.64deg;
  transform: rotate(var(--rotate));
  z-index: 3;
}

.main-fire-1 {
  width: 138px;
  height: 158px;
  left: 224px;
  top: 171px;
  z-index: 2;
}

.main-coin-1 {
  width: 96px;
  height: 110px;
  left: 202px;
  top: 226px;
  --rotate: 28.28deg;
  transform: rotate(var(--rotate));
  z-index: 5;
}

.main-coin-2 {
  width: 78px;
  height: 75px;
  left: 306px;
  top: 268px;
  --rotate: 77.02deg;
  transform: rotate(var(--rotate));
  z-index: 6;
}

.main-coin-3 {
  width: 108px;
  height: 124px;
  left: 190px;
  top: 213px;
  --rotate: 0deg;
  z-index: 4;
}

.section-steps h2,
.section-progress h2 {
  font-size: 106px;
  color: var(--red);
  margin-bottom: 24px;
  white-space: nowrap;
}

.steps-grid {
  height: 200px;
  padding: 24px;
  display: flex;
  gap: 24px;
  background: var(--pink);
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 100%;
  contain: layout paint;
}

.step-card {
  width: 392px;
  height: 152px;
  position: relative;
  flex: 0 0 392px;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  border-radius: var(--radius);
  overflow: hidden;
  color: var(--red);
}

.step-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.step-card div {
  position: relative;
}

.step-card h3 {
  width: 318px;
  font: 400 24px/0.92 var(--text-font);
  margin-bottom: 5px;
}

.step-card p {
  width: 318px;
  font: 400 20px/0.92 var(--text-font);
}

.info-panel {
  height: 422px;
  position: relative;
  border-radius: var(--radius);
}

.info-bg {
  position: absolute;
  width: 1291px;
  height: 442px;
  left: -10px;
  top: -10px;
  max-width: none;
}

.info-visual {
  position: absolute;
  left: 25.5px;
  top: 24px;
  width: 642px;
  height: 368px;
  overflow: hidden;
  border-radius: var(--radius);
}

.info-visual-bg {
  position: absolute;
  inset: 0;
  background: #fff;
  border-radius: var(--radius);
}

.info-visual-title {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: var(--red);
  font: 400 68.8px/0.92 var(--display-font);
  text-align: center;
  white-space: nowrap;
}

.info-berry.strawberry {
  width: 113.53px;
  height: 109.7px;
  left: -26.34px;
  top: -34.92px;
  --rotate: 79.32deg;
  transform: rotate(var(--rotate));
}

.info-berry.pumpkin {
  width: 178px;
  height: 159px;
  right: -25px;
  bottom: -7px;
  --rotate: 14.37deg;
  transform: rotate(var(--rotate));
  z-index: 2;
}

.info-coin.coin-left {
  width: 46.13px;
  height: 44.14px;
  left: 38.4px;
  top: 72.45px;
  --rotate: 105.53deg;
  --scale-y: -1;
  transform: scaleY(var(--scale-y)) rotate(var(--rotate));
}

.info-coin.coin-top {
  width: 30.3px;
  height: 28.99px;
  right: 20px;
  top: 144px;
  --rotate: 105.53deg;
  --scale-y: -1;
  transform: scaleY(var(--scale-y)) rotate(var(--rotate));
  z-index: 3;
}

.info-coin.coin-big {
  width: 66px;
  height: 76px;
  right: 8px;
  bottom: 96px;
  --rotate: 132.14deg;
  --scale-y: -1;
  transform: scaleY(var(--scale-y)) rotate(var(--rotate));
  z-index: 3;
}

.info-coin.coin-tiny-left {
  width: 19.44px;
  height: 22.29px;
  left: 32.5px;
  top: 125px;
  --rotate: 29.2deg;
  transform: rotate(var(--rotate));
}

.info-coin.coin-tiny-right {
  width: 19.44px;
  height: 22.29px;
  right: 76px;
  bottom: 149px;
  --rotate: 29.2deg;
  transform: rotate(var(--rotate));
  z-index: 3;
}

.info-text {
  position: absolute;
  left: 691.5px;
  top: 24px;
  width: 520px;
  color: #fff;
}

.info-text h2 {
  font: 400 36px/0.92 var(--text-font);
  text-transform: uppercase;
  margin-bottom: 32px;
}

.info-text p {
  font: 400 24px/0.82 var(--text-font);
  margin-bottom: 19px;
}

.info-buttons {
  position: absolute;
  left: 14.5px;
  top: 342px;
  gap: 12px;
}

.section-drinks {
  padding-top: 20px;
  overflow: hidden;
}

.drinks-viewport {
  height: 646px;
  overflow-x: auto;
  overflow-y: hidden;
  max-width: 100%;
  contain: layout paint;
  overscroll-behavior-inline: contain;
  scrollbar-width: thin;
  scrollbar-color: var(--red) rgba(235, 55, 1, 0.14);
}

.drinks-viewport::-webkit-scrollbar {
  height: 8px;
}

.drinks-viewport::-webkit-scrollbar-track {
  background: rgba(235, 55, 1, 0.14);
  border-radius: 999px;
}

.drinks-viewport::-webkit-scrollbar-thumb {
  background: var(--red);
  border-radius: 999px;
}

.drinks-viewport::-webkit-scrollbar-thumb:hover {
  background: #d62f00;
}

.drinks-track {
  width: max-content;
  height: 632px;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px 0;
}

.drink-card {
  width: 400px;
  height: 608px;
  flex: 0 0 400px;
  padding: 37.895px 0;
  color: var(--pink);
}

.drink-visual {
  width: 400px;
  height: 440px;
  position: relative;
  overflow: hidden;
  background: var(--pink);
  border-radius: var(--radius);
  margin-bottom: 24px;
}

.drink-card h3 {
  font: 400 68.8px/0.92 var(--display-font);
  white-space: nowrap;
  margin-bottom: 10px;
}

.drink-card p {
  font: 400 24px/0.92 var(--text-font);
}

.progress-panel {
  width: 100%;
  padding: 32px 32px 32px 24px;
  background: var(--pink);
  border-radius: 38px;
  overflow: hidden;
}

.progress-labels {
  display: flex;
  justify-content: space-between;
  color: #fff;
  font: 400 24px/0.92 var(--text-font);
  margin-bottom: 24px;
}

.progress-track {
  height: 34px;
  position: relative;
  border: 2px solid #fff;
  border-radius: 20px;
  overflow: hidden;
}

.progress-fill {
  width: 0;
  height: 100%;
  background: #fff;
  border-radius: 20px;
  transition: width 1600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.progress-panel.is-visible .progress-fill {
  width: var(--progress, 49.5%);
}

.end-grid {
  height: 460px;
  display: flex;
  gap: 24px;
}

.end-copy {
  width: 732px;
  height: 460px;
  padding: 24px 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 48px;
  flex: 0 0 732px;
}

.end-copy h2 {
  width: 644px;
  font-size: 106px;
  margin-bottom: 16px;
}

.end-visual {
  width: 516px;
  height: 460px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  flex: 0 0 516px;
}

.end-fire-left {
  width: 230px;
  height: 354px;
  left: 125px;
  top: 24px;
  --rotate: -151.75deg;
  --scale-y: -1;
  transform: scaleY(var(--scale-y)) rotate(var(--rotate));
  z-index: 1;
}

.end-fire-right {
  width: 220px;
  height: 339px;
  left: 365px;
  top: 139px;
  --rotate: 8.51deg;
  transform: rotate(var(--rotate));
  z-index: 1;
}

.coin-blur-left {
  width: 88.06px;
  height: 101px;
  left: 6px;
  top: 84px;
  opacity: .82;
  filter: blur(1.059px);
  --rotate: 107.5deg;
  transform: rotate(var(--rotate));
  z-index: 4;
}

.coin-small-a {
  width: 70.58px;
  height: 80.95px;
  left: 94px;
  top: 9px;
  opacity: .72;
  --rotate: -12.58deg;
  transform: rotate(var(--rotate));
  z-index: 4;
}

.coin-small-b {
  width: 45.74px;
  height: 52.46px;
  left: 388px;
  top: 19px;
  opacity: .72;
  --rotate: -84.12deg;
  transform: rotate(var(--rotate));
  z-index: 4;
}

.end-heart {
  width: 318px;
  height: 293px;
  left: 188px;
  top: 106px;
  --rotate: 15.96deg;
  transform: rotate(var(--rotate));
  z-index: 3;
}

.coin-big-blur {
  width: 178px;
  height: 204px;
  left: -16px;
  top: 238px;
  filter: blur(3.816px);
  --rotate: 27.32deg;
  transform: rotate(var(--rotate));
  z-index: 5;
}

.site-footer {
  padding-bottom: 20px;
}

.footer-panel {
  background: var(--pink);
  border-radius: var(--radius);
  padding: 24px 32px 24px 24px;
  color: #fff;
}

.footer-top,
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-top {
  margin-bottom: 16px;
}

.footer-top p {
  font: 700 28px/32px Arial, sans-serif;
}

.social-links {
  gap: 12px;
}

.social-links a,
.social-links img {
  width: 42px;
  height: 42px;
}

.app-links {
  gap: 12px;
}

.app-link {
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #fff;
  color: var(--red);
  border-radius: 100px;
  padding: 12px 32px;
  font: 400 14px/1 var(--text-font);
  transition: transform 180ms ease;
}

.app-link:nth-child(2) {
  padding-inline: 16px;
}

.app-link:hover,
.social-links a:hover,
.brand-link:hover {
  transform: translateY(-2px);
}

.app-link img {
  width: 14px;
  height: 17px;
}

address {
  width: 351px;
  font: 400 12px/16px Arial, sans-serif;
  text-align: right;
  font-style: normal;
}

.float-heart {
  animation: heart-float 7.5s ease-in-out infinite;
}

.float-coin {
  animation: coin-float 6.8s ease-in-out infinite;
}

.float-coin.slow,
.float-soft.slow {
  animation-duration: 8.6s;
  animation-delay: -1.4s;
}

.float-coin.fast,
.float-soft.fast {
  animation-duration: 5.9s;
  animation-delay: -2.1s;
}

.float-soft {
  animation: soft-float 8.2s ease-in-out infinite;
}

.drift-fire {
  animation: fire-drift 9.5s ease-in-out infinite;
}

@keyframes heart-float {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(var(--rotate, 0deg)) scale(1); }
  50% { transform: translate3d(0, -9px, 0) rotate(calc(var(--rotate, 0deg) + 1deg)) scale(1.012); }
}

@keyframes coin-float {
  0%, 100% { transform: translate3d(0, 0, 0) scaleY(var(--scale-y, 1)) rotate(var(--rotate, 0deg)); }
  50% { transform: translate3d(0, -11px, 0) scaleY(var(--scale-y, 1)) rotate(calc(var(--rotate, 0deg) + 3deg)); }
}

@keyframes soft-float {
  0%, 100% { transform: translate3d(0, 0, 0) scaleY(var(--scale-y, 1)) rotate(var(--rotate, 0deg)); }
  50% { transform: translate3d(0, -8px, 0) scaleY(var(--scale-y, 1)) rotate(calc(var(--rotate, 0deg) - 2deg)); }
}

@keyframes fire-drift {
  0%, 100% { transform: translate3d(0, 0, 0) scaleY(var(--scale-y, 1)) rotate(var(--rotate, 0deg)); }
  50% { transform: translate3d(0, -3px, 0) scaleY(var(--scale-y, 1)) rotate(calc(var(--rotate, 0deg) + .6deg)); }
}

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

@media (max-width: 1320px) {
  :root { --container: calc(100vw - 32px); }
  .hero-grid,
  .end-grid { transform-origin: top center; }
  .section-steps h2,
  .section-progress h2,
  .hero-copy h1,
  .end-copy h2 { font-size: clamp(62px, 7.2vw, 106px); }
  .steps-grid { overflow-x: auto; }
}

@media (max-width: 980px) {
  .header-inner { height: auto; gap: 18px; align-items: flex-start; }
  .hero-grid,
  .end-grid { height: auto; flex-direction: column; }
  .hero-copy,
  .end-copy,
  .hero-visual,
  .end-visual { width: 100%; flex-basis: auto; margin-right: 0; }
  .hero-copy,
  .end-copy { height: auto; min-height: 420px; }
  .hero-visual,
  .end-visual { transform-origin: top left; }
  .info-panel { height: auto; padding: 20px; background: var(--pink); overflow: hidden; }
  .info-bg { display: none; }
  .info-visual,
  .info-text { position: relative; left: auto; top: auto; width: 100%; }
  .info-visual { margin-bottom: 24px; }
  .info-buttons { position: static; margin-top: 24px; flex-wrap: wrap; }
  .footer-top,
  .footer-bottom { align-items: flex-start; gap: 16px; flex-direction: column; }
  address { width: auto; text-align: left; }
}

@media (max-width: 680px) {
  .section { padding-block: 12px; }
  .container { width: min(100% - 24px, var(--container)); }
  .brand-links { gap: 20px; }
  .brand-gordan { width: 145px; }
  .brand-iskorka { width: 82px; }
  .hero-copy,
  .end-copy { padding: 20px; gap: 28px; }
  .hero-copy h1,
  .end-copy h2,
  .section-steps h2,
  .section-progress h2 { white-space: normal; font-size: 58px; }
  .hero-copy h1,
  .hero-copy p,
  .end-copy h2,
  .end-copy p { width: auto; }
  .hero-copy p,
  .end-copy p,
  .info-text p { font-size: 20px; }
  .button-row { flex-direction: column; align-items: stretch; gap: 12px; }
  .btn { width: 100%; font-size: 22px; }
  .steps-grid { height: auto; }
  .step-card { width: 320px; flex-basis: 320px; }
  .info-visual { height: 300px; }
  .info-visual-title { font-size: 46px; left: 50%; top: 50%; }
  .drinks-viewport { height: 560px; }
  .drinks-track { height: 560px; }
  .drink-card { width: 320px; height: 540px; flex-basis: 320px; }
  .drink-visual { width: 320px; height: 360px; }
  .drink-card h3 { font-size: 50px; }
  .drink-card p { font-size: 20px; }
  .progress-labels { gap: 12px; flex-direction: column; }
  .app-links { flex-wrap: wrap; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }
}








.visual-static {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-visual .visual-static,
.info-visual .visual-static,
.end-visual .visual-static,
.drink-visual .visual-static {
  position: static;
  max-width: 100%;
  pointer-events: none;
  animation: none;
  transform: none;
}

/* Mobile polish overrides */
@media (max-width: 760px) {
  :root {
    --container: calc(100vw - 24px);
  }

  body {
    min-width: 0;
  }

  .site-header {
    padding: 18px 12px 10px;
  }

  .header-inner {
    height: auto;
    min-height: 36px;
    align-items: center;
  }

  .brand-gordan {
    width: 136px;
  }

  .brand-iskorka {
    width: 76px;
  }

  .section {
    padding: 10px 0;
  }

  .hero-grid,
  .end-grid {
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .hero-copy,
  .end-copy {
    width: 100%;
    height: auto;
    min-height: 0;
    margin-right: 0;
    padding: 20px 18px 18px;
    gap: 26px;
    border-radius: 18px;
  }

  .hero-copy h1,
  .end-copy h2 {
    width: 100%;
    font-size: clamp(54px, 16vw, 72px);
    line-height: 0.88;
    margin-bottom: 14px;
  }

  .hero-copy p,
  .end-copy p {
    width: 100%;
    font-size: 18px;
    line-height: 0.95;
  }

  .hero-copy p br,
  .end-copy p br {
    display: none;
  }

  .button-row {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .btn {
    width: 100%;
    min-height: 50px;
    padding: 14px 22px;
    font-size: 20px;
    border-radius: 18px;
  }

  .hero-visual,
  .end-visual {
    width: 100%;
    height: auto;
    aspect-ratio: 512 / 440;
    flex: none;
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
  }

  .end-visual {
    aspect-ratio: 516 / 460;
  }

  .hero-visual .visual-static,
  .end-visual .visual-static {
    object-fit: contain;
  }

  .section-steps h2,
  .section-progress h2 {
    font-size: clamp(52px, 15vw, 70px);
    white-space: normal;
    margin-bottom: 14px;
  }

  .steps-grid {
    height: auto;
    padding: 14px;
    gap: 12px;
    overflow-x: auto;
    border-radius: 18px;
    scroll-snap-type: x mandatory;
  }

  .step-card {
    width: min(318px, calc(100vw - 64px));
    height: 136px;
    flex: 0 0 min(318px, calc(100vw - 64px));
    padding: 18px;
    scroll-snap-align: start;
  }

  .step-card h3 {
    width: 100%;
    font-size: 20px;
  }

  .step-card p {
    width: 100%;
    font-size: 17px;
  }

  .info-panel {
    height: auto;
    padding: 12px;
    background: var(--pink);
    border-radius: 18px;
    overflow: visible;
  }

  .info-bg {
    display: none;
  }

  .info-visual {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 642 / 368;
    margin: 0 0 16px;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
  }

  .info-visual .visual-static {
    object-fit: contain;
  }

  .info-text {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    color: #fff;
    padding: 0 2px;
  }

  .info-text h2 {
    font-size: clamp(25px, 7.4vw, 34px);
    line-height: 0.95;
    margin-bottom: 16px;
  }

  .info-text p {
    font-size: 18px;
    line-height: 0.98;
    margin-bottom: 12px;
  }

  .info-text p br {
    display: none;
  }

  .info-buttons {
    position: static;
    width: 100%;
    margin-top: 18px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: #fff;
    border-radius: 18px;
  }

  .info-buttons .btn-outline-red {
    background: #fff;
  }

  .drinks-viewport {
    width: min(100vw - 24px, 360px);
    height: auto;
    padding-bottom: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
  }

  .drinks-track {
    height: auto;
    gap: 16px;
    padding: 10px 0 18px;
  }

  .drink-card {
    width: min(330px, calc(100vw - 38px));
    height: auto;
    flex: 0 0 min(330px, calc(100vw - 38px));
    padding: 0;
    scroll-snap-align: start;
  }

  .drink-visual {
    width: 100%;
    height: auto;
    aspect-ratio: 400 / 440;
    margin-bottom: 14px;
    border-radius: 18px;
  }

  .drink-visual .visual-static {
    object-fit: cover;
  }

  .drink-card h3 {
    font-size: clamp(48px, 14vw, 58px);
    line-height: 0.9;
    margin-bottom: 8px;
    white-space: normal;
  }

  .drink-card p {
    font-size: 18px;
    line-height: 0.96;
  }

  .progress-panel {
    padding: 22px 16px;
    border-radius: 24px;
  }

  .progress-labels {
    flex-direction: column;
    gap: 8px;
    font-size: 18px;
    margin-bottom: 16px;
  }

  .progress-track {
    height: 28px;
  }

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

  .footer-top,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .footer-top p {
    font-size: 24px;
    line-height: 28px;
  }

  .app-links {
    width: 100%;
    flex-wrap: wrap;
    gap: 10px;
  }

  .app-link {
    flex: 1 1 150px;
    padding-inline: 16px;
  }

  address {
    width: 100%;
    text-align: left;
    white-space: normal;
  }
}

@media (max-width: 390px) {
  .hero-copy h1,
  .end-copy h2 {
    font-size: 50px;
  }

  .hero-copy p,
  .end-copy p,
  .info-text p {
    font-size: 17px;
  }

  .brand-gordan {
    width: 122px;
  }

  .brand-iskorka {
    width: 68px;
  }
}

