/* SCR-P01 · 신규외부화면 · 시안 기준 퍼블리싱 */

:root {
  --blue-900: #0a2240;
  --blue-800: #0d3a6e;
  --blue-700: #1a5fa8;
  --blue-600: #2474c8;
  --blue-500: #3b8ef0;
  --teal-600: #0d9488;
  --teal-500: #14b8a6;
  --white: #ffffff;
  --gray-50: #f5f8fc;
  --gray-100: #eef2f7;
  --gray-400: #94a3b8;
  --gray-600: #64748b;
  --gray-800: #334155;
  --shadow-sm: 0 2px 8px rgba(15, 46, 91, 0.06);
  --shadow-md: 0 8px 32px rgba(15, 46, 91, 0.1);
  --shadow-lg: 0 16px 48px rgba(15, 46, 91, 0.14);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --container: 1580px;
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  font-family:
    "Pretendard",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-800);
  background: var(--white);
  max-width: 100%;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

/* 페이지 로드·스크롤 등장 */
.reveal {
  opacity: 0;
  transform: translate3d(0, 16px, 0);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
    will-change: auto;
  }
}

img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

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

.hide-mobile {
  display: inline;
}

/* ── 버튼 ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 11px 23px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition:
    opacity 0.2s,
    transform 0.2s,
    background 0.2s;
}

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

.btn--primary {
  background: linear-gradient(135deg, var(--blue-600), var(--blue-500));
  color: var(--white);
  border: none;
  box-shadow: 0 4px 14px rgba(36, 116, 200, 0.35);
}

.btn--ghost {
  /* background: rgba(255, 255, 255, 0.1); */
  color: var(--white);
  border: 1px solid #2e90fa;
  backdrop-filter: blur(4px);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid #2e90fa;
}

.btn--lg {
  padding: 14px 28px;
  font-size: 15px;
  border-radius: 10px;
}

/* 데모 영상 SweetAlert2 팝업 */
.demo-video-popup {
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  border-radius: 16px !important;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45) !important;
}

.demo-video-popup__title {
  margin: 0 !important;
  padding: 0.2em 2.2em 0.75em 0 !important;
  font-size: 1.15rem !important;
  font-weight: 700 !important;
  text-align: left !important;
}

.demo-video-popup__body {
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden;
}

.demo-video-popup__close {
  color: rgba(255, 255, 255, 0.85) !important;
}

.demo-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 10px;
  background: #000;
}

.demo-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* SweetAlert2: 플러그인 컨테이너 스크롤바만 제거 (페이지 스크롤바는 유지) */
body.swal2-shown {
  padding-right: 0 !important;
}

.swal2-container {
  overflow: hidden !important;
}

/* ==================== 공통 헤더 기본 스타일 ==================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  background: transparent;
  transition:
    top 0.35s ease,
    left 0.35s ease,
    right 0.35s ease,
    height 0.35s ease,
    background 0.35s ease,
    border-color 0.35s ease,
    border-radius 0.35s ease,
    box-shadow 0.35s ease,
    backdrop-filter 0.35s ease;
}

.header.is-scrolled {
  top: 14px;
  left: 20px;
  right: 20px;
  width: auto;
  height: 58px;
  border-radius: 999px;
  background: rgba(10, 34, 64, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow:
    0 10px 36px rgba(8, 24, 48, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(22px) saturate(165%);
  -webkit-backdrop-filter: blur(22px) saturate(165%);
}

.header__inner {
  position: relative;
  display: flex;
  align-items: center;
  height: var(--header-h);
  gap: 24px;
  transition: height 0.35s ease;
}

.header.is-scrolled .header__inner {
  height: 58px;
  padding-left: 28px;
  padding-right: 14px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo img {
  width: 172px;
  height: 26px;
  object-fit: contain;
}

.logo__icon {
  width: 36px;
  height: 36px;
}

.logo__text {
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
}

.logo__text span {
  color: var(--teal-500);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  margin-left: auto;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition:
    transform 0.3s,
    opacity 0.3s;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: flex-end;
  margin-left: auto;
}

.nav__list {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 66px;
}

.nav__link {
  font-size: 18px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  padding: 4px 0;
  position: relative;
  transition: color 0.2s;
}

.nav__link:hover,
.nav__link--active {
  color: var(--white);
}

.nav__link--active::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--white);
  border-radius: 1px;
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ── 다국어 토글 ── */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(10, 34, 64, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.lang-toggle__link {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.15s ease;
}

.lang-toggle__link:hover {
  color: rgba(255, 255, 255, 0.85);
}

.lang-toggle__link.is-active {
  color: var(--white);
  font-weight: 700;
}

.lang-toggle__divider {
  color: rgba(255, 255, 255, 0.3);
  font-size: 12px;
}

@media (max-width: 767px) {
  .lang-toggle {
    order: 3;
  }
}

.nav__actions .btn {
  width: 122px;
  height: 44px;
  padding: 0;
}

/* ── 히어로 ── */
.hero {
  position: relative;
  min-height: 620px;
  padding-top: var(--header-h);
  background:
    radial-gradient(
      circle at var(--hero-bg-x, 72%) var(--hero-bg-y, 35%),
      rgba(1, 135, 146, 0.45) 0%,
      rgba(1, 80, 120, 0.16) 28%,
      transparent 58%
    ),
    linear-gradient(180deg, #012e6a 0%, #015b80 45%, #018792 100%);
  overflow: hidden;
  will-change: background;
}

.hero__grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(
    ellipse 80% 70% at 60% 40%,
    black 20%,
    transparent 70%
  );
}

.hero__grid-bg::before {
  content: "";
  position: absolute;
  top: 10%;
  right: 15%;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(59, 142, 240, 0.2) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.hero__grid-bg::after {
  content: "";
  position: absolute;
  bottom: 20%;
  left: 30%;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(20, 184, 166, 0.12) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  min-height: calc(620px - var(--header-h));
  padding: 60px 24px 100px;
}

.hero__content {
  z-index: 2;
}

.hero__badge {
  display: inline-block;
  padding: 6px 16px;
  margin-bottom: 20px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  backdrop-filter: blur(4px);
}

.hero__title {
  font-size: clamp(32px, 4.5vw, 72px);
  font-weight: 800;
  line-height: 1.25;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.hero__desc {
  font-size: clamp(15px, 1.8vw, 24px);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero__desc strong {
  font-weight: 500;
  color: var(--white);
}

.hero__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.hero__image {
  width: 100%;
  max-width: 520px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.25));
}

.hero__illust img {
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

.hero__illust {
  animation: hero-float 5s ease-in-out infinite;
  will-change: transform;
}

@keyframes hero-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__illust {
    animation: none;
    will-change: auto;
  }

  .hero__lines {
    animation: none !important;
    transform: none !important;
    will-change: auto;
  }

  .hero__illust img {
    transform: none !important;
    will-change: auto;
  }
}

.hero__lines {
  position: absolute;
  left: -240px;
  bottom: 36px;
  z-index: 4;
  width: calc(100% + 480px);
  max-width: none;
  height: 80px;
  object-fit: cover;
  pointer-events: none;
  animation: hero-lines-drift 24s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes hero-lines-drift {
  from {
    transform: translateX(-120px);
  }
  to {
    transform: translateX(120px);
  }
}

.hero__wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 3;
}

/* ── 기능 소개 ── */
.features {
  padding: 80px 0 72px;
  background: var(--white);
}

.section-title {
  font-size: clamp(22px, 3vw, 48px);
  font-weight: 300;
  text-align: center;
  color: var(--gray-800);
  margin-bottom: 48px;
}

.section-title strong {
  font-weight: 700;
}

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

.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px 32px;
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(15, 46, 91, 0.05);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.feature-card__icon {
  /* width: 72px;
  height: 72px; */
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-card__icon svg {
  display: block;
  width: 160px;
  height: 160px;
}

.feature-icon__antenna-wave,
.feature-icon__circuit {
  opacity: 1;
  transform-origin: center;
  transform-box: fill-box;
}

.feature-icon__screw-spin {
  transform-origin: 0 0;
}

.feature-card:hover .feature-icon__antenna-wave:nth-child(1) {
  animation: feature-blink 1s ease-in-out infinite;
}

.feature-card:hover .feature-icon__antenna-wave:nth-child(2) {
  animation: feature-blink 1s ease-in-out 0.18s infinite;
}

.feature-card:hover .feature-icon__antenna-wave:nth-child(3) {
  animation: feature-blink 1s ease-in-out 0.36s infinite;
}

.feature-card:hover .feature-icon__circuit:nth-child(1) {
  animation: feature-blink 0.9s ease-in-out infinite;
}

.feature-card:hover .feature-icon__circuit:nth-child(2) {
  animation: feature-blink 0.9s ease-in-out 0.14s infinite;
}

.feature-card:hover .feature-icon__circuit:nth-child(3) {
  animation: feature-blink 0.9s ease-in-out 0.28s infinite;
}

.feature-card:hover .feature-icon__circuit:nth-child(4) {
  animation: feature-blink 0.9s ease-in-out 0.42s infinite;
}

.feature-card:hover .feature-icon__circuit:nth-child(5) {
  animation: feature-blink 0.9s ease-in-out 0.56s infinite;
}

.feature-card:hover .feature-icon__screw-spin {
  animation: feature-screw-spin 1.4s linear infinite;
}

@keyframes feature-blink {
  0%,
  100% {
    opacity: 0.2;
  }
  50% {
    opacity: 1;
  }
}

@keyframes feature-screw-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .feature-card:hover .feature-icon__antenna-wave,
  .feature-card:hover .feature-icon__circuit,
  .feature-card:hover .feature-icon__screw-spin {
    animation: none;
  }
}

.feature-card__title {
  width: 280px;
  max-width: 100%;
  font-size: 40px;
  font-weight: 600;
  color: var(--blue-700);
  margin: 0 auto 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(15, 46, 91, 0.08);
}

.feature-card__desc {
  font-size: 20px;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ── 요금 플랜 ── */
.plans {
  padding: 72px 0 88px;
  background: var(--gray-100);
}

.plans__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
}

.plans__icon {
  display: block;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.plans__title {
  font-size: clamp(20px, 2.5vw, 24px);
  font-weight: 700;
  color: var(--gray-800);
}

.plans__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.plan-card {
  position: relative;
  aspect-ratio: 4 / 3;
  min-height: 0;
  background: var(--white);
  border-radius: 12px;
  padding: 70px;
  box-shadow: 0 6px 18px rgba(15, 46, 91, 0.18);
  border: 1px solid rgba(74, 85, 120, 0.55);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}

.plan-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.plan-card__badge {
  display: inline-flex;
  align-items: center;
  position: static;
  padding: 4px 15px;
  margin-bottom: 16px;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 20px;
  backdrop-filter: blur(4px);
}

.plan-card--featured {
  background-color: var(--blue-700);
  background-image: linear-gradient(
    125deg,
    var(--blue-600) 0%,
    var(--blue-700) 35%,
    var(--teal-600) 65%,
    var(--blue-600) 100%
  );
  background-size: 220% 220%;
  background-position: 12% 40%;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 12px 40px rgba(26, 95, 168, 0.35);
  transform: none;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    background-position 0.85s ease;
}

.plan-card--featured:hover {
  transform: translateY(-8px);
  background-position: 88% 60%;
}

@media (prefers-reduced-motion: reduce) {
  .plan-card--featured,
  .plan-card--featured:hover {
    background-position: 12% 40%;
    transition:
      transform 0.25s,
      box-shadow 0.25s;
  }
}

.plan-card--featured .plan-card__name,
.plan-card--featured .plan-card__price,
.plan-card--featured .plan-card__target {
  color: var(--white);
}

.plan-card--featured .plan-card__period {
  color: rgba(255, 255, 255, 0.75);
}

.plan-card__name {
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(15, 46, 91, 0.08);
}

.plan-card--featured .plan-card__name {
  border-bottom-color: rgba(255, 255, 255, 0.2);
}

.plan-card__price {
  font-size: clamp(30px, 3vw, 48px);
  font-weight: 800;
  color: var(--blue-700);
  margin-bottom: 10px;
  line-height: 1.2;
}

.plan-card__currency {
  font-size: 1em;
  font-weight: 800;
}

.plan-card__period {
  font-size: 14px;
  font-weight: 400;
  color: var(--gray-400);
}

.plan-card__target {
  font-size: clamp(13px, 1.2vw, 18px);
  color: var(--gray-600);
  line-height: 1.5;
}

/* ==================== 공통 푸터 기본 스타일 ==================== */
.cases {
  display: none;
}

.footer {
  position: relative;
  min-height: 160px;
  overflow: hidden;
  background: linear-gradient(90deg, #176fdc 0%, #0b2d5b 100%);
  color: rgba(255, 255, 255, 0.75);
}

.footer__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 36px 24px 72px;
}

.footer__info {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
}

.footer__links {
  display: flex;
  gap: 24px;
}

.footer__links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
}

.footer__links a:hover {
  color: var(--white);
}

.footer__links a:first-child {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.footer__lines {
  position: absolute;
  left: 0;
  bottom: 8px;
  z-index: 1;
  width: 100%;
  height: 63px;
  object-fit: cover;
  opacity: 0.24;
  pointer-events: none;
}

/* ── 반응형: 태블릿 ── */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding-bottom: 80px;
  }

  .hero__btns {
    justify-content: center;
  }

  .hero__visual {
    order: -1;
  }

  .hero__image {
    max-width: 400px;
  }

  .features__grid,
  .plans__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .plans__grid .plan-card:last-child {
    grid-column: span 2;
    max-width: 50%;
    margin: 0 auto;
    width: 100%;
  }

  .plan-card--featured {
    transform: none;
  }
  .plan-card--featured:hover {
    transform: translateY(-8px);
  }
}

/* ── 반응형: 모바일 ── */
@media (max-width: 950px) {
  :root {
    --header-h: 64px;
  }

  .header {
    z-index: 9999;
  }

  /* 모바일: 필 글라스모피즘 비활성 — 전체 폭 스티키 */
  .header.is-scrolled {
    top: 0;
    left: 0;
    right: 0;
    width: auto;
    height: var(--header-h);
    border: 0;
    border-radius: 0;
    background: rgba(10, 34, 64, 0.98);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.18);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .header.is-scrolled .header__inner {
    height: var(--header-h);
    padding-left: 0;
    padding-right: 0;
  }

  .header__inner {
    z-index: 2;
  }

  .hide-mobile {
    display: none;
  }

  .nav-toggle {
    position: relative;
    z-index: 3;
    display: flex;
  }

  .nav {
    position: fixed;
    z-index: 1;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: auto;
    width: 100%;
    max-width: 100vw;
    height: calc(100vh - var(--header-h));
    height: calc(100dvh - var(--header-h));
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    margin: 0;
    padding: 24px;
    background: rgba(10, 34, 64, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transform: translateX(100%);
    transition:
      transform 0.3s ease,
      visibility 0s linear 0.3s;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    visibility: hidden;
    pointer-events: none;
  }

  .nav.is-open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
    transition: transform 0.3s ease, visibility 0s;
  }

  .nav__list {
    position: static;
    transform: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin-bottom: 24px;
  }

  .nav__link {
    display: block;
    padding: 16px 0;
    font-size: 17px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav__link--active::after {
    display: none;
  }

  .nav__actions {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .nav__actions .btn {
    width: 122px;
    height: 44px;
    justify-content: center;
    padding: 0;
  }

  .hero {
    min-height: auto;
  }

  .hero__inner {
    padding: 40px 24px 72px;
    min-height: auto;
  }

  .hero__title {
    font-size: 28px;
  }

  .hero__btns {
    flex-direction: column;
    width: 100%;
  }

  .hero__btns .btn {
    width: 100%;
  }

  .hero__image {
    max-width: 300px;
  }

  .hero__wave {
    height: 48px;
  }

  .hero__lines {
    bottom: 22px;
    height: 44px;
  }

  .features {
    padding: 56px 0 48px;
  }
  .section-title {
    margin-bottom: 32px;
  }

  .features__grid,
  .plans__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .plans__grid .plan-card:last-child {
    grid-column: auto;
    max-width: none;
  }

  .plans {
    padding: 48px 0 56px;
  }

  .plan-card {
    aspect-ratio: auto;
    min-height: 234px;
  }

  .footer__inner {
    flex-direction: column;
    text-align: center;
    padding: 28px 24px 72px;
  }

  .footer__links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero__image {
    max-width: 260px;
  }

  .feature-card {
    padding: 28px 20px;
  }

  .plan-card {
    padding: 24px 20px;
  }
}
