/* ============================================
   Design Tokens — Hostinger-inspired Bright
   ============================================ */
:root {
  /* surfaces */
  --bg: #ffffff;
  --bg-2: #faf8ff;
  --bg-3: #f3eefd;
  --bg-4: #ede5fb;
  --surface: #ffffff;

  /* borders */
  --line: #ebe5f5;
  --line-2: #d8ccef;
  --line-3: #b8a6e0;

  /* text */
  --ink: #1a0a40;
  --ink-2: #3a2966;
  --ink-3: #6b5a9e;
  --ink-4: #9b8ec0;

  /* brand - Hostinger violet palette */
  --violet: #673de6;
  --violet-soft: #f0e9ff;
  --violet-deep: #4f2bc9;
  --indigo: #5b3df0;
  --purple: #8b5cf6;
  --magenta: #c026d3;
  --pink: #ec4899;

  /* gradients */
  --grad-primary: linear-gradient(
    135deg,
    #673de6 0%,
    #8b5cf6 50%,
    #c026d3 100%
  );
  --grad-purple-only: linear-gradient(
    160deg,
    #4f2bc9 0%,
    #6d28d9 40%,
    #8b5cf6 100%
  );
  --grad-secondary: linear-gradient(135deg, #5b3df0 0%, #673de6 100%);
  /* ボタン用: 左→右に完全に広がる赤紫→青紫グラデ（端を飽和） */
  --grad-button: linear-gradient(
    90deg,
    #c026d3 0%,
    #c026d3 6%,
    #b145e8 22%,
    #a855f7 42%,
    #8b5cf6 62%,
    #6e4ef1 80%,
    #5b3df0 94%,
    #5b3df0 100%
  );
  --grad-hero: linear-gradient(180deg, #f5efff 0%, #ede5fb 50%, #ffffff 100%);
  --grad-card: linear-gradient(
    135deg,
    rgba(103, 61, 230, 0.08) 0%,
    rgba(192, 38, 211, 0.04) 100%
  );

  /* status colors */
  --green: #10b981;
  --green-soft: #d1fae5;
  --red: #ef4444;
  --red-soft: #fee2e2;
  --amber: #f59e0b;

  --sans: "Plus Jakarta Sans", "Noto Sans JP", sans-serif;
  --jp: "Noto Sans JP", "Hiragino Sans", sans-serif;
  --mono: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;

  --maxw: 1200px;
  --gutter: clamp(20px, 4vw, 56px);
  --r: 16px;
  --r-lg: 24px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--jp);
  font-weight: 500;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.75;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
}

/* ============================================
   Top Nav
   ============================================ */
/* ============================================
   ABLENET Header (l-header)
   ============================================ */
.l-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 24px;
  height: 70px;
}

.l-local-header {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
  min-width: 0;
}

.l-local-header-about {
  flex-shrink: 0;
  margin-right: 8px;
}
.l-local-header-about a {
  display: inline-block;
  text-decoration: none;
}
.l-local-header__logo {
  margin: 0;
  display: flex;
  align-items: center;
}
.l-local-header__logo img {
  height: 38px;
  width: auto;
  display: block;
}

.l-local-header-nav {
  display: none;
}
/* 1200px未満はナビ非表示（〜1028px付近でロゴ・CTAと重なるため） */
@media (min-width: 1200px) {
  .l-local-header-nav {
    display: block;
  }
}

.l-local-header-nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0;
  margin: 0;
}

.l-local-header-nav-item_vps {
  position: relative;
}
.l-local-header-nav-item_vps > a {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 24px 14px;
  font-family: var(--jp);
  font-size: 14px;
  font-weight: 600;
  color: #333;
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}
.l-local-header-nav-item_vps > a:hover {
  color: #ed8112;
}

/* ▼アイコン（material icons的なテキスト） */
.l-local-header-nav-item__icon {
  font-family: monospace;
  font-size: 18px;
  font-style: normal;
  line-height: 1;
  color: #999;
}
.l-local-header-nav-item__icon::before {
  content: "▼";
  font-size: 8px;
}
/* マテリアルアイコンクラスを上書き */
.c-icon.l-local-header-nav-item__icon {
  font-size: 0;
}

/* メガメニュー（PC: グレー背景・横一列 / SP: 非表示） */
.l-header-mega {
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease,
    max-height 0.3s ease;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  width: 100%;
  background: #efefef;
  border: none;
  border-radius: 0;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.1);
  padding: 18px clamp(24px, 6vw, 100px) 22px;
  min-width: 0;
  max-height: 0;
  overflow: hidden;
  z-index: 109;
}
.l-local-header-nav-item_vps:hover .l-header-mega {
  opacity: 1;
  visibility: visible;
  max-height: 120px;
}
.l-header-mega-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 40px;
}
.l-header-mega-item {
  flex-shrink: 0;
}
.l-header-mega-item a {
  display: inline-block;
  padding: 4px 0;
  font-family: var(--jp);
  font-size: 14px;
  font-weight: 700;
  color: #666;
  text-decoration: none;
  border-radius: 0;
  transition: color 0.15s;
  white-space: nowrap;
}
.l-header-mega-item a:hover {
  background: transparent;
  color: #f26100;
}
@media (max-width: 1199px) {
  .l-header-mega {
    display: none;
  }
}
.u-clearfix::after {
  content: "";
  display: block;
  clear: both;
}

/* ログインボタン（PC・SP共通で表示） */
.login {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-left: auto;
}
.login-button {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  font-family: var(--jp);
  font-size: 13px;
  font-weight: 700;
  color: #333;
  background: white;
  border: 1px solid #d0d0d0;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.2s;
}
.login-button:hover {
  background: #f5f5f5;
  border-color: #999;
}

/* お申し込みボタン（背景 #333 / アイコン #f26100） */
.l-header-apply {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #333333;
  color: #fff;
  border: none;
  cursor: pointer;
  padding: 8px 12px;
  font-family: var(--jp);
  font-weight: 700;
  border-radius: 0;
  height: 70px;
  width: 80px;
  margin-right: -24px;
  margin-left: 12px;
  transition:
    background 0.2s,
    opacity 0.2s;
  line-height: 1.2;
  flex-shrink: 0;
}
.l-header-apply:hover {
  background: #f26100;
  opacity: 1;
}
.l-header-apply:hover .l-header-apply__icon::before {
  color: #fff;
}
.l-header-apply__icon {
  font-size: 0;
  display: inline-block;
  line-height: 1;
}
.l-header-apply__icon::before {
  content: "✎";
  font-size: 22px;
  font-style: normal;
  color: #f26100;
  transition: color 0.2s;
}
.l-header-apply__text {
  font-size: 11px;
  font-weight: 700;
  margin-top: 4px;
  display: block;
  color: #fff;
}
/* SP：ロゴ縮小・3カラム配置でログイン／トグルとの被りを防ぐ */
@media (max-width: 1199px) {
  .l-header-apply {
    display: none;
  }
  .l-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 10px;
    padding: 0 12px;
  }
  .l-local-header {
    gap: 0;
    min-width: 0;
    overflow: hidden;
    justify-content: center;
    align-items: flex-start;
    height: 50px;
  }
  .l-local-header-about {
    margin-right: 0;
    min-width: 0;
    max-width: 100%;
    width: 100%;
    height: 100%;
  }
  .l-local-header-about a {
    width: 100%;
    height: 100%;
    display: block;
  }
  .l-local-header__logo {
    width: 100%;
    height: 100%;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .l-local-header-nav {
    display: none !important;
  }
  .l-local-header__logo img {
    height: 100%;
    width: 100%;
    max-width: none;
    object-fit: contain;
    object-position: left center;
  }
  .login {
    margin-left: 0;
  }
  .login-button {
    padding: 6px 10px;
    font-size: 11px;
    white-space: nowrap;
  }
  .l-header-toggle {
    margin-left: 0;
    width: 26px;
    height: 20px;
  }
}

@media (max-width: 380px) {
  .l-header {
    gap: 8px;
    padding: 0 10px;
  }
  .l-local-header__logo img {
    height: 100%;
    width: 100%;
    max-width: none;
  }
  .login-button {
    padding: 5px 8px;
    font-size: 10px;
  }
}

/* SPトグル（div要素対応） */
.l-header-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 22px;
  cursor: pointer;
  margin-left: 12px;
  background: none;
  border: none;
  padding: 0;
  flex-shrink: 0;
}
@media (min-width: 1200px) {
  .l-header-toggle {
    display: none;
  }
}
.c-toggle__line {
  display: block;
  width: 100%;
  height: 3px;
  background: #333;
  border-radius: 2px;
  transition:
    transform 0.3s,
    opacity 0.3s;
}
.l-header-toggle.is-open .c-toggle__line:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.l-header-toggle.is-open .c-toggle__line:nth-child(2) {
  opacity: 0;
}
.l-header-toggle.is-open .c-toggle__line:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* SPナビ（右寄せ・幅を狭く） */
.l-nav-sp {
  position: fixed;
  top: 70px;
  left: auto;
  right: 0;
  width: min(300px, 78vw);
  bottom: 0;
  background: white;
  overflow-y: auto;
  z-index: 99;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  padding: 0 0 40px;
  box-shadow: -3px 0 6px rgba(0, 0, 0, 0.1);
}
.l-nav-sp.is-open {
  transform: translateX(0);
}
@media (min-width: 1200px) {
  .l-nav-sp {
    display: none;
  }
}

.l-nav-sp-main {
  background: #efefef;
}
.l-nav-sp-menu {
  border-bottom: 1px solid #ccc;
  padding: 0;
}
.l-nav-sp-title {
  display: block;
  position: relative;
  font-family: var(--jp);
  font-size: 15px;
  font-weight: 800;
  color: #333;
  padding: 0 48px 0 20px;
  height: 52px;
  line-height: 52px;
  cursor: pointer;
  user-select: none;
  background: #efefef;
}
/* 開閉用アイコン（＋／−） */
.l-nav-sp-title::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--sans);
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  color: #666;
  border: none;
  width: auto;
  height: auto;
  transition: transform 0.2s ease;
}
.l-nav-sp-menu.is-open .l-nav-sp-title::after {
  content: "−";
  transform: translateY(-52%);
}
.l-nav-sp-title--link {
  display: block;
  position: relative;
  padding: 0 48px 0 20px;
  height: 52px;
  line-height: 52px;
  background: #efefef;
}
.l-nav-sp-title--link a {
  font-family: var(--jp);
  font-size: 15px;
  font-weight: 800;
  color: #333;
  text-decoration: none;
  display: block;
  height: 100%;
}
.l-nav-sp-title--link::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid #666;
  border-bottom: 2px solid #666;
  transform: translateY(-60%) rotate(-45deg);
}
.l-nav-sp-list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: #fff;
}
.l-nav-sp-menu.is-open .l-nav-sp-list {
  max-height: 400px;
}
.l-nav-sp-main .l-nav-sp-item {
  position: relative;
  padding: 0;
  border-bottom: 1px solid #ccc;
  background: #fff;
}
.l-nav-sp-main .l-nav-sp-item a {
  display: block;
  padding: 0 48px 0 28px;
  height: 52px;
  line-height: 52px;
  font-family: var(--jp);
  font-size: 14px;
  font-weight: 700;
  color: #333;
  text-decoration: none;
}
.l-nav-sp-main .l-nav-sp-item a:hover {
  color: #f26100;
}
.l-nav-sp__btn {
  margin-top: 16px;
  padding: 0 20px;
}
.l-nav-sp__btn-link {
  text-decoration: none;
}
.c-btn-round-border--orange {
  display: block;
  text-align: center;
  padding: 14px;
  background: linear-gradient(180deg, #f59f3a 0%, #ed8112 100%);
  color: white;
  border-radius: 100px;
  font-family: var(--jp);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
}
.l-nav-sp__btn .c-btn-round-border--orange {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 44px;
}
.l-nav-sp__btn .c-btn-round-border--orange .c-btn-arrow {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.l-nav-sp__btn .c-btn-round-border--orange .c-btn-arrow::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg) translateY(-1px);
}
.l-nav-sp-sub {
  margin-top: 20px;
  padding-top: 0;
  border-top: none;
}
.l-nav-sp-sub ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.l-nav-sp-sub .l-nav-sp-item {
  position: relative;
  border-bottom: 1px solid #eee;
}
.l-nav-sp-sub .l-nav-sp-item a {
  display: block;
  width: 100%;
  padding: 14px 48px 14px 20px;
  font-family: var(--jp);
  font-size: 14px;
  font-weight: 700;
  color: #333;
  text-decoration: none;
  box-sizing: border-box;
}
.l-nav-sp-sub .l-nav-sp-item a:hover {
  color: #f26100;
}
.l-nav-sp-sub .l-nav-sp-item::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid #666;
  border-bottom: 2px solid #666;
  transform: translateY(-60%) rotate(-45deg);
  pointer-events: none;
}
.l-nav-sp__search {
  margin-top: 20px;
  padding: 0 4px;
}
.l-nav-sp__search form {
  display: flex;
  gap: 8px;
}
.l-nav-sp__search input[type="text"] {
  flex: 1;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 13px;
}
.l-nav-sp__search .search-btn {
  padding: 10px 16px;
  background: linear-gradient(180deg, #f59f3a 0%, #ed8112 100%);
  color: white;
  border: none;
  border-radius: 100px;
  font-family: var(--jp);
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--jp);
  border: 2px solid transparent;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.3, 1);
  white-space: nowrap;
  cursor: pointer;
  background-clip: padding-box;
}
.btn .arr {
  transition: transform 0.3s;
}
.btn:hover .arr {
  transform: translateX(4px);
}

.btn-primary {
  background: var(--grad-button);
  color: white;
  box-shadow: 0 8px 24px rgba(103, 61, 230, 0.35);
  border: none;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(103, 61, 230, 0.45);
}

.btn-outline {
  background: white;
  color: var(--violet);
  border-color: var(--violet);
}
.btn-outline:hover {
  background: var(--violet);
  color: white;
  transform: translateY(-2px);
}

.btn-ghost {
  background: var(--bg-3);
  color: var(--ink);
}
.btn-ghost:hover {
  background: var(--bg-4);
}

/* 大型のメインCTA用 */
.btn-xl {
  padding: 22px 44px;
  font-size: 17px;
  font-weight: 800;
  border-radius: 100px;
  letter-spacing: 0.02em;
  width: 360px;
  max-width: 100%;
  justify-content: center;
}
.btn-xl .arr {
  font-size: 18px;
}
@media (max-width: 600px) {
  .btn-xl {
    padding: 18px 32px;
    font-size: 15px;
  }
}

/* 縦並びCTAボックス */
.final-cta-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}

/* ============================================
   Hero
   ============================================ */
.hero {
  position: relative;
  padding: clamp(56px, 8vw, 100px) 0 clamp(72px, 10vw, 120px);
  background: var(--grad-hero);
  overflow: hidden;
}

/* gradient orb */
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-bg::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -150px;
  width: 700px;
  height: 700px;
  background: radial-gradient(
    circle,
    rgba(192, 38, 211, 0.28) 0%,
    rgba(103, 61, 230, 0.2) 40%,
    transparent 70%
  );
  border-radius: 50%;
  filter: blur(60px);
}
.hero-bg::after {
  content: "";
  position: absolute;
  bottom: -200px;
  left: -150px;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(103, 61, 230, 0.25) 0%,
    rgba(139, 92, 246, 0.15) 40%,
    transparent 70%
  );
  border-radius: 50%;
  filter: blur(60px);
}

/* subtle dot grid */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(103, 61, 230, 0.08) 1px,
    transparent 1px
  );
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(
    ellipse at center,
    black 30%,
    transparent 70%
  );
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: white;
  border: 1px solid var(--line-2);
  border-radius: 100px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  color: var(--violet);
  margin-bottom: 28px;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 8px rgba(103, 61, 230, 0.08);
}
.hero-tag .dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
  }
  50% {
    box-shadow: 0 0 0 7px rgba(16, 185, 129, 0);
  }
}

.hero h1 {
  font-family: var(--jp);
  font-weight: 900;
  font-size: clamp(34px, 5.5vw, 60px);
  line-height: 1.25;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
  color: var(--ink);
}
.hero h1 .grad {
  background: var(--grad-purple-only);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  font-size: clamp(15px, 1.55vw, 18px);
  line-height: 1.8;
  color: var(--ink-2);
  margin-bottom: 40px;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  text-wrap: pretty;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 24px;
}

.hero-guarantee {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-3);
}
.hero-guarantee .check {
  width: 18px;
  height: 18px;
  background: var(--green-soft);
  color: var(--green);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
}

/* hero visual stack */
.hero-visual {
  margin-top: 56px;
  position: relative;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}
.hero-visual-frame {
  background: white;
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  padding: 14px;
  box-shadow:
    0 24px 60px -12px rgba(103, 61, 230, 0.25),
    0 0 0 1px rgba(103, 61, 230, 0.08);
}
.hero-visual-inner {
  background: linear-gradient(135deg, #2a1956 0%, #44217a 50%, #6b1e8a 100%);
  border-radius: 14px;
  padding: clamp(20px, 3vw, 36px);
  position: relative;
  overflow: hidden;
}
.hero-visual-inner::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -50px;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(217, 70, 239, 0.3) 0%,
    transparent 70%
  );
  border-radius: 50%;
  filter: blur(40px);
}
.hero-visual-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 780px) {
  .hero-visual-grid {
    grid-template-columns: 1fr 1.2fr;
    gap: 24px;
  }
}

.hv-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hv-stack-title {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.12em;
  margin-bottom: 6px;
  text-transform: uppercase;
}
.hv-app {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  color: white;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 13px;
  backdrop-filter: blur(8px);
  transition: all 0.25s;
}
.hv-app:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateX(3px);
}
.hv-app .ico {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 13px;
  color: white;
  flex-shrink: 0;
}
.hv-app .ico svg {
  width: 16px;
  height: 16px;
  fill: white;
}
.hv-app.docker .ico {
  background: #2496ed;
  box-shadow: 0 0 12px rgba(36, 150, 237, 0.4);
}
.hv-app.dify .ico {
  background: #6366f1;
  box-shadow: 0 0 12px rgba(99, 102, 241, 0.4);
}
.hv-app.n8n .ico {
  background: #ec4899;
  box-shadow: 0 0 12px rgba(236, 72, 153, 0.4);
}
.hv-app.webui .ico {
  background: #8b5cf6;
  box-shadow: 0 0 12px rgba(139, 92, 246, 0.4);
}
.hv-app.claude .ico {
  background: #d946ef;
  box-shadow: 0 0 12px rgba(217, 70, 239, 0.4);
}

.hv-terminal {
  background: rgba(10, 5, 25, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 16px;
  font-family: var(--mono);
  font-size: 12px;
  color: #c8c4e5;
  line-height: 1.85;
  backdrop-filter: blur(8px);
}
.hv-terminal-head {
  display: flex;
  gap: 6px;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.hv-terminal-head span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.hv-terminal-head span:nth-child(1) {
  background: #ef4444;
}
.hv-terminal-head span:nth-child(2) {
  background: #f59e0b;
}
.hv-terminal-head span:nth-child(3) {
  background: var(--green);
}
.hv-terminal-head .lbl {
  width: auto;
  margin-left: auto;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.4);
  background: transparent !important;
  border-radius: 0 !important;
}
.hv-line {
  display: flex;
  gap: 8px;
}
.hv-line .p {
  color: var(--magenta);
  font-weight: 700;
}
.hv-line .c {
  color: white;
}
.hv-line .arg {
  color: #c4b5fd;
  font-weight: 500;
}

/* ============================================
   Value props - 3 cards (Hostinger style)
   ============================================ */
.value-props {
  padding: clamp(60px, 8vw, 100px) 0;
  background: white;
}
.vp-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 780px) {
  .vp-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.vp-card {
  text-align: left;
  padding: 0;
}
.vp-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--violet);
  background: var(--violet-soft);
}
.vp-card.c1 .vp-icon {
  background: var(--violet-soft);
  color: var(--violet);
}
.vp-card.c2 .vp-icon {
  background: #fce7f3;
  color: var(--pink);
}
.vp-card.c3 .vp-icon {
  background: #ddd6fe;
  color: var(--purple);
}
.vp-icon svg {
  width: 28px;
  height: 28px;
}
.vp-card h3 {
  font-family: var(--jp);
  font-weight: 800;
  font-size: 20px;
  line-height: 1.45;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.vp-card p {
  font-size: 14px;
  line-height: 1.9;
  color: var(--ink-2);
}

/* ============================================
   Section base
   ============================================ */
.section {
  padding: clamp(72px, 10vw, 120px) 0;
  position: relative;
}

.section-head {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 72px);
  max-width: 44em;
  margin-left: auto;
  margin-right: auto;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  background: var(--violet-soft);
  color: var(--violet);
  border-radius: 100px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.section h2 {
  font-family: var(--jp);
  font-weight: 900;
  font-size: clamp(28px, 4.2vw, 44px);
  line-height: 1.35;
  letter-spacing: -0.025em;
  margin-bottom: 18px;
  color: var(--ink);
}
.section h2 .grad {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.compare-section-title {
  line-height: 1.4;
}
.compare-section-title .grad {
  display: inline;
}
.section-sub {
  font-size: clamp(14px, 1.4vw, 16px);
  line-height: 1.8;
  color: var(--ink-2);
  text-wrap: pretty;
}
.section-head .section-sub {
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}
.section-sub--oneline {
  max-width: none;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .section-sub--oneline {
    white-space: normal;
  }
}

/* ============================================
   Pricing - 2 prominent plans (Hostinger style)
   ============================================ */
.section-pricing {
  background: var(--bg-2);
}

.pricing-stats {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-2);
  margin-bottom: 16px;
}
.pricing-stats strong {
  color: var(--violet);
}

.plans-6col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: stretch;
}
@media (min-width: 600px) {
  .plans-6col {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1100px) {
  .plans-6col {
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
  }
}

.plan-6 {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 0;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s;
  height: 100%;
}
@media (min-width: 1100px) {
  .plan-6 {
    border-radius: 14px;
  }
}

/* 紫ヘッダー部分（角丸はカード上部に合わせる） */
.plan-6-header {
  background: var(--grad-purple-only);
  padding: 22px 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  min-height: 170px;
}
@media (min-width: 1100px) {
  .plan-6-header {
    padding: 18px 12px 14px;
    gap: 10px;
    border-radius: 14px 14px 0 0;
    min-height: 155px;
  }
}

/* ヘッダー上段: Lタイル + プラン名 */
.plan-6-head-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (min-width: 1100px) {
  .plan-6-head-row {
    gap: 10px;
  }
}

/* 正方形Lタイル */
.plan-6-tile {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: var(--sans);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.02em;
  backdrop-filter: blur(8px);
}
@media (min-width: 1100px) {
  .plan-6-tile {
    width: 48px;
    height: 48px;
    font-size: 19px;
    border-radius: 9px;
  }
}

/* プラン名（ヘッダー右側） */
.plan-6-namegroup {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  min-width: 0;
  min-height: 48px;
}
@media (min-width: 1100px) {
  .plan-6-namegroup {
    min-height: 42px;
  }
}
.plan-6-name {
  font-family: var(--jp);
  font-weight: 900;
  font-size: 19px;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: white;
}
@media (min-width: 1100px) {
  .plan-6-name {
    font-size: 16px;
  }
}
.plan-6-subname {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
}
@media (min-width: 1100px) {
  .plan-6-subname {
    font-size: 11px;
  }
}

/* 「申込時に「L3」を選択」サブテキスト */
.plan-6-selecthint {
  font-family: var(--jp);
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  margin-top: auto;
}
@media (min-width: 1100px) {
  .plan-6-selecthint {
    font-size: 10px;
    padding-top: 8px;
  }
}

/* 白ボディ部分 */
.plan-6-body {
  padding: 20px 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
@media (min-width: 1100px) {
  .plan-6-body {
    padding: 16px 14px 18px;
    gap: 12px;
  }
}

.plan-6:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px -16px rgba(103, 61, 230, 0.18);
  border-color: var(--line-3);
}
.plan-6.popular {
  border: 2px solid var(--violet);
  box-shadow: 0 12px 32px -10px rgba(103, 61, 230, 0.25);
}
.plan-6.popular:hover {
  box-shadow: 0 24px 50px -16px rgba(103, 61, 230, 0.3);
}

/* popular時のヘッダー角丸を border補正 */
.plan-6.popular .plan-6-header {
  border-radius: calc(var(--r-lg) - 2px) calc(var(--r-lg) - 2px) 0 0;
}
@media (min-width: 1100px) {
  .plan-6.popular .plan-6-header {
    border-radius: 12px 12px 0 0;
  }
}

.plan-6-tagline {
  font-size: 12px;
  line-height: 1.65;
  color: var(--ink-2);
  font-weight: 500;
  min-height: 2.6em;
}
@media (min-width: 1100px) {
  .plan-6-tagline {
    font-size: 11px;
    line-height: 1.55;
    min-height: 3.1em;
  }
}

/* スペック - 横並びレイアウト */
.plan-6-spec {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.plan-6-spec .spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--sans);
}
.plan-6-spec .spec-row .sp-l {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--ink-3);
  font-weight: 600;
}
.plan-6-spec .spec-row .sp-v {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 15px;
  color: var(--ink);
}
@media (min-width: 1100px) {
  .plan-6-spec {
    padding: 10px 0;
    gap: 6px;
  }
  .plan-6-spec .spec-row .sp-l {
    font-size: 10px;
  }
  .plan-6-spec .spec-row .sp-v {
    font-size: 13px;
  }
}

.plan-6-price {
  display: flex;
  align-items: baseline;
  gap: 3px;
  justify-content: flex-end;
}
.plan-6-price .cur {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 16px;
  color: var(--ink);
}
.plan-6-price .num {
  font-family: var(--sans);
  font-weight: 900;
  font-size: 28px;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.plan-6-price .unit {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  color: var(--ink-3);
}
@media (min-width: 1100px) {
  .plan-6-price .cur {
    font-size: 13px;
  }
  .plan-6-price .num {
    font-size: 22px;
  }
  .plan-6-price .unit {
    font-size: 10px;
  }
}

.plan-6-init {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  color: var(--green);
  background: var(--green-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 100px;
  align-self: stretch;
  width: 100%;
  margin-top: 4px;
}
@media (min-width: 1100px) {
  .plan-6-init {
    font-size: 10px;
    padding: 7px 8px;
  }
}

.plan-6-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px;
  border-radius: 100px;
  font-family: var(--jp);
  font-weight: 800;
  font-size: 12px;
  text-align: center;
  transition: all 0.3s;
  background: white;
  border: 2px solid var(--ink);
  color: var(--ink);
  margin-top: auto;
}
@media (min-width: 1100px) {
  .plan-6-cta {
    font-size: 11px;
    padding: 10px 8px;
    border-width: 1.5px;
  }
}
.plan-6-cta:hover {
  background: var(--ink);
  color: white;
  transform: translateY(-1px);
}
.plan-6.popular .plan-6-cta {
  background: var(--grad-button);
  border-color: transparent;
  color: white;
  box-shadow: 0 4px 14px rgba(103, 61, 230, 0.35);
}
.plan-6.popular .plan-6-cta:hover {
  box-shadow: 0 8px 20px rgba(103, 61, 230, 0.45);
}

.plan-2 {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  transition: all 0.3s;
}
.plan-2:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px -16px rgba(103, 61, 230, 0.18);
}
.plan-2.popular {
  border: 2px solid var(--violet);
  box-shadow: 0 12px 32px -10px rgba(103, 61, 230, 0.25);
}
.plan-2.popular:hover {
  box-shadow: 0 24px 50px -16px rgba(103, 61, 230, 0.3);
}
.popular-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: white;
  padding: 5px 14px;
  border-radius: 100px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.35);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.popular-tag::before {
  content: "★";
  color: white;
  font-size: 12px;
}
@media (min-width: 1100px) {
  .popular-tag {
    font-size: 11px;
    padding: 4px 12px;
    top: -12px;
  }
}
.discount-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  background: var(--green);
  color: white;
  border-radius: 6px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.plan-2-top {
  display: flex;
  align-items: center;
  gap: 10px;
}
.plan-2-name {
  font-family: var(--jp);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.01em;
  line-height: 1.3;
  color: var(--ink);
}

.plan-2-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.plan-2-orig {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 600;
  color: var(--ink-4);
  text-decoration: line-through;
}
.plan-2-now {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.plan-2-now .cur {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 22px;
  color: var(--ink);
}
.plan-2-now .num {
  font-family: var(--sans);
  font-weight: 900;
  font-size: 44px;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1;
}
.plan-2-now .unit {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-3);
}
.plan-2-note {
  font-size: 12px;
  color: var(--ink-3);
  line-height: 1.6;
}

.plan-2-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  border-radius: 100px;
  font-family: var(--jp);
  font-weight: 800;
  font-size: 14px;
  text-align: center;
  transition: all 0.3s;
  background: white;
  border: 2px solid var(--ink);
  color: var(--ink);
}
.plan-2.popular .plan-2-cta {
  background: var(--grad-primary);
  border-color: transparent;
  color: white;
  box-shadow: 0 4px 14px rgba(103, 61, 230, 0.35);
}
.plan-2-cta:hover {
  transform: translateY(-1px);
}
.plan-2.popular .plan-2-cta:hover {
  box-shadow: 0 8px 20px rgba(103, 61, 230, 0.45);
}

.plan-2-audience {
  font-size: 13px;
  color: var(--ink-3);
  line-height: 1.7;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.plan-2-audience strong {
  display: block;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 4px;
}
.plan-2-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.plan-2-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink-2);
}
.plan-2-features li::before {
  content: "✓";
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  background: var(--green-soft);
  color: var(--green);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
}
.plan-2-features li strong {
  color: var(--ink);
  font-weight: 700;
}

/* See all plans link */
.see-all-plans {
  text-align: center;
  margin-top: 36px;
}
.see-all-plans a {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
  color: var(--violet);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: 100px;
  background: white;
  border: 1px solid var(--line-2);
  transition: all 0.25s;
}
.see-all-plans a:hover {
  border-color: var(--violet);
  transform: translateY(-1px);
}

.pricing-note {
  text-align: center;
  margin-top: 36px;
  font-size: 12px;
  color: var(--ink-3);
  font-family: var(--sans);
}

/* ============================================
   3-Step deploy
   ============================================ */
.section-steps {
  background: white;
}
.steps-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}
@media (min-width: 760px) {
  .steps-3 {
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 16px;
    align-items: stretch;
  }
}

.steps-arrow {
  display: none;
  align-items: center;
  justify-content: center;
  color: var(--violet);
  flex-shrink: 0;
}
@media (min-width: 760px) {
  .steps-arrow {
    display: flex;
  }
}
.steps-arrow svg {
  width: 32px;
  height: 32px;
}
@media (max-width: 759px) {
  .steps-arrow-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--violet);
    padding: 4px 0;
  }
  .steps-arrow-mobile svg {
    width: 28px;
    height: 28px;
    transform: rotate(90deg);
  }
}
@media (min-width: 760px) {
  .steps-arrow-mobile {
    display: none;
  }
}

.step-3 {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px;
  position: relative;
  transition: all 0.3s;
}
.step-3:hover {
  transform: translateY(-4px);
  border-color: var(--line-3);
  box-shadow: 0 16px 32px -12px rgba(103, 61, 230, 0.12);
}
.step-3-num {
  position: absolute;
  top: -16px;
  left: 32px;
  width: 36px;
  height: 36px;
  background: var(--grad-primary);
  color: white;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-weight: 800;
  font-size: 15px;
  box-shadow: 0 4px 12px rgba(103, 61, 230, 0.4);
}
.step-3 h3 {
  font-family: var(--jp);
  font-weight: 800;
  font-size: 18px;
  line-height: 1.4;
  margin: 12px 0 10px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.step-3 p {
  font-size: 13px;
  line-height: 1.85;
  color: var(--ink-2);
}

.steps-cta {
  margin-top: 48px;
  text-align: center;
}

.section-bottom-cta {
  margin-top: 40px;
  text-align: center;
}
.btn-section-link {
  padding: 16px 32px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 100px;
}

/* ============================================
   Use cases (Hostinger 6-card style)
   ============================================ */
.section-usecases {
  background: var(--bg-2);
}
.usecases-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 600px) {
  .usecases-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 980px) {
  .usecases-grid {
    grid-template-columns: repeat(6, 1fr);
  }
  .usecases-grid .uc-card {
    grid-column: span 2;
  }
  .usecases-grid .uc-card:nth-last-child(2) {
    grid-column: 2 / span 2;
  }
  .usecases-grid .uc-card:last-child {
    grid-column: 4 / span 2;
  }
}

.uc-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 28px;
  position: relative;
  transition: all 0.3s;
}
.uc-card:hover {
  transform: translateY(-3px);
  border-color: var(--line-3);
  box-shadow: 0 16px 32px -12px rgba(103, 61, 230, 0.1);
}
.uc-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: white;
  font-family: var(--sans);
  font-weight: 800;
  font-size: 18px;
}
.uc-icon svg {
  width: 28px;
  height: 28px;
  fill: white;
}
.uc-card.uc-docker .uc-icon {
  background: linear-gradient(135deg, #2496ed, #0c5a9c);
}
.uc-card.uc-1 .uc-icon {
  background: linear-gradient(135deg, #6366f1, #4f46e5);
}
.uc-card.uc-2 .uc-icon {
  background: linear-gradient(135deg, #ec4899, #db2777);
}
.uc-card.uc-3 .uc-icon {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}
.uc-card.uc-4 .uc-icon {
  background: linear-gradient(135deg, #d946ef, #a21caf);
}
.uc-card.uc-6 .uc-icon {
  background: linear-gradient(135deg, #06b6d4, #0891b2);
}
.uc-card h3 {
  font-family: var(--jp);
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
}
.uc-card h3 .name {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--violet);
  background: var(--violet-soft);
  padding: 2px 8px;
  border-radius: 6px;
  font-weight: 700;
}
.uc-card p {
  font-size: 13px;
  line-height: 1.85;
  color: var(--ink-2);
}

/* ============================================
   Comparison table (Hostinger style)
   ============================================ */
.section-comparison {
  background: white;
}
.compare-table-wrap {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  max-width: 1100px;
  margin: 0 auto;
  box-shadow: 0 16px 32px -12px rgba(103, 61, 230, 0.08);
}
.compare-table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  /* スクロールバーを常時表示（特にスマホ） */
  scrollbar-width: thin;
  scrollbar-color: var(--line-3) var(--bg-3);
}
.compare-table-scroll::-webkit-scrollbar {
  height: 8px;
  -webkit-appearance: none;
}
.compare-table-scroll::-webkit-scrollbar-track {
  background: var(--bg-3);
}
.compare-table-scroll::-webkit-scrollbar-thumb {
  background: var(--line-3);
  border-radius: 4px;
}
.compare-table-scroll::-webkit-scrollbar-thumb:hover {
  background: var(--violet);
}

/* スクロールヒント（スマホ・タブレットで表示） */
.compare-scroll-hint {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--violet-soft);
  color: var(--violet);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
  border-radius: 10px;
  border: 1px solid var(--line-2);
}
.compare-scroll-hint .arrows {
  display: inline-flex;
  gap: 2px;
  animation: scrollhint 1.6s ease-in-out infinite;
}
@keyframes scrollhint {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(6px);
  }
}
@media (max-width: 880px) {
  .compare-scroll-hint {
    display: inline-flex;
  }
}
.compare-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  font-size: 14px;
}
.compare-table thead th {
  text-align: center;
  padding: 22px 16px;
  font-family: var(--jp);
  font-weight: 800;
  font-size: 15px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  line-height: 1.4;
}
.compare-table thead th .th-sub {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-3);
  margin-top: 4px;
  letter-spacing: 0.02em;
}
.compare-table thead th.ablenet .th-sub {
  color: rgba(255, 255, 255, 0.85);
}
.compare-table thead th.ablenet {
  background: var(--grad-purple-only);
  color: white;
  border-bottom: 0;
  position: relative;
}
.compare-table thead th.ablenet::after {
  content: "★";
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}
.compare-table thead th:first-child {
  background: var(--bg-3);
  text-align: left;
  font-size: 12px;
  color: var(--ink-3);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.compare-table thead th.others {
  background: var(--bg-2);
  color: var(--ink-3);
}
.compare-table tbody td {
  padding: 16px 14px;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  line-height: 1.7;
  text-align: left;
  vertical-align: middle;
}
.compare-table tbody tr:last-child td {
  border-bottom: 0;
}
.compare-table tbody td:first-child {
  text-align: left;
  font-weight: 700;
  color: var(--ink);
  background: var(--bg-3);
  font-size: 13px;
  min-width: 160px;
  vertical-align: middle;
}
.compare-table tbody td.yes {
  color: var(--green);
  font-weight: 700;
}
.compare-table tbody td.no {
  color: var(--red);
  font-weight: 700;
}
.compare-table tbody td .ico-check,
.compare-table tbody td .ico-x {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  font-weight: 800;
  font-size: 14px;
  margin-right: 6px;
}
.compare-table tbody td .ico-check {
  background: var(--green-soft);
  color: var(--green);
}
.compare-table tbody td .ico-x {
  background: var(--red-soft);
  color: var(--red);
}
.compare-table tbody td .ico-tri {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  font-weight: 800;
  font-size: 14px;
  margin-right: 6px;
  background: rgba(245, 158, 11, 0.15);
  color: #d97706;
}
.compare-table tbody td.partial {
  color: #d97706;
  font-weight: 700;
}
.compare-table tfoot td {
  padding: 24px 20px;
  text-align: center;
}
.compare-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-family: var(--jp);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.25s;
  border: 2px solid transparent;
}
.compare-cta--primary {
  position: relative;
  z-index: 0;
  overflow: hidden;
  color: white;
  border: none;
  box-shadow: 0 4px 14px rgba(103, 61, 230, 0.35);
  isolation: isolate;
}
.compare-cta--primary::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: var(--grad-button);
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.compare-cta--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(103, 61, 230, 0.45);
}
.compare-cta--secondary {
  background: white;
  color: var(--violet);
  border-color: var(--line-2);
  box-shadow: 0 4px 14px rgba(103, 61, 230, 0.08);
}
.compare-cta--secondary:hover {
  transform: translateY(-1px);
  border-color: var(--violet);
  box-shadow: 0 6px 20px rgba(103, 61, 230, 0.15);
}
.compare-cta .arr {
  transition: transform 0.25s;
}
.compare-cta:hover .arr {
  transform: translateX(4px);
}
.compare-cta .cta-multi {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.35;
}
.compare-cta .cta-multi span:first-child {
  font-size: 12px;
  font-weight: 600;
  opacity: 0.9;
}
.compare-cta .cta-multi span:last-child {
  text-align: center;
  font-size: 16px;
  font-weight: 800;
}
.compare-cta--secondary .cta-multi span:first-child {
  color: var(--ink-2);
  opacity: 1;
}
.compare-cta--secondary .cta-multi span:last-child {
  color: var(--violet);
}

/* ============================================
   スマホ用比較カード（項目グループ型）
   ============================================ */
.compare-mobile {
  display: none;
}
@media (max-width: 760px) {
  .compare-mobile {
    display: block;
    max-width: 560px;
    margin: 0 auto;
  }
  .compare-table-wrap {
    display: none;
  }
  .compare-scroll-hint {
    display: none !important;
  }
}

.compare-igroup {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  margin-bottom: 14px;
  overflow: hidden;
}
.compare-igroup-head {
  padding: 14px 18px;
  background: var(--bg-3);
  border-bottom: 1px solid var(--line);
  font-family: var(--jp);
  font-weight: 800;
  font-size: 15px;
  color: var(--ink);
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 10px;
}
.compare-igroup-head::before {
  content: "";
  width: 4px;
  height: 18px;
  background: var(--grad-purple-only);
  border-radius: 2px;
  flex-shrink: 0;
}
.compare-igroup-body {
  padding: 6px 0;
}
.compare-irow {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 18px;
  border-bottom: 1px solid var(--line);
}
.compare-irow:last-child {
  border-bottom: 0;
}
.compare-irow.ablenet-row {
  background: linear-gradient(
    90deg,
    rgba(103, 61, 230, 0.06) 0%,
    transparent 100%
  );
  position: relative;
}
.compare-irow.ablenet-row::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--grad-purple-only);
}
.compare-irow-name {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-3);
  width: 110px;
  flex-shrink: 0;
  padding-top: 3px;
  line-height: 1.5;
}
.compare-irow.ablenet-row .compare-irow-name {
  color: var(--violet);
  font-weight: 800;
}
.compare-irow.ablenet-row .compare-irow-name::after {
  content: " ★";
  color: var(--green);
}
.compare-irow-val {
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink);
  font-weight: 600;
  display: flex;
  align-items: flex-start;
  gap: 6px;
  flex: 1;
}
.compare-irow-val .ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  font-weight: 800;
  font-size: 12px;
  flex-shrink: 0;
}
.compare-irow-val .ico.yes {
  background: var(--green-soft);
  color: var(--green);
}
.compare-irow-val .ico.tri {
  background: rgba(245, 158, 11, 0.15);
  color: #d97706;
}
.compare-irow-val .ico.no {
  background: var(--red-soft);
  color: var(--red);
}
.compare-irow-val.partial {
  color: #d97706;
}
.compare-irow-val.no {
  color: var(--red);
}

/* ============================================
   Benefits (Hostinger 6 grid)
   ============================================ */
.section-benefits {
  background: var(--bg-2);
}
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 600px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 980px) {
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.benefit {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 28px;
  transition: all 0.3s;
}
.benefit:hover {
  transform: translateY(-3px);
  border-color: var(--line-3);
  box-shadow: 0 16px 32px -12px rgba(103, 61, 230, 0.1);
}
.benefit-ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--violet-soft);
  color: var(--violet);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.benefit-ico svg {
  width: 22px;
  height: 22px;
}
.benefit h3 {
  font-family: var(--jp);
  font-weight: 800;
  font-size: 17px;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
  line-height: 1.45;
  color: var(--ink);
}
.benefit p {
  font-size: 13px;
  line-height: 1.85;
  color: var(--ink-2);
}

/* ============================================
   FAQ
   ============================================ */
.section-faq {
  background: white;
}
.faq {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq details {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  transition: all 0.3s;
}
.faq details[open] {
  border-color: var(--line-3);
  box-shadow: 0 8px 20px -8px rgba(103, 61, 230, 0.12);
}
.faq summary {
  cursor: pointer;
  padding: 20px 24px;
  font-family: var(--jp);
  font-weight: 800;
  font-size: 15px;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.faq summary::-webkit-details-marker {
  display: none;
}

/* +/− アイコン: 2本の線で描画して中央に確実に配置 */
.faq summary .toggle-icon {
  margin-left: auto;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--bg-3);
  border-radius: 50%;
  position: relative;
  transition: background 0.25s;
  display: inline-block;
}
.faq summary .toggle-icon::before,
.faq summary .toggle-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--ink-3);
  transition: all 0.25s;
  border-radius: 1px;
}
/* 横線 */
.faq summary .toggle-icon::before {
  width: 12px;
  height: 2px;
  transform: translate(-50%, -50%);
}
/* 縦線（open時に消えて−になる） */
.faq summary .toggle-icon::after {
  width: 2px;
  height: 12px;
  transform: translate(-50%, -50%);
}
.faq details[open] summary .toggle-icon {
  background: var(--violet);
}
.faq details[open] summary .toggle-icon::before {
  background: white;
}
.faq details[open] summary .toggle-icon::after {
  background: white;
  height: 0;
}
.faq details p {
  padding: 0 24px 22px 24px;
  font-size: 14px;
  line-height: 1.9;
  color: var(--ink-2);
}

/* ============================================
   Final CTA
   ============================================ */
.section-final {
  position: relative;
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--grad-primary);
  color: white;
  overflow: hidden;
}
.section-final::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 60% 50% at 20% 30%,
      rgba(255, 255, 255, 0.15) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 50% 40% at 80% 70%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 60%
    );
  pointer-events: none;
}
.section-final::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.15) 1px,
    transparent 1px
  );
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(
    ellipse at center,
    black 30%,
    transparent 70%
  );
  pointer-events: none;
}
.section-final .wrap {
  position: relative;
  z-index: 1;
  text-align: center;
}
.section-final h2 {
  color: white;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  margin-bottom: 20px;
  letter-spacing: -0.025em;
  line-height: 1.3;
}
.section-final .section-sub {
  color: rgba(255, 255, 255, 0.85);
  max-width: 40em;
  margin: 0 auto 40px;
}
.final-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
.section-final .btn-primary {
  background: white;
  color: var(--violet);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}
.section-final .btn-primary:hover {
  background: var(--ink);
  color: white;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}
.section-final .btn-outline {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.5);
}
.section-final .btn-outline:hover {
  background: white;
  color: var(--violet);
  border-color: white;
}
.section-final .guarantee {
  margin-top: 36px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

/* ============================================
   ページ内アンカー目次（ヘッダー直下、追従なし）
   ============================================ */
.page-anchor-nav {
  background: #1a0a40;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.page-anchor-nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  white-space: nowrap;
}
.page-anchor-nav-inner::-webkit-scrollbar {
  display: none;
}
.page-anchor-nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 0;
  margin: 0;
  list-style: none;
  flex-wrap: nowrap;
}
.page-anchor-nav-list li {
  flex-shrink: 0;
}
.page-anchor-nav-list a {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  font-family: var(--jp);
  font-size: 20px;
  font-weight: 700;
  color: white;
  background: transparent;
  border-radius: 100px;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s;
  letter-spacing: 0.02em;
}
.page-anchor-nav-list a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}
.page-anchor-nav-list a:active {
  background: rgba(255, 255, 255, 0.15);
}
@media (max-width: 768px) {
  .page-anchor-nav {
    background: white;
    border-bottom: 1px solid #e5e5e5;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  }
  .page-anchor-nav-inner {
    padding: 0 8px;
  }
  .page-anchor-nav-list {
    justify-content: flex-start;
    padding: 10px 0;
    gap: 6px;
  }
  .page-anchor-nav-list a {
    padding: 7px 14px;
    font-size: 13px;
    color: var(--ink);
    background: var(--bg-3);
  }
  .page-anchor-nav-list a:hover,
  .page-anchor-nav-list a:active {
    background: var(--violet-soft);
    color: var(--violet);
  }
  /* アンカー先のオフセット調整（ABLENETヘッダー70px分） */
  #pricing,
  #plan-list,
  #apps,
  #compare,
  #faq,
  #setup {
    scroll-margin-top: 100px;
  }
}
@media (min-width: 769px) {
  #pricing,
  #plan-list,	
  #apps,
  #compare,
  #faq,
  #setup {
    scroll-margin-top: 80px;
  }
}

/* ============================================
   トップに戻るボタン（追従）
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 95;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--grad-purple-only);
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(103, 61, 230, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition:
    opacity 0.3s,
    transform 0.3s,
    visibility 0.3s;
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(103, 61, 230, 0.5);
}
.back-to-top:active {
  transform: translateY(-1px);
}
.back-to-top svg {
  width: 22px;
  height: 22px;
}
@media (max-width: 600px) {
  .back-to-top {
    bottom: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
  }
  .back-to-top svg {
    width: 18px;
    height: 18px;
  }
}

/* ============================================
   AI VPS LP Footer (page-footer)
   ============================================ */
.page-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.7);
  padding: 56px 0 28px;
  margin-top: 0;
}
.page-footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
}
.page-footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 28px;
}
@media (min-width: 760px) {
  .page-footer-top {
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 48px;
  }
}

.page-footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.page-footer-brand-row {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
  font-family: var(--sans);
  font-weight: 800;
  font-size: 18px;
  flex-wrap: wrap;
}
.page-footer-logo {
  display: inline-flex;
  align-items: center;
  transition: opacity 0.2s;
}
.page-footer-logo:hover {
  opacity: 0.8;
}
.page-footer-logo img {
  height: 32px;
  width: auto;
  display: block;
  /* ロゴを白系で表示 */
  filter: brightness(0) invert(1);
}
.page-footer-brand .brand-mark-pf {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--grad-purple-only);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  font-weight: 800;
  font-family: var(--sans);
  box-shadow: 0 4px 14px rgba(103, 61, 230, 0.35);
}
.page-footer-brand-row .sub {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
  font-size: 14px;
}
.page-footer-tagline {
  font-family: var(--jp);
  font-size: 13px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.65);
}

.page-footer-col h4 {
  font-family: var(--jp);
  font-size: 13px;
  font-weight: 800;
  color: white;
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}
.page-footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.page-footer-col ul a {
  font-family: var(--jp);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s;
}
.page-footer-col ul a:hover {
  color: white;
}

.page-footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.page-footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
}
.page-footer-legal a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.page-footer-legal a:hover {
  color: white;
}
.page-footer-copy {
  font-family: var(--sans);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.02em;
}

/* ============================================
   Scroll-reveal
   ============================================ */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition:
      opacity 0.7s cubic-bezier(0.2, 0.7, 0.3, 1),
      transform 0.7s cubic-bezier(0.2, 0.7, 0.3, 1);
  }
  .reveal.in {
    opacity: 1;
    transform: translateY(0);
  }
  .reveal.d1 {
    transition-delay: 0.08s;
  }
  .reveal.d2 {
    transition-delay: 0.16s;
  }
  .reveal.d3 {
    transition-delay: 0.24s;
  }
  .reveal.d4 {
    transition-delay: 0.32s;
  }
  .reveal.d5 {
    transition-delay: 0.4s;
  }
  .reveal.d6 {
    transition-delay: 0.48s;
  }
}

/* Utility — markup-only layout helpers */
.u-text-center {
  text-align: center;
}
.compare-cta-wrap {
  margin-top: 28px;
}
.compare-cta-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  max-width: 520px;
  margin: 0 auto;
}
.compare-cta-row .compare-cta {
  width: 100%;
  min-height: 72px;
  text-align: center;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 769px) {
  .compare-cta-row {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    max-width: 720px;
  }
  .compare-cta-row .compare-cta {
    width: 100%;
    min-height: 72px;
    height: 100%;
  }
}
.compare-disclaimer {
  text-align: center;
  margin-top: 20px;
  font-size: 12px;
  color: var(--ink-3);
  font-family: var(--sans);
}
.guarantee-icon {
  background: rgba(255, 255, 255, 0.25);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
}
