/* =====================================================
   ChatWiFi LP – Professional Edition
   文字コード: UTF-8 / mobile-first
   ===================================================== */

/* ===== 1. Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
  font-family: 'Zen Maru Gothic','Hiragino Kaku Gothic ProN','Hiragino Sans','Yu Gothic',Meiryo,sans-serif;
  font-weight: 500;
  color: #333; background: #fff; line-height: 1.75;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
:target { scroll-margin-top: 80px; }

/* ===== 2. CSS Variables ===== */
:root {
  --red:        #e8625d;
  --red-d:      #c94b46;
  --red-l:      #f5938f;
  --red-pale:   #fdf0ef;
  --navy:       #1a2e52;
  --navy-l:     #253f6f;
  --blue:       #3b82c4;
  --blue-l:     #deeaf8;
  --yellow:     #f5c842;
  --yellow-d:   #e8a214;
  --green:      #2eac6b;
  --dark:       #1a1a1a;
  --mid:        #555;
  --muted:      #888;
  --border:     #e4e4e4;
  --white:      #fff;
  --gray:       #f5f5f7;
  --gray2:      #eeeef2;
}

/* ===== 3. Layout utilities ===== */
.container { max-width: 960px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.text-center { text-align: center; }

/* ===== 4. Section labels & titles ===== */
.sec-eyebrow {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  font-size: 0.78rem; font-weight: 700; color: #888; letter-spacing: 0.15em;
  margin-bottom: 14px;
  max-width: 320px; margin-left: auto; margin-right: auto;
}
.sec-eyebrow::before, .sec-eyebrow::after {
  content: ''; flex: 1; width: 32px; height: 2px;
  background: linear-gradient(90deg, transparent, #ccc);
}
.sec-eyebrow::after { background: linear-gradient(90deg, #ccc, transparent); }

.sec-title {
  font-size: 2.5rem; font-weight: 900; line-height: 1.2;
  letter-spacing: 0.01em;
  text-align: center; color: var(--dark); margin-bottom: 0;
  position: relative; display: block;
}
.sec-title .ac {
  color: var(--red);
  background: linear-gradient(transparent 80%, rgba(232,98,93,0.25) 80%);
  padding: 0 .05em;
}
.sec-title-wrap { text-align: center; margin-bottom: 40px; }

.sec-lead { text-align: center; color: #777; font-size: 1rem; margin-top: 14px; line-height: 1.7; letter-spacing: 0.02em; }

/* ===== 5. CTA Button – shine + shadow + pulse ===== */
.btn {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 1.1rem; font-weight: 800; letter-spacing: 0.06em;
  padding: 18px 48px; border-radius: 50px; border: none; cursor: pointer;
  color: var(--white);
  background: linear-gradient(135deg, #ff8070 0%, var(--red) 45%, #c94b46 100%);
  box-shadow: 0 6px 24px rgba(232,98,93,0.45), 0 2px 8px rgba(0,0,0,0.12),
              inset 0 1px 0 rgba(255,255,255,0.25);
  transition: transform 0.22s cubic-bezier(.175,.885,.32,1.275), box-shadow 0.22s ease;
}
.btn::after {
  content: ''; position: absolute; top: -50%; left: -150%;
  width: 60%; height: 200%; transform: skewX(-20deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.28), transparent);
  animation: btnShine 3.5s ease-in-out infinite;
}
@keyframes btnShine {
  0%   { left: -150%; }
  55%  { left: 150%; }
  100% { left: 150%; }
}
.btn:hover { transform: translateY(-4px) scale(1.03); box-shadow: 0 14px 36px rgba(232,98,93,0.55); }
.btn:active { transform: translateY(-1px) scale(0.99); }

.btn-lg { font-size: 1.3rem; padding: 22px 64px; }
.btn-wrap { text-align: center; margin-top: 40px; }


/* ===== 6. Scroll-reveal animations ===== */
.reveal        { opacity: 0; transform: translateY(36px); transition: opacity .65s ease, transform .65s ease; }
.reveal-left   { opacity: 0; transform: translateX(-40px); transition: opacity .65s ease, transform .65s ease; }
.reveal-right  { opacity: 0; transform: translateX(40px);  transition: opacity .65s ease, transform .65s ease; }
.reveal.on, .reveal-left.on, .reveal-right.on { opacity: 1; transform: translate(0); }
.d1 { transition-delay: .12s !important; }
.d2 { transition-delay: .24s !important; }
.d3 { transition-delay: .36s !important; }
.d4 { transition-delay: .48s !important; }

/* ===== 7. SVG Wave / Diagonal Dividers ===== */
.sec-wave { display: block; width: 100%; overflow: hidden; line-height: 0; }
.sec-wave svg { display: block; width: 100%; }

/* ===== 8. CSS Divider (replaces stripe images – resolution-independent) ===== */
.divider {
  width: 100%; overflow: hidden; line-height: 0; font-size: 0;
  height: 14px;
  background: repeating-linear-gradient(
    -45deg,
    #e8625d 0, #e8625d 10px,
    #ffffff 10px, #ffffff 20px
  );
}
/* Variant: divider between pricing(white) and compare(blue-tint) */
.divider-blue {
  width: 100%; overflow: hidden; line-height: 0; font-size: 0;
  height: 14px;
  background: repeating-linear-gradient(
    -45deg,
    #e8625d 0, #e8625d 10px,
    #d2e4ff 10px, #d2e4ff 20px
  );
}

/* ===== 9. HEADER ===== */
#header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.96); backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06), 0 4px 20px rgba(0,0,0,0.06);
  transition: box-shadow .3s;
}
.header-in {
  max-width: 1100px; margin: 0 auto; padding: 0 20px;
  height: 66px; display: flex; align-items: center; justify-content: space-between;
}
.h-logo img { height: 34px; width: auto; display: block; }
.h-btn { font-size: 0.82rem; padding: 10px 22px; }

/* ===== 10. HERO / FV ===== */
#fv {
  padding-top: 66px;
  background: linear-gradient(160deg, #fff 0%, #fdf0ef 55%, #fbe3e1 100%);
  position: relative; overflow: hidden;
}
#fv::before {
  content: ''; position: absolute; top: -120px; right: -120px;
  width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(245,200,66,0.25), transparent 70%);
  filter: blur(20px); pointer-events: none;
}
.fv-in {
  max-width: 1100px; margin: 0 auto; padding: 56px 24px 64px;
  display: grid; grid-template-columns: 1fr 340px; gap: 40px;
  align-items: center; position: relative; z-index: 1;
}
.fv-content { padding-bottom: 0; }
.fv-lead {
  display: inline-block; background: var(--navy); color: #fff;
  font-size: 0.8rem; font-weight: 700; letter-spacing: .06em;
  padding: 7px 18px; border-radius: 30px; margin-bottom: 22px;
}
.fv-h1 {
  font-size: 2.9rem; font-weight: 900; line-height: 1.32;
  color: var(--dark); margin-bottom: 24px; letter-spacing: .01em;
}
.fv-h1 .hl {
  background: linear-gradient(transparent 62%, #ffe066 62%);
  color: var(--red-d);
}
.fv-points {
  display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 26px;
}
.fv-point {
  background: #fff; color: var(--red); border: 2px solid var(--red-l);
  font-size: 0.9rem; font-weight: 800; padding: 8px 16px; border-radius: 30px;
  box-shadow: 0 3px 10px rgba(232,98,93,0.12);
}
.fv-price-card {
  background: #fff; border-radius: 22px; padding: 24px 28px;
  box-shadow: 0 14px 40px rgba(232,98,93,0.16);
  border: 1px solid #f3d6d4; margin-bottom: 28px; max-width: 520px;
}
.fv-price-row { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.fv-price-plan {
  background: var(--red-pale); color: var(--red-d); font-weight: 800;
  font-size: 0.82rem; padding: 6px 14px; border-radius: 10px; white-space: nowrap;
}
.fv-price-main { display: flex; align-items: baseline; gap: 4px; }
.fv-price-unit-l { font-size: 1rem; font-weight: 700; color: var(--mid); }
.fv-price-num {
  font-size: 4.4rem; font-weight: 900; line-height: 1; letter-spacing: -.02em;
  background: linear-gradient(135deg, #ff6b35, #e8625d);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.fv-price-unit-r { font-size: 1.3rem; font-weight: 800; color: var(--red); }
.fv-price-unit-r small { font-size: 0.8rem; color: var(--mid); }
.fv-price-sub { font-size: 0.82rem; color: var(--mid); margin-top: 10px; }
.fv-price-sub strong { color: var(--green); }
.fv-cta-note {
  font-size: 0.85rem; color: var(--red); font-weight: 700;
  margin-top: 12px; max-width: 360px;
}
.fv-cat { align-self: end; }
.fv-cat img {
  max-width: 340px; width: 100%; display: block; margin: 0 auto;
  filter: drop-shadow(4px 12px 22px rgba(0,0,0,0.18));
  animation: catFloat 4s ease-in-out infinite;
}
@keyframes catFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }

/* FV Strength Swiper */
.fv-swiper-wrap {
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(6px);
  padding: 24px 0 16px;
  margin-top: 0;
}
.fv-swiper-inner { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.fv-swiper { overflow: hidden; }
/* ページネーションをswiper外・通常フローで配置 */
.fv-pagination {
  position: static !important;
  bottom: auto !important;
  text-align: center;
  margin-top: 16px;
  display: block;
  width: 100%;
}
.fv-slide {
  background: var(--white); border-radius: 18px;
  padding: 20px 18px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  display: flex !important; align-items: center; gap: 14px;
  border-top: 3px solid var(--red);
}
.fv-slide-img { flex: 0 0 70px; }
.fv-slide-img img { width: 70px; height: 70px; object-fit: cover; border-radius: 50%; }
.fv-slide-body h4 { font-size: 1.05rem; font-weight: 800; color: var(--red); margin-bottom: 4px; letter-spacing: 0.01em; line-height: 1.4; }
.fv-slide-body p  { font-size: 0.8rem; color: #777; line-height: 1.7; letter-spacing: 0.01em; }

/* ===== 11. TROUBLE ===== */
#trouble { background: var(--white); padding-top: 24px; }
.trouble-layout {
  display: grid; grid-template-columns: 260px 1fr; gap: 56px; align-items: center;
}
.trouble-photo img {
  max-width: 240px; width: 100%; margin: 0 auto; display: block;
  filter: drop-shadow(2px 8px 16px rgba(0,0,0,0.14));
}
.trouble-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.trouble-card {
  background: var(--gray); border-left: 5px solid var(--red);
  border-radius: 14px; padding: 18px 16px 18px 54px;
  position: relative; font-weight: 600; font-size: 0.92rem; line-height: 1.7; letter-spacing: 0.01em;
}
.trouble-card::before {
  content: attr(data-e);
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%); font-size: 1.55rem;
}

/* ===== 12. FEATURES ===== */
#features {
  background-image: url('../img/sec3-bg.png');
  background-size: cover; background-position: center; position: relative;
}
#features::before { content:''; position:absolute; inset:0; background:rgba(255,255,255,.88); }
#features .container { position: relative; z-index: 1; }

.features-cats {
  display: flex; justify-content: center; gap: 32px;
  margin-bottom: 44px; align-items: flex-end;
}
.features-cats img {
  height: 130px; width: auto;
  filter: drop-shadow(2px 6px 8px rgba(0,0,0,0.1));
}

.features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.feature-card {
  background: var(--white); border-radius: 18px; padding: 28px 22px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  display: flex; gap: 18px; align-items: flex-start;
  transition: transform .22s ease, box-shadow .22s ease;
  border-bottom: 4px solid transparent;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(232,98,93,0.15);
  border-bottom-color: var(--red);
}
.feature-photo { flex: 0 0 90px; }
.feature-photo img {
  width: 90px; height: 90px; object-fit: cover; border-radius: 50%;
  border: 3px solid var(--red-l);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.feature-body h3 {
  font-size: 1.15rem; font-weight: 800; color: var(--red);
  margin-bottom: 10px; padding-bottom: 10px;
  border-bottom: 2px dashed var(--red-pale);
  letter-spacing: 0.01em; line-height: 1.45;
}
.chk-list li {
  font-size: 0.88rem; color: #777;
  padding: 4px 0 4px 26px; position: relative; line-height: 1.7; letter-spacing: 0.01em;
}
.chk-list li::before {
  content: ''; position: absolute; left: 0; top: 6px;
  width: 17px; height: 17px;
  background: url('../img/icon-check.png') no-repeat center / contain;
}
/* ===== Campaign band (ずーーーっとおトク) ===== */
.campaign-band {
  margin-top: 44px; border-radius: 20px; overflow: hidden;
  position: relative;
  background-image: url('../img/bnr1-bg.png');
  background-size: cover; background-position: center;
}
.campaign-band::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(232,80,73,0.92) 0%, rgba(180,40,36,0.90) 100%);
}
.campaign-band-in {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; max-width: 1040px; margin: 0 auto; padding: 44px 56px;
}
.campaign-left { text-align: left; flex: 1; }
.campaign-right { flex-shrink: 0; }
.campaign-eyebrow {
  display: inline-block; font-size: 0.85rem; letter-spacing: 0.1em;
  color: #fff; opacity: 0.9; margin-bottom: 12px;
}
.campaign-title {
  font-size: 2.4rem; font-weight: 900; color: #fff;
  line-height: 1.3; margin-bottom: 20px; text-align: left;
}
.campaign-title .accent { color: #ffd84d; }
.campaign-ac { color: #ffd84d; }
.campaign-features {
  display: flex; flex-wrap: wrap; gap: 10px 20px;
  list-style: none; padding: 0; margin: 0;
}
.campaign-features li {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.98rem; font-weight: 700; color: #fff;
}
.campaign-features .cf-ico {
  display: inline-flex; align-items: center; justify-content: center;
  width: 20px; height: 20px; border-radius: 50%;
  background: #ffd84d; color: #c0392b;
  font-size: 0.75rem; font-weight: 900;
}
.campaign-price-box {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center;
  background: #fff3b0; border: 4px solid #ffffff;
  border-radius: 16px; padding: 32px 44px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  min-width: 240px;
}
.cp-label {
  position: absolute; top: 10px; left: 16px;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 0.78rem; font-weight: 900; color: #555; letter-spacing: 0.06em;
}
.cp-main { display: flex; align-items: baseline; gap: 6px; }
@keyframes price-pulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.06); }
}
/* 外側ラッパー：アニメーションのみ担当 */
.campaign-num-wrap {
  display: inline-block;
  transform-origin: center;
  animation: price-pulse 1.8s ease-in-out infinite;
}
/* 内側：白フチ赤文字 */
.campaign-num {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 4.4rem; font-weight: 900;
  letter-spacing: -0.02em; line-height: 1;
  display: inline-block;
  color: #e74c3c;
  -webkit-text-stroke: 6px #ffffff;
  paint-order: stroke fill;
  text-shadow:
    3px  3px 0 #fff, -3px  3px 0 #fff,
    3px -3px 0 #fff, -3px -3px 0 #fff,
    0    3px 0 #fff,  0   -3px 0 #fff,
    3px  0   0 #fff, -3px  0   0 #fff;
  filter: drop-shadow(0 2px 1px rgba(0,0,0,0.15));
}
.cp-yen {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 1.4rem; font-weight: 900; color: #e74c3c;
  -webkit-text-stroke: 6px #ffffff;
  paint-order: stroke fill;
  text-shadow:
    3px  3px 0 #fff, -3px  3px 0 #fff,
    3px -3px 0 #fff, -3px -3px 0 #fff,
    0    3px 0 #fff,  0   -3px 0 #fff,
    3px  0   0 #fff, -3px  0   0 #fff;
}
.cp-tax {
  position: absolute; bottom: 10px; right: 16px;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 0.78rem; font-weight: 800; color: #555; letter-spacing: 0.06em;
}

/* ===== 13. STATS (count-up) ===== */
#stats {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-l) 100%);
  padding: 24px 0; position: relative; overflow: hidden;
}
#stats::before {
  content: '';
  position: absolute; inset: 0;
  background: url('../img/sec5-bg.png') no-repeat center / cover;
  opacity: 0.06;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 2px;
  position: relative; z-index: 1;
}
.stat-item { text-align: center; padding: 16px 12px; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.stat-item + .stat-item { border-left: 1px solid rgba(255,255,255,0.15); }
.stat-num {
  font-size: 4rem; font-weight: 900; color: var(--yellow); line-height: 1;
  letter-spacing: -.03em;
}
.stat-unit { font-size: 1.2rem; font-weight: 700; color: var(--yellow); }
.stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.65); margin-top: 8px; line-height: 1.5; }
.stat-title { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 2px; }

/* ===== 14. PRICING ===== */
#pricing {
  background-image: url('../img/sec1-bg.png');
  background-size: cover; background-position: center; position: relative;
}
#pricing::before { content:''; position:absolute; inset:0; background:rgba(255,255,255,0.93); }
#pricing .container { position: relative; z-index: 1; }

.pricing-common {
  background: var(--white); border-radius: 18px; padding: 22px 28px;
  margin-bottom: 32px; box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  border: 1px solid var(--border);
}
.pricing-common h4 {
  font-size: 0.95rem; font-weight: 700;
  border-left: 4px solid var(--red); padding-left: 10px; margin-bottom: 14px;
}
.pricing-common li {
  font-size: 0.88rem; padding: 4px 0 4px 26px;
  position: relative; color: var(--mid);
}
.pricing-common li::before {
  content: ''; position: absolute; left: 0; top: 7px;
  width: 17px; height: 17px;
  background: url('../img/icon-check.png') no-repeat center / contain;
}

/* Tabs */
.pricing-tabs {
  display: flex; border-radius: 14px; overflow: hidden;
  border: 2px solid var(--red); max-width: 440px; width: 100%; margin: 0 auto 32px;
  box-shadow: 0 4px 16px rgba(232,98,93,0.15);
}
.tab-btn {
  flex: 1 1 0; padding: 13px 16px; font-size: 1rem; font-weight: 700;
  text-align: center;
  background: var(--white); color: var(--red);
  transition: background .2s, color .2s;
}
.tab-btn.is-active { background: var(--red); color: var(--white); }

/* Plan tables */
.plan-wrap { overflow-x: auto; border-radius: 18px; box-shadow: 0 4px 24px rgba(0,0,0,0.09); margin-bottom: 28px; }
.plan-tbl { width: 100%; border-collapse: collapse; min-width: 400px; background: var(--white); }
.plan-tbl thead th {
  background: var(--red); color: var(--white);
  padding: 16px 14px; text-align: center; font-weight: 700; font-size: 0.95rem; line-height: 1.7;
}
.plan-tbl thead th:first-child { background: var(--red-d); text-align: left; }
.plan-tbl tbody td {
  padding: 12px 14px; border-bottom: 1px solid #f0f0f0;
  text-align: center; font-weight: 600; font-size: 0.97rem; line-height: 1.7;
}
.plan-tbl tbody td:first-child { text-align: left; background: var(--red-pale); font-weight: 600; font-size: 1rem; color: #333; }
.plan-tbl tr.popular td:first-child { font-size: 1.35rem; font-weight: 800; color: var(--red); line-height: 1.2; }
.plan-tbl .price { font-size: 1.6rem; color: var(--red); font-weight: 900; letter-spacing: -0.01em; }
.plan-tbl .price small { font-size: 0.7rem; font-weight: 400; color: #888; }

/* Popular row ribbon */
.plan-tbl tr.popular { position: relative; }
.plan-tbl tr.popular td { background: #fffde6 !important; }
.plan-tbl tr.popular td:first-child { background: #fff9c4 !important; }
.popular-ribbon-cell { position: relative; overflow: visible !important; }
.pop-ribbon {
  display: inline-flex; align-items: center; gap: 4px;
  background: linear-gradient(135deg, var(--yellow), var(--yellow-d));
  color: #333; font-size: 0.62rem; font-weight: 900;
  padding: 3px 10px; border-radius: 12px; margin-bottom: 4px;
  box-shadow: 0 2px 8px rgba(245,199,66,.4);
  white-space: nowrap;
}
.pop-ribbon .crown { font-size: 0.75rem; }

/* Options */
.option-heading {
  font-size: 1rem; font-weight: 700; color: var(--dark);
  border-left: 4px solid var(--blue); padding-left: 12px; margin-bottom: 16px;
}
.option-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.option-card {
  background: var(--white); border-radius: 16px; padding: 22px 18px;
  text-align: center; border: 2px solid var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: transform .2s, box-shadow .2s;
}
.option-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
.option-card-name {
  font-size: 0.92rem; font-weight: 700; color: var(--dark);
  margin-bottom: 10px; padding-bottom: 10px; border-bottom: 1px dashed var(--border);
  letter-spacing: 0.01em;
}
.option-card-price { font-size: 1.3rem; font-weight: 900; color: var(--blue); line-height: 1.7; }
.option-card-price small { font-size: 0.68rem; font-weight: 600; color: #888; }
.option-tag {
  display: inline-block; font-size: 0.7rem; font-weight: 700;
  padding: 2px 10px; border-radius: 10px; margin-top: 8px;
}
.option-tag.must { background: var(--red-pale); color: var(--red); }
.option-tag.free { background: #e9f7ef; color: var(--green); }
.option-desc { font-size: 0.83rem; color: #777; margin-top: 8px; line-height: 1.7; }

/* Option Accordion (security section) */
.opt-list { display: flex; flex-direction: column; gap: 12px; }
.opt-item {
  background: var(--white); border-radius: 14px; border: 2px solid var(--border);
  overflow: hidden; transition: box-shadow .2s;
}
.opt-item.is-open { box-shadow: 0 4px 20px rgba(0,0,0,.1); border-color: var(--blue); }
.opt-q {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 20px; cursor: pointer; user-select: none; transition: background .15s;
}
.opt-q:hover { background: #f8f8f8; }
.opt-q-main { flex: 1; }
.opt-q-name { display: block; font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.opt-q-price { font-size: 1.1rem; font-weight: 900; color: var(--blue); }
.opt-q-price small { font-size: 0.7rem; font-weight: 600; color: #888; }
.opt-q-meta { display: flex; flex-wrap: wrap; gap: 4px; margin-top: 6px; }
.opt-q-arr { color: var(--muted); font-size: 0.75rem; transition: transform .25s; flex-shrink: 0; align-self: center; }
.opt-item.is-open .opt-q-arr { transform: rotate(180deg); }
.opt-a {
  max-height: 0; overflow: hidden;
  transition: max-height .4s ease, padding .35s ease;
  padding: 0 20px;
}
.opt-item.is-open .opt-a { max-height: 1200px; padding: 16px 20px 24px; border-top: 1px solid #f0f0f0; }
.opt-feat-list { list-style: none; padding: 0; margin: 0 0 14px; }
.opt-feat-list li {
  padding: 5px 0 5px 22px; position: relative;
  font-size: 0.9rem; color: var(--mid); line-height: 1.6;
}
.opt-feat-list li::before { content: '✓'; position: absolute; left: 0; color: var(--blue); font-weight: 700; }
.opt-desc-text { font-size: 0.85rem; color: var(--mid); line-height: 1.8; margin-bottom: 14px; }
.opt-img-wrap { text-align: center; margin: 12px 0; }
.opt-img-wrap img { max-width: 100%; height: auto; border-radius: 8px; }
.opt-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.opt-link-btn {
  display: inline-block; padding: 10px 20px; border-radius: 8px;
  font-size: 0.85rem; font-weight: 700; text-decoration: none;
  background: var(--blue); color: var(--white); transition: background .2s;
}
.opt-link-btn:hover { background: #1a5bbf; }
.opt-link-btn--pdf { background: var(--red); }
.opt-link-btn--pdf:hover { background: #c0392b; }

/* First payment box */
.first-pay {
  background: linear-gradient(135deg, #fff5f4, #ffe8e7);
  border: 2px solid var(--red-l); border-radius: 16px;
  padding: 22px 28px; font-size: 0.9rem; line-height: 1.9; margin-bottom: 28px;
}
.first-pay strong { color: var(--red); }

/* ===== 15. COMPARE ===== */
#compare {
  background-image: url('../img/compare-bg.png');
  background-size: cover; background-position: center; position: relative;
}
#compare::before { content:''; position:absolute; inset:0; background:rgba(210,228,255,.93); }
#compare .container { position: relative; z-index: 1; }

.cmp-wrap { overflow-x: auto; border-radius: 18px; box-shadow: 0 4px 24px rgba(0,0,0,0.1); }
.cmp-tbl { width: 100%; border-collapse: collapse; min-width: 520px; background: var(--white); }
.cmp-tbl th {
  padding: 18px 14px; text-align: center; font-weight: 700;
  background: var(--blue); color: var(--white); font-size: 0.95rem; line-height: 1.7; letter-spacing: 0.02em;
}
.cmp-tbl th.ours { background: var(--red); }
.cmp-tbl td {
  padding: 16px 14px; border-bottom: 1px solid #dde8fa;
  text-align: center; background: var(--white); font-size: 0.95rem; line-height: 1.7;
}
.cmp-tbl td:first-child { text-align: left; font-weight: 700; background: #f0f6ff; }
.cmp-tbl td.ours-val { background: var(--red-pale); font-weight: 800; color: var(--red); font-size: 1rem; letter-spacing: 0.01em; }
.cmp-tbl .good { color: var(--green); font-weight: 700; }
.cmp-tbl .bad  { color: #bbb; }
.cmp-note { font-size: 0.77rem; color: var(--mid); margin-top: 10px; text-align: center; }

/* ===== 16. SECURITY ===== */
#security {
  background-image: url('../img/sec7-bg.png');
  background-size: cover; background-position: center; position: relative;
}
#security::before { content:''; position:absolute; inset:0; background:rgba(255,255,255,.93); }
#security .container { position: relative; z-index: 1; }
.sec-tbl-wrap {
  margin-bottom: 40px; border-radius: 16px;
  overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.sec-tbl-wrap img { width: 100%; display: block; }

/* ===== 17. REVIEWS (Swiper) ===== */
#reviews { background: var(--gray); overflow: hidden; }
.reviews-swiper-outer { position: relative; }
.reviews-swiper { overflow: hidden; }
/* ページネーションをswiper外・通常フローで配置 */
.reviews-pagination {
  position: static !important;
  bottom: auto !important;
  text-align: center;
  margin-top: 24px;
  display: block;
  width: 100%;
}
.review-slide { height: auto !important; }
.review-card {
  background: var(--white); border-radius: 18px; padding: 36px 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  text-align: center; height: 100%;
}
.recommend-emoji { font-size: 3rem; line-height: 1; margin-bottom: 16px; }
.recommend-heading { font-size: 1.15rem; font-weight: 700; color: var(--dark); line-height: 1.5; margin-bottom: 12px; }
.recommend-desc { font-size: 0.9rem; color: var(--mid); line-height: 1.8; }
.swiper-pagination-bullet-active { background: var(--red) !important; }
.swiper-button-next, .swiper-button-prev {
  color: var(--red) !important;
  background: var(--white);
  width: 40px !important; height: 40px !important;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0,0,0,0.12);
}
.swiper-button-next::after, .swiper-button-prev::after { font-size: 0.9rem !important; font-weight: 900 !important; }

/* ===== 18. STEPS ===== */
#steps {
  background-image: url('../img/sec5-bg.png');
  background-size: cover; background-position: center; position: relative;
  padding-top: 40px;
}
#steps::before { content:''; position:absolute; inset:0; background:rgba(255,255,255,.85); }
#steps .container { position: relative; z-index: 1; }
.steps-nav { margin-bottom: 44px; }
.steps-nav img { max-width: 820px; margin: 0 auto; }
.steps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; position: relative; }
.steps-grid::before {
  content: ''; position: absolute; top: 55px;
  left: calc(12.5% + 10px); right: calc(12.5% + 10px);
  height: 3px; background: linear-gradient(90deg, var(--red-l), var(--red), var(--red-l));
  z-index: 0;
}
.step-card { text-align: center; position: relative; z-index: 1; }
.step-num {
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--red); color: var(--white);
  font-size: 0.65rem; font-weight: 900; line-height: 1;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  box-shadow: 0 4px 14px rgba(232,98,93,0.4);
}
.step-num .n { font-size: 1.2rem; }
.step-photo { width: 110px; height: 110px; margin: 0 auto 16px; }
.step-photo img {
  width: 100%; height: 100%; object-fit: cover; border-radius: 50%;
  border: 4px solid var(--red-l); box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.step-title { font-size: 1rem; font-weight: 800; color: var(--dark); margin-bottom: 6px; letter-spacing: 0.01em; }
.step-desc  { font-size: 0.83rem; color: #777; line-height: 1.7; }

/* ===== 19. PREPARE ===== */
#prepare { background: var(--white); }
.prepare-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.prepare-card {
  background: var(--gray); border-radius: 18px; padding: 38px 22px;
  text-align: center; border-top: 4px solid var(--red);
  transition: transform .22s, box-shadow .22s;
}
.prepare-card:hover { transform: translateY(-6px); box-shadow: 0 10px 28px rgba(0,0,0,0.1); }
.prepare-card img { width: 72px; height: 72px; object-fit: contain; margin: 0 auto 20px; }
.prepare-card h3 { font-size: 1rem; font-weight: 800; margin-bottom: 10px; color: var(--dark); }
.prepare-card p  { font-size: 0.83rem; color: var(--mid); line-height: 1.7; }

/* ===== 20. FAQ ===== */
#faq { background: var(--gray2); }
.faq-list { display: grid; gap: 10px; }
.faq-item {
  background: var(--white); border-radius: 14px;
  overflow: hidden; box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: box-shadow .2s;
}
.faq-item.is-open { box-shadow: 0 4px 20px rgba(232,98,93,0.12); }
.faq-q {
  display: flex; align-items: center; gap: 14px;
  padding: 20px 22px; cursor: pointer;
  font-weight: 700; font-size: 0.96rem; user-select: none;
  transition: background .15s;
}
.faq-q:hover { background: #fff8f8; }
.faq-q-icon {
  flex: 0 0 34px; height: 34px; border-radius: 50%;
  background: var(--red); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 1rem;
}
.faq-q-text { flex: 1; }
.faq-q-arr { color: var(--muted); font-size: 0.75rem; transition: transform .25s; flex-shrink: 0; }
.faq-item.is-open .faq-q-arr { transform: rotate(180deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  font-size: 0.9rem; color: var(--mid); line-height: 1.8;
  padding: 0 22px 0 70px;
}
.faq-item.is-open .faq-a { max-height: 300px; padding: 14px 22px 20px 70px; border-top: 1px solid #f0f0f0; }
.faq-a::before { content: 'A. '; font-weight: 700; color: var(--blue); }

/* ===== 21. FINAL CTA ===== */
#cta-final {
  background-image: url('../img/bnr1-bg.png');
  background-size: cover; background-position: center;
  position: relative; padding: 96px 0 72px; text-align: center;
}
#cta-final::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(20,50,110,.82), rgba(30,70,150,.75));
}
.cta-final-in { position: relative; z-index: 1; padding: 0 24px; text-align: center; }
.cta-final-logo { height: 42px; width: auto; margin: 0; filter: brightness(0) invert(1); display: block; }
.cta-final-h { font-size: 1.7rem; font-weight: 900; color: var(--white); margin-bottom: 8px; }
.cta-final-sub { font-size: 1rem; color: rgba(255,255,255,.8); margin-bottom: 38px; }
.cta-notes {
  font-size: 0.73rem; color: rgba(255,255,255,.55); line-height: 2.1;
  max-width: 560px; margin: 36px auto 0; text-align: left;
}
.cta-copy {
  font-size: 0.75rem; color: rgba(255,255,255,.35);
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 22px; margin-top: 26px;
}

/* ===== 22. Floating CTA (PC right-bottom) ===== */
.float-pc {
  position: fixed; bottom: 32px; right: 32px; z-index: 998;
  width: 76px; height: 76px; border-radius: 50%;
  background: linear-gradient(135deg, #ff8070, var(--red));
  color: var(--white); display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 2px;
  text-align: center; font-size: 0.52rem; font-weight: 800; line-height: 1.3;
  box-shadow: 0 8px 28px rgba(232,98,93,0.5);
  opacity: 0; transform: scale(0.5);
  transition: opacity .4s ease, transform .4s cubic-bezier(.175,.885,.32,1.275);
  text-decoration: none;
}
.float-pc span { display: block; }
.float-pc .float-icon { font-size: 1.3rem; display: block; margin-bottom: 2px; }
.float-pc.show { opacity: 1; transform: scale(1); animation: pcPulse 2.5s ease-in-out infinite; }
@keyframes pcPulse {
  0%,100% { box-shadow: 0 8px 28px rgba(232,98,93,.5), 0 0 0 0 rgba(232,98,93,.4); }
  50%      { box-shadow: 0 8px 28px rgba(232,98,93,.5), 0 0 0 14px rgba(232,98,93,0); }
}

/* ===== 23. Mobile Sticky Bar ===== */
.sticky-bar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 999; background: var(--red); padding: 12px 16px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}
.sticky-bar a {
  display: block; background: var(--white); color: var(--red);
  text-align: center; padding: 14px; border-radius: 50px;
  font-weight: 900; font-size: 1rem; letter-spacing: 0.05em;
}

/* ===== 24. Responsive – 768px ===== */
@media (max-width: 768px) {
  .section { padding: 48px 0; }
  .sec-title { font-size: 1.7rem; }

  /* Header */
  .header-in { height: 56px; }
  .h-logo img { height: 26px; }
  .h-btn { font-size: 0.73rem; padding: 8px 14px; }

  /* FV */
  #fv { background: linear-gradient(160deg, #fff 0%, #fdf0ef 55%, #fbe3e1 100%); min-height: auto; }
  .fv-in { grid-template-columns: 1fr; padding: 32px 20px 40px; gap: 18px; }
  .fv-content { order: 2; }
  .fv-cat { order: 1; }
  .fv-cat img { max-width: 180px; }
  .fv-h1 { font-size: 1.9rem; }
  .fv-price-num { font-size: 3.2rem; }
  .fv-price-card { padding: 20px; }
  .fv-cta-note { margin-left: auto; margin-right: auto; }
  .btn-lg { font-size: 1.05rem; padding: 18px 40px; }
  .btn { font-size: 1rem; padding: 15px 32px; }
  .btn-lg { font-size: 1.1rem; padding: 18px 36px; }

  /* Trouble */
  .trouble-layout { grid-template-columns: 1fr; }
  .trouble-photo img { max-width: 180px; }
  .trouble-cards { grid-template-columns: 1fr; }

  /* Features */
  #features { background-image: url('../img/sec3-bg-sp.png'); }
  .features-cats img { height: 90px; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-card { flex-direction: column; }
  .feature-photo img { width: 70px; height: 70px; }

  /* Campaign band */
  .campaign-band { background-image: url('../img/bnr1-bg-sp.png'); border-radius: 14px; }
  .campaign-band-in { flex-direction: column; gap: 24px; padding: 30px 22px; text-align: center; }
  .campaign-left { text-align: center; }
  .campaign-title { text-align: center; font-size: 1.7rem; }
  .campaign-features { justify-content: center; gap: 10px 18px; }
  .campaign-features li { font-size: 0.9rem; }
  .campaign-price-box { min-width: 200px; padding: 32px 28px; }
  .cp-label { position: absolute; top: 10px; left: 12px; }
  .cp-tax { position: absolute; bottom: 10px; right: 12px; }
  .campaign-num { font-size: 3.2rem; }
  .cp-yen { font-size: 1.1rem; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(3,1fr); }
  .stat-num { font-size: 2.6rem; }

  /* Pricing */
  #pricing { background-image: url('../img/sec1-bg-sp.png'); }
  .option-grid { grid-template-columns: 1fr; }
  .tab-btn { padding: 12px 22px; font-size: 0.9rem; }

  /* Steps */
  .steps-nav { display: none; }
  .steps-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .steps-grid::before { display: none; }

  /* Prepare */
  .prepare-grid { grid-template-columns: 1fr; }

  /* Final CTA */
  #cta-final { background-image: url('../img/bnr1-bg-sp.png'); padding-bottom: 80px; }
  .cta-final-h { font-size: 1.3rem; }

  /* Floating */
  .float-pc { display: none; }
  .sticky-bar { display: block; }
}

/* ===== 25. 480px ===== */
@media (max-width: 480px) {
  .sec-title { font-size: 1.3rem; }
  .fv-h1 { font-size: 1.6rem; }
  .fv-price-num { font-size: 2.7rem; }
  .fv-points { gap: 7px; }
  .fv-point { font-size: 0.8rem; padding: 6px 12px; }
  .h-btn { display: none; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .step-photo { width: 90px; height: 90px; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item + .stat-item { border-left: none; border-top: 1px solid rgba(255,255,255,0.15); }
  .pricing-tabs { flex-direction: column; width: 100%; }
  .tab-btn { padding: 12px; text-align: center; }
  .features-cats { gap: 12px; }
  .features-cats img { height: 70px; }
  .campaign-title { font-size: 1.3rem; }
  .campaign-num { font-size: 2rem; }
  .c-badge { font-size: 0.76rem; padding: 6px 12px; }
}

/* ===== 26. FOOTER ===== */
#site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  padding: 52px 24px 36px;
  text-align: center;
}
.footer-logo {
  display: block;
  margin: 0 auto 24px;
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.footer-contact-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.footer-hours {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 32px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
  margin-bottom: 32px;
}
.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.25);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.footer-links a:hover {
  color: var(--white);
  border-color: var(--white);
}
.footer-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
}
@media (max-width: 480px) {
  .footer-links { gap: 10px 16px; }
  .footer-links a { font-size: 0.8rem; }
}

/* ===== FV Hero Image (overrides) ===== */
#fv { padding-top: 66px; background: #fff; position: relative; overflow: hidden; }
.fv-in { max-width: 1100px; margin: 0 auto; padding: 0; display: block; }
.fv-hero-img { }
.fv-hero-img img { width: 100%; height: auto; display: block; }
.fv-hero-cta {
  display: block;
  width: 88%;
  max-width: 420px;
  margin: 20px auto 0;
  text-align: center;
  box-shadow: 0 10px 30px rgba(232,98,93,.5);
}

/* ===== Section Cats ===== */
.sec-cat img {
  display: block;
  filter: drop-shadow(3px 8px 16px rgba(0,0,0,0.30));
}

/* #stats：3カラム目（全国エリア対応）の説明文の下 */
.sec-cat--stats { text-align: center; margin-top: 10px; }
.sec-cat--stats img { max-width: 130px; margin: 0 auto; display: block; }

/* #pricing：ボタン中央・猫をabsoluteで左に添える */
.pricing-cta-wrap {
  position: relative;
  text-align: center;
  margin-top: 48px;
}
.pricing-cta-wrap .btn-wrap { margin-top: 0; }
.sec-cat--pricing {
  position: absolute;
  left: 14%;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
}
.sec-cat--pricing img { max-width: 150px; transform: scaleX(-1); display: block; }

/* #compare：自社列を指し示す・中大サイズ */
.sec-cat--compare {
  text-align: center;
  margin-top: 32px;
  margin-bottom: 24px;
}
.sec-cat--compare img { max-width: 160px; margin: 0 auto; display: block; }

/* #steps：見出し上部・中央 */
.sec-cat--steps { text-align: center; margin: 0 auto 4px; }
.sec-cat--steps img { max-width: 140px; margin: 0 auto; display: block; }

/* #cta-final：見出し横に小さく添える */
.cta-head-row {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: nowrap;
  margin-bottom: 20px;
}
.sec-cat--cta { margin: 0; }
.sec-cat--cta img {
  max-width: 70px;
  margin: 0;
  display: block;
  filter: drop-shadow(3px 6px 12px rgba(0,0,0,0.22));
}

/* ===== SPEC ===== */
#spec { background: var(--white); }

.spec-devices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 40px;
}
.spec-device-card {
  background: var(--gray);
  border-radius: 12px;
  padding: 28px 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.spec-device-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--navy);
  letter-spacing: 0.02em;
}
.spec-tbl {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  line-height: 1.7;
}
.spec-tbl th,
.spec-tbl td {
  border: 1px solid var(--border);
  padding: 9px 14px;
  vertical-align: top;
}
.spec-tbl th {
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
  white-space: nowrap;
  width: 36%;
}
.spec-tbl tr:nth-child(even) td {
  background: rgba(0,0,0,0.03);
}

.spec-sim-wrap {
  margin-top: 28px;
  background: var(--gray);
  border-radius: 12px;
  padding: 28px 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.spec-tbl--sim th {
  width: 26%;
}
.spec-note {
  margin-top: 20px;
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: center;
}
.device-img-placeholder {
  width: 100%;
  height: 160px;
  background: #f5f5f5;
  border: 2px dashed #ccc;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: #aaa;
  margin-bottom: 16px;
}
/* 画像ボックス：3枚すべて同一サイズ・flex中央寄せ */
.device-img-box {
  width: 100%;
  height: 200px;
  background: #f9f9f9;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  overflow: hidden;
}
/* img 共通：枠の中で max-height のみで制御 */
.device-img {
  max-height: 180px;
  max-width: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.12));
}
/* 丸型(macaroon SE)：imgだけ縮小、ボックスは変えない */
.device-img--round {
  max-height: 140px;
}
/* SIM：imgだけ縮小、ボックスは変えない */
.device-img--sim {
  max-height: 175px;
  max-width: 140px;
}

/* ===== PC only: option layout ===== */
@media (min-width: 769px) {
  /* 横並びレイアウト：左=説明文(62%)、右=画像(38%) */
  .opt-body { display: flex; gap: 36px; align-items: center; }
  .opt-body-text { flex: 1; min-width: 0; }
  .opt-body .opt-img-wrap { flex: 0 0 38%; max-width: 38%; }
  .opt-body .opt-img-wrap img { width: 100%; height: auto; max-width: 100%; display: block; border-radius: 8px; }
}

@media (max-width: 768px) {
  .sec-cat--stats img { max-width: 110px; margin: 0 auto; }
  .sec-cat--compare { margin-top: 20px; margin-bottom: 16px; }
  .sec-cat--compare img { max-width: 120px; }
  .sec-cat--pricing { position: static; top: auto; transform: none; margin: 0 auto 12px; }
  .sec-cat--pricing img { max-width: 120px; margin: 0 auto; transform: scaleX(-1); }
  .sec-cat--steps img { max-width: 100px; }
  .sec-cat--cta img     { max-width: 56px; }
  .spec-devices { grid-template-columns: 1fr; gap: 20px; }
  .spec-tbl--sim th { width: 36%; }
}

