/* ================================================
   みんなのオンクリ - DMM Online Clinic Style LP
   Matching clinic.dmm.com design language exactly
   ================================================ */

/* ---- DMM Color Variables ---- */
:root {
  --primary: #03AFB9;           /* turquoise/teal */
  --primary-dark: #0097A0;
  --primary-light: #ECFAFF;     /* body bg */
  --primary-pale: #DCF2FA;      /* section bg alt */
  --secondary-pale: #E0F4F5;    /* badge/icon bg */
  --secondary-dark: #0097A0;
  --accent: #4771D5;            /* blue CTA */
  --accent-bottom: #3056B5;     /* blue CTA border-bottom */
  --orange: #FF833D;            /* orange CTA */
  --orange-bottom: #EF602C;     /* orange CTA border-bottom */
  --black-0: #fff;
  --black-100: #F2F4F7;
  --black-200: #E5E7EB;
  --black-300: #D0D5DD;
  --black-600: #6B7280;
  --black-700: #374151;
  --text: #374151;
  --radius-lg: 8px;
  --radius-md: 8px;
  --shadow: 0px 5px 15px 0px rgba(44,69,125,.12);
  --shadow-cta: 0px 11px 12px 0px rgba(44,69,125,.24);
}

/* ---- Reset & Base ---- */
*,*::before,*::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Hiragino Kaku Gothic ProN', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text);
  background: var(--primary-light);
  overflow-x: hidden;
  min-width: 1024px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width:100%; height:auto; display:block; }
a { text-decoration:none; color:inherit; }
ul,ol { list-style: none; }
.sp-only { display:none; }

/* ---- Utility ---- */
.asterisk {
  color: #8E909E;
  font-size: 14px;
  margin-left: -2px;
}

/* ================================================
   HEADER
   ================================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--black-200);
  transition: box-shadow .2s;
}
.header.scrolled {
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1020px;
  margin: 0 auto;
  height: 56px;
  padding: 0 16px;
}
.logo { display: flex; align-items: center; }
.logo-img {
  height: 32px;
  width: auto;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 0;
  height: 100%;
}
.header-nav a {
  display: flex;
  align-items: center;
  padding: 0 15px;
  height: 100%;
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  position: relative;
  transition: color .15s;
}
.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 6px;
  width: calc(100% - 12px);
  height: 3px;
  background: var(--primary);
  opacity: 0;
  transition: opacity .15s;
}
.header-nav a:hover {
  color: var(--primary-dark);
}
.header-nav a:hover::after {
  opacity: 1;
}
.header-actions {
  display: flex;
  gap: 8px;
}
.header-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 0 16px;
  height: 36px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 4px;
  transition: opacity .15s;
}
.header-btn:hover { opacity: .8; }
.header-btn-line {
  background: var(--accent);
  color: #fff;
}

/* ================================================
   HERO
   ================================================ */
.hero {
  background: var(--primary);
  padding-top: 56px; /* header offset */
}
.hero-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1020px;
  margin: 0 auto;
  padding: 48px 0 0;
}
.hero-content {
  flex: 1;
  min-width: 0;
}
.hero-logo-wrap {
  margin: 0;
}
.hero-logo {
  height: 26px;
  width: auto;
}
.hero-sub {
  font-size: 11px;
  color: rgba(255,255,255,.7);
  margin-top: 4px;
  letter-spacing: .04em;
}
.hero-heading {
  padding-top: 20px;
  font-weight: 700;
  font-size: 40px;
  line-height: 1.4;
  color: #fff;
  letter-spacing: .08em;
}

/* Hero CTA cards */
.hero-cta-cards {
  position: relative;
  display: flex;
  gap: 12px;
  width: 552px;
  margin-top: 20px;
  padding-top: 8px;
}
.hero-cta-wrap {
  position: relative;
  width: 50%;
}

/* Badge pill above CTA */
.hero-cta-badge {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: -14px;
  z-index: 10;
}
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  height: 34px;
  padding: 0 12px;
  background: #fff;
  border: 2px solid #fff;
  border-radius: 999px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: .08em;
  box-shadow: 0px 5px 15px 0px rgba(44,69,125,.2);
  white-space: nowrap;
}
.badge-pill-blue {
  background: var(--secondary-pale);
}
.badge-pill-blue span {
  color: var(--secondary-dark);
}
.badge-pill svg,
.badge-pill .badge-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--secondary-dark);
}
.badge-arrow {
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 9px solid #fff;
  margin-top: -2px;
}

/* CTA outer white padding wrapper */
.hero-cta-outer {
  padding: 5px;
  background: #fff;
  border-radius: var(--radius-lg);
}
.hero-cta-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 93px;
  border-radius: var(--radius-lg);
  border: 2px solid;
  border-bottom-width: 6px;
  color: #fff;
  transition: opacity .15s;
  box-shadow: var(--shadow-cta);
}
.hero-cta-card:hover {
  opacity: .8;
}
.hero-cta-blue {
  background: var(--accent);
  border-color: var(--accent);
  border-bottom-color: var(--accent-bottom);
}
.hero-cta-orange {
  background: var(--orange);
  border-color: var(--orange);
  border-bottom-color: var(--orange-bottom);
}
.hero-cta-main {
  display: flex;
  align-items: center;
  gap: 4px;
}
.hero-cta-main svg {
  flex-shrink: 0;
}
.cta-text {
  font-weight: 700;
  font-size: 24px;
}
.cta-arrow-svg {
  position: absolute;
  right: 10px;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

/* Hero notes */
.hero-notes {
  margin-top: 8px;
  font-size: 10px;
  color: #fff;
}
.hero-notes li {
  padding-left: 13px;
  text-indent: -13px;
}
.hero-notes li::before {
  content: '※';
  margin-right: 3px;
}

/* Hero right visual / price box */
.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 448px;
  flex-shrink: 0;
  align-self: flex-start;
}
.hero-price-box {
  width: 100%;
  background: #fff;
  border-radius: 6px;
  border: 6px solid #fff;
  padding: 24px 20px 16px;
  text-align: center;
}
.hero-price-label {
  font-weight: 700;
  font-size: 22px;
  color: var(--primary-dark);
  margin-bottom: 16px;
}
.hero-price-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.hero-price-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.hp-cat {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 2px 16px;
  border-radius: 4px;
}
.hp-cat-ed {
  background: var(--orange);
}
.hp-val {
  font-size: 14px;
  color: var(--text);
}
.hp-val strong {
  font-size: 36px;
  font-weight: 900;
  color: var(--primary-dark);
  letter-spacing: -.02em;
  line-height: 1;
}
.hp-unit {
  font-size: 14px;
  font-weight: 500;
}
.hero-price-divider {
  width: 1px;
  height: 60px;
  background: var(--black-200);
}
.hp-tax {
  display: block;
  font-size: 10px;
  color: var(--black-600);
  margin-top: 8px;
}

/* ================================================
   FEATURES
   ================================================ */
.features {
  padding: 48px 0;
  background: var(--primary-pale);
}
.features-inner {
  max-width: 862px;
  margin: 0 auto;
}
.features-title {
  font-weight: 700;
  font-size: 32px;
  text-align: center;
  letter-spacing: .08em;
}
.features-en {
  display: block;
  padding-top: 12px;
  font-size: 16px;
  color: var(--primary-dark);
  font-weight: 700;
}

/* Feature grid - 3+2 layout */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 26px;
  row-gap: 70px;
  margin-top: 82px;
}
.feature-item {
  position: relative;
  width: 270px;
  height: 158px;
  background: #fff;
  border-radius: var(--radius-lg);
}
.feature-icon-circle {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -45px;
  left: 0; right: 0;
  margin: 0 auto;
  width: 90px;
  height: 90px;
  background: var(--secondary-pale);
  border-radius: 50%;
}
.feature-icon-circle img {
  width: 56px;
  height: 56px;
}
.feature-text {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding-top: 30px;
  text-align: center;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: .08em;
  line-height: 2.25rem;
}

/* Feature notes */
.feature-notes {
  font-size: 10px;
  color: var(--black-600);
  padding-top: 8px;
}
.feature-notes li {
  display: flex;
  gap: 3px;
}
.feature-notes li::before {
  content: '※';
  flex-shrink: 0;
}

/* Outline button */
.btn-outline-primary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 24px auto 0;
  padding: 0 16px;
  width: 371px;
  height: 40px;
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 14px;
  background: #fff;
  border: 2px solid var(--primary);
  border-radius: var(--radius-lg);
  transition: all .15s;
  cursor: pointer;
}
.btn-outline-primary::after {
  content: '';
  display: block;
  width: 7px;
  height: 10px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 7 10'%3E%3Cpath d='M1 1l4 4-4 4' stroke='%230097A0' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
}
.btn-outline-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: #fff;
}
.btn-outline-primary:hover::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 7 10'%3E%3Cpath d='M1 1l4 4-4 4' stroke='%23fff' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.btn-outline-sm {
  width: 240px;
  justify-content: center;
  gap: 8px;
}
.btn-outline-sm::after {
  position: static;
}

/* ================================================
   FAQ CARD (inside features)
   ================================================ */
.faq-card-wrap {
  margin-top: 40px;
  width: 740px;
  margin-left: auto;
  margin-right: auto;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
}
.faq-card-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  padding: 24px 20px 16px;
}
.faq-card-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 330px;
}
.faq-card-title-row {
  display: flex;
  align-items: center;
  gap: 0;
}
.faq-card-speech {
  margin-left: -15px;
  flex-shrink: 0;
}
.faq-card-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-dark);
  letter-spacing: 1.2px;
  line-height: 1.5;
  margin-bottom: 10px;
}
.faq-card-subtitle {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: .28px;
  margin-top: -8px;
}
.faq-card-topics {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: .48px;
  margin-top: 16px;
}
.faq-card-topics span {
  background: var(--black-100);
  padding: 8px 12px;
  border-radius: 4px;
}
.faq-card-right {
  position: relative;
  flex-shrink: 0;
}
.faq-card-light {
  width: 160px;
  height: auto;
}
.faq-card-wrap .btn-outline-sm {
  margin: 0 auto 20px;
}

/* ================================================
   FLOW
   ================================================ */
.flow-section {
  background: #DCF2FA;
  padding: 48px 0;
}
.flow-inner {
  max-width: 1020px;
  margin: 0 auto;
}
.flow-title {
  font-weight: 700;
  font-size: 32px;
  text-align: center;
  letter-spacing: .08em;
}
.flow-en {
  display: block;
  padding-top: 12px;
  font-size: 16px;
  color: var(--primary-dark);
  font-weight: 700;
}
.flow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding-top: 32px;
}
.flow-step {
  position: relative;
}

/* Dashed line between steps */
.flow-step::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 0;
  width: 100%;
  height: 0;
  border-top: 2px dashed var(--black-300);
  z-index: 0;
}
.flow-step-last::before {
  display: none;
}

/* Step header */
.flow-step-header {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  font-weight: 700;
  font-size: 14px;
  color: var(--primary-dark);
  letter-spacing: .04em;
  z-index: 1;
  position: relative;
  white-space: nowrap;
  gap: 4px;
}
.flow-step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: var(--primary);
  border-radius: 50%;
  color: #fff;
  font-weight: 700;
  font-size: 12px;
}
.flow-step-num::after {
  content: attr(data-num);
}
.flow-step-label {
  background: #DCF2FA;
  line-height: 24px;
}
.flow-step-time {
  font-size: 12px;
  color: var(--black-700);
  font-weight: 400;
}

/* Flow card */
.flow-card {
  margin-top: 12px;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.flow-card-img {
  position: relative;
  width: 100%;
  aspect-ratio: 240 / 140;
  overflow: hidden;
}
.flow-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.flow-card-body {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
  font-size: 14px;
  color: var(--black-600);
  letter-spacing: .02em;
  line-height: 1.6;
}
.flow-card-note {
  margin-top: 8px;
  font-size: 10px;
  color: var(--black-600);
}
.flow-card-note p {
  padding-left: 13px;
  text-indent: -13px;
}

/* Flow CTA */
.flow-cta {
  padding-top: 32px;
  text-align: center;
}

/* Primary blue button */
.btn-primary-blue {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 56px;
  padding: 0 40px;
  background: var(--accent);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  border-radius: var(--radius-lg);
  border: none;
  cursor: pointer;
  transition: opacity .15s;
  box-shadow: var(--shadow-cta);
}
.btn-primary-blue:hover {
  opacity: .8;
}

/* ================================================
   PLANS
   ================================================ */
.plans-section {
  padding: 48px 0;
  background: var(--primary-light);
}
.plans-inner {
  max-width: 862px;
  margin: 0 auto;
}
.plans-title {
  font-weight: 700;
  font-size: 32px;
  text-align: center;
  letter-spacing: .08em;
}
.plans-en {
  display: block;
  padding-top: 12px;
  font-size: 16px;
  color: var(--primary-dark);
  font-weight: 700;
}

/* Tabs */
.plan-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-top: 32px;
  border-bottom: 2px solid var(--black-200);
}
.plan-tab {
  padding: 12px 32px;
  font-size: 16px;
  font-weight: 700;
  color: var(--black-600);
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  transition: all .15s;
}
.plan-tab:hover {
  color: var(--primary-dark);
}
.plan-tab.active {
  color: var(--primary-dark);
  border-bottom-color: var(--primary);
}

/* Panels */
.plan-panel {
  display: none;
  padding-top: 32px;
}
.plan-panel.active {
  display: block;
}
.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.plan-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 2px solid var(--black-200);
  transition: transform .2s, box-shadow .2s;
}
.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(44,69,125,.15);
}
.plan-popular {
  border-color: var(--primary);
}
.plan-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: #F2596B;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 16px;
  border-radius: 0 0 8px 8px;
  z-index: 2;
}
.plan-head {
  padding: 16px 16px 12px;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  color: var(--text);
  background: var(--black-100);
  border-bottom: 1px solid var(--black-200);
}
.plan-head-active {
  background: var(--primary);
  color: #fff;
  border-bottom-color: var(--primary);
}
.plan-body {
  padding: 20px 16px 24px;
  text-align: center;
}
.plan-drug {
  font-size: 13px;
  color: var(--black-600);
  margin-bottom: 8px;
}
.plan-price {
  font-size: 14px;
  color: var(--text);
  margin-bottom: 12px;
}
.plan-price strong {
  font-size: 36px;
  font-weight: 900;
  color: var(--primary-dark);
  letter-spacing: -.02em;
  line-height: 1;
}
.plan-price span {
  font-size: 14px;
}
.plan-desc {
  font-size: 13px;
  color: var(--black-600);
  line-height: 1.5;
}
.plans-note {
  margin-top: 24px;
  font-size: 12px;
  color: var(--black-600);
  text-align: center;
}
.plans-cta {
  padding-top: 32px;
  text-align: center;
}

/* ================================================
   RESULTS
   ================================================ */
.results-section {
  padding: 48px 0;
  background: var(--primary-pale);
}
.results-inner {
  max-width: 862px;
  margin: 0 auto;
}
.results-title {
  font-weight: 700;
  font-size: 32px;
  text-align: center;
  letter-spacing: .08em;
}
.results-en {
  display: block;
  padding-top: 12px;
  font-size: 16px;
  color: var(--primary-dark);
  font-weight: 700;
}
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.result-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.result-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.result-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
}
.result-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.rl {
  position: absolute;
  top: 0; left: 0;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  padding: 2px 8px;
  z-index: 2;
}
.rl-b {
  background: var(--black-600);
}
.rl-a {
  background: var(--primary);
}
.results-note {
  margin-top: 24px;
  font-size: 12px;
  color: var(--black-600);
  text-align: center;
}

/* ================================================
   DELIVERY
   ================================================ */
.delivery-section {
  padding: 40px 0;
  background: var(--primary-pale);
}
.delivery-inner {
  max-width: 860px;
  margin: 0 auto;
}
.delivery-title {
  font-weight: 700;
  font-size: 32px;
  text-align: center;
  letter-spacing: .08em;
}
.delivery-en {
  display: block;
  padding-top: 12px;
  font-size: 16px;
  color: var(--primary-dark);
  font-weight: 700;
}
.delivery-card {
  margin-top: 32px;
  background: #fff;
  border-radius: var(--radius-lg);
}
.delivery-main {
  padding: 24px 12px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.delivery-main::before {
  content: '';
  display: block;
  width: 60px;
  height: 30px;
  flex-shrink: 0;
  background: url('../images/ico_feature_delivery.svg') no-repeat center / contain;
}
.delivery-text {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  display: flex;
  align-items: baseline;
}
.delivery-price {
  font-size: 22px;
  font-weight: 900;
  color: var(--text);
}
.delivery-tax {
  font-size: 10px;
  font-weight: 400;
}
.delivery-note {
  margin-top: 12px;
  font-size: 12px;
  color: var(--black-600);
  text-align: center;
}

/* ================================================
   FAQ ACCORDION
   ================================================ */
.faq-section {
  padding: 48px 0;
  background: #fff;
}
.faq-inner {
  max-width: 768px;
  margin: 0 auto;
}
.faq-title {
  font-weight: 700;
  font-size: 32px;
  text-align: center;
  letter-spacing: .08em;
}
.faq-en {
  display: block;
  padding-top: 12px;
  font-size: 16px;
  color: var(--primary-dark);
  font-weight: 700;
}
.faq-list {
  margin-top: 40px;
}
.faq-item {
  border-bottom: 1px solid var(--black-200);
}
.faq-item summary {
  display: flex;
  align-items: center;
  padding: 20px 40px 20px 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  position: relative;
  list-style: none;
  line-height: 1.6;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::before {
  content: 'Q.';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  margin-right: 12px;
  background: var(--primary);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border-radius: 50%;
}
.faq-item summary::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230097A0' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
  transition: transform .2s;
}
.faq-item[open] summary::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230097A0' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M5 12h14'/%3E%3C/svg%3E");
}
.faq-ans {
  padding: 0 0 20px 44px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--black-600);
}

/* ================================================
   FINAL CTA
   ================================================ */
.final-cta {
  padding: 64px 0;
  background: var(--primary);
  text-align: center;
}
.final-cta-inner {
  max-width: 768px;
  margin: 0 auto;
}
.final-cta-heading {
  font-size: 32px;
  font-weight: 900;
  color: #fff;
  letter-spacing: .08em;
  line-height: 1.4;
}
.final-cta-sub {
  margin-top: 12px;
  font-size: 16px;
  color: rgba(255,255,255,.85);
}
.cta-badges {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}
.cta-badges span {
  display: inline-flex;
  align-items: center;
  padding: 6px 20px;
  background: rgba(255,255,255,.2);
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}
.btn-line-lg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
  height: 64px;
  padding: 0 48px;
  background: #06C755;
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  border-radius: var(--radius-lg);
  border: 3px solid #fff;
  transition: opacity .15s;
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
}
.btn-line-lg:hover {
  opacity: .85;
}
.cta-small {
  display: block;
  margin-top: 12px;
  font-size: 12px;
  color: rgba(255,255,255,.7);
}

/* ================================================
   FOOTER
   ================================================ */
.footer {
  background: #fff;
  border-top: 1px solid var(--black-200);
  padding: 40px 0;
}
.footer-inner {
  max-width: 1020px;
  margin: 0 auto;
  text-align: center;
}
.footer-logo-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.footer-logo-img {
  height: 36px;
  width: auto;
  margin: 0 auto;
}
.footer-produced {
  font-size: 11px;
  color: var(--black-600);
}
.footer-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 20px;
}
.footer-nav a {
  font-size: 13px;
  font-weight: 500;
  color: var(--black-600);
  transition: color .15s;
}
.footer-nav a:hover {
  color: var(--primary-dark);
}
.footer-copy {
  margin-top: 20px;
  font-size: 11px;
  color: var(--black-600);
}

/* ================================================
   ANIMATIONS (scroll reveal)
   ================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .5s ease, transform .5s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
