/* ---------- FONTS ---------- */
@font-face {
  font-family: "Plus Jakarta Sans";
  src:
    url("fonts/PlusJakartaSans-VariableFont_wght.ttf")
      format("truetype-variations"),
    url("fonts/PlusJakartaSans-VariableFont_wght.ttf") format("truetype");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Plus Jakarta Sans";
  src:
    url("fonts/PlusJakartaSans-Italic-VariableFont_wght.ttf")
      format("truetype-variations"),
    url("fonts/PlusJakartaSans-Italic-VariableFont_wght.ttf") format("truetype");
  font-weight: 200 800;
  font-style: italic;
  font-display: swap;
}

/* ---------- BASE ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #ffffff;
  --bg-alt: #f7f7f8;
  --text: #1c1b1b;
  --text-muted: #4a4a4a;
  --text-light: #ffffff;
  --accent: #d8141a;
  --accent-hover: #b61015;
  --accent-soft: #fde2e3;
  --border: #e6e6e8;
  --dark: #121212;
  --dark-2: #1b1b1b;
  --dark-card: #232323;
  --radius: 18px;
  --radius-lg: 24px;
  --max-w: 1280px;
}

html,
body {
  font-family: "Plus Jakarta Sans", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

body {
  line-height: 1.5;
}

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

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

button {
  font: inherit;
  cursor: pointer;
}

ul,
ol {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- A11Y ---------- */
.skip-link {
  position: absolute;
  left: 16px;
  top: -100px;
  background: var(--text);
  color: #fff;
  padding: 12px 16px;
  border-radius: 8px;
  z-index: 2000;
  transition: top 0.15s ease;
}
.skip-link:focus {
  top: 16px;
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
  border-radius: 6px;
}

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

/* ---------- HEADER (floating pills) ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  pointer-events: none;
}

.header-inner {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 8px;
}

.header-pill {
  pointer-events: auto;
  background: #e8e8e8cc;
  border-radius: 16px;
  backdrop-filter: blur(16.2px);
  -webkit-backdrop-filter: blur(16.2px);
}

.header-pill-main {
  flex: 1;
  min-width: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 18px 24px;
}
.header-pill-main .logo {
  justify-self: start;
}
.header-pill-main .primary-nav {
  justify-self: center;
}
.header-pill-main .nav-toggle {
  justify-self: end;
}

.header-pill-badges {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 18px 24px;
}

.logo img {
  height: 28px;
  width: auto;
}

.primary-nav ul {
  display: flex;
  gap: 32px;
}

.primary-nav a {
  font-family: "Inter", "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
  color: var(--text);
  padding: 8px 2px;
  border-bottom: 2px solid transparent;
  transition:
    border-color 0.15s ease,
    color 0.15s ease;
}

.primary-nav a:hover,
.primary-nav a:focus-visible,
.primary-nav a.is-active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.badges-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.badge {
  display: inline-block;
  transition:
    transform 0.15s ease,
    opacity 0.15s ease;
}
.badge:hover {
  transform: translateY(-1px);
  opacity: 0.92;
}
.badge img {
  height: 40px;
  width: auto;
}

.nav-toggle {
  display: none;
  pointer-events: auto;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  border-radius: 14px;
  width: 48px;
  height: 48px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

/* ---------- MOBILE NAV ---------- */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--bg-alt);
  z-index: 200;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.32s ease;
  will-change: transform;
}
.mobile-nav.is-open {
  transform: translateX(0);
}
.mobile-nav[hidden] {
  display: none;
}
.mobile-nav-inner {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  min-height: 100%;
}
.mobile-nav-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-close {
  background: rgba(28, 27, 27, 0.06);
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 18px;
  color: var(--text);
}

.mobile-nav nav ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  padding-top: 32px;
}
.mobile-nav nav a {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
}
.mobile-nav nav li:first-child a {
  color: var(--accent);
  border-bottom: 3px solid var(--accent);
  padding-bottom: 4px;
}

.mobile-lang {
  display: inline-flex;
  align-self: center;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
}

.mobile-cta {
  margin-top: auto;
  text-align: center;
}
.mobile-cta p {
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 8px;
}
.mobile-cta-arrows {
  display: block;
  margin: 0 auto 8px;
  width: 200px;
  height: auto;
}
.mobile-cta .badges-row {
  justify-content: center;
}
.mobile-cta .badge img {
  height: 48px;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  border: none;
  transition:
    background 0.15s ease,
    transform 0.15s ease,
    color 0.15s ease;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover {
  background: var(--accent-hover);
}

.btn-light {
  background: #fff;
  color: var(--accent);
}
.btn-light:hover {
  background: #f3f3f3;
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--text);
}
.btn-outline:hover {
  background: var(--text);
  color: #fff;
}

.btn-light-outline {
  background: #f2f2f2;
  color: var(--text);
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  width: 151px;
  height: 44px;
  padding: 10px 24px;
  gap: 8px;
}
.btn-light-outline:hover {
  background: #eaeaea;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  color: #fff;
  padding: 140px 0 64px;
  overflow: hidden;
  background: url("img/main-bg.webp") bottom/cover no-repeat;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #0000005c;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  pointer-events: none;
  z-index: 0;
}
.hero > * {
  position: relative;
  z-index: 1;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  grid-template-rows: min-content min-content auto;
  grid-template-areas:
    "title  mockup"
    "cta    mockup"
    ".      foot";
  column-gap: 48px;
  row-gap: 24px;
  align-items: start;
  align-content: start;
  min-height: 520px;
}

.hero-title {
  grid-area: title;
  padding-top: 24px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 56px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
  white-space: nowrap;
  color: #fff;
  margin-bottom: 0;
}

.callout-label {
  color: #fff;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 15px;
}
.callout-arrows {
  width: 200px;
  height: auto;
}

.hero-inline-cta {
  grid-area: cta;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  width: max-content;
  justify-self: start;
  margin-left: 32px;
  margin-top: -84px;
}

.hero-inline-cta .callout-arrows {
  filter: brightness(0) invert(1);
}

.hero-inline-cta::before {
  display: none;
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 87.999px;
  height: 178.266px;
  transform: translate(-50%, -50%) rotate(82.97deg);
  backdrop-filter: blur(231.9px);
  -webkit-backdrop-filter: blur(231.9px);
  opacity: 1;
  pointer-events: none;
  z-index: -1;
}

.hero-badges {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 4px;
}
.hero-badges .badge img {
  width: 120px;
  height: 40px;
  object-fit: contain;
}

.hero-mockup {
  grid-area: mockup;
  justify-self: center;
  width: 100%;
  max-width: 560px;
  height: auto;
  filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.25));
  transform: translateX(-10.107%);
}

.hero-foot {
  grid-area: foot;
  justify-self: start;
  position: relative;
  top: -68px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  margin-left: 41.4px;
  font-size: 18px;
}
.hero-foot p {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  max-width: 480px;
  line-height: 1.5;
}
.hero-foot .btn {
  padding: 16px 40px;
  font-size: 16px;
}

/* top-right callout: "Vyzkoušejte aplikaci" pointing up to header badges */
.hero-top-callout {
  position: absolute;
  top: -30px;
  right: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  z-index: 50;
  pointer-events: none;
}
.hero-top-callout .callout-arrows {
  width: 160px;
  filter: brightness(0) invert(1);
}

/* ---------- SECTION HEADS ---------- */
.section-head {
  margin-bottom: 48px;
}
.section-head.center {
  text-align: center;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.section-head h2 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(32px, 3.6vw, 48px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.section-head p {
  font-family: "Inter", "Plus Jakarta Sans", sans-serif;
  color: var(--text-muted);
  font-size: 16px;
}
.section-head.light h2,
.section-head.light p {
  color: #fff;
}
.section-head.light p {
  color: #ffffff;
}

/* ---------- JAK TO FUNGUJE ---------- */
.how {
  background: var(--accent);
  color: #fff;
  padding: 96px 0;
}
.how-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.how-copy h2 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(32px, 3.6vw, 48px);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 24px;
}
.how-copy p {
  font-family: "Inter", "Plus Jakarta Sans", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  color: #ffffff;
  max-width: 480px;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 56px;
  position: relative;
}
.step {
  display: grid;
  grid-template-columns: 40px 1fr;
  column-gap: 24px;
  align-items: start;
  position: relative;
}
.step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 19px;
  top: 48px;
  width: 2px;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
}
.step-icon {
  width: 40px;
  height: 40px;
  display: block;
}
.step-body h3 {
  font-family: "Inter", "Plus Jakarta Sans", sans-serif;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 8px;
  color: #fff;
}
.step-body p {
  font-family: "Inter", "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #ffffff;
  max-width: 480px;
}

/* ---------- TIPS / DARK ---------- */
.tips {
  background: #191919;
  color: #fff;
  padding: 96px 0;
}
.tips-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.tips-visual {
  display: flex;
  justify-content: center;
}
.tips-photo {
  width: 100%;
  max-width: 420px;
  height: auto;
  border-radius: 24px;
  filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.35));
}

.tip-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.tip {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.tip-icon {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  display: block;
}
.tip h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}
.tip p {
  font-size: 14px;
  line-height: 1.6;
  color: #ffffff;
  max-width: 480px;
}

/* ---------- CENÍK ---------- */
.pricing {
  padding: 96px 0;
  background: var(--bg);
}
.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.plan {
  background: #f5f5f6;
  border: none;
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.2s ease;
}
.plan:hover {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
}
.plan h3 {
  font-family: "Inter", "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--text);
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 20px;
}
.plan-price {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 56px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin-bottom: 8px;
}
.plan-period {
  color: var(--text-muted);
  font-size: 14px;
}
.plan-includes {
  font-family: "Inter", "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--text);
  text-transform: none;
  letter-spacing: 0;
  border-top: 1px solid #e0e0e2;
  padding-top: 20px;
  margin-top: 4px;
}
.plan ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.plan ul li {
  position: relative;
  padding-left: 32px;
  font-family: "Inter", "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  color: var(--text);
}
.plan ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 16px;
  height: 16px;
  background: none;
  border: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235b5b5b' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='4 12 10 18 20 6'/></svg>");
  background-repeat: no-repeat;
  background-size: contain;
}
.plan .btn {
  margin-top: 8px;
  border-radius: 16px;
  padding: 8px 16px;
}

.btn-store-cta {
  display: none;
}
@media (max-width: 960px) {
  .btn-store-cta {
    display: inline-flex;
  }
}

/* ---------- VÝHODY ---------- */
.perks {
  background: var(--accent);
  color: #fff;
  padding: 96px 0;
}
.perk-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 24px;
}
.perk {
  background: #b21015;
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.perk-icon {
  width: 40px;
  height: 40px;
  display: block;
}
.perk h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.2;
  color: #fff;
}
.perk p {
  font-family: "Inter", "Plus Jakarta Sans", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  color: #ffffff;
}
.perk .underline {
  text-decoration: underline;
}

/* ---------- FAQ ---------- */
.faq {
  padding: 96px 0;
  background: var(--bg);
}
.faq-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: start;
}
.faq-item {
  background: #f5f5f6;
  border: none;
  border-radius: 20px;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-family: "Inter", "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
  text-align: left;
  border-radius: 20px;
}
.faq-question:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: -2px;
}
.faq-chevron {
  flex: 0 0 auto;
  color: var(--text);
  transition: transform 0.25s ease;
  transform: rotate(0deg);
}
.faq-item.is-open .faq-chevron {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-answer-inner {
  padding: 0 24px 20px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
  white-space: pre-wrap;
}
.faq-loading,
.faq-error {
  text-align: center;
  color: var(--text-muted);
  padding: 20px;
}

.faq-cta {
  margin-top: 64px;
  text-align: center;
  background: transparent;
  border: none;
  padding: 0;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.faq-cta h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 6px;
}
.faq-cta p {
  color: var(--text-muted);
  margin-bottom: 20px;
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--bg);
  color: var(--text-muted);
  padding: 32px 24px 48px;
}
.site-footer > .container.footer-inner {
  background: #191919;
  color: #fff;
  border-radius: 32px;
  padding: 56px 56px;
  margin-bottom: 32px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  max-width: var(--max-w);
  border-bottom: none;
}
.site-footer .footer-inner,
.site-footer .footer-inner * {
  color: #fff;
}
.site-footer .footer-inner a {
  color: #fff;
}
.footer-brand .logo {
  display: inline-flex;
  margin-bottom: 20px;
}
.logo-light img {
  height: 32px;
}
.footer-brand address,
.footer-brand p {
  font-style: normal;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 18px;
}

.footer-brand address {
  margin-bottom: 0px;
}

.footer-brand strong {
  color: #fff;
}
.footer-brand a {
  color: #ffffff;
  text-decoration: underline;
}
.social {
  display: flex;
  gap: 12px;
}
.social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.15s ease;
}
.social a:hover {
  opacity: 0.85;
}
.social img {
  width: 24px;
  height: 24px;
  display: block;
}

.footer-nav h4 {
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  font-family: "Inter", "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0;
}
.footer-nav a:hover {
  color: #fff;
}

.footer-legal-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
  height: 100%;
}
.footer-legal-col .footer-nav {
  flex: 1;
}
.footer-badges {
  display: flex;
  gap: 12px;
}
.footer-badges .badge img {
  width: 120px;
  height: 40px;
  object-fit: contain;
}

.footer-bottom {
  padding-top: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  font-size: 13px;
  color: var(--accent);
}
.footer-bottom ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-bottom a {
  color: var(--accent);
  text-decoration: underline;
}
.footer-bottom a:hover {
  color: var(--accent-hover);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1180px) {
  .hero-title {
    font-size: 44px;
  }
}

@media (max-width: 980px) {
  .header-pill-badges {
    display: none;
  }
  .header-pill-main {
    grid-template-columns: auto 1fr;
    gap: 16px;
    padding: 12px 16px;
  }
  .header-pill-main .primary-nav {
    display: none;
  }
  .nav-toggle {
    display: flex;
    justify-self: end;
  }
  .header-pill-main .nav-toggle {
    display: flex;
    background: transparent;
    box-shadow: none;
    width: 40px;
    height: 40px;
  }

  .hero {
    padding: 120px 0 64px;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "title"
      "mockup"
      "cta"
      "foot";
    row-gap: 32px;
    text-align: center;
    min-height: 0;
  }
  .hero-title {
    white-space: normal;
    padding-top: 0;
    text-align: center;
    font-size: clamp(36px, 8vw, 56px);
  }
  .hero-mockup {
    max-width: 320px;
  }
  .hero-inline-cta {
    margin-left: 0;
    margin-top: 0;
    justify-self: center;
  }
  .hero-badges {
    justify-content: center;
  }
  .hero-foot {
    position: static;
    top: auto;
    left: auto;
    margin-top: 0;
    margin-left: 0;
    justify-self: center;
    align-items: center;
    text-align: center;
  }
  .hero-top-callout {
    display: none;
  }
  .how-inner,
  .tips-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .tips-inner .tips-visual {
    order: 2;
  }
  .tips-inner .tip-list {
    order: 1;
  }
  .plan-grid,
  .perk-grid,
  .faq-list {
    grid-template-columns: 1fr;
  }
  .site-footer {
    padding: 16px 16px 32px;
  }
  .site-footer > .container.footer-inner {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 32px 24px;
    border-radius: 24px;
    margin-bottom: 24px;
  }
  .footer-badges {
    grid-column: 1;
    margin-top: 0;
  }
  .footer-bottom {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 16px;
  }
  .footer-bottom ul {
    flex-direction: column;
    gap: 12px;
  }
}

@media (max-width: 520px) {
  .hero-mockup {
    max-width: 320px;
  }
  .tips-photo {
    max-width: 280px;
  }
}
