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

:root {
  --primary: #16A34A;
  --primary-dark: #15803D;
  --primary-light: #ecf7ec;
  --primary-mid: #ccedd8;
  --accent: #059669;
  --dark: #212222;
  --gray: #525252;
  --light: #F8FAFC;
  --bg: #fafafa;
  --white: #FFF;
  --border: #E2E8F0;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--dark);
  background: #fff;
}

section:not(.bg-colored) {
  padding-bottom: initial;
}

@media (min-width: 960px) {
  section+section {
    margin-top: initial;
  }
}

/* ===== LUCIDE ICONS ===== */
[data-lucide] {
  display: inline-block;
  vertical-align: middle;
}

/* ===== SCROLL ANIMATION ===== */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-left {
  opacity: 0;
  transform: translateX(-48px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.fade-right {
  opacity: 0;
  transform: translateX(48px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.fade-left.is-visible,
.fade-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.delay-1 {
  transition-delay: 0.08s;
}

.delay-2 {
  transition-delay: 0.16s;
}

.delay-3 {
  transition-delay: 0.24s;
}

.delay-4 {
  transition-delay: 0.32s;
}

.delay-5 {
  transition-delay: 0.40s;
}

@keyframes em-slide-up {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ===== NAV ===== */
.body-site-checker {
  nav {
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
    height: 64px;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
  }

  .logo-mark {
    width: 180px;
    padding-top: 8px;
    padding-bottom: 2px;
  }

  .nav-links {
    display: flex;
    gap: 32px;
    font-size: 14px;
    color: var(--gray);
    list-style: none;
  }

  .nav-links li {
    cursor: pointer;
    transition: color .2s;
    position: relative;
    padding-bottom: 2px;
  }

  .nav-links li::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform .25s;
  }

  .nav-links li:hover {
    color: var(--dark);
  }

  .nav-links li a:hover {
    color: var(--dark);
    text-decoration: none;
  }

  .nav-links li:hover::after {
    transform: scaleX(1);
  }

  .nav-cta {
    background: #111;
    color: #fff;
    border: none;
    padding: 11px 22px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background .2s, transform .15s, box-shadow .2s;
    font-family: inherit;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .nav-cta [data-lucide] {
    width: 20px;
    height: 20px;
  }

  a:has(.nav-cta):hover {
    text-decoration: none;
  }

  .nav-cta:hover {
    background: #333;
    transform: translateY(-1px);
  }

  /* ===== HERO ===== */
  .hero {
    padding: 80px 48px 0;
    background-color: rgba(255, 255, 255, 0);
    background-image: repeating-linear-gradient(-45deg, transparent, transparent 3px, rgba(245, 245, 245, 0.5) 3px, rgba(245, 245, 245, 0.5) 6px), url(/themes/magic-pod/site-checker/lp1/images/hero-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
  }

  .hero-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
  }

  /* Hero badge — 角型・left border アクセント */
  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--primary);
    font-size: 20px;
    font-weight: 700;
    background: var(--white);
    padding: 0 8px;
    margin-bottom: 16px;
    border-radius: 3px;
  }

  .hero-badge [data-lucide] {
    width: 26px;
    height: 26px;
  }

  .hero h1 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.8px;
    margin-bottom: 24px;
    font-feature-settings: "pkna";
  }

  .em-wrap {
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
  }

  .em-wrap em {
    display: inline-block;
    transform: translateY(100%);
    opacity: 0;
    animation: em-slide-up 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.7s forwards;
  }

  .hero h1 em {
    font-weight: 700;
    color: var(--primary);
    font-style: normal;
    letter-spacing: 1.4px;
  }

  .hero>.hero-inner>div>p {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 42px;
    font-feature-settings: "palt";
  }

  /* Trust bar */
  .trust-bar {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
  }

  .trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border-radius: 10px;
    padding: 10px 16px;
    flex: 0 0 auto;
  }

  .trust-icon {
    width: 30px;
    height: 30px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .trust-icon [data-lucide] {
    width: 16px;
    height: 16px;
  }

  .trust-icon.green {
    background: var(--primary-light);
    color: var(--primary);
  }

  .trust-icon.blue {
    background: var(--primary-light);
    color: var(--primary);
  }

  .trust-icon.amber {
    background: var(--primary-light);
    color: var(--primary);
  }

  .trust-label {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
  }

  .trust-sub {
    font-size: 12px;
    color: var(--gray);
    margin-top: 1px;
  }

  /* ===== FORM CARD ===== */
  .form-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0px 0px 14px rgba(0, 0, 0, 0.05);
    padding: 32px;
    scroll-margin-top: 72px;
  }

  .form-card h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 18px;
    text-align: center;
  }

  .form-card .sub {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 24px !important;
    line-height: 1.7;
    font-weight: 400 !important;
    background: var(--light);
    border-radius: 6px;
    padding: 16px;
  }

  .form-card .sub>.strong {
    font-weight: 600;
    letter-spacing: 1.2px;
  }

  .form-card label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
  }

  .form-card input[type="url"],
  .form-card input[type="email"],
  .form-card input[type="text"] {
    width: 100%;
    padding: 11px 14px;
    border-radius: 8px;
    border: 1px solid var(--border);
    font-size: 14px;
    margin-bottom: 14px;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
    font-family: inherit;
    color: var(--dark);
  }

  .form-card input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.12);
  }

  .form-submit {
    width: 100%;
    background: #111;
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background .2s, transform .15s, box-shadow .2s;
    margin-top: 4px;
    font-family: inherit;
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }

  .form-submit [data-lucide] {
    width: 16px;
    height: 16px;
  }

  .form-submit:hover {
    background: #333;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  }

  .form-note {
    font-size: 12px;
    color: var(--gray);
    text-align: center;
    margin-top: 24px;
    margin-bottom: 0px !important;
    line-height: 1.7;
    background: var(--primary-light);
    padding: 16px;
    border-radius: 6px;
  }

  .free-badge {
    display: inline-block;
    background: #FEF9C3;
    color: #854D0E;
    font-size: 12px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
  }

  /* ===== HERO MOCK ===== */
  .report-preview-label {
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-dark);
    text-align: left;
    margin-bottom: 12px;
    display: flex;
    align-items: end;
    gap: 6px;
  }

  .report-preview-label [data-lucide] {
    width: 21px;
    height: 21px;
    color: var(--primary-dark);
  }

  .hero-mock {
    background: #fff;
    border-radius: 12px 12px 0 0;
    border: 1px solid var(--border);
    border-bottom: none;
    overflow: hidden;
    font-family: 'IBM Plex Sans JP', sans-serif;
    color: #74797f;
  }


  .mock-topbar {
    background: #4a4a4a;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid var(--border);
  }

  .mock-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
  }

  .mock-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    margin-left: 8px;
  }

  .mock-summary-bar {
    display: flex;
    align-items: center;
    padding: 14px 20px;
    border-bottom: 1px solid var(--border);
    font-size: 13px;
  }

  .sum-label {
    font-weight: 700;
    font-size: 14px;
    margin-right: 24px;
  }

  .sum-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
    border-left: 1px solid var(--border);
  }

  .sum-item .num {
    font-size: 20px;
    font-weight: 800;
  }

  .sum-item .lbl {
    font-size: 12px;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 2px;
  }

  .sum-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
  }

  .dot-g {
    color: #16A34A;
  }

  .dot-r {
    color: #DC2626;
  }

  .dot-o {
    color: #D97706;
  }

  .dot-gray {
    color: #94A3B8;
  }

  .mock-tabs {
    display: flex;
    padding: 0 20px;
    border-bottom: 1px solid var(--border);
  }

  .mock-tab {
    padding: 10px 16px;
    font-size: 13px;
    cursor: pointer;
    color: var(--gray);
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    transition: color .2s;
  }

  .mock-tab:hover {
    color: var(--dark);
  }

  .mock-tab.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
    font-weight: 600;
  }

  .mock-filter-bar {
    padding: 8px 20px;
    border-bottom: 1px solid var(--border);
    display: flex;
    gap: 8px;
  }

  .mock-filter-tag {
    font-size: 12px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 4px;
  }

  .tag-orange {
    background: #FED7AA;
    color: #C2410C;
  }

  .tag-blue {
    background: #DBEAFE;
    color: #1D4ED8;
  }

  .mock-rows {
    padding: 12px 20px;
  }

  .mock-row {
    display: grid;
    grid-template-columns: 32px 200px 1fr 110px;
    gap: 12px;
    align-items: start;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    font-size: 13px;
  }

  .mock-row:last-child {
    border-bottom: none;
  }

  .row-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
  }

  .row-icon.fail {
    background: #FEE2E2;
    color: #DC2626;
  }

  .row-icon [data-lucide] {
    width: 12px;
    height: 12px;
  }

  .row-url {
    color: #95999e;
    word-break: break-all;
    line-height: 1.6;
  }

  .row-detail {
    color: #74797f;
    line-height: 1.7;
  }

  .row-detail .err-line {
    color: var(--gray);
    font-size: 12px;
  }

  .row-detail strong {
    color: #DC2626;
  }

  .row-thumb {
    width: 100%;
    height: 68px;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: #F1F5F9;
    display: flex;
    flex-direction: column;
  }

  .thumb-bar {
    height: 14px;
    background: var(--primary);
    display: flex;
    align-items: center;
    padding: 0 6px;
    gap: 3px;
  }

  .thumb-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
  }

  .thumb-body {
    flex: 1;
    padding: 5px 6px;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .thumb-line {
    height: 5px;
    border-radius: 2px;
    background: #CBD5E1;
  }

  /* Blur Overlay */
  .blur-overlay {
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
    border-radius: 12px 12px 0 0;
  }

  .blur-overlay::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 210px;
    pointer-events: none;
  }

  .blur-cta {
    text-align: center;
    padding: 32px 48px;
    background-size: auto auto;
    background-color: rgb(248, 248, 248);
    background-image: repeating-linear-gradient(-45deg, transparent, transparent 3px, rgba(245, 245, 245, .1) 3px, rgba(245, 245, 245, .1) 6px);
    width: 100%;
  }

  .blur-cta p {
    font-size: 16px;
    color: var(--gray);
    margin-top: 16px;
    font-weight: 600;
  }

  .blur-cta p a {
    color: var(--primary);
    text-decoration: none;
  }

  .blur-cta button {
    background: #111;
    color: #fff;
    border: none;
    padding: 16px 32px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition: background .2s, transform .15s;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 8px auto;
    gap: 8px;
    transition: all 0.2s ease;
  }

  .blur-cta button [data-lucide] {
    width: 20px;
    height: 20px;
  }


  .blur-cta button:hover {
    background: #333;
    transform: translateY(-1px);
  }

  /* ===== SECTIONS ===== */
  .section {
    padding: 80px 48px;
  }

  .section-eyebrow {
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
  }

  .section-title {
    text-align: center;
    font-size: 38px;
    font-weight: 700;
    letter-spacing: 1.4px;
    margin-bottom: 10px;
    font-feature-settings: "palt";
  }

  .section-sub {
    text-align: center;
    color: var(--gray);
    font-size: 15px;
    max-width: 480px;
    margin: 0 auto 52px;
    line-height: 1.8;
  }

  .features-bg {
    background: var(--white);
    scroll-margin-top: 72px;
  }

  /* ===== STEPS ===== */

  .steps {
    background: var(--bg);
    background-size: auto auto;
    background-color: rgba(255, 255, 255, 1);
    background-image: repeating-linear-gradient(-45deg, transparent, transparent 3px, rgba(245, 245, 245, .5) 3px, rgba(245, 245, 245, .5) 6px);
  }

  .steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 880px;
    margin: 0 auto;
    position: relative;
  }

  .steps-grid::before {
    content: '';
    position: absolute;
    top: 28px;
    left: calc(16.7% + 16px);
    right: calc(16.7% + 16px);
    height: 2px;
    background: var(--primary-mid);
  }

  .step-card {
    text-align: center;
    padding: 0 24px;
  }

  .step-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-size: 20px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    position: relative;
    z-index: 1;
    transition: transform .2s, box-shadow .2s;
  }

  .step-card:hover .step-num {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(22, 163, 74, 0.25);
  }

  .step-card h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
  }

  .step-card h3 [data-lucide] {
    width: 22px;
    height: 22px;
    color: var(--primary);
    flex-shrink: 0;
  }

  .step-card p {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.7;
    text-align: justify;
  }

  /* ===== FEATURES ===== */
  .feature-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    max-width: 960px;
    margin: 0 auto 64px;
  }

  .feature-item:last-child {
    margin-bottom: 0;
  }

  .feature-item.reverse {
    direction: rtl;
  }

  .feature-item.reverse>* {
    direction: ltr;
  }

  /* 角型タグ — left border */
  .feat-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid var(--primary);
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 100px;
    margin-bottom: 8px;
  }

  .feat-tag [data-lucide] {
    width: 14px;
    height: 14px;
    padding-top: 2px;
  }

  .feature-text h3 {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1.2px;
    font-feature-settings: "palt" 1;
    margin-bottom: 10px;
  }

  .feature-text p {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.85;
  }

  .fv {
    background: #fff;
    border-radius: 12px;
    border: 2px solid var(--border);
    overflow: hidden;
    box-shadow: 0px 0px 18px rgba(0, 0, 0, .08);
    font-family: 'IBM Plex Sans JP', sans-serif;
  }

  .fv-head {
    background: #4a4a4a;
    padding: 10px 16px;
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .fv-head [data-lucide] {
    width: 15px;
    height: 15px;
  }

  .fv-body {
    padding: 14px;
  }

  /* Crawl rows */
  .crawl-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    padding: 8px 10px;
    border-radius: 6px;
    background: #F8FAFC;
    /* border: 1px solid var(--border); */
    margin-bottom: 5px;
    color: #767c84;
  }

  .st {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
  }

  .crawl-filename {
    flex: 1;
  }

  .crawl-status {
    font-size: 12px;
    color: #74797f;
  }

  /* Typo rows */
  .typo-row {
    background: #FFFBEB;
    /* border: 1px solid #FDE68A; */
    border-radius: 6px;
    padding: 10px 12px;
    font-size: 13px;
    margin-bottom: 7px;
    line-height: 1.6;
    color: #510f0f;
  }

  .typo-pg {
    font-size: 12px;
    color: #92400E;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 5px;
  }

  .typo-pg [data-lucide] {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
  }

  .t-bad {
    background: #FCA5A5;
    border-radius: 2px;
    padding: 0 3px;
  }

  .t-good {
    color: #16A34A;
    font-weight: 700;
  }

  /* Link rows */
  .link-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    padding: 8px 10px;
    border-radius: 6px;
    /* border: 1px solid var(--border); */
    background: var(--bg);
    margin-bottom: 5px;
  }

  .code {
    font-weight: 700;
    font-size: 11px;
    padding: 2px 7px;
    border-radius: 4px;
    flex-shrink: 0;
  }

  .c404 {
    background: #FEE2E2;
    color: #DC2626;
  }

  .c301 {
    background: #FEF3C7;
    color: #D97706;
  }

  .c200 {
    background: #DCFCE7;
    color: #16A34A;
  }

  .link-url {
    color: #94A3B8;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  /* AI detection */
  .ai-alert {
    background: #FEF2F2;
    /* border: 1px solid #FECACA; */
    border-radius: 6px;
    padding: 12px;
    margin-bottom: 10px;
    font-size: 13px;
    line-height: 1.7;
    color: #767c84;
  }

  .ai-alert-title {
    font-weight: 700;
    color: #DC2626;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .ai-alert-title [data-lucide] {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
  }

  .ai-confidence {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--gray);
  }

  .conf-badge {
    background: #DCFCE7;
    color: #16A34A;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
  }

  /* ===== COMING SOON ===== */
  .roadmap-section {
    margin-top: 16px;
    padding-top: 56px;
    border-top: 1px dashed var(--border);
  }

  .roadmap-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    max-width: 960px;
    margin: 0 auto;
  }

  .roadmap-card {
    background: #fff;
    border: 1px dashed var(--border);
    border-radius: 12px;
    padding: 20px 20px;
    text-align: center;
    opacity: 0.75;
    transition: opacity .25s, border-color .25s, transform .25s;
    cursor: default;
  }

  .roadmap-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
  }

  .roadmap-icon [data-lucide] {
    width: 40px;
    height: 40px;
    color: #cce8cc;
  }

  .coming-badge {
    display: inline-block;
    background: #F1F5F9;
    color: var(--gray);
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    margin-bottom: 8px;
  }

  .roadmap-card h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
  }

  .roadmap-card p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.55;
    text-align: left;
  }

  /* ===== PRICING ===== */
  .price-section {
    background: var(--bg);
    background-size: auto auto;
    background-color: rgba(255, 255, 255, 0);
    background-image: repeating-linear-gradient(-45deg, transparent, transparent 3px, rgba(245, 245, 245, 0.3) 3px, rgba(245, 245, 245, 0.3) 6px);
    scroll-margin-top: 72px;
  }

  .pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 720px;
    margin: 0 auto;
    scroll-margin-top: 72px;
  }

  .price-card {
    border-radius: 14px;
    padding: 28px;
    border: 2px solid var(--border);
    background: #fff;
    transition: transform .2s, border-color .2s;
  }


  .price-card.featured {
    border-color: #16A34A;
    background: linear-gradient(180deg, rgba(223, 255, 191, 0.30) 0%, rgba(205, 255, 195, 0.17) 64.42%, rgba(214, 237, 209, 0.17) 97.6%);
    color: var(--primary-dark);
  }


  .price-card h3 {
    font-size: 29px;
    font-weight: 600;
    margin-bottom: 8px;
    text-align: center;
  }

  .price-plan-sub {
    font-size: 13px;
    color: var(--gray);
    margin-top: 4px;
    text-align: center;
  }

  .price-card.featured .price-plan-sub {
    color: var(--primary-dark);
  }

  .price {
    font-size: 36px;
    font-weight: 600;
    margin: 14px 0 16px;
    text-align: center;
    color: var(--primary);
    display: flex;
    align-items: end;
    justify-content: center;
    gap: 8px;
    line-height: 1;
  }

  .price-card.featured .price {
    color: var(--primary-dark);
    font-size: 22px;
  }

  .price span {
    font-size: 12px;
    font-weight: 600;
    background: var(--primary);
    color: var(--white);
    padding: 3px 6px;
    border-radius: 2px;
  }

  .price-card ul {
    list-style: none;
    font-size: 15px;
  }

  .price-card ul li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
  }

  .price-card ul li:last-child {
    border-bottom: none;
  }

  .price-card ul li.no {
    opacity: 0.5;
  }

  .li-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
  }

  .li-check {
    color: var(--primary);
  }

  .price-card.featured .li-check {
    color: var(--primary);
  }

  .li-minus {
    color: #bebebe;
  }

  .price-btn {
    width: 100%;
    margin-top: 20px;
    padding: 12px 0px 12px 12px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    font-family: inherit;
    transition: all .2s;
    background: #111;
    color: var(--white);
    letter-spacing: 1.1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }

  .price-btn i {
    width: 14px;
    height: 14px;
  }

  a.a_has_price-btn_outline {
    transition: all .35s;

    &:hover {
      text-decoration: none;
    }
  }

  .price-btn.outline {
    background: var(--white);
    border: 2px solid #111;
    color: #111;
    transition: all .35s;

    a {
      transition: all .35s;
    }
  }

  .price-btn.outline:hover {
    border-color: #111;
    color: var(--white);
    background: #111;
    gap: 16px;

    a {
      color: #fff;
      text-decoration: none;
    }
  }

  .price-btn.solid {}

  .price-btn.solid:hover {
    background: #333;
    gap: 16px;
  }

  /* ===== FAQ ===== */
  section.faq-section {
    padding-bottom: 180px;
  }

  .faq-list {
    max-width: 660px;
    margin: 0 auto;
    scroll-margin-top: 72px;
  }

  .faq-item {
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
    cursor: pointer;
  }

  .faq-q {
    font-size: 15px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color .2s;
  }

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

  .faq-chevron {
    flex-shrink: 0;
    margin-left: 16px;
    color: var(--gray);
    transition: transform .3s;
  }

  .faq-chevron [data-lucide] {
    width: 18px;
    height: 18px;
    display: block;
  }

  .faq-item.open .faq-chevron {
    transform: rotate(180deg);
  }

  .faq-a {
    font-size: 14px;
    color: var(--gray);
    margin-top: 12px;
    line-height: 1.85;
    display: none;
  }

  .faq-item.open .faq-a {
    display: block;
  }

  /* ===== FINAL CTA ===== */
  section.cta-section {
    position: relative;
    z-index: 1;
    background-color: rgb(255, 255, 255);
    background-image: repeating-linear-gradient(-45deg, transparent, transparent 3px, rgba(245, 245, 245, 0.6) 3px, rgba(245, 245, 245, 0.6) 6px);
    padding: 120px 48px;
    margin-top: -60px;
    margin-bottom: -60px;
    border-radius: 50% 50% 50% 50% / 60px 60px 60px 60px;
    text-align: center;
    color: var(--primary-dark);
  }

  .cta-section h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: 1.1px;
    font-feature-settings: "palt";
    color: var(--dark);
  }

  .cta-section>p {
    font-size: 16px;
    margin-bottom: 36px;
    color: var(--gray);
    line-height: 1.8;
  }

  .cta-form {
    display: flex;
    gap: 10px;
    max-width: 520px;
    margin: 0 auto 14px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .cta-form input {
    flex: 1;
    padding: 14px 16px;
    border-radius: 8px;
    border: none;
    font-size: 14px;
    min-width: 0;
    outline: none;
    font-family: inherit;
    transition: box-shadow .2s;
  }

  .cta-form input:focus {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.35);
  }

  .cta-form button {
    background: #111;
    color: #fff;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    font-family: inherit;
    transition: background .2s, transform .15s;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
  }

  .cta-form button [data-lucide] {
    width: 20px;
    height: 20px;
  }

  .cta-form button:hover {
    background: #333;
    transform: translateY(-1px);
  }

  .cta-note {
    font-size: 14px !important;
    color: var(--gray) !important;
    line-height: 1.6;
  }

  /* ===== FOOTER ===== */
  footer {
    position: relative;
    z-index: 1;
    background: var(--gray);
    color: var(--border);
    padding: 32px 48px;
    font-size: 13px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: initial;
    text-align: initial;
  }

  .footer-logo img {
    height: 28px;
    width: auto;
    display: block;
    opacity: 0.85;
  }

  .footer-logo {
    color: #fff;
    font-weight: 800;
    font-size: 16px;
  }

  footer a {
    color: #94A3B8;
    text-decoration: none;
    margin-left: 20px;
    transition: color .2s;
  }

  footer a:hover {
    color: #fff;
  }
}

/* ===================================================
   RESPONSIVE — Tablet (≤1024px) & Mobile (≤768px)
   =================================================== */

/* ---- Tablet ---- */
@media (max-width: 1024px) {
  .body-site-checker {
    nav {
      padding: 0 24px;
    }

    .hero {
      padding: 64px 24px 20px;
    }

    .hero-inner {
      gap: 40px;
    }

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

    .section {
      padding: 64px 24px;
    }

    .section-title {
      font-size: 30px;
    }

    .feature-item {
      gap: 40px;
    }

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

    .pricing-grid {
      max-width: 100%;
    }

    section.cta-section {
      padding: 100px 32px;
    }
  }
}

/* ---- Mobile ---- */
@media (max-width: 768px) {
  .body-site-checker {

    /* Nav */
    nav {
      padding: 0 16px;
      height: 56px;
    }

    .nav-links {
      display: none;
    }

    .logo-mark {
      width: 140px;
    }

    .nav-cta {
      font-size: 13px;
      padding: 9px 14px;
    }

    /* Hero */
    .hero {
      padding: 48px 16px 20px;
    }

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

    .hero-badge {
      font-size: 14px;
    }

    .hero h1 {
      font-size: 28px;
      letter-spacing: 0.4px;
    }

    .hero>.hero-inner>div>p {
      font-size: 13px;
      margin-bottom: 28px;
    }

    .trust-bar {
      gap: 8px;
    }

    .trust-item {
      width: 100%;
      padding: 8px 12px;
    }

    .trust-label {
      font-size: 13px;
    }

    /* Hero mock — hide on mobile */
    .report-preview-wrap {
      display: none;
    }

    /* blur-cta */
    .blur-cta {
      padding: 24px 16px;
    }

    .blur-cta button {
      width: 100%;
      font-size: 15px;
      padding: 14px 20px;
    }

    /* Sections */
    .section {
      padding: 56px 16px;
    }

    .section-title {
      font-size: 24px;
      letter-spacing: 0.5px;
    }

    .section-sub {
      font-size: 14px;
      margin-bottom: 36px;
    }

    /* Steps */
    .steps-grid {
      grid-template-columns: 1fr;
      max-width: 400px;
      gap: 36px;
    }

    .steps-grid::before {
      display: none;
    }

    /* Features */
    .feature-item {
      grid-template-columns: 1fr;
      gap: 24px;
      margin-bottom: 48px;
    }

    .feature-item.reverse {
      direction: ltr;
    }

    .feature-text h3 {
      font-size: 22px;
    }

    .feature-text p {
      font-size: 15px;
    }

    /* Roadmap */
    .roadmap-grid {
      grid-template-columns: 1fr;
      max-width: 400px;
    }

    /* Pricing */
    .pricing-grid {
      grid-template-columns: 1fr;
      max-width: 400px;
    }


    /* FAQ */
    section.faq-section {
      padding-bottom: 80px;
    }

    /* CTA section */
    section.cta-section {
      padding: 80px 16px;
      border-radius: 50% 50% 50% 50% / 40px 40px 40px 40px;
      margin-top: -40px;
      margin-bottom: -40px;
    }

    .cta-section h2 {
      font-size: 24px;
    }

    .cta-section>p {
      font-size: 14px;
      margin-bottom: 28px;
    }

    .cta-form button {
      font-size: 16px;
      padding: 14px 24px;
      width: 100%;
    }

    /* Footer */
    footer {
      padding: 24px 16px;
      flex-direction: column;
      gap: 8px;
      text-align: center;
    }
  }
}

/* ---- Small mobile ---- */
@media (max-width: 480px) {
  .body-site-checker {
    .hero h1 {
      font-size: 24px;
    }

    .hero-badge {
      font-size: 13px;
    }

    .form-card {
      padding: 24px 16px;
    }

    .section-title {
      font-size: 22px;
    }
  }
}