/* ============================================================
   AIEO ProWriter Landing Page - globals.css
   Desktop-first approach. No Tailwind. No CSS modules.
   BEM-like class naming matching TSX components exactly.
   ============================================================ */

/* ============================================================
   1. DESIGN TOKENS (CSS Custom Properties)
   ============================================================ */
:root {
  /* Colors */
  --color-text: #202225;
  --color-white: #ffffff;
  --color-blue: #0D6CDE;
  --color-yellow: #FFFC2D;
  --color-bgcolor: #EEF5FA;
  --color-lightgray: #ECF3F9;
  --color-border: #D7DFE6;
  --color-gray: #7e858b;
  --color-dark: #1a212f;

  /* Gradients */
  --gradient-main: linear-gradient(160deg, #035FD7 0%, #42AFFF 50%, #1DD8E9 100%);
  --gradient-btn: linear-gradient(160deg, #035FD7 0%, #42AFFF 50%, #1DD8E9 100%);
  --gradient-text: linear-gradient(160deg, #0159CC 0%, #1F93E9 50%, #14CABA 100%);

  /* Shadows */
  --shadow-card: 0px 0px 20px rgba(9, 34, 62, 0.05);
  --shadow-navbar: 0px 0px 20px rgba(9, 34, 62, 0.05);

  /* Fonts */
  --font-primary: 'Noto Sans JP', sans-serif;
  --font-display: 'Barlow', sans-serif;
  --font-secondary: 'Roboto', sans-serif;

  /* Layout */
  --max-width: 1440px;
  --navbar-max-width: 1400px;
  --content-max-width: 1200px;
  --inner-max-width: 1100px;
}


/* ============================================================
   2. RESET & BASE STYLES
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-primary);
  font-weight: 500;
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  background-color: var(--color-white);
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s ease;
}

a:hover {
  opacity: 0.8;
}

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

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  font-size: inherit;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  outline: none;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.4;
}


/* ============================================================
   3. UTILITY CLASSES
   ============================================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}


/* ============================================================
   4. PC / SP IMAGE SWITCHING
   ============================================================ */
/* Default: show PC, hide SP */
[class*="--pc"] {
  display: block;
}

[class*="--sp"] {
  display: none;
}

/* Inline images for logos need inline-block */
img[class*="__logo--pc"] {
  display: inline-block;
}


/* ============================================================
   4b. SECTION WAVE BACKGROUNDS
   ============================================================ */
.section-wave {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  min-width: 1440px;
  z-index: 0;
  pointer-events: none;
}

.section-wave__img {
  width: 100%;
  display: block;
}

/* ============================================================
   5. SHARED BUTTON STYLES
   ============================================================ */
.btn-cta {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  border-radius: 10000px;
  font-size: 20px;
  font-weight: 700;
  font-family: var(--font-primary);
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.15s ease;
  white-space: nowrap;
}

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

.btn-cta:active {
  transform: translateY(0);
}

.btn-cta--gradient {
  background: var(--gradient-btn);
  color: var(--color-white);
  border: none;
  padding: 16px 40px;
}

.btn-cta--outline {
  background: var(--color-white);
  border: 4px solid #0159CC;
  color: var(--color-text);
  padding: 0 40px;
  width: 292px;
  height: 68px;
}

.btn-cta__text {
  font-size: 20px;
  font-weight: 700;
}

.btn-cta__text-gradient {
  font-size: 24px;
  font-weight: 700;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 1.92px;
}

.btn-cta__arrow-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--color-white);
}

.btn-cta__arrow-circle img {
  width: 14px;
  height: 14px;
}

.btn-cta__arrow-circle--gradient {
  background: var(--gradient-text);
  width: 28px;
  height: 28px;
}

/* Standalone arrow circle (used in navbar, sticky, trial, diagnosis popup) */
.btn-arrow-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.btn-arrow-circle img {
  width: 16px;
  height: 16px;
}

.btn-arrow-circle--gradient {
  background: var(--gradient-main);
}

.btn-arrow-circle--small {
  width: 20px;
  height: 20px;
}

.btn-arrow-circle--small img {
  width: 10px;
  height: 10px;
}

.btn-arrow-circle--white {
  background: var(--color-white);
}

/* Gradient text helper for DiagnosisPopup btn-cta-text-gradient */
.btn-cta-text-gradient {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 20px;
  font-weight: 700;
}


/* ============================================================
   6. NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding-top: 20px;
  display: flex;
  justify-content: center;
}

.navbar-inner {
  max-width: var(--navbar-max-width);
  width: 100%;
  margin: 0 auto;
  height: 90px;
  background: var(--color-white);
  border-radius: 999px;
  box-shadow: var(--shadow-navbar);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px 0 32px;
}

.navbar-logo {
  display: block;
  flex-shrink: 0;
  width: 200px;
  height: 34px;
  position: relative;
  overflow: hidden;
}

.navbar-logo img {
  position: absolute;
  width: 111%;
  height: 391%;
  top: -130%;
  left: -8%;
  max-width: none;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.navbar-links a {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1.28px;
  color: var(--color-text);
  white-space: nowrap;
  transition: color 0.2s ease;
}

.navbar-links a:hover {
  color: var(--color-blue);
  opacity: 1;
}

.btn-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gradient-btn);
  border-radius: 999px;
  padding: 12px 24px;
  color: var(--color-white);
  font-size: 18px;
  font-weight: 700;
  white-space: nowrap;
  transition: opacity 0.2s ease, transform 0.15s ease;
}

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

.btn-nav-cta .btn-arrow-circle {
  background: var(--color-white);
}

.btn-nav-cta .btn-arrow-circle--small {
  width: 20px;
  height: 20px;
}

.hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.hamburger img {
  width: 28px;
  height: 28px;
}


/* ============================================================
   7. HERO SECTION
   ============================================================ */
.hero {
  background-color: var(--color-bgcolor);
  padding-top: 110px;
  position: relative;
  overflow: visible;
}

.hero-bg {
  position: absolute;
  bottom: -160px;
  left: 0;
  right: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-bg__img {
  width: 100%;
}

.hero-bg__img--pc {
  display: block;
}

.hero-bg__img--sp {
  display: none;
}

.hero__inner {
  max-width: var(--content-max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 80px 20px 160px;
  position: relative;
  z-index: 1;
  gap: 40px;
}

.hero__content {
  flex: 1;
  max-width: 600px;
  padding-top: 20px;
}

.hero__headline {
  margin: 0 0 28px;
  font: inherit;
}

.hero__headline-line {
  display: block;
  margin-bottom: 16px;
}

.hero__headline-line--auto {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero__highlight-box {
  display: inline-block;
  background: var(--gradient-main);
  color: var(--color-white);
  font-weight: 900;
  font-size: 70px;
  padding: 8px 16px;
  letter-spacing: 5.6px;
  line-height: 1.5;
  margin-bottom: 0;
}

.hero__highlight-box--sm {
  font-size: 0;
  letter-spacing: 5.12px;
}

.hero__highlight-box-main {
  font-size: 64px;
  line-height: 1.5;
}

.hero__highlight-box-sub {
  font-size: 48px;
  line-height: 1.5;
}

.hero__auto-text {
  color: var(--color-blue);
  font-weight: 900;
  font-size: 80px;
  letter-spacing: 6.4px;
  line-height: 1.5;
  display: inline-block;
  position: relative;
  z-index: 0;
}

.hero__underline {
  position: absolute;
  bottom: -2px;
  left: -5px;
  width: 358px;
  height: 55px;
  pointer-events: none;
  z-index: -1;
}

.hero__underline--pc {
  display: block;
}

.hero__underline--sp {
  display: none;
}

.hero__build-text {
  color: var(--color-text);
  font-weight: 900;
  font-size: 64px;
  letter-spacing: 5.12px;
  line-height: 1.5;
}

.hero__subtitle {
  font-weight: 700;
  font-size: 22px;
  line-height: 1.7;
  letter-spacing: 1.76px;
  color: var(--color-text);
  margin-bottom: 28px;
}

.hero__form-wrapper {
  flex-shrink: 0;
}


/* ============================================================
   8. DIAGNOSIS FORM (Hero card)
   ============================================================ */
.diagnosis-form {
  width: 540px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 10px;
  box-shadow: var(--shadow-card);
  padding: 64px 40px 80px;
  text-align: center;
}

.diagnosis-form__badge {
  display: inline-block;
  margin-bottom: 16px;
}

.diagnosis-form__badge-text {
  display: inline-block;
  background-color: var(--color-yellow);
  color: var(--color-blue);
  font-weight: 700;
  font-size: 20px;
  padding: 4px 20px;
  border-radius: 4px;
}

.diagnosis-form__title {
  font-size: 32px;
  font-weight: 900;
  color: var(--color-blue);
  text-align: center;
  line-height: 1.5;
  letter-spacing: 2.56px;
  margin-bottom: 12px;
}

.diagnosis-form__description {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text);
  text-align: center;
  line-height: 1.7;
  letter-spacing: 1.28px;
  margin-bottom: 48px;
}

.diagnosis-form__form {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}

.diagnosis-form__field {
  text-align: left;
  width: 100%;
}

.diagnosis-form__label {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: 1.28px;
  margin-bottom: 12px;
}

.diagnosis-form__input {
  width: 100%;
  height: 49px;
  background: var(--color-lightgray);
  border: 1px solid var(--color-border);
  border-radius: 5px;
  padding: 11px 16px;
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text);
  transition: border-color 0.2s ease;
}

.diagnosis-form__input::placeholder {
  color: var(--color-gray);
}

.diagnosis-form__input:focus {
  border-color: var(--color-blue);
}

.diagnosis-form__submit {
  margin-top: 0;
  width: 292px;
  margin-left: auto;
  margin-right: auto;
  height: 56px;
  font-size: 18px;
  padding: 12px 40px;
}

.diagnosis-form__submit--loading {
  opacity: 0.7;
  cursor: not-allowed;
  pointer-events: none;
}

.diagnosis-form__spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: btn-spin 0.6s linear infinite;
}

.diagnosis-form__error {
  color: #ef4444;
  font-size: 14px;
  text-align: center;
  margin-bottom: 8px;
}


/* ============================================================
   9. TRUST LOGOS
   ============================================================ */
.trust-logos {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 28px 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.trust-logos__track {
  display: flex;
  width: max-content;
  animation: marquee 20s linear infinite;
}

.trust-logos__slide {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 0 30px;
}

.trust-logos__item {
  width: 140px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-logos__item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}


/* ============================================================
   10. PAIN SECTION
   ============================================================ */
.pain {
  background: var(--color-white);
  padding: 80px 0;
}

.pain__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.pain__card {
  background: var(--color-bgcolor);
  border-radius: 10px;
  padding: 20px 80px 48px;
  margin-bottom: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.pain__icon-top {
  text-align: center;
  margin-bottom: -32px;
}

.pain__icon-top-img {
  width: 64px;
  height: 64px;
}

.pain__item-emphasis {
  font-weight: 700;
  color: #0D6CDE;
}

.pain__title {
  font-size: 30px;
  font-weight: 800;
  color: #202225;
  text-align: center;
  margin-bottom: 0;
  letter-spacing: 2.4px;
  line-height: 1.5;
}

.pain__title-emphasis {
  color: #202225;
}

.pain__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pain__item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  text-align: left;
}

.pain__icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.pain__icon--pc {
  display: block;
}

.pain__icon--sp {
  display: none;
}

.pain__item-text {
  font-size: 18px;
  font-weight: 500;
  color: #1A212F;
  line-height: 1.7;
  letter-spacing: 1.44px;
  white-space: nowrap;
}

.pain__triangle {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
}

.pain__triangle-shape {
  display: block;
  width: 0;
  height: 0;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-top: 24px solid var(--color-bgcolor);
}


/* ============================================================
   11. PAIN-INTRO WRAPPER + INTRO SECTION
   ============================================================ */
.pain-intro-wrapper {
  position: relative;
  overflow: hidden;
}

.pain-intro-wrapper .section-wave__img {
  transform: scaleX(-1);
}

.intro {
  background: var(--color-white);
  padding: 40px 0 80px;
}

.intro__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.intro__title {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 24px;
  line-height: 1.6;
}

.intro__logo-wrap {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  overflow: hidden;
}

.intro__logo-wrap--pc {
  width: 480px;
  height: 110px;
  margin: -14px 0;
}

.intro__logo-wrap--sp {
  display: none;
}

.intro__logo {
  position: absolute;
  width: 111%;
  height: 391%;
  top: -130%;
  left: -8%;
  max-width: none;
}

.intro__logo--pc {
  display: block;
}

.intro__logo--sp {
  display: block;
}

.intro__title-connector {
  font-size: 28px;
  font-weight: 700;
  vertical-align: middle;
}

.intro__title-main {
  font-size: 28px;
  font-weight: 700;
}

.intro__title-highlight {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.intro__title-logo {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 2px;
}

.intro__body {
  text-align: center;
  font-weight: 700;
  font-size: 20px;
  line-height: 2;
  letter-spacing: 1.6px;
  color: var(--color-text);
  max-width: 800px;
  margin: 0 auto;
}

.intro__body-emphasis {
  color: var(--color-blue);
}


/* ============================================================
   12. WHY SEO SECTION
   ============================================================ */
.why-seo {
  background: linear-gradient(138deg, rgb(1, 25, 56) 0%, rgb(24, 63, 92) 50%, rgb(13, 77, 82) 100%);
  border-radius: 10px;
  padding: 64px 80px 72px;
}

.why-seo__inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.why-seo__title {
  font-size: 30px;
  font-weight: 700;
  color: var(--color-white);
  text-align: center;
  margin-bottom: 24px;
  line-height: 1.6;
}

.why-seo__badge {
  display: inline-block;
  margin-bottom: 24px;
}

.why-seo__badge-text {
  display: inline-block;
  background: linear-gradient(174deg, rgb(13, 77, 82) 0%, rgb(24, 63, 92) 50%, rgb(1, 25, 56) 100%);
  border-radius: 2px;
  padding: 4px 12px;
  color: var(--color-white);
  font-weight: 700;
  font-size: 22px;
}

.why-seo__body {
  font-size: 20px;
  font-weight: 700;
  line-height: 2;
  color: var(--color-white);
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}


/* ============================================================
   13. STRENGTHS SECTION
   ============================================================ */
.strengths {
  background: var(--color-bgcolor);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.strengths__inner {
  max-width: var(--inner-max-width);
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.strengths__header {
  text-align: center;
  margin-bottom: 48px;
}

.strengths__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-wrap: wrap;
  font-size: 44px;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: 3.52px;
  line-height: 1.3;
}

.strengths__title-connector {
  font-size: 32px;
  font-weight: 700;
}

.strengths__title-main {
  font-size: 44px;
  font-weight: 700;
  letter-spacing: 3.52px;
}

.strengths__logo-wrap {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  overflow: hidden;
}

.strengths__logo-wrap--pc {
  width: 400px;
  height: 90px;
  margin: -10px 0;
}

.strengths__logo-wrap--sp {
  display: none;
}

.strengths__logo {
  position: absolute;
  width: 111%;
  height: 391%;
  top: -130%;
  left: -8%;
  max-width: none;
}

.strengths__logo--pc {
  display: block;
}

.strengths__logo--sp {
  display: block;
}

.strengths__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto;
}

.strengths__card {
  width: 380px;
  height: 400px;
  padding: 40px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  box-shadow: var(--shadow-card);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: center;
}

.strengths__card-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}

.strengths__card-label {
  display: block;
  font-family: var(--font-secondary);
  font-weight: 500;
  font-size: 28px;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 2.24px;
  line-height: 1;
}

.strengths__card-number {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 100px;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  -webkit-text-stroke: 2px transparent;
  letter-spacing: 5px;
}

.strengths__card-title {
  font-size: 24px;
  color: var(--color-blue);
  font-weight: 700;
  letter-spacing: 1.92px;
}

.strengths__card-description {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
  color: var(--color-text);
  text-align: center;
  letter-spacing: 1.28px;
}


/* ============================================================
   14. CTA BANNER
   ============================================================ */
.cta-banner {
  position: relative;
  overflow: hidden;
  padding: 70px 0;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 10px;
}

.cta-banner__bg {
  position: absolute;
  inset: 0;
  background: var(--gradient-main);
  border-radius: 10px;
  z-index: 0;
}

.cta-banner__wave {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.cta-banner__wave img {
  display: block;
  height: 100%;
  width: auto;
  mix-blend-mode: overlay;
  opacity: 0.3;
}

.cta-banner__wave--left {
  bottom: 0;
  left: 0;
  height: 100%;
}

.cta-banner__wave--right {
  top: 0;
  right: 0;
  height: 100%;
}

.cta-banner__inner {
  position: relative;
  z-index: 1;
  max-width: var(--inner-max-width);
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.cta-banner__badge {
  background: var(--color-yellow);
  padding: 8px 20px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 16px;
}

.cta-banner__badge-text {
  color: var(--color-blue);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1.76px;
  background: none;
  -webkit-text-fill-color: initial;
  padding: 0;
  border-radius: 0;
}

.cta-banner__text {
  color: white;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 2.4px;
  line-height: 1.7;
  margin-bottom: 32px;
}


/* ============================================================
   15. BENEFITS SECTION
   ============================================================ */
.benefits {
  background: var(--color-white);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.benefits__inner {
  max-width: var(--inner-max-width);
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.benefits__header {
  text-align: center;
  margin-bottom: 48px;
}

.benefits__label {
  display: block;
  font-family: var(--font-secondary);
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 1.6px;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.benefits__title {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 40px;
  color: var(--color-text);
  letter-spacing: 3.2px;
}

.benefits__list {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.benefits__card {
  display: flex;
  gap: 40px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.benefits__card--reverse {
  flex-direction: row-reverse;
}

.benefits__card-image {
  width: 400px;
  flex-shrink: 0;
}

.benefits__card-image-placeholder {
  width: 100%;
  aspect-ratio: 400 / 260;
  background: var(--color-bgcolor);
  border-radius: 10px;
}

.benefits__card-image-img {
  width: 100%;
  height: auto;
  display: block;
}

.benefits__card-content {
  flex: 1;
}

.benefits__card-number-wrapper {
  margin-bottom: 16px;
}

.benefits__card-label {
  display: block;
  font-family: var(--font-secondary);
  font-weight: 500;
  font-size: 16px;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0;
}

.benefits__card-number {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 64px;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

.benefits__card-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 16px;
  line-height: 1.5;
}

.benefits__card-body {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
  color: var(--color-text);
}


/* ============================================================
   16. COMPARISON SECTION
   ============================================================ */
.comparison {
  background: var(--color-white);
  padding: 0 0 40px;
}

.comparison__inner {
  max-width: var(--inner-max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.comparison__card {
  background: var(--color-border);
  border-radius: 10px;
  padding: 40px 80px;
  display: flex;
  flex-direction: column;
  gap: 56px;
  align-items: center;
}

.comparison__header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.comparison__logo-banner {
  background: var(--gradient-main);
  padding: 20px 40px;
  display: inline-block;
}

.comparison__logo-img {
  height: 48px;
  width: 320px;
  object-fit: contain;
}

.comparison__vs {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: 1.6px;
}

.comparison__title-text {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: 2.56px;
}

.comparison__description {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
  color: var(--color-text);
  text-align: center;
  letter-spacing: 1.28px;
}

.comparison__table-wrapper {
  width: 100%;
  overflow-x: auto;
}

.comparison__scroll-hint {
  display: none;
  align-items: center;
  gap: 6px;
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: var(--color-text);
  letter-spacing: 0.96px;
  padding-left: 12px;
  margin-bottom: 24px;
}

.comparison__scroll-hint img {
  width: 16px;
  height: 16px;
}

.comparison__table {
  display: grid;
  grid-template-columns: 320px 170px 320px;
  width: max-content;
  margin: 0 auto;
}

.comparison__table-head {
  display: contents;
}

.comparison__table-th {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  font-size: 22px;
  font-weight: 700;
  color: var(--color-white);
  text-align: center;
}

.comparison__table-th--aieo {
  background: var(--color-blue);
  border: 10px solid var(--color-blue);
  border-bottom: none;
  border-radius: 2px 2px 0 0;
}

.comparison__table-th--label {
  /* empty header for label column */
}

.comparison__table-th--seo {
  background: #8197a9;
}

.comparison__th-logo {
  height: 42px;
  width: 280px;
  object-fit: contain;
}

.comparison__table-row {
  display: contents;
}

.comparison__table-td {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
  padding: 12px 20px;
  font-size: 18px;
  text-align: center;
  border-bottom: 1px solid var(--color-border);
  white-space: nowrap;
}

.comparison__table-td--aieo {
  background: var(--color-white);
  border-left: 10px solid var(--color-blue);
  border-right: 10px solid var(--color-blue);
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: 1.44px;
  line-height: 1.7;
}

.comparison__table-row:last-child .comparison__table-td--aieo {
  border-bottom: 10px solid var(--color-blue);
}

.comparison__table-td--label {
  background: var(--color-lightgray);
  font-weight: 700;
  font-size: 16px;
  color: var(--color-text);
  border-right: 1px solid var(--color-border);
  letter-spacing: 0.8px;
  line-height: 1.5;
  white-space: nowrap;
  min-width: 170px;
}

.comparison__table-td--seo {
  background: var(--color-white);
  font-weight: 500;
  color: var(--color-text);
  font-size: 18px;
  letter-spacing: 0.9px;
  line-height: 1.5;
}

.comparison__highlight {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}


/* ============================================================
   17. CAPABILITIES SECTION
   ============================================================ */
.capabilities {
  background: var(--color-white);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.capabilities .section-wave__img {
  transform: scaleX(-1);
}

.capabilities__inner {
  max-width: var(--inner-max-width);
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.capabilities__header {
  text-align: center;
  margin-bottom: 56px;
}

.capabilities__label {
  display: block;
  font-family: var(--font-secondary);
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 1.6px;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.capabilities__title {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 40px;
  color: var(--color-text);
  letter-spacing: 3.2px;
}

.capabilities__list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.capabilities__grid-row {
  display: flex;
  gap: 40px;
}

.capabilities__card {
  background: rgba(238, 245, 250, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 32px 40px 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  flex: 1;
}

.capabilities__card--full {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.capabilities__card-icons {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.capabilities__card-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.capabilities__card-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-text);
  text-align: center;
  line-height: 1.5;
  letter-spacing: 1.76px;
}

.capabilities__card-title-row {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
}

.capabilities__card-option-badge {
  display: inline-block;
  background: var(--gradient-main);
  color: var(--color-white);
  font-weight: 700;
  font-size: 18px;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 1.44px;
  flex-shrink: 0;
}

.capabilities__card-body {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
  color: var(--color-text);
  letter-spacing: 1.28px;
}


/* ============================================================
   18. FLOW SECTION
   ============================================================ */
.flow {
  background: var(--color-bgcolor);
  padding: 80px 0;
}

.flow__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.flow__header {
  text-align: center;
  margin-bottom: 48px;
}

.flow__label {
  display: block;
  font-family: var(--font-secondary);
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 1.6px;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.flow__title {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 40px;
  color: var(--color-text);
  letter-spacing: 3.2px;
}

.flow__steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.flow__step-wrapper {
  /* wrapper for step + separator */
}

.flow__step {
  padding: 40px;
  background: white;
  border-radius: 10px;
  box-shadow: var(--shadow-card);
}

.flow__step-label-row {
  margin-bottom: 4px;
}

.flow__step-label {
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 20px;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 1px;
}

.flow__step-content {
  flex: 1;
}

.flow__step-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 1.1px;
}

.flow__step-description {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
  color: var(--color-text);
}

.flow__step-separator {
  display: flex;
  justify-content: center;
  padding: 10px 0;
}

.flow__step-arrow {
  width: 48px;
  height: 34px;
}


/* ============================================================
   19. FAQ SECTION
   ============================================================ */
.faq {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  padding: 100px 0 120px;
}

.faq__inner {
  max-width: var(--inner-max-width);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  gap: 97px;
  align-items: flex-start;
}

.faq__header {
  flex-shrink: 0;
  position: sticky;
  top: 140px;
}

.faq__label {
  display: block;
  font-family: var(--font-secondary);
  font-weight: 500;
  font-size: 20px;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 1.6px;
}

.faq__title {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: 2.56px;
}

.faq__list {
  flex: 1;
  max-width: 800px;
}

.faq__item {
  border-top: 1px solid var(--color-border);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq__item:last-child {
  border-bottom: 1px solid var(--color-border);
}

.faq__qa-row {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.faq__badge {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-secondary);
  font-weight: 500;
  font-size: 15px;
  line-height: 1.4;
}

.faq__badge--q {
  background: var(--color-white);
  color: var(--color-blue);
}

.faq__badge--a {
  background: var(--gradient-main);
  color: var(--color-white);
}

.faq__question-text {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.7;
  letter-spacing: 1.44px;
  flex: 1;
}

.faq__answer-text {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text);
  line-height: 1.7;
  letter-spacing: 1.28px;
  flex: 1;
}

.faq__answer-text p + p {
  margin-top: 0;
}


/* ============================================================
   20. BLOG SECTION (Landing Page)
   ============================================================ */
.blog {
  background: var(--color-bgcolor);
  padding: 100px 0 120px;
}

.blog__inner {
  max-width: var(--inner-max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.blog__header {
  text-align: center;
  margin-bottom: 56px;
}

.blog__label {
  display: block;
  font-family: var(--font-secondary);
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 1.6px;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.blog__title {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 40px;
  color: var(--color-text);
  letter-spacing: 3.2px;
}

.blog__grid {
  display: flex;
  gap: 40px;
  justify-content: center;
  max-width: 1040px;
  margin: 0 auto 40px;
  flex-wrap: wrap;
}

.blog__card {
  width: 320px;
  transition: transform 0.2s ease;
  display: block;
}

.blog__card:hover {
  transform: translateY(-4px);
  opacity: 1;
}

.blog__card-image {
  height: 180px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 8px;
}

.blog__card-image-placeholder {
  width: 100%;
  height: 100%;
  background: var(--color-border);
}

.blog__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog__card-content {
  /* card text area */
}

.blog__card-date {
  display: block;
  font-family: var(--font-secondary);
  font-weight: 500;
  font-size: 12px;
  color: var(--color-blue);
  margin-bottom: 4px;
}

.blog__card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.5;
  letter-spacing: 1.28px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog__more {
  text-align: center;
  margin-top: 56px;
}

.blog__more-btn {
  display: inline-flex;
  width: 292px;
  height: 48px;
  font-size: 18px;
}


/* ============================================================
   21. CONTACT SECTION
   ============================================================ */
.contact {
  position: relative;
  overflow: hidden;
  padding: 80px;
}

.contact__bg {
  position: absolute;
  inset: 0;
  background: var(--gradient-main);
  z-index: 0;
}

.contact__inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.contact__card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  box-shadow: var(--shadow-card);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.contact__card-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.contact__badge {
  display: inline-block;
}

.contact__badge-text {
  display: inline-block;
  background: var(--color-yellow);
  color: var(--color-blue);
  font-weight: 700;
  font-size: 18px;
  padding: 4px 20px;
  letter-spacing: 1.44px;
}

.contact__title {
  font-size: 32px;
  font-weight: 900;
  color: var(--color-blue);
  letter-spacing: 2.56px;
}

.contact__subtitle {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text);
  line-height: 1.5;
  letter-spacing: 1.28px;
}

.contact__form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 56px;
  align-items: center;
}

.contact__form-fields {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact__form-row {
  display: flex;
  gap: 20px;
}

.contact__form-field {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact__form-field--full {
  width: 100%;
}

.contact__form-label {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: 1.28px;
}

.contact__form-required {
  color: #E92236;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.2;
  margin-left: 4px;
}

.contact__form-input {
  width: 100%;
  height: 49px;
  background: var(--color-lightgray);
  border: 1px solid var(--color-border);
  border-radius: 5px;
  padding: 11px 16px;
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text);
  letter-spacing: 1.28px;
  transition: border-color 0.2s ease;
}

.contact__form-input::placeholder {
  color: #b4becc;
}

.contact__form-input:focus {
  border-color: var(--color-blue);
  outline: none;
}

.contact__form-submit {
  display: flex;
  justify-content: center;
}

.contact__form-submit .btn-cta {
  width: 292px;
}

.contact__form-submit .btn-cta:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.btn-cta__spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: btn-spin 0.6s linear infinite;
}

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

.contact__form-error {
  color: #ef4444;
  font-size: 14px;
  text-align: center;
  margin-top: 8px;
}

/* Contact Thank You Popup */
.contact-popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3000;
  background: rgba(32, 34, 37, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.contact-popup__card {
  background: var(--color-white);
  max-width: 600px;
  width: 100%;
  border-radius: 10px;
  padding: 60px 64px 48px;
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  animation: scaleIn 0.3s ease;
}

@keyframes scaleIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.contact-popup__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: none;
  border: none;
}

.contact-popup__close img {
  width: 24px;
  height: 24px;
}

.contact-popup__title {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.5;
}

.contact-popup__body p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
  color: var(--color-text);
}

.contact-popup__action .btn-cta {
  width: 200px;
}


/* ============================================================
   22. FOOTER
   ============================================================ */
.footer {
  background: var(--color-text);
  padding: 40px 40px 20px;
}

.footer__inner {
  max-width: var(--content-max-width);
  margin: 0 auto;
}

.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 160px;
}

.footer__logo {
  flex-shrink: 0;
}

.footer__logo-img {
  width: 280px;
  height: 42px;
}

.footer__nav {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.footer__nav-list {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer__nav-item {
  /* item */
}

.footer__nav-link {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-white);
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

.footer__nav-link:hover {
  opacity: 0.7;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer__privacy-link {
  font-size: 12px;
  color: var(--color-white);
  transition: opacity 0.2s ease;
}

.footer__privacy-link:hover {
  opacity: 0.7;
}

.footer__copyright {
  font-size: 12px;
  color: var(--color-white);
  font-family: var(--font-secondary);
}


/* ============================================================
   23. MOBILE MENU
   ============================================================ */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2000;
  background: var(--color-white);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}

.mobile-menu--open {
  transform: translateX(0);
}

.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.mobile-menu-close img {
  width: 28px;
  height: 28px;
}

.mobile-menu-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 80px 40px;
  gap: 48px;
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.mobile-menu-links a {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text);
  letter-spacing: 1.28px;
}

.mobile-menu-links a:hover {
  color: var(--color-blue);
}


/* ============================================================
   25. DIAGNOSIS POPUP
   ============================================================ */
.diagnosis-popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3000;
  background: rgba(32, 34, 37, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.diagnosis-popup-card {
  background: var(--color-white);
  max-width: 1000px;
  width: 100%;
  border-radius: 10px;
  padding: 40px 80px 64px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.diagnosis-popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: none;
  border: none;
}

.diagnosis-popup-close img {
  width: 24px;
  height: 24px;
}

.diagnosis-popup-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  width: 100%;
}

.diagnosis-popup-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.diagnosis-popup-title {
  font-size: 32px;
  font-weight: 900;
  color: var(--color-blue);
}

.diagnosis-popup-score {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 72px;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  letter-spacing: 5.76px;
}

.diagnosis-popup-url {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-gray);
}

.diagnosis-popup-items {
  background: #F4FAFF;
  border-radius: 10px;
  padding: 18px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 444px;
  max-width: 100%;
}

.diagnosis-popup-items-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-blue);
}

.diagnosis-popup-items-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.diagnosis-popup-item {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.diagnosis-popup-item-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.diagnosis-popup-item-label {
  font-size: 16px;
  font-weight: 500;
  color: #1A212F;
}

.diagnosis-popup-body {
  text-align: center;
}

.diagnosis-popup-body p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
  color: var(--color-text);
}


/* ============================================================
   26. TRIAL POPUP
   ============================================================ */
.trial-popup {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 998;
  background: var(--color-white);
  box-shadow: 0 0 20px rgba(9, 34, 62, 0.05);
  border-radius: 10px;
  width: 332px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

.trial-popup--visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Hide sticky CTA when trial popup is visible */
.trial-popup-close {
  position: absolute;
  top: -16px;
  right: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: var(--color-white);
  border: none;
  border-radius: 999px;
  box-shadow: 0 0 20px rgba(9, 34, 62, 0.05);
  z-index: 1;
}

.trial-popup-close img {
  width: 12px;
  height: 12px;
}

.trial-popup-header {
  background: var(--color-blue);
  padding: 14px 20px;
  border-radius: 10px 10px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.trial-popup-badge {
  display: inline-block;
  background-color: var(--color-yellow);
  color: var(--color-blue);
  font-size: 20px;
  font-weight: 900;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 1px;
  line-height: 1.5;
}

.trial-popup-header-title {
  font-size: 24px;
  font-weight: 900;
  color: var(--color-white);
  letter-spacing: 1.2px;
  line-height: 1.5;
}

.trial-popup-content {
  padding: 12px 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.trial-popup-cost {
  width: 100%;
  border-top: 2px solid var(--color-blue);
  border-bottom: 2px solid var(--color-blue);
  padding: 1px 0 8px;
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

.trial-popup-cost-left {
  display: flex;
  flex-direction: column;
}

.trial-popup-cost-top {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-blue);
  letter-spacing: 1.1px;
  line-height: 1.2;
}

.trial-popup-cost-bottom {
  display: flex;
  align-items: flex-end;
}

.trial-popup-cost-label {
  font-size: 14.667px;
  font-weight: 700;
  color: var(--color-blue);
  line-height: 1.2;
}

.trial-popup-cost-num {
  font-family: 'Roboto', var(--font-display);
  font-size: 38.133px;
  font-weight: 700;
  color: var(--color-blue);
  line-height: 1;
}

.trial-popup-cost-unit1 {
  font-size: 26.4px;
  font-weight: 700;
  color: var(--color-blue);
  line-height: 1.2;
}

.trial-popup-cost-unit2 {
  font-size: 29.333px;
  font-weight: 700;
  color: var(--color-blue);
  line-height: 1.2;
}

.trial-popup-free {
  font-size: 73.333px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 3.667px;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.trial-popup-cta {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.trial-popup-note {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-blue);
  letter-spacing: 0.7px;
  line-height: 1.5;
}

.trial-popup-btn {
  width: 100%;
  height: 54px;
  padding: 0 16px;
  border-radius: 10000px;
  background: var(--gradient-main);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  color: var(--color-white);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1.6px;
  line-height: 1;
  white-space: nowrap;
}


/* ============================================================
   27. PROGRESS BAR
   ============================================================ */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 9999;
  background: transparent;
}

.progress-bar-fill {
  height: 100%;
  background: var(--gradient-main);
  transition: width 0.3s ease;
}


/* ============================================================
   28. PRIVACY POLICY PAGE
   ============================================================ */
.privacy-page {
  padding: 140px 20px 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
}

.privacy-page__header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.privacy-page__label {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 1.6px;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.privacy-page__title {
  font-size: 40px;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: 3.2px;
  line-height: 1.5;
}

.privacy-page__card {
  background: var(--color-white);
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(9, 34, 62, 0.05);
  padding: 40px;
  max-width: 1000px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.privacy-page__section {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.privacy-page__heading {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: 1.28px;
  line-height: 1.5;
}

.privacy-page__text {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text);
  letter-spacing: 1.28px;
  line-height: 1.7;
}

.privacy-page__list {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text);
  letter-spacing: 1.28px;
  line-height: 1.7;
  padding-left: 1.5em;
  margin: 0;
}

.privacy-page__list li {
  margin-bottom: 4px;
}

.privacy-page__contact {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text);
  letter-spacing: 1.28px;
  line-height: 1.7;
  margin-top: 8px;
}

.privacy-page__contact p {
  margin: 0;
}


/* ============================================================
   29. BLOG LIST PAGE
   ============================================================ */
.blog-list-page {
  background: var(--color-bgcolor);
  padding-top: 160px;
  padding-bottom: 120px;
  min-height: 100vh;
}

.blog-list-page__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.blog-list-page__header {
  text-align: center;
  margin-bottom: 56px;
  padding-top: 20px;
}

.blog-list-page__label {
  display: block;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 1.6px;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.blog-list-page__title {
  font-size: 40px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.5;
  letter-spacing: 3.2px;
}

.blog-list-page__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px 24px;
  max-width: 1100px;
  margin: 0 auto 56px;
}

.blog-list-page__card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.blog-list-page__card:hover {
  opacity: 0.8;
}

.blog-list-page__card-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  overflow: hidden;
  background: #aaa;
}

.blog-list-page__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-list-page__card-placeholder {
  width: 100%;
  height: 100%;
  background: #aaa;
}

.blog-list-page__card-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.blog-list-page__card-date {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 12px;
  color: var(--color-blue);
  letter-spacing: 0.96px;
  line-height: 1;
}

.blog-list-page__card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.5;
  letter-spacing: 1.28px;
  height: 48px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.blog-list-page__empty {
  text-align: center;
  color: var(--color-text);
  font-size: 16px;
  padding: 40px 0;
}

/* Pagination */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.pagination__arrow {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.pagination__arrow:hover {
  opacity: 0.6;
}

.pagination__arrow--prev svg {
  transform: none;
}

.pagination__arrow--next svg {
  transform: none;
}

.pagination__item {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
  color: var(--color-text);
  cursor: pointer;
  transition: opacity 0.2s ease;
  border-radius: 4px;
  letter-spacing: 0.72px;
}

.pagination__item:hover {
  opacity: 0.7;
}

.pagination__item--active {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.pagination__item--disabled {
  opacity: 0.3;
  cursor: default;
}

.pagination__item--disabled:hover {
  opacity: 0.3;
}


/* ============================================================
   29. BLOG DETAIL PAGE
   ============================================================ */
.blog-detail-page {
  background: var(--color-bgcolor);
  padding-top: 160px;
  padding-bottom: 80px;
  min-height: 100vh;
}

.blog-detail-page__inner {
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.blog-detail-card {
  background: var(--color-white);
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 10px;
  box-shadow: var(--shadow-card);
  padding: 64px 80px;
}

.blog-detail-card__meta {
  margin-bottom: 24px;
}

.blog-detail-card__date {
  display: block;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 12px;
  color: var(--color-blue);
  letter-spacing: 0.96px;
  margin-bottom: 12px;
}

.blog-detail-card__title {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.5;
}

.blog-detail-card__footer {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}

.blog-detail-card__image {
  border-radius: 20px;
  overflow: hidden;
  background: #d0d0d0;
  aspect-ratio: 373 / 220;
  width: 100%;
  margin-bottom: 40px;
}

.blog-detail-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Blog detail content body styles */
.blog-detail-content {
  color: var(--color-text);
}

.blog-detail-content h2 {
  border-left: 4px solid #FDAF00;
  padding-left: 20px;
  font-size: 28px;
  font-weight: 700;
  margin: 48px 0 24px;
  line-height: 1.5;
}

.blog-detail-content h3 {
  border-bottom: 1px solid #FDAF00;
  padding-bottom: 10px;
  font-size: 20px;
  font-weight: 700;
  margin: 40px 0 20px;
  line-height: 1.5;
}

.blog-detail-content h4 {
  font-size: 18px;
  font-weight: 700;
  margin: 32px 0 16px;
  line-height: 1.5;
}

.blog-detail-content p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
  padding-bottom: 40px;
}

.blog-detail-content ul,
.blog-detail-content ol {
  padding-left: 24px;
  margin-bottom: 24px;
}

.blog-detail-content ul {
  list-style: disc;
}

.blog-detail-content ol {
  list-style: decimal;
}

.blog-detail-content li {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 8px;
}

.blog-detail-content a {
  color: var(--color-blue);
  text-decoration: underline;
}

.blog-detail-content blockquote {
  border-left: 4px solid var(--color-border);
  padding: 16px 24px;
  margin: 24px 0;
  background: var(--color-lightgray);
  border-radius: 0 8px 8px 0;
}

.blog-detail-content img {
  border-radius: 10px;
  margin: 24px 0;
}

.blog-detail-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
}

.blog-detail-content table th,
.blog-detail-content table td {
  border: 1px solid var(--color-border);
  padding: 12px 16px;
  font-size: 14px;
  line-height: 1.6;
}

.blog-detail-content table th {
  background: var(--color-lightgray);
  font-weight: 700;
}

.blog-detail-content code {
  background: var(--color-lightgray);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 14px;
}

.blog-detail-content pre {
  background: var(--color-dark);
  color: var(--color-white);
  padding: 24px;
  border-radius: 10px;
  margin: 24px 0;
  overflow-x: auto;
}

.blog-detail-content pre code {
  background: none;
  padding: 0;
  color: inherit;
}

/* Reference list */
.reference-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.reference-card {
  display: flex;
  gap: 16px;
  padding: 20px 24px;
  background: #F7FAFC;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  transition: box-shadow 0.2s;
}

.reference-card:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.reference-card__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-blue);
  color: white;
  border-radius: 8px;
  margin-top: 2px;
}

.reference-card__body {
  flex: 1;
  min-width: 0;
}

.reference-card__title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-dark);
  padding-bottom: 4px !important;
}

.reference-card__desc {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: #5A6370;
  padding-bottom: 6px !important;
}

.reference-card__domain {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-blue);
  padding-bottom: 0 !important;
}

/* Back button */
.blog-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gradient-btn);
  color: var(--color-white);
  font-size: 16px;
  font-weight: 700;
  padding: 12px 32px;
  border-radius: 999px;
  transition: opacity 0.2s ease, transform 0.15s ease;
  text-decoration: none;
}

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

.blog-back-btn__arrow {
  flex-shrink: 0;
}

/* Prev / next post navigation */
.blog-prevnext {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  max-width: 1200px;
  margin: 32px auto 0;
}

.blog-prevnext__link {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  max-width: 480px;
  padding: 20px 24px;
  background: var(--color-white);
  border-radius: 10px;
  box-shadow: var(--shadow-card);
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.15s ease;
}

.blog-prevnext__link:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

.blog-prevnext__link--next {
  text-align: right;
  margin-left: auto;
}

.blog-prevnext__label {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 12px;
  color: var(--color-blue);
  letter-spacing: 0.96px;
}

.blog-prevnext__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.5;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.blog-prevnext__spacer {
  flex: 1;
  max-width: 480px;
}

/* Related posts */
.blog-related {
  max-width: 1200px;
  margin: 56px auto 0;
}

.blog-related__heading {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.5;
  letter-spacing: 1.92px;
  margin-bottom: 24px;
}

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


/* ============================================================
   30. LOADING SKELETONS
   ============================================================ */
@keyframes skeleton-pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

.skeleton {
  background: #d0d0d0;
  border-radius: 6px;
  animation: skeleton-pulse 1.5s ease-in-out infinite;
}

.skeleton-date {
  width: 80px;
  height: 12px;
}

.skeleton-title {
  width: 100%;
  height: 16px;
}

.skeleton-title-short {
  width: 60%;
  height: 16px;
}

.skeleton-detail-title {
  width: 80%;
  height: 24px;
}

.skeleton-detail-title-short {
  width: 50%;
  height: 24px;
}

.skeleton-content-line {
  width: 100%;
  height: 16px;
}

.skeleton-content-short {
  width: 75%;
  height: 16px;
}

.skeleton-content-heading {
  width: 40%;
  height: 28px;
}

.blog-list-page__card--skeleton {
  pointer-events: none;
}


/* ============================================================
   31. SCROLL ANIMATIONS
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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


/* ============================================================
   32. RESPONSIVE - TABLET (max-width: 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  /* Navbar */
  .navbar-links {
    display: none;
  }

  .btn-nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .navbar-inner {
    width: calc(100% - 40px);
    padding: 0 20px;
  }

  /* Hero */
  .hero__inner {
    flex-direction: column;
    align-items: center;
    padding: 40px 20px 100px;
    gap: 40px;
  }

  .hero__content {
    max-width: 100%;
    text-align: center;
  }

  .hero__headline {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero__subtitle {
    text-align: center;
  }

  .hero__content .btn-cta {
    margin: 0 auto;
  }

  .hero__form-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .diagnosis-form {
    width: 100%;
    max-width: 540px;
  }

  /* Trust logos - marquee handles responsiveness */

  /* Strengths */
  .strengths__grid {
    gap: 24px;
  }

  .strengths__card {
    width: calc(50% - 20px);
    height: auto;
  }

  /* Benefits */
  .benefits__card {
    gap: 24px;
  }

  .benefits__card-image {
    width: 300px;
  }

  /* Comparison */
  .comparison__card {
    padding: 32px 40px;
  }

  /* Capabilities */
  .capabilities__grid-row {
    flex-direction: column;
  }

  /* FAQ */
  .faq__inner {
    flex-direction: column;
    gap: 32px;
  }

  .faq__header {
    width: 100%;
    position: static;
    text-align: center;
  }

  .faq__list {
    max-width: 100%;
  }

  /* Contact */
  .contact {
    padding: 60px 40px;
  }

  .contact__card {
    padding: 32px;
  }

  /* Footer */
  .footer__top {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }

  .footer__nav {
    justify-content: center;
  }

  .footer__nav-list {
    justify-content: center;
  }

  /* Section paddings */
  .pain,
  .intro,
  .strengths,
  .benefits,
  .comparison,
  .capabilities,
  .flow,
  .blog {
    padding: 60px 0;
  }

  .why-seo {
    padding: 48px 40px 56px;
  }

  /* Blog detail */
  .blog-detail-card {
    padding: 48px 40px;
  }
}


/* ============================================================
   33. RESPONSIVE - MOBILE (max-width: 768px)
   ============================================================ */
@media (max-width: 768px) {
  /* PC/SP image switching */
  .hero-bg__img--pc,
  .hero__underline--pc,
  .pain__icon--pc,
  .intro__logo-wrap--pc,
  .strengths__logo-wrap--pc {
    display: none !important;
  }

  .hero-bg__img--sp,
  .hero__underline--sp,
  .pain__icon--sp,
  .intro__logo-wrap--sp,
  .strengths__logo-wrap--sp {
    display: inline-block !important;
  }

  /* Navbar */
  .navbar {
    padding-top: 12px;
  }

  .navbar-inner {
    height: 64px;
    width: calc(100% - 40px);
    padding: 0 16px;
  }

  .navbar-logo {
    width: 140px;
    height: 24px;
  }

  .navbar-links {
    display: none;
  }

  .btn-nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  /* Hero */
  .hero {
    padding-top: 88px;
  }

  .hero__inner {
    flex-direction: column;
    align-items: center;
    padding: 20px 20px 80px;
    gap: 56px;
  }

  .hero__content {
    max-width: 100%;
    padding-top: 0;
    text-align: center;
  }

  .hero__headline {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
  }

  .hero__headline-line {
    margin-bottom: 0;
  }

  .hero__highlight-box {
    font-size: 38px;
    padding: 4px 12px;
    letter-spacing: 3.04px;
  }

  .hero__headline-line--auto {
    flex-direction: column;
    gap: 8px;
  }

  .hero__highlight-box--sm {
    font-size: 0;
  }

  .hero__highlight-box-main {
    font-size: 38px;
  }

  .hero__highlight-box-sub {
    font-size: 30px;
  }

  .hero__auto-text {
    font-size: 56px;
    letter-spacing: 4.48px;
  }

  .hero__build-text {
    font-size: 32px;
    letter-spacing: 2.56px;
  }

  .hero__subtitle {
    font-size: 18px;
    letter-spacing: 1.44px;
    line-height: 1.7;
    margin-bottom: 16px;
  }

  .hero__subtitle br {
    display: none;
  }

  .hero__content .btn-cta {
    margin: 0 auto;
    font-size: 20px;
    padding: 16px 40px;
    width: 292px;
  }

  .hero__form-wrapper {
    width: 100%;
  }

  /* Diagnosis Form */
  .diagnosis-form {
    width: 100%;
    max-width: 100%;
    padding: 32px 20px 40px;
  }

  .diagnosis-form__badge-text {
    font-size: 16px;
  }

  .diagnosis-form__title {
    font-size: 24px;
  }

  .diagnosis-form__description {
    font-size: 16px;
  }

  .diagnosis-form__submit {
    height: auto;
    padding: 12px 40px;
    font-size: 20px;
    width: 292px;
    margin: 0 auto;
  }

  /* Trust Logos */
  .trust-logos__item {
    width: 142px;
    height: 64px;
  }

  .trust-logos__slide {
    gap: 12px;
    padding: 12px 0;
  }

  /* Pain */
  .pain__card {
    padding: 20px;
    border-radius: 10px;
  }

  .pain__icon-top-img {
    width: 32px;
    height: 32px;
  }

  .pain__title {
    font-size: 20px;
  }

  .pain__icon {
    width: 32px;
    height: 32px;
  }

  .pain__item-text {
    font-size: 18px;
  }

  /* Intro */
  .intro__logo-wrap--sp {
    width: 280px;
    height: 48px;
  }

  .intro__title {
    font-size: 20px;
  }

  .intro__title-connector {
    font-size: 20px;
  }

  .intro__title-main {
    font-size: 20px;
  }

  .intro__body {
    font-size: 16px;
    font-weight: 700;
    line-height: 2;
  }

  .intro__body br {
    display: none;
  }

  /* Why SEO */
  .why-seo__title {
    font-size: 20px;
  }

  .why-seo__badge-text {
    font-size: 20px;
  }

  .why-seo__body {
    font-size: 15px;
    line-height: 2;
  }

  .why-seo__body br {
    display: none;
  }

  /* Strengths */
  .strengths__grid {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .strengths__card {
    width: 100%;
    max-width: 100%;
    height: auto;
    padding: 32px 20px 40px;
  }

  .strengths__card-number {
    font-size: 100px;
  }

  .strengths__card-title {
    font-size: 20px;
  }

  .strengths__card-description {
    font-size: 16px;
  }

  .strengths__title {
    font-size: 28px;
    letter-spacing: 2.24px;
  }

  .strengths__title-connector {
    font-size: 20px;
  }

  .strengths__title-main {
    font-size: 28px;
  }

  .strengths__logo-wrap--sp {
    width: 280px;
    height: 48px;
    margin: 0;
  }

  /* CTA Banner */
  .cta-banner {
    margin: 0 20px;
    padding: 64px 20px;
  }

  .cta-banner__badge {
    width: 100%;
    border-radius: 4px;
    padding: 8px 20px;
  }

  .cta-banner__badge-text {
    font-size: 18px;
  }

  .cta-banner__text {
    font-size: 22px;
    letter-spacing: 1.76px;
  }

  .cta-banner__text br {
    display: none;
  }

  .cta-banner .btn-cta {
    font-size: 20px;
    padding: 16px 40px;
    width: 292px;
  }

  .cta-banner__inner {
    padding: 0;
    gap: 40px;
  }

  /* Benefits */
  .benefits__title {
    font-size: 28px;
    letter-spacing: 2.24px;
  }

  .benefits__card {
    flex-direction: column !important;
    gap: 20px;
  }

  .benefits__card-image {
    width: 100%;
  }

  .benefits__card-image-img {
    width: 100%;
    height: auto;
  }

  .benefits__card-number {
    font-size: 48px;
  }

  .benefits__card-title {
    font-size: 20px;
  }

  .benefits__card-body {
    font-size: 16px;
  }

  /* Comparison */
  .comparison__card {
    padding: 40px 20px;
    gap: 40px;
  }

  .comparison__logo-img {
    height: 42px;
    width: 280px;
  }

  .comparison__title-text {
    font-size: 22px;
  }

  .comparison__description {
    font-size: 16px;
  }

  .comparison__table {
    grid-template-columns: 320px 170px 320px;
  }

  .comparison__table-th {
    height: 100px;
    font-size: 22px;
  }

  .comparison__table-td {
    height: 120px;
    font-size: 18px;
    padding: 12px;
  }

  .comparison__th-logo {
    height: 42px;
    width: 280px;
  }

  .comparison__scroll-hint {
    display: flex;
  }

  /* Capabilities */
  .capabilities__title {
    font-size: 28px;
    letter-spacing: 2.24px;
  }

  .capabilities__grid-row {
    flex-direction: column;
  }

  .capabilities__card {
    padding: 32px 20px 40px;
  }

  .capabilities__card-title {
    font-size: 20px;
  }

  .capabilities__card-body {
    font-size: 16px;
  }

  /* Flow */
  .flow__title {
    font-size: 28px;
    letter-spacing: 2.24px;
  }

  .flow__step {
    padding: 40px 20px;
  }

  .flow__step-title {
    font-size: 20px;
  }

  .flow__step-description {
    font-size: 16px;
  }

  /* FAQ */
  .faq__inner {
    flex-direction: column;
    gap: 56px;
  }

  .faq__header {
    width: 100%;
    position: static;
    text-align: center;
  }

  .faq__title {
    font-size: 28px;
    letter-spacing: 2.24px;
  }

  .faq__list {
    max-width: 100%;
  }

  .faq__question-text {
    font-size: 18px;
  }

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

  .faq__badge {
    width: 32px;
    height: 32px;
    font-size: 15px;
  }

  /* Blog Section */
  .blog__title {
    font-size: 28px;
    letter-spacing: 2.24px;
  }

  .blog__grid {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .blog__card {
    width: 100%;
    max-width: 320px;
  }

  .blog__more-btn {
    width: 292px;
    font-size: 18px;
  }

  /* Contact */
  .contact {
    padding: 100px 20px;
  }

  .contact__card {
    padding: 40px 20px;
    gap: 40px;
  }

  .contact__title {
    font-size: 22px;
  }

  .contact__subtitle {
    font-size: 16px;
  }

  .contact__subtitle br {
    display: none;
  }

  .contact__form-row {
    flex-direction: row;
    gap: 20px;
  }

  .contact__form-submit .btn-cta {
    width: 292px;
    max-width: 292px;
    font-size: 20px;
  }

  .contact-popup__card {
    padding: 48px 24px 36px;
  }

  .contact-popup__title {
    font-size: 20px;
  }

  /* Footer */
  .footer {
    padding: 60px 20px 32px;
  }

  .footer__top {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
  }

  .footer__logo-img {
    width: 200px;
  }

  .footer__nav-list {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 20px;
  }

  .footer__nav-link {
    font-size: 14px;
  }

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

  /* Section paddings */
  .pain {
    padding: 56px 0 48px;
  }

  .intro {
    padding: 48px 0 140px;
  }

  .strengths {
    padding: 80px 0 120px;
  }

  .benefits {
    padding: 80px 0;
  }

  .comparison {
    padding: 64px 0;
  }

  .capabilities {
    padding: 80px 0 160px;
  }

  .flow {
    padding: 100px 0 80px;
  }

  .blog {
    padding: 80px 0 100px;
  }

  .why-seo {
    padding: 40px 20px;
  }

  .faq {
    padding: 80px 0;
  }

  /* Section header labels */
  .benefits__label,
  .capabilities__label,
  .flow__label,
  .faq__label,
  .blog__label {
    font-size: 14px;
    letter-spacing: 1.12px;
  }

  /* Diagnosis Popup */
  .diagnosis-popup-card {
    padding: 32px 20px 40px;
    max-width: 100%;
    margin: 0 16px;
    gap: 28px;
  }

  .diagnosis-popup-title {
    font-size: 22px;
  }

  .diagnosis-popup-score {
    font-size: 48px;
  }

  .diagnosis-popup-items {
    padding: 12px 20px;
    width: 100%;
  }

  /* Trial Popup */
  .trial-popup {
    width: 280px;
    right: 16px;
    bottom: 16px;
  }

  .trial-popup-badge {
    font-size: 16px;
    padding: 3px 8px;
  }

  .trial-popup-header-title {
    font-size: 18px;
  }

  .trial-popup-cost-top {
    font-size: 18px;
  }

  .trial-popup-cost-num {
    font-size: 30px;
  }

  .trial-popup-cost-unit1 {
    font-size: 20px;
  }

  .trial-popup-cost-unit2 {
    font-size: 22px;
  }

  .trial-popup-free {
    font-size: 52px;
  }

  .trial-popup-btn {
    width: 100%;
    padding: 10px 20px;
    font-size: 16px;
  }

  /* Privacy Page */
  .privacy-page {
    padding: 100px 16px 80px;
    gap: 40px;
  }

  .privacy-page__title {
    font-size: 28px;
  }

  .privacy-page__label {
    font-size: 16px;
  }

  .privacy-page__card {
    padding: 28px 20px;
  }

  /* Blog List Page */
  .blog-list-page {
    padding-top: 120px;
  }

  .blog-list-page__grid {
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 400px;
  }

  /* Blog Detail Page */
  .blog-detail-page {
    padding-top: 120px;
  }

  .blog-detail-card {
    padding: 32px 20px;
  }

  .blog-prevnext {
    flex-direction: column;
  }

  .blog-prevnext__link,
  .blog-prevnext__spacer {
    max-width: 100%;
  }

  .blog-prevnext__link--next {
    margin-left: 0;
  }

  .blog-related__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .blog-detail-card__title {
    font-size: 20px;
  }

  .blog-detail-content h2 {
    font-size: 22px;
    padding-left: 16px;
  }

  .blog-detail-content h3 {
    font-size: 18px;
  }

  .blog-detail-content h4 {
    font-size: 16px;
  }

  .blog-detail-content p {
    font-size: 14px;
    padding-bottom: 24px;
  }

  /* Sticky CTA mobile position */

  /* Mobile menu adjustments */
  .mobile-menu-content {
    padding: 60px 20px;
  }
}


/* ============================================================
   34. PRINT STYLES
   ============================================================ */
@media print {
  .navbar,
  .hamburger,
  .mobile-menu,
  .trial-popup,
  .diagnosis-popup {
    display: none !important;
  }

  body {
    max-width: none;
    color: #000;
  }

  .hero,
  .pain,
  .intro,
  .why-seo,
  .strengths,
  .cta-banner,
  .benefits,
  .comparison,
  .capabilities,
  .flow,
  .faq,
  .blog,
  .contact,
  .footer {
    padding: 24px 0;
  }

  a {
    color: #000;
  }
}

/* ============================================================
   TL;DR / Updated Date / Glossary Styles
   ============================================================ */

.blog-detail-card__tldr {
  background: linear-gradient(135deg, #f0f4ff 0%, #e8f0fe 100%);
  border-left: 4px solid #4285f4;
  border-radius: 0 8px 8px 0;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}
.blog-detail-card__tldr-label {
  display: block;
  font-weight: 700;
  font-size: 0.85rem;
  color: #4285f4;
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}
.blog-detail-card__tldr p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: #1a1a2e;
}

.blog-detail-card__updated {
  display: inline-block;
  font-size: 0.8rem;
  color: #666;
  margin-left: 0.75rem;
  padding: 2px 8px;
  background: #f0f0f0;
  border-radius: 4px;
}

/* Glossary List */
.glossary-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.glossary-item {
  display: block;
  padding: 1.25rem 1.5rem;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.glossary-item:hover {
  border-color: #4285f4;
  box-shadow: 0 2px 12px rgba(66, 133, 244, 0.12);
}
.glossary-item__term {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 0.25rem;
  color: #1a1a2e;
}
.glossary-item__reading {
  font-size: 0.8rem;
  color: #888;
}
.glossary-item__definition {
  font-size: 0.9rem;
  color: #555;
  margin: 0.5rem 0 0;
  line-height: 1.6;
}

/* Glossary Detail - Related */
.glossary-related {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e8e8e8;
}
.glossary-related__heading {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 1rem;
}
.glossary-related__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.glossary-tag {
  display: inline-block;
  padding: 6px 14px;
  background: #f0f4ff;
  color: #4285f4;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s;
}
.glossary-tag:hover {
  background: #d8e4fd;
}
.glossary-related__posts {
  list-style: none;
  padding: 0;
  margin: 0;
}
.glossary-related__posts li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #f0f0f0;
}
.glossary-related__posts a {
  color: #4285f4;
  text-decoration: none;
  font-size: 0.95rem;
}
.glossary-related__posts a:hover {
  text-decoration: underline;
}
