:root {
  --accent: #ff4da7;
  --accent-2: #ffd84e;
  --accent-3: #7bf05d;
  --accent-4: #69d9ff;
  --bg: #fbe8ff;
  --panel: #f4d8ff;
  --surface: #fff9ff;
  --surface-soft: #fff2ff;
  --text: #4a1674;
  --muted: #8a64a8;
  --border: #e8b9ff;
  --footer: #4b1f78;
  --footer-text: #fff8ff;
  --footer-muted: #c7cfd9;
  --container: 1240px;
  --heading: "Funnel Sans", "Inter", system-ui, sans-serif;
  --body: "Inter", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 1180px;
  margin: 0;
  padding-top: 92px;
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
}

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

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
  height: 92px;
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 10px 24px rgba(74, 22, 116, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand img {
  width: 200px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
}

.header-actions {
  display: contents;
}

.mobile-menu-toggle,
.mobile-menu-backdrop,
.mobile-carousel-controls {
  display: none;
}

.mobile-menu-toggle {
  border: 0;
  background: transparent;
  cursor: pointer;
}

.mobile-menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
}

.main-nav a,
.footer-col a {
  transition: color 160ms ease, opacity 160ms ease;
}

.main-nav a:hover {
  color: var(--accent);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: fit-content;
  min-height: 46px;
  padding: 13px 18px;
  border: 0;
  border-radius: 16px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex: 0 0 auto;
}

.btn-primary {
  color: #fff;
  background: var(--accent);
  box-shadow: 0 12px 24px rgba(255, 77, 167, 0.22);
}

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

.btn-light {
  color: var(--accent);
  background: #fff;
  box-shadow: 0 10px 24px rgba(103, 32, 150, 0.18);
}

.hero {
  height: 720px;
  padding: 82px 0 80px;
  background: var(--panel);
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.banner-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  height: 560px;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 28px;
  background: #d97cf3;
  box-shadow: 0 22px 50px rgba(114, 32, 148, 0.18);
}

.carousel-clone {
  display: none;
}

.banner-card::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 107, 208, 0.6) 40%, rgba(122, 36, 217, 0.8) 100%);
  pointer-events: none;
}

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

.banner-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--heading);
  color: var(--text);
  letter-spacing: 0;
}

.banner-card h1,
.banner-card h2 {
  max-width: 310px;
  color: #fff;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.02;
}

.banner-card p {
  max-width: 340px;
  margin: 0;
  color: #f7f8fa;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.55;
}

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

.intro {
  padding: 175px 0 170px;
}

.intro-grid {
  display: grid;
  grid-template-columns: 560px 560px;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.intro-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.intro-copy h2,
.section-title {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.04;
}

.intro-copy h2 {
  font-size: 46px;
}

.intro-copy p,
.about-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.screenshot-frame {
  overflow: hidden;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 32px;
  background: var(--surface-soft);
}

.screenshot-frame img {
  width: 100%;
  height: 291px;
  border-radius: 22px;
  object-fit: cover;
  object-position: center;
}

.features {
  padding: 74px 0 80px;
  background: var(--surface-soft);
}

.section-title {
  margin: 0 0 62px;
  text-align: center;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.feature-card {
  min-height: 188px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--surface);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 12px;
  border-radius: 16px;
}

.feature-icon svg {
  width: 23px;
  height: 23px;
  fill: #fff;
}

.icon-pink {
  background: #ff7a45;
}

.icon-yellow {
  background: #ffb347;
}

.icon-green {
  background: #7ed957;
}

.icon-blue {
  background: #4cc9f0;
}

.feature-card h3,
.why-item h3 {
  margin-bottom: 8px;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.05;
}

.feature-card p,
.why-item p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.why {
  min-height: 470px;
  background: url("../../banner2-1.jpg") center / cover no-repeat;
}

.why-overlay {
  min-height: 470px;
  padding: 76px 0 70px;
  background: rgba(244, 217, 255, 0.91);
}

.why .section-title {
  margin-bottom: 56px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-item {
  text-align: center;
}

.why-item h3 {
  margin-top: 20px;
  font-size: 20px;
}

.why-item p {
  max-width: 240px;
  margin: 0 auto;
  font-size: 15px;
}

.sticker {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 78px;
  height: 78px;
  border: 4px solid transparent;
  border-radius: 999px;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(45deg, var(--sticker-a), var(--sticker-b), var(--sticker-c)) border-box;
  box-shadow: 0 10px 24px var(--sticker-shadow);
}

.sticker i,
.sticker i::before,
.sticker i::after {
  content: "";
  position: absolute;
  display: block;
}

.sticker-gameplay {
  --sticker-a: #ff4da7;
  --sticker-b: #ffd84e;
  --sticker-c: #69d9ff;
  --sticker-shadow: rgba(255, 77, 167, 0.4);
}

.sticker-gameplay i {
  width: 22px;
  height: 22px;
  left: calc(50% - 23.5px);
  top: calc(50% - 23.5px);
  border: 2px solid #fff;
  border-radius: 7px;
  background: #ff4da7;
  box-shadow:
    25px 0 0 #ffd84e,
    0 25px 0 #7bf05d,
    25px 25px 0 #69d9ff,
    0 4px 10px rgba(255, 77, 167, 0.38);
}

.sticker-gameplay i::before {
  width: 20px;
  height: 20px;
  left: 15px;
  top: 15px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
}

.sticker-gameplay i::after {
  width: 18px;
  height: 18px;
  left: 16px;
  top: 16px;
  background: #5e1cb3;
  clip-path: polygon(50% 0, 61% 35%, 100% 35%, 68% 57%, 80% 100%, 50% 72%, 20% 100%, 32% 57%, 0 35%, 39% 35%);
}

.sticker-smooth {
  --sticker-a: #ff6bd0;
  --sticker-b: #ff7a45;
  --sticker-c: #ffd84e;
  --sticker-shadow: rgba(255, 216, 78, 0.4);
}

.sticker-smooth i {
  width: 46px;
  height: 46px;
  border: 4px solid #fff;
  border-radius: 999px;
  background: conic-gradient(from 235deg, #69d9ff, #7bf05d, #ffd84e, #ff6bd0);
  box-shadow: 0 4px 10px rgba(105, 217, 255, 0.35);
}

.sticker-smooth i::before {
  width: 18px;
  height: 22px;
  left: 14px;
  top: 8px;
  background: #5e1cb3;
  clip-path: polygon(50% 0, 100% 100%, 50% 78%, 0 100%);
}

.sticker-smooth i::after {
  width: 18px;
  height: 18px;
  right: -8px;
  bottom: -8px;
  background: #ff2f9b;
  clip-path: polygon(0 0, 100% 42%, 58% 58%, 75% 100%, 50% 100%, 34% 66%, 0 90%);
}

.sticker-color {
  --sticker-a: #7bf05d;
  --sticker-b: #69d9ff;
  --sticker-c: #ff4da7;
  --sticker-shadow: rgba(123, 240, 93, 0.4);
}

.sticker-color i {
  width: 44px;
  height: 38px;
  overflow: hidden;
  border: 3px solid #fff;
  border-radius: 999px;
  background:
    linear-gradient(#ff4da7 0 22%, #ffd84e 22% 44%, #7bf05d 44% 66%, #69d9ff 66% 100%);
  box-shadow: 0 4px 10px rgba(255, 77, 167, 0.35);
}

.sticker-color i::before {
  width: 16px;
  height: 16px;
  right: -6px;
  top: -8px;
  background: #5e1cb3;
  clip-path: polygon(50% 0, 62% 35%, 100% 50%, 62% 65%, 50% 100%, 38% 65%, 0 50%, 38% 35%);
}

.sticker-color i::after {
  width: 12px;
  height: 12px;
  left: -8px;
  bottom: 2px;
  border: 2px solid #fff;
  border-radius: 999px;
  background: #ff9ddf;
}

.sticker-anytime {
  --sticker-a: #69d9ff;
  --sticker-b: #a46bff;
  --sticker-c: #ff4da7;
  --sticker-shadow: rgba(105, 217, 255, 0.4);
}

.sticker-anytime i {
  width: 46px;
  height: 46px;
  left: 50%;
  top: 50%;
  border: 4px solid #fff;
  border-radius: 999px;
  background: #fff7c9;
  box-shadow: 0 4px 10px rgba(255, 216, 78, 0.35);
  transform: translate(-50%, -50%);
}

.sticker-anytime i::before {
  width: 26px;
  height: 26px;
  left: 6px;
  top: 6px;
  border: 3px solid #5e1cb3;
  border-radius: 999px;
  background:
    linear-gradient(#5e1cb3, #5e1cb3) 50% 22% / 3px 12px no-repeat,
    linear-gradient(#5e1cb3, #5e1cb3) 58% 56% / 11px 3px no-repeat;
}

.sticker-anytime i::after {
  display: none;
}

.about-company {
  padding: 74px 0 82px;
}

.about-company .section-title {
  margin-bottom: 60px;
}

.about-grid {
  display: grid;
  grid-template-columns: 624px 560px;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.about-grid img {
  width: 560px;
  height: 327px;
  border-radius: 24px;
  object-fit: cover;
}

.site-footer {
  padding: 60px 0 28px;
  background: var(--footer);
  color: var(--footer-muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 340px 1fr 1fr 300px;
  gap: 28px;
}

.footer-brand img {
  width: 200px;
  margin-bottom: 16px;
}

.footer-brand a {
  display: inline-block;
  width: fit-content;
  transition: opacity 160ms ease;
}

.footer-brand a:hover {
  opacity: 0.82;
}

.footer-game-title {
  margin: 0 0 8px;
  color: #fff;
  font-family: var(--heading);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.05;
}

.footer-brand p,
.footer-col a,
.footer-col p,
.footer-col strong {
  margin: 0;
  color: var(--footer-muted);
  font-size: 15px;
  line-height: 1.6;
}

.footer-brand p {
  max-width: 330px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-style: normal;
}

.footer-col h2 {
  color: var(--footer-text);
  font-family: var(--heading);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.05;
}

.footer-col a:hover {
  color: #fff;
}

.contact-line {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.contact-col a.contact-line {
  align-items: center;
}

.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
}

.contact-icon svg {
  width: 15px;
  height: 15px;
  fill: #fff;
}

.copyright {
  margin: 48px 0 0;
  color: var(--footer-muted);
  font-size: 13px;
  font-weight: 500;
  text-align: center;
}

.legal-main {
  padding: 78px 0 92px;
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 77, 167, 0.16), transparent 32%),
    radial-gradient(circle at 88% 8%, rgba(105, 217, 255, 0.2), transparent 30%),
    var(--surface);
}

.legal-card {
  padding: 54px 64px 64px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: rgba(255, 249, 255, 0.92);
  box-shadow: 0 24px 70px rgba(114, 32, 148, 0.12);
}

.legal-heading {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 8px;
}

.back-home {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 999px;
  color: #fff;
  background: var(--accent);
  box-shadow: 0 12px 24px rgba(255, 77, 167, 0.25);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.back-home:hover {
  transform: translateX(-2px);
  box-shadow: 0 14px 28px rgba(255, 77, 167, 0.32);
}

.back-home svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.legal-heading h1 {
  margin: 0;
  font-family: var(--heading);
  font-size: 46px;
  font-weight: 800;
  line-height: 1.04;
  color: var(--text);
}

.legal-meta {
  margin: 0 0 38px 62px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 600;
}

.legal-content {
  color: var(--muted);
}

.legal-content h2 {
  margin: 34px 0 12px;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.2;
}

.legal-content h3 {
  margin: 24px 0 10px;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.25;
}

.legal-content p {
  margin: 0 0 13px;
  font-size: 16px;
  line-height: 1.72;
}

.legal-content ul {
  margin: 0 0 16px 22px;
  padding: 0;
}

.legal-content li {
  margin: 6px 0;
  padding-left: 4px;
  font-size: 16px;
  line-height: 1.58;
}

.legal-contact {
  display: grid;
  gap: 4px;
  margin: 4px 0 18px;
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--surface-soft);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
}

.legal-content a {
  color: var(--accent);
  font-weight: 700;
}

.back-to-top {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  color: #fff;
  background: var(--accent);
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 12px 24px rgba(255, 77, 167, 0.25);
  transform: translateY(10px);
  transition: transform 160ms ease, box-shadow 160ms ease, opacity 160ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(255, 77, 167, 0.32);
}

.back-to-top svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

@media (max-width: 1179px) {
  body {
    min-width: 0;
  }

  .container {
    width: min(var(--container), calc(100% - 48px));
  }
}

@media (max-width: 1024px) {
  .site-header {
    height: 86px;
  }

  .header-inner {
    flex-wrap: nowrap;
    gap: 16px 24px;
    padding: 18px 0;
  }

  .brand img {
    width: 178px;
  }

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: center;
    gap: 26px;
  }

  .hero {
    height: auto;
    padding: 48px 0;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .banner-card {
    min-height: 420px;
    height: auto;
  }

  .banner-card h1,
  .banner-card h2 {
    max-width: 520px;
  }

  .banner-card p {
    max-width: 560px;
  }

  .intro {
    padding: 90px 0;
  }

  .intro-grid,
  .about-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .intro-copy,
  .about-grid p {
    max-width: 720px;
  }

  .screenshot-frame,
  .about-grid img {
    width: 100%;
    max-width: 720px;
  }

  .features {
    padding: 68px 0;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 42px 24px;
  }

  .about-company {
    padding: 68px 0;
  }

  .footer-grid {
    grid-template-columns: 1.3fr 1fr;
    gap: 36px 28px;
  }

  .footer-brand,
  .contact-col {
    max-width: 420px;
  }
}

@media (max-width: 767px) {
  html,
  body {
    overflow-x: hidden;
  }

  body {
    padding-top: 72px;
    font-size: 15px;
  }

  .site-header {
    height: 72px;
  }

  .container {
    width: calc(100% - 32px);
  }

  .header-inner {
    justify-content: space-between;
    padding: 14px 0;
  }

  .brand {
    display: flex;
    justify-content: center;
  }

  .brand img {
    width: 170px;
  }

  .mobile-menu-toggle {
    position: relative;
    z-index: 75;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 34px;
    height: 34px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .menu-open .mobile-menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-open .mobile-menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .menu-open .mobile-menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .mobile-menu-toggle span {
    transition: transform 160ms ease, opacity 160ms ease;
  }

  .header-actions {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 70;
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: min(82vw, 320px);
    height: 100dvh;
    padding: 92px 24px 28px;
    background: rgba(255, 249, 255, 0.98);
    border-left: 1px solid var(--border);
    box-shadow: none;
    transform: translateX(104%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 220ms ease;
  }

  .menu-open .header-actions {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
    box-shadow: -24px 0 60px rgba(74, 22, 116, 0.18);
  }

  .mobile-menu-backdrop {
    position: fixed;
    inset: 0;
    z-index: 60;
    background: rgba(74, 22, 116, 0.34);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease;
  }

  .menu-open .mobile-menu-backdrop {
    display: block;
    opacity: 1;
    pointer-events: auto;
  }

  .site-header .btn {
    width: 100%;
    min-height: 46px;
    padding: 13px 18px;
    font-size: 15px;
  }

  .main-nav {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 8px;
    font-size: 16px;
    order: initial;
  }

  .main-nav a {
    padding: 13px 14px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: #fff;
  }

  .hero {
    padding: 34px 0;
    overflow: hidden;
  }

  .hero-grid {
    display: flex;
    gap: 16px;
    transition: transform 260ms ease;
    will-change: transform;
  }

  .banner-card {
    flex: 0 0 calc(100% - 32px);
    display: flex;
    min-height: 430px;
    padding: 22px;
    border-radius: 24px;
  }

  .mobile-carousel-controls {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin: 20px auto 0;
  }

  .carousel-control {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 999px;
    color: #fff;
    background: var(--accent);
    box-shadow: 0 12px 24px rgba(255, 77, 167, 0.25);
  }

  .carousel-control svg {
    width: 21px;
    height: 21px;
    fill: currentColor;
  }

  .carousel-dots {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .carousel-dots span {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #d9a8ee;
  }

  .carousel-dots span.active {
    width: 18px;
    background: var(--accent);
  }

  .banner-card h1,
  .banner-card h2 {
    max-width: 100%;
    font-size: 30px;
  }

  .banner-card p {
    max-width: 100%;
    font-size: 15px;
  }

  .intro {
    padding: 64px 0;
  }

  .intro-grid,
  .about-grid {
    gap: 30px;
  }

  .screenshot-frame,
  .about-grid img {
    order: -1;
  }

  .intro-copy {
    align-items: center;
    gap: 16px;
    text-align: center;
  }

  .intro-copy h2,
  .section-title,
  .legal-heading h1 {
    font-size: 34px;
  }

  .intro-copy p,
  .about-grid p {
    font-size: 16px;
  }

  .screenshot-frame {
    padding: 12px;
    border-radius: 24px;
  }

  .screenshot-frame img {
    height: auto;
    aspect-ratio: 16 / 9;
    border-radius: 18px;
  }

  .features,
  .about-company {
    padding: 56px 0;
  }

  .section-title {
    margin-bottom: 36px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 0;
    padding: 20px;
    border-radius: 20px;
    text-align: center;
  }

  .feature-card h3,
  .why-item h3 {
    font-size: 21px;
  }

  .feature-card p,
  .why-item p {
    font-size: 15px;
  }

  .why,
  .why-overlay {
    min-height: 0;
  }

  .why-overlay {
    padding: 58px 0;
  }

  .why .section-title {
    margin-bottom: 38px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .why-item p {
    max-width: 300px;
  }

  .about-company .section-title {
    margin-bottom: 36px;
  }

  .about-grid {
    text-align: center;
  }

  .about-grid p {
    margin-right: auto;
    margin-left: auto;
  }

  .about-grid img {
    height: auto;
    aspect-ratio: 16 / 9;
    border-radius: 20px;
  }

  .site-footer {
    padding: 46px 0 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .footer-brand img {
    width: 180px;
  }

  .footer-brand a {
    margin-right: auto;
    margin-left: auto;
  }

  .footer-brand p,
  .footer-brand,
  .footer-col {
    align-items: center;
    margin-right: auto;
    margin-left: auto;
  }

  .contact-line {
    display: block;
    width: auto;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

  .contact-col a.contact-line {
    display: block;
  }

  .contact-line .contact-icon {
    display: inline-flex;
    margin-right: 8px;
    vertical-align: middle;
  }

  .contact-line span:last-child {
    display: inline;
    text-align: center;
    vertical-align: middle;
  }

  p.contact-line {
    align-items: initial;
  }

  .contact-line br {
    display: none;
  }

  .footer-brand p,
  .footer-col a,
  .footer-col p,
  .footer-col strong {
    font-size: 14px;
  }

  .copyright {
    margin-top: 34px;
    font-size: 12px;
  }

  .legal-main {
    padding: 44px 0 58px;
  }

  .legal-card {
    padding: 28px 22px 34px;
    border-radius: 22px;
  }

  .legal-heading {
    align-items: flex-start;
    gap: 12px;
  }

  .back-home,
  .back-to-top {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .back-home svg,
  .back-to-top svg {
    width: 20px;
    height: 20px;
  }

  .legal-meta {
    margin: 10px 0 28px;
    font-size: 14px;
  }

  .legal-content h2 {
    margin-top: 28px;
    font-size: 21px;
  }

  .legal-content h3 {
    font-size: 17px;
  }

  .legal-content p,
  .legal-content li,
  .legal-contact {
    font-size: 15px;
  }

  .back-to-top {
    right: 16px;
    bottom: 16px;
  }
}

@media (max-width: 480px) {
  .container {
    width: calc(100% - 24px);
  }

  .header-inner {
    gap: 12px;
  }

  .main-nav {
    display: flex;
    gap: 8px;
    overflow: visible;
    padding-bottom: 0;
    white-space: normal;
  }

  .site-header .btn {
    width: 100%;
    max-width: none;
  }

  .banner-card {
    min-height: 390px;
    padding: 20px;
    border-radius: 22px;
  }

  .banner-card h1,
  .banner-card h2 {
    font-size: 27px;
  }

  .btn {
    min-height: 42px;
    padding: 11px 15px;
    border-radius: 14px;
    font-size: 14px;
  }

  .intro-copy h2,
  .section-title,
  .legal-heading h1 {
    font-size: 30px;
  }

  .feature-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .sticker {
    width: 70px;
    height: 70px;
  }

  .footer-col {
    gap: 11px;
  }

  .contact-line {
    gap: 8px;
  }

  .legal-card {
    padding: 24px 18px 30px;
  }
}
