:root {
  --bg: #ffffff;
  --bg-soft: #f7fbfd;
  --navy: #111c3a;
  --text: #26334f;
  --muted: #74829c;
  --line: #e7edf5;
  --teal: #15c8c3;
  --teal-dark: #09a9a7;
  --coral: #ff5f5f;
  --coral-2: #ff7768;
  --blue: #5ea4ff;
  --shadow: 0 18px 50px rgba(20, 36, 70, 0.08);
  --shadow-soft: 0 12px 34px rgba(34, 58, 95, 0.06);
  --radius: 18px;
  --radius-lg: 26px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: "Pretendard", "Inter", "Apple SD Gothic Neo", "Malgun Gothic", system-ui, sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 72% 8%, rgba(22, 200, 195, 0.13), transparent 23rem),
    radial-gradient(circle at 90% 14%, rgba(255, 116, 104, 0.1), transparent 17rem),
    linear-gradient(180deg, #ffffff 0%, #fbfdff 48%, #ffffff 100%);
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.container {
  width: min(100% - 40px, 1120px);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 200;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--navy);
  color: #ffffff;
  font-weight: 800;
}

.skip-link:focus {
  transform: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-weight: 950;
  letter-spacing: 0;
}

.brand img {
  width: 22px;
  height: 22px;
}

.nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.nav a {
  transition: color 0.2s var(--ease);
}

.nav a:hover,
.nav a.is-active,
.login-link:hover,
.nav-auth:hover {
  color: var(--navy);
}

.nav-auth {
  display: none;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 14px;
  font-weight: 850;
  text-align: left;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.login-link {
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  color: var(--navy);
  place-items: center;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  margin: 3px auto;
}

.btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 12px;
  border: 1px solid transparent;
  padding: 0 22px;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease), border-color 0.18s var(--ease);
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--coral), var(--coral-2));
  color: #ffffff;
  box-shadow: 0 14px 26px rgba(255, 96, 91, 0.28);
}

.btn-secondary,
.btn-outline {
  background: #ffffff;
  color: var(--navy);
  border-color: #dce5ef;
  box-shadow: 0 10px 24px rgba(20, 36, 70, 0.05);
}

.btn-light {
  background: #ffffff;
  color: var(--coral);
  box-shadow: 0 14px 24px rgba(175, 45, 42, 0.12);
}

.btn-sm {
  min-height: 38px;
  padding-inline: 16px;
}

.full {
  width: 100%;
}

.hero {
  padding: 48px 0 52px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 42px;
}

.hero-copy-block {
  padding-top: 8px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: max-content;
  min-height: 30px;
  border-radius: 999px;
  background: rgba(20, 200, 195, 0.11);
  color: var(--teal-dark);
  padding: 0 13px;
  font-size: 12px;
  font-weight: 950;
}

.hero h1 {
  margin: 18px 0 0;
  color: var(--navy);
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.14;
  font-weight: 950;
}

.hero h1 span {
  color: var(--teal);
}

.hero-copy {
  width: min(100%, 430px);
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 700;
  word-break: keep-all;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
}

.rating-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
}

.rating-row img {
  width: 80px;
  height: 42px;
  object-fit: cover;
  border-radius: 999px;
}

.rating-row strong {
  display: block;
  color: #ffb23e;
  font-size: 13px;
  line-height: 1.2;
}

.rating-row strong span {
  color: var(--navy);
}

.rating-row p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.hero-visual {
  position: relative;
  min-height: 410px;
  display: grid;
  place-items: center;
}

.hero-visual::before,
.hero-visual::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
}

.hero-visual::before {
  width: 360px;
  height: 360px;
  background: rgba(25, 196, 203, 0.13);
  left: 8%;
  top: 2%;
}

.hero-visual::after {
  width: 180px;
  height: 180px;
  background: rgba(255, 121, 111, 0.09);
  right: 0;
  top: 44px;
}

.hero-visual img {
  position: relative;
  z-index: 1;
  width: min(100%, 475px);
  filter: drop-shadow(0 24px 44px rgba(24, 54, 88, 0.09));
}

.stats-section {
  padding: 12px 0 48px;
}

.stats-card {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 30px 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
}

.stats-card div {
  display: grid;
  justify-items: center;
  gap: 5px;
  text-align: center;
}

.stat-icon,
.feature-icon,
.audience-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--teal-dark);
  background: #dcfbf8;
  font-size: 11px;
  font-weight: 950;
}

.stats-card dt {
  color: var(--navy);
  font-size: 28px;
  font-weight: 950;
  line-height: 1;
}

.stats-card dd {
  margin: 0;
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
}

.stats-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.section {
  padding: 48px 0;
}

.section-heading {
  margin-bottom: 28px;
}

.section-heading h2,
.pricing-heading h2,
.compare-card h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(28px, 3.3vw, 40px);
  line-height: 1.18;
  font-weight: 950;
}

.section-heading p,
.pricing-heading p {
  margin: 10px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.align-left {
  text-align: left;
}

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

.feature-card,
.audience-grid article,
.price-card,
.compare-card,
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

.feature-card {
  min-height: 145px;
  padding: 24px;
}

.feature-card-large {
  min-height: 292px;
}

.feature-icon {
  margin-bottom: 16px;
}

.feature-icon.coral {
  color: #ff674f;
  background: #fff0ec;
}

.feature-icon.blue {
  color: #5b94ff;
  background: #edf5ff;
}

.feature-icon.orange {
  color: #ff884f;
  background: #fff1e9;
}

.feature-icon.mint {
  color: var(--teal-dark);
  background: #e3fbf6;
}

.feature-icon.amber {
  color: #ff9c33;
  background: #fff5e7;
}

.feature-icon.sky {
  color: #4ca9ff;
  background: #edf8ff;
}

.feature-card h3,
.audience-grid h3,
.price-card .plan-kicker {
  margin: 0;
  color: var(--navy);
  font-size: 17px;
  font-weight: 950;
}

.feature-card p,
.audience-grid p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  word-break: keep-all;
}

.mini-chart {
  height: 84px;
  display: flex;
  align-items: end;
  gap: 7px;
  margin-top: 24px;
  padding: 14px;
  border-radius: 14px;
  background: linear-gradient(180deg, #f7fcff, #ffffff);
}

.mini-chart span {
  flex: 1;
  border-radius: 999px;
  background: linear-gradient(180deg, #5fe0df, #28c2c6);
}

.mini-chart span:nth-child(1) { height: 32%; }
.mini-chart span:nth-child(2) { height: 48%; }
.mini-chart span:nth-child(3) { height: 38%; }
.mini-chart span:nth-child(4) { height: 56%; }
.mini-chart span:nth-child(5) { height: 86%; }

.tag-row {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.tag-row span {
  border-radius: 999px;
  background: #f3fafb;
  color: #7b8aa2;
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 850;
}

.text-preview {
  display: grid;
  gap: 11px;
  margin-top: 30px;
  padding: 18px;
  border-radius: 16px;
  background: #fbfdff;
}

.text-preview span {
  height: 12px;
  border-radius: 999px;
  background: #e3eef8;
}

.text-preview span:nth-child(1) { width: 86%; }
.text-preview span:nth-child(2) { width: 68%; }
.text-preview span:nth-child(3) { width: 92%; }
.text-preview span:nth-child(4) { width: 54%; }

.image-preview {
  margin-top: 22px;
  height: 116px;
  overflow: hidden;
  border-radius: 16px;
  background: #edf8ff;
}

.image-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 64% 45%;
}

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 54px 1fr;
  align-items: center;
  gap: 24px;
}

.compare-card {
  min-height: 210px;
  padding: 28px;
}

.compare-card h2 {
  font-size: 28px;
}

.compare-card ul,
.price-card ul {
  display: grid;
  gap: 11px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.compare-card li,
.price-card li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.compare-card li::before,
.price-card li::before {
  position: absolute;
  left: 0;
  top: 0;
  color: var(--teal-dark);
  font-weight: 950;
}

.pain {
  background: linear-gradient(145deg, #ffffff, #fff8f7);
}

.pain li::before {
  content: "x";
  color: var(--coral);
}

.solution {
  background: linear-gradient(145deg, #ffffff, #f2fffb);
}

.solution li::before,
.price-card li::before {
  content: "✓";
}

.compare-arrow {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #ffffff;
  color: #9aa9bc;
  font-size: 28px;
  font-weight: 900;
}

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

.audience-grid article {
  padding: 28px 18px;
  text-align: center;
}

.audience-icon {
  margin-inline: auto;
  margin-bottom: 16px;
}

.audience-icon.pink {
  background: #fff0fb;
  color: #d85fb2;
}

.audience-icon.blue {
  background: #eef5ff;
  color: #5f8fff;
}

.audience-icon.orange {
  background: #fff1e9;
  color: #f0793a;
}

.audience-icon.amber {
  background: #fff5e3;
  color: #ec9737;
}

.pricing-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.billing-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px;
  border-radius: 999px;
  background: #f2f6fa;
  white-space: nowrap;
}

.billing-toggle button {
  min-height: 34px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  padding: 0 14px;
  font-size: 12px;
  font-weight: 900;
}

.billing-toggle button.is-active {
  background: var(--teal);
  color: #ffffff;
}

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

.price-card {
  position: relative;
  min-height: 360px;
  padding: 30px 24px 24px;
}

.price-card.is-featured {
  border-color: rgba(255, 95, 95, 0.58);
  box-shadow: 0 18px 48px rgba(255, 95, 95, 0.16);
}

.badge {
  position: absolute;
  top: -12px;
  right: 20px;
  border-radius: 999px;
  background: var(--coral);
  color: #ffffff;
  padding: 6px 11px;
  font-size: 12px;
  font-weight: 950;
}

.price-card h3 {
  margin: 24px 0 0;
  color: var(--navy);
  font-size: 34px;
  font-weight: 950;
}

.price-card h3 span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.price-card .btn {
  width: 100%;
  margin-top: 30px;
}

.faq-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  align-items: center;
  gap: 50px;
}

.faq-visual img {
  width: 220px;
  margin-inline: auto;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  overflow: hidden;
  box-shadow: none;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 0;
  background: transparent;
  color: var(--text);
  padding: 18px 22px;
  font-size: 15px;
  font-weight: 900;
  text-align: left;
}

.faq-question span {
  color: var(--muted);
  font-size: 22px;
  line-height: 1;
  transition: transform 0.18s var(--ease), color 0.18s var(--ease);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.24s var(--ease);
}

.faq-answer p {
  overflow: hidden;
  margin: 0;
  padding: 0 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-answer p {
  padding-bottom: 18px;
}

.faq-item.is-open .faq-question span {
  color: var(--teal);
  transform: rotate(45deg);
}

.final-cta {
  padding: 36px 0 58px;
}

.final-panel {
  min-height: 220px;
  display: grid;
  grid-template-columns: 1fr 260px;
  align-items: center;
  gap: 24px;
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(135deg, #ff565d, #ff795f);
  padding: 38px 58px;
  color: #ffffff;
  box-shadow: 0 20px 48px rgba(255, 92, 90, 0.22);
}

.final-panel h2 {
  margin: 0;
  font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1.24;
  font-weight: 950;
}

.final-panel .btn {
  margin-top: 24px;
}

.final-panel p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 800;
}

.final-panel img {
  width: 230px;
  justify-self: end;
}

.chat-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 50;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--teal);
  color: #ffffff;
  font-size: 22px;
  font-weight: 950;
  box-shadow: 0 16px 34px rgba(15, 190, 186, 0.32);
}

.site-footer {
  background: #061936;
  color: #dce8f8;
  padding: 48px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 42px;
}

.footer-logo {
  color: #ffffff;
}

.footer-brand p {
  max-width: 250px;
  margin: 14px 0 0;
  color: rgba(220, 232, 248, 0.72);
  font-size: 13px;
  font-weight: 700;
}

.socials {
  display: flex;
  gap: 8px;
  margin-top: 20px;
}

.socials a {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.11);
  color: #ffffff;
  font-size: 11px;
  font-weight: 950;
}

.footer-col {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-col h3 {
  margin: 0 0 6px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 950;
}

.footer-col a {
  color: rgba(220, 232, 248, 0.72);
  font-size: 13px;
  font-weight: 700;
}

.footer-bottom {
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(220, 232, 248, 0.7);
  font-size: 12px;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 22px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s var(--ease), visibility 0.2s var(--ease);
}

.modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 24, 48, 0.42);
  backdrop-filter: blur(10px);
}

.modal-panel {
  position: relative;
  width: min(100%, 520px);
  max-height: min(86vh, 820px);
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #ffffff;
  padding: 30px;
  box-shadow: 0 30px 80px rgba(10, 30, 60, 0.18);
  transform: translateY(16px) scale(0.98);
  transition: transform 0.2s var(--ease);
}

.modal.is-open .modal-panel {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #ffffff;
  color: var(--navy);
  font-size: 22px;
  line-height: 1;
}

.modal-panel h2 {
  margin: 16px 0 0;
  color: var(--navy);
  font-size: 28px;
  line-height: 1.18;
  font-weight: 950;
}

.modal-panel > p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.lead-form {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.lead-form label {
  display: grid;
  gap: 7px;
  color: var(--text);
  font-size: 13px;
  font-weight: 900;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid #dfe8f2;
  border-radius: 12px;
  background: #fbfdff;
  color: var(--text);
  padding: 13px 14px;
  outline: none;
  transition: border-color 0.18s var(--ease), box-shadow 0.18s var(--ease);
}

.lead-form textarea {
  resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: rgba(20, 200, 195, 0.65);
  box-shadow: 0 0 0 4px rgba(20, 200, 195, 0.12);
}

.auth-panel {
  width: min(100%, 480px);
}

.auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-top: 22px;
  padding: 5px;
  border-radius: 14px;
  background: #f2f6fa;
}

.auth-tabs button {
  min-height: 42px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--muted);
  font-weight: 950;
}

.auth-tabs button.is-active {
  background: #ffffff;
  color: var(--navy);
  box-shadow: var(--shadow-soft);
}

.auth-form[hidden],
.auth-summary[hidden] {
  display: none;
}

.auth-summary {
  display: grid;
  gap: 8px;
  margin-top: 22px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fbfdff;
}

.auth-summary strong {
  color: var(--navy);
  font-size: 18px;
}

.auth-summary span,
.form-status {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.form-status {
  min-height: 20px;
  margin: 0;
  text-align: center;
}

.form-status.is-success {
  color: var(--teal-dark);
}

.form-status.is-error {
  color: var(--coral);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  .container {
    width: min(100% - 28px, 760px);
  }

  .header-inner {
    grid-template-columns: auto auto 1fr;
  }

  .menu-toggle {
    display: block;
    order: 3;
    justify-self: end;
  }

  .nav {
    position: absolute;
    left: 14px;
    right: 14px;
    top: 72px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: var(--shadow);
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 13px 14px;
  }

  .nav-auth {
    display: block;
    padding: 13px 14px;
  }

  .header-actions {
    display: none;
  }

  .hero-inner,
  .compare-grid,
  .faq-layout,
  .final-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 30px;
  }

  .hero-visual {
    min-height: 300px;
  }

  .stats-card,
  .feature-grid,
  .audience-grid,
  .pricing-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .compare-arrow {
    margin-inline: auto;
    transform: rotate(90deg);
  }

  .pricing-heading {
    display: grid;
  }

  .final-panel {
    padding: 34px;
  }

  .final-panel img {
    justify-self: center;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, 560px);
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .stats-card,
  .feature-grid,
  .audience-grid,
  .pricing-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .stats-card {
    padding: 24px;
  }

  .feature-card-large {
    min-height: 240px;
  }

  .compare-card,
  .price-card {
    padding: 24px;
  }

  .billing-toggle {
    width: 100%;
    justify-content: space-between;
  }

  .final-panel {
    padding: 28px 22px;
  }

  .final-panel h2 {
    font-size: 28px;
  }

  .modal-panel {
    padding: 26px 20px;
  }
}
