/* Medical-care LP design system, scoped to this standalone LP. */
:root {
  --bg-color: #FFFFFF;
  --primary-color: #5BA8F5;
  --secondary-color: #EAF5FF;
  --heading-color: #1D4E89;
  --text-color: #2D3748;
  --text-light: #718096;
  --border-color: #E2E8F0;
  --card-shadow: 0 10px 30px rgba(29, 78, 137, 0.06);
  --card-hover-shadow: 0 20px 40px rgba(29, 78, 137, 0.12);
  --radius-lg: 16px;
  --radius-md: 12px;
  --after-accent: #3182CE;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-width: 0;
  overflow-x: hidden;
  font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-color);
  background-color: var(--bg-color);
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

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

h1,
h2 {
  word-break: auto-phrase;
  text-wrap: balance;
}

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

section {
  position: relative;
  width: 100%;
  padding: 130px 0;
  scroll-margin-top: 80px;
}

.bg-light {
  background-color: var(--secondary-color);
}

.bg-dark {
  background-color: var(--heading-color);
  color: #FFFFFF;
}

.section-kicker {
  margin-bottom: 8px;
  color: var(--primary-color);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-align: center;
}

.section-title {
  margin-bottom: 60px;
  color: var(--heading-color);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-align: center;
}

.section-title.white {
  color: #FFFFFF;
}

.nb {
  display: inline-block;
}

.section-desc {
  max-width: 980px;
  margin: 0 auto 60px;
  color: var(--text-light);
  font-size: 18px;
  text-align: center;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.section-desc.white {
  color: #EAF5FF;
}

.btn-group {
  display: flex;
  gap: 16px;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}

.btn-group.center {
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border: 2px solid transparent;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  color: #FFFFFF;
  background-color: var(--primary-color);
}

.btn-primary:hover {
  background-color: #4a96e2;
  box-shadow: 0 6px 12px rgba(91, 168, 245, 0.3);
  transform: translateY(-2px);
}

.btn-secondary {
  color: var(--primary-color);
  background-color: #FFFFFF;
  border-color: var(--primary-color);
}

.btn-secondary:hover {
  background-color: var(--secondary-color);
  box-shadow: 0 6px 12px rgba(91, 168, 245, 0.1);
  transform: translateY(-2px);
}

.btn-large {
  padding: 18px 40px;
  font-size: 17px;
}

.btn-accent {
  color: #FFFFFF;
  background-color: #FF9F43;
}

.btn-accent:hover {
  background-color: #ee8c2b;
  box-shadow: 0 6px 15px rgba(255, 159, 67, 0.4);
  transform: translateY(-2px);
}

header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--border-color);
  backdrop-filter: blur(10px);
}

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

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

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

.nav-menu {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-item {
  color: var(--heading-color);
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.nav-item:hover {
  color: var(--primary-color);
}

.header-btn-group {
  display: flex;
  gap: 10px;
}

.header-btn-group .btn {
  padding: 10px 16px;
  border-radius: var(--radius-md);
  font-size: 13px;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  position: absolute;
  left: 9px;
  width: 26px;
  height: 2px;
  background-color: var(--heading-color);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

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

.hero {
  position: relative;
  padding: 100px 0 120px;
  overflow: hidden;
  background: radial-gradient(circle at top right, rgba(91, 168, 245, 0.15) 0%, rgba(255, 255, 255, 0) 55%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 52fr) minmax(0, 48fr);
  gap: 24px;
  align-items: center;
}

.hero-content {
  max-width: 650px;
}

.hero-tag {
  display: inline-block;
  margin-bottom: 24px;
  padding: 8px 20px;
  color: var(--heading-color);
  background-color: var(--secondary-color);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
}

.hero-title {
  margin-bottom: 24px;
  color: var(--heading-color);
  font-size: clamp(32px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.02em;
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 38px;
    line-height: 1.45;
    letter-spacing: -0.05em;
  }

  .hero-title-row {
    display: inline-block;
    white-space: nowrap;
  }
}

.hero-title-line {
  display: inline-block;
}

.hero-desc {
  margin-bottom: 28px;
  color: var(--text-light);
  font-size: 17px;
  line-height: 1.8;
}

.hero-facts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-bottom: 30px;
}

.hero-fact {
  min-width: 0;
  padding: 12px;
  background-color: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: var(--card-shadow);
}

.hero-fact strong {
  display: block;
  margin-bottom: 4px;
  color: var(--heading-color);
  font-size: 13px;
  line-height: 1.5;
  white-space: nowrap;
}

.hero-fact span {
  display: block;
  color: var(--text-light);
  font-size: 11px;
  line-height: 1.5;
}

@media (min-width: 1200px) {
  .hero-facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-fact {
    padding: 10px 8px;
  }

  .hero-fact strong {
    font-size: 11px;
    letter-spacing: -0.04em;
  }

  .hero-fact span {
    font-size: 10px;
  }
}

.hero-note {
  margin-top: 16px;
  color: var(--text-light);
  font-size: 12px;
  line-height: 1.7;
}

.hero-visual {
  position: relative;
  width: 100%;
}

.mockup-wrapper {
  position: relative;
  width: 100%;
  z-index: 2;
  padding: 12px;
  overflow: hidden;
  background-color: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 40px rgba(29, 78, 137, 0.1);
  transition: transform 0.3s ease;
}

.mockup-wrapper:hover {
  transform: translateY(-5px);
}

.mockup-header {
  display: flex;
  gap: 6px;
  margin-bottom: 10px;
  padding-left: 4px;
}

.mockup-dot {
  width: 10px;
  height: 10px;
  background-color: #CBD5E0;
  border-radius: 50%;
}

.mockup-dot:nth-child(1) { background-color: #FF5F56; }
.mockup-dot:nth-child(2) { background-color: #FFBD2E; }
.mockup-dot:nth-child(3) { background-color: #27C93F; }

.mockup-screen {
  padding: 10px;
  overflow: hidden;
  background-color: #F4F8FC;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
}

.mockup-screen img {
  width: 100%;
  border-radius: 8px;
}

.photo-wrapper {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 3;
  width: 48%;
  height: 72%;
  overflow: hidden;
  border: 4px solid #FFFFFF;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

.photo-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.problem-card {
  padding: 32px 24px;
  text-align: center;
  background-color: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--card-shadow);
  transition: all 0.3s ease;
}

.problem-card:hover {
  border-color: rgba(91, 168, 245, 0.3);
  box-shadow: var(--card-hover-shadow);
  transform: translateY(-8px);
}

.problem-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  background-color: #FFEBEB;
  border-radius: 50%;
}

.problem-icon {
  width: 32px;
  height: 32px;
  stroke: #E53E3E;
}

.problem-title {
  color: var(--heading-color);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.7;
}

.conclusion-card {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px;
  text-align: center;
  background: linear-gradient(135deg, var(--secondary-color) 0%, #FFFFFF 100%);
  border: 2px solid var(--primary-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--card-shadow);
}

.conclusion-text {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
}

.conclusion-emphasis {
  color: var(--primary-color);
}

.conclusion-sub {
  margin-top: 12px;
  color: var(--text-light);
  font-size: 15px;
}

.before-after-section {
  padding: 90px 0;
}

.media-card {
  overflow: hidden;
  padding: 12px;
  background-color: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--card-shadow);
}

.media-card img {
  width: 100%;
  border-radius: var(--radius-md);
}

.solution-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
}

.solution-card {
  width: calc(50% - 16px);
  min-width: 0;
  padding: 40px 32px;
  background-color: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--card-shadow);
  transition: all 0.3s ease;
}

.solution-card:hover {
  border-color: rgba(91, 168, 245, 0.4);
  box-shadow: var(--card-hover-shadow);
  transform: translateY(-8px);
}

.solution-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  margin-bottom: 24px;
  background-color: var(--secondary-color);
  border-radius: 16px;
}

.solution-icon {
  width: 30px;
  height: 30px;
  stroke: var(--primary-color);
}

.solution-title {
  margin-bottom: 16px;
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 700;
}

.solution-text {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.7;
}

.price-card {
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
  background-color: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--card-shadow);
}

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

.price-item {
  padding: 42px 28px;
  text-align: center;
}

.price-item + .price-item {
  border-left: 1px solid var(--border-color);
}

.price-label {
  margin-bottom: 14px;
  color: var(--text-light);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.price-value {
  color: var(--heading-color);
  font-size: clamp(34px, 5vw, 48px);
  font-weight: 700;
  line-height: 1.25;
}

.price-value span {
  font-size: 16px;
  color: var(--text-color);
}

.price-sub {
  margin-top: 10px;
  color: var(--text-light);
  font-size: 13px;
}

.price-foot {
  padding: 22px 28px;
  color: var(--text-color);
  background-color: #FAFBFD;
  border-top: 1px solid var(--border-color);
  font-size: 14px;
  text-align: center;
}

.price-foot strong {
  color: var(--heading-color);
}

.price-foot small {
  display: block;
  margin-top: 6px;
  color: var(--text-light);
  font-size: 12px;
}

.section-cta {
  margin-top: 34px;
  text-align: center;
}

.table-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  overflow-x: auto;
  background-color: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--card-shadow);
  -webkit-overflow-scrolling: touch;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.compare-table th,
.compare-table td {
  padding: 24px;
  vertical-align: middle;
  border-bottom: 1px solid var(--border-color);
  font-size: 15px;
}

.compare-table tr:last-child th,
.compare-table tr:last-child td {
  border-bottom: none;
}

.compare-table th:first-child,
.compare-table tbody th {
  width: 28%;
  color: var(--heading-color);
  background-color: #F7FAFC;
  font-weight: 700;
  line-height: 1.6;
}

.compare-table td:nth-child(2) {
  width: 50%;
  background-color: #FCFDFE;
}

.compare-table .fee {
  width: 22%;
  color: var(--heading-color);
  background-color: #F5FAFF;
  border-left: 2px solid rgba(91, 168, 245, 0.2);
  font-weight: 700;
  white-space: nowrap;
}

.table-header th {
  padding: 28px 24px;
  color: var(--heading-color);
  background-color: var(--secondary-color);
  font-size: 17px;
  text-align: center;
}

.table-header th:first-child {
  text-align: left;
}

.text-link {
  color: var(--after-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.table-note {
  margin-top: 14px;
  color: var(--text-light);
  font-size: 13px;
  text-align: center;
}

.flow-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.flow-card {
  flex: 0 1 calc((100% - 72px) / 4);
  position: relative;
  padding: 30px 24px;
  background-color: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--card-shadow);
  transition: all 0.3s ease;
}

@media (max-width: 1024px) {
  .flow-card {
    flex-basis: calc((100% - 24px) / 2);
  }
}

.flow-card:hover {
  border-color: var(--primary-color);
  box-shadow: var(--card-hover-shadow);
  transform: translateY(-6px);
}

.flow-number {
  margin-bottom: 16px;
  color: rgba(91, 168, 245, 0.3);
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
}

.flow-who {
  display: inline-block;
  margin-bottom: 10px;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.5;
}

.flow-who.company {
  color: var(--heading-color);
  background-color: var(--secondary-color);
}

.flow-who.customer {
  color: #A56716;
  background-color: #FFF3DF;
}

.flow-card h3 {
  color: var(--heading-color);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.7;
}

.flow-free {
  display: inline-block;
  margin-left: 4px;
  padding: 3px 10px;
  color: #287A4B;
  background-color: #E7F7EE;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.5;
  vertical-align: 1px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  overflow: hidden;
  background-color: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: var(--card-shadow);
  transition: border-color 0.2s ease;
}

.faq-item:hover {
  border-color: var(--primary-color);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  width: 100%;
  padding: 24px;
  color: var(--heading-color);
  background: none;
  border: none;
  outline: none;
  font-size: 16px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.faq-question b,
.faq-answer-content b {
  color: var(--primary-color);
}

.faq-icon-toggle {
  position: relative;
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.faq-icon-toggle::before {
  content: '';
  position: absolute;
  background-color: var(--primary-color);
  transition: transform 0.3s ease;
  top: 11px;
  left: 4px;
  width: 16px;
  height: 2px;
}

.faq-icon-toggle::after {
  content: '';
  position: absolute;
  top: 4px;
  left: 11px;
  width: 2px;
  height: 16px;
  background-color: var(--primary-color);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background-color: #FAFBFD;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
}

.faq-answer-content {
  padding: 0 24px 24px;
  color: var(--text-color);
  border-top: 1px solid #F7FAFC;
  font-size: 15px;
  line-height: 1.8;
}

.final-cta {
  padding: 120px 0;
  text-align: center;
  background: radial-gradient(circle at top, #235fa7 0%, var(--heading-color) 100%);
}

.final-cta .section-title {
  margin-bottom: 20px;
}

.final-cta .section-desc {
  margin-bottom: 0;
}

.final-cta .btn-group {
  margin-top: 40px;
}

footer {
  padding: 60px 0 30px;
  color: var(--text-light);
  background-color: #FAFBFD;
  border-top: 1px solid var(--border-color);
}

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

.footer-brand img {
  height: 40px;
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
}

.footer-links h3 {
  margin-bottom: 20px;
  color: var(--heading-color);
  font-size: 15px;
  font-weight: 700;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid var(--border-color);
  font-size: 13px;
}

.footer-policy-links {
  display: flex;
  gap: 20px;
}

@media (max-width: 1199px) {
  .nav-toggle {
    display: block;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    padding: 24px;
    background-color: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--card-shadow);
  }

  .nav-menu.is-open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .nav-item {
    padding: 8px 4px;
    font-size: 15px;
    text-align: center;
  }

  .header-btn-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 8px;
  }

  .problem-grid {
    gap: 20px;
  }
}

@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-content {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
  }

  .hero-content .btn-group {
    justify-content: center;
  }

  .hero-visual {
    max-width: 680px;
    margin: 0 auto;
  }
}

@media (max-width: 900px) {

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

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

  section {
    padding: 80px 0;
    scroll-margin-top: 70px;
  }

  .section-title {
    margin-bottom: 40px;
    font-size: 26px;
  }

  .section-desc {
    margin-bottom: 40px;
    font-size: 15px;
  }

  header {
    height: 70px;
  }

  .logo img {
    height: 42px;
  }

  .nav-menu {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .hero {
    padding: 60px 0 80px;
  }

  .hero-grid {
    gap: 40px;
  }

  .hero-title {
    font-size: 28px;
  }

  .hero-desc {
    font-size: 15px;
  }

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

  .btn-group {
    flex-direction: column;
    justify-content: center;
    width: 100%;
  }

  .btn {
    width: 100%;
  }

  .problem-grid {
    grid-template-columns: 1fr;
  }

  .conclusion-card {
    padding: 24px;
  }

  .conclusion-text {
    font-size: 16px;
  }

  .before-after-section {
    padding: 64px 0;
  }

  .solution-card {
    width: 100%;
  }

  .price-grid {
    grid-template-columns: 1fr;
  }

  .price-item + .price-item {
    border-top: 1px solid var(--border-color);
    border-left: 0;
  }

  .compare-table th,
  .compare-table td {
    padding: 16px 12px;
    font-size: 14px;
  }

  .table-header th {
    padding: 18px 12px;
    font-size: 15px;
  }

  .faq-question {
    padding: 20px;
    font-size: 15px;
  }

  .faq-answer-content {
    padding: 0 20px 20px;
    font-size: 14px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .section-title {
    font-size: 22px;
    line-height: 1.5;
  }

  .table-wrapper {
    padding-top: 34px;
  }

  .table-wrapper::before {
    content: '← 横にスクロールできます';
    position: absolute;
    top: 7px;
    left: 12px;
    color: var(--text-light);
    font-size: 12px;
    line-height: 1.5;
  }

  .table-wrapper::after {
    content: '';
    position: absolute;
    z-index: 2;
    top: 34px;
    right: 0;
    bottom: 0;
    width: 48px;
    pointer-events: none;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), #FFFFFF);
  }

  .compare-table {
    min-width: 560px;
  }

  .compare-table th:first-child,
  .compare-table tbody th {
    min-width: 210px;
  }

  .flow-grid {
    gap: 20px;
  }

  .flow-card {
    flex-basis: 100%;
  }

  .final-cta {
    padding: 56px 0;
  }
}

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

  .hero-title br {
    display: none;
  }

  .hero-title-row {
    display: inline;
  }

  .header-btn-group {
    grid-template-columns: 1fr;
  }

  .mockup-wrapper,
  .media-card {
    padding: 8px;
  }

  .mockup-screen {
    padding: 6px;
  }

  .solution-card,
  .flow-card,
  .problem-card {
    padding: 28px 20px;
  }

  .price-item {
    padding: 34px 18px;
  }

  .price-foot {
    padding: 20px 16px;
    text-align: left;
  }

  .footer-policy-links {
    flex-direction: column;
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
