/* ==========================================================
   TUTOLOOP 自社サイト
   デザイン参考：monokoto-lab.jp（カラーブロッキング／ポップ）
   ========================================================== */

:root {
  --ink: #222222;
  --text: #333333;
  --off: #f9f9f9;
  --green: #00ab78;       /* ヒーロー・お知らせ */
  --green-deep: #008f65;
  --yellow: #ffe600;      /* メッセージ・セットプラン */
  --yellow-vivid: #fff500;
  --blue: #47c7fb;        /* ABOUT・NETWORK */
  --blue-card: #22b9f9;
  --blue-card-edge: #00a8ee;
  --deep-blue: #2867b2;   /* フクロウのジャケット色。強調テキスト */
  --navy-text: #0040bb;
  --orange: #ff7a00;      /* WEBSITE */
  --orange-deep: #ef7300;
  --line-green: #06c755;  /* LINEセクション（LINEブランド色） */
  --line-green-deep: #05a847;
  --red: #ed3434;
  --radius-card: 24px;
  --font-jp: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", sans-serif;
  --font-en: "Baloo 2", "Zen Maru Gothic", sans-serif;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  font-family: var(--font-jp);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.9;
  color: var(--text);
  background: #fff;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
a { color: inherit; text-decoration: none; }

.sp-only { display: none; }
.pc-only { display: inline; }

/* ---------- 共通パーツ ---------- */

.btn-cta {
  display: inline-block;
  background: var(--off);
  color: var(--ink);
  border: 3px solid var(--ink);
  border-radius: 46px;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.4;
  padding: 10px 26px;
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease;
  box-shadow: 0 4px 0 var(--ink);
}
.btn-cta:hover { transform: translateY(2px); box-shadow: 0 2px 0 var(--ink); }

.btn-cta--large {
  font-size: 20px;
  padding: 18px 48px;
  background: var(--yellow-vivid);
}

/* セクション見出し（英字ウォーターマーク重ね） */
.section-head {
  position: relative;
  text-align: center;
  padding: 90px 20px 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.section-head__en {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 110px;
  letter-spacing: .04em;
  color: rgba(255, 255, 255, .28);
  white-space: nowrap;
  pointer-events: none;
  line-height: 1;
}
.section-head__title {
  position: relative;
  font-size: 56px;
  font-weight: 900;
  line-height: 1.35;
  color: var(--off);
  z-index: 1;
}
.section-head__desc {
  position: relative;
  margin-top: 28px;
  font-size: 17px;
  font-weight: 700;
  color: var(--off);
  z-index: 1;
}
.section-head--small { padding-top: 70px; }
.section-head--small .section-head__en { font-size: 80px; top: 40px; }
.section-head--small .section-head__title { font-size: 40px; }

/* チェックリスト */
.check-list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 10px;
  font-weight: 700;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  margin-top: 3px;
  border-radius: 50%;
  background: var(--yellow-vivid);
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  line-height: 24px;
  text-align: center;
}

/* スクロールフェードイン（JS有効時のみ、控えめ） */
body.js-anim .fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
body.js-anim .fade-up.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- ヘッダー ---------- */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  pointer-events: none;
}
.header > * { pointer-events: auto; }

.header__logo {
  display: flex;
  flex-direction: column;
  background: var(--off);
  border-radius: 16px;
  padding: 8px 18px 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,.12);
  line-height: 1.1;
}
.logo-text {
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 26px;
  letter-spacing: .02em;
}
.lt-b { color: var(--deep-blue); }
.lt-g { color: var(--green); }
.lt-o { color: var(--orange); }
.logo-tagline {
  font-size: 10px;
  font-weight: 700;
  color: var(--text);
  margin-top: 2px;
}

.header__actions { display: flex; align-items: center; gap: 12px; }
.header__cta { font-size: 13px; padding: 8px 20px; }

.menu-btn {
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .06em;
  background: #d9d9d9;
  color: var(--ink);
  border: none;
  border-radius: 46px;
  padding: 12px 24px;
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(0,0,0,.12);
  transition: background .2s ease;
}
.menu-btn:hover { background: #c8c8c8; }

/* オーバーレイメニュー */
.menu-overlay[hidden] { display: none; }
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 90, 60, .45);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 80px 16px 40px;
  overflow-y: auto;
}
.menu-card {
  position: relative;
  background: var(--off);
  border-radius: var(--radius-card);
  padding: 48px 40px;
  width: min(480px, 100%);
  box-shadow: 0 12px 40px rgba(0,0,0,.25);
}
.menu-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  line-height: 1;
}
.menu-list li { border-bottom: 1px dashed #ccc; }
.menu-list li:last-child { border-bottom: none; }
.menu-list a {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 14px 4px;
  font-size: 18px;
  font-weight: 700;
  transition: color .2s ease;
}
.menu-list a:hover { color: var(--green); }
.menu-list a span {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 12px;
  color: #999;
  letter-spacing: .08em;
}

/* ---------- ヒーロー ---------- */

.hero {
  background-color: var(--green);
  background-image:
    radial-gradient(circle at 15% 20%, rgba(255,255,255,.10) 0 36px, transparent 37px),
    radial-gradient(circle at 85% 15%, rgba(255,255,255,.08) 0 52px, transparent 53px),
    radial-gradient(circle at 75% 80%, rgba(255,255,255,.09) 0 44px, transparent 45px),
    radial-gradient(circle at 8% 75%, rgba(255,255,255,.08) 0 30px, transparent 31px),
    repeating-linear-gradient(0deg, transparent 0 46px, rgba(255,255,255,.05) 46px 48px),
    repeating-linear-gradient(90deg, transparent 0 46px, rgba(255,255,255,.05) 46px 48px);
  padding: 150px 20px 90px;
}
.hero__inner { max-width: 1100px; margin: 0 auto; }

.hero__badge-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 30px;
}
.hero__lead-badge {
  background: var(--off);
  color: var(--green-deep);
  font-weight: 900;
  font-size: 18px;
  border-radius: 46px;
  padding: 10px 28px;
  box-shadow: 0 4px 0 rgba(0,0,0,.15);
}
.hero__accept-badge {
  flex-shrink: 0;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: var(--yellow-vivid);
  color: var(--ink);
  font-weight: 900;
  font-size: 17px;
  line-height: 1.4;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transform: rotate(8deg);
  box-shadow: 0 4px 0 rgba(0,0,0,.15);
}

.hero__main {
  display: flex;
  align-items: center;
  gap: 48px;
}
.hero__owl {
  flex-shrink: 0;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: var(--off);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 6px solid rgba(255,255,255,.6);
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
}
.hero__owl img { width: 82%; }

.hero__title {
  font-size: 54px;
  font-weight: 900;
  line-height: 1.4;
  color: var(--off);
  text-shadow: 0 3px 0 rgba(0,0,0,.12);
}
.hero__sub {
  margin-top: 22px;
  font-size: 18px;
  font-weight: 700;
  color: var(--off);
}

/* ---------- メッセージ ---------- */

.message { background: var(--yellow); padding: 90px 20px; }
.message__inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  font-weight: 700;
  font-size: 16px;
  line-height: 2.3;
  color: var(--text);
}
.message__inner strong {
  font-size: 22px;
  font-weight: 900;
  color: var(--red);
}

/* ---------- ABOUT ---------- */

.about { background: var(--blue); padding-bottom: 100px; }
.about__cards {
  max-width: 1200px;
  margin: 30px auto 0;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.about-card {
  position: relative;
  background: var(--off);
  border-radius: var(--radius-card);
  padding: 56px 28px 32px;
  text-align: center;
}
.about-card__num {
  position: absolute;
  top: -26px;
  left: 50%;
  transform: translateX(-50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--yellow-vivid);
  color: var(--ink);
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 0 rgba(0,0,0,.15);
}
.about-card__title {
  font-size: 21px;
  font-weight: 900;
  line-height: 1.5;
  color: var(--navy-text);
  margin-bottom: 14px;
  min-height: 3em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-card__text { font-size: 14.5px; text-align: left; }
.about-card--main {
  border: 4px solid var(--orange);
}
.about-card--main .about-card__badge {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  border-radius: 46px;
  padding: 2px 16px;
  margin-bottom: 8px;
}

/* ---------- WEBSITE ---------- */

.website { background: var(--orange); padding-bottom: 100px; }

.website__steps {
  max-width: 1000px;
  margin: 20px auto 0;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.step-card {
  background: var(--off);
  border-radius: var(--radius-card);
  padding: 32px;
}
.step-card__label {
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 18px;
  color: var(--orange-deep);
}
.step-card__label strong { font-size: 34px; }
.step-card__title {
  font-size: 26px;
  font-weight: 900;
  color: var(--ink);
  margin: 4px 0 18px;
  padding-bottom: 12px;
  border-bottom: 3px dashed var(--orange);
}

/* 制作事例 */
.works {
  max-width: 1200px;
  margin: 70px auto 0;
  padding: 0 20px;
}
.works__title {
  text-align: center;
  font-size: 34px;
  font-weight: 900;
  color: var(--off);
  margin-bottom: 36px;
}
.works__en {
  display: block;
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: .2em;
  color: rgba(255,255,255,.7);
}
.works__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.work-item figcaption {
  text-align: center;
  color: var(--off);
  font-weight: 700;
  margin-top: 14px;
}
.browser-frame {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,.2);
  transform: rotate(-1deg);
  transition: transform .3s ease;
}
.work-item:nth-child(2) .browser-frame { transform: rotate(1deg); }
.work-item:hover .browser-frame { transform: rotate(0) scale(1.02); }
.browser-frame__bar {
  display: flex;
  gap: 6px;
  padding: 10px 14px;
  background: #eee;
}
.browser-frame__bar i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.browser-frame__bar i:nth-child(1) { background: #ff5f57; }
.browser-frame__bar i:nth-child(2) { background: #febc2e; }
.browser-frame__bar i:nth-child(3) { background: #28c840; }

/* 料金ブロック共通 */
.price-block {
  max-width: 1000px;
  margin: 70px auto 0;
  padding: 40px 32px 32px;
  background: var(--yellow);
  border-radius: var(--radius-card);
}
.price-block__title {
  text-align: center;
  font-size: 30px;
  font-weight: 900;
  color: var(--ink);
  margin-bottom: 28px;
}
.price-note {
  text-align: center;
  font-size: 13px;
  margin-top: 18px;
}

/* WEB料金：比較 */
.price-compare {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 20px;
}
.price-compare__col {
  flex: 1;
  max-width: 360px;
  border-radius: 18px;
  padding: 24px 28px;
  text-align: center;
}
.price-compare__col--normal { background: #fff; }
.price-compare__col--normal dd { color: #888; text-decoration: line-through; }
.price-compare__col--special {
  background: var(--red);
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(237,52,52,.35);
}
.price-compare__label {
  font-weight: 900;
  font-size: 18px;
  margin-bottom: 14px;
}
.price-compare__col dl div { margin-bottom: 12px; }
.price-compare__col dt { font-size: 14px; font-weight: 700; }
.price-compare__col dd { font-size: 20px; font-weight: 900; }
.price-compare__col--special dd strong { font-size: 32px; }
.price-compare__arrow {
  align-self: center;
  font-size: 36px;
  color: var(--ink);
}

/* ---------- LINE ---------- */

.line { background: var(--line-green); padding-bottom: 100px; }

.line__content {
  max-width: 1100px;
  margin: 20px auto 0;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 36px;
  align-items: start;
}
.line__cards { display: grid; gap: 24px; }
.line-card {
  background: var(--off);
  border-radius: var(--radius-card);
  padding: 28px 32px;
}
.line-card__title {
  font-size: 24px;
  font-weight: 900;
  color: var(--line-green-deep);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 3px dashed var(--line-green);
}

.line__example {
  background: rgba(255,255,255,.18);
  border-radius: var(--radius-card);
  padding: 24px;
}
.line__example-label {
  text-align: center;
  color: var(--off);
  font-weight: 900;
  font-size: 18px;
  margin-bottom: 16px;
}
.line__example-imgs {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
.line__phone {
  width: min(240px, 80%);
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
}
.line__richmenu {
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
}

/* LINE料金カード */
.price-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.price-card {
  background: #fff;
  border-radius: 18px;
  padding: 28px;
  text-align: center;
}
.price-card__name {
  display: inline-block;
  background: var(--line-green);
  color: #fff;
  font-weight: 900;
  border-radius: 46px;
  padding: 2px 22px;
  margin-bottom: 12px;
}
.price-card__price { font-size: 22px; font-weight: 900; color: var(--ink); }
.price-card__price strong { font-size: 40px; color: var(--red); }
.price-card__desc { font-size: 13.5px; margin-top: 10px; }

/* ---------- セットプラン ---------- */

.plan { background: var(--yellow); padding: 90px 20px 100px; }
.plan__inner {
  max-width: 860px;
  margin: 0 auto;
  background: var(--off);
  border: 4px solid var(--ink);
  border-radius: var(--radius-card);
  padding: 56px 40px;
  text-align: center;
  box-shadow: 10px 10px 0 rgba(0,0,0,.15);
}
.plan__badge {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-weight: 900;
  font-size: 15px;
  border-radius: 46px;
  padding: 4px 26px;
  margin-bottom: 16px;
}
.plan__title { font-size: 44px; font-weight: 900; color: var(--ink); }
.plan__formula {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 22px 0;
}
.plan__formula span {
  background: var(--blue);
  color: #fff;
  font-weight: 900;
  font-size: 20px;
  border-radius: 46px;
  padding: 8px 30px;
}
.plan__formula span:last-child { background: var(--line-green); }
.plan__formula em {
  font-style: normal;
  font-size: 30px;
  font-weight: 900;
  color: var(--ink);
}
.plan__prices {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin: 10px 0 6px;
}
.plan__price-name { font-weight: 900; font-size: 16px; }
.plan__price-num { font-size: 24px; font-weight: 900; }
.plan__price-num strong { font-size: 48px; color: var(--red); }
.plan__note { font-size: 13px; margin-bottom: 26px; }

/* ---------- NETWORK ---------- */

.network { background: var(--blue); padding-bottom: 100px; }
.network__content {
  max-width: 900px;
  margin: 20px auto 0;
  padding: 0 20px;
}
.network__number {
  background: var(--off);
  border-radius: var(--radius-card);
  padding: 36px 24px;
  text-align: center;
  margin-bottom: 32px;
}
.network__number p { font-size: 26px; font-weight: 900; color: var(--ink); line-height: 1.5; }
.network__number strong {
  font-family: var(--font-en);
  font-size: 96px;
  color: var(--navy-text);
  padding: 0 6px;
}
.network__number span { display: block; font-size: 20px; }
.network__points li {
  background: rgba(255,255,255,.9);
  border-radius: 16px;
  padding: 16px 24px 16px 56px;
  margin-bottom: 14px;
  font-weight: 700;
  position: relative;
}
.network__points li::before {
  content: "●";
  position: absolute;
  left: 24px;
  color: var(--orange);
}

/* ---------- NEWS ---------- */

.news { background: var(--green); padding-bottom: 90px; }
.news__list {
  max-width: 800px;
  margin: 10px auto 0;
  padding: 0 20px;
}
.news__item {
  display: flex;
  align-items: baseline;
  gap: 24px;
  background: var(--off);
  border-radius: 16px;
  padding: 18px 28px;
  margin-bottom: 14px;
}
.news__item time {
  font-family: var(--font-en);
  font-weight: 700;
  color: var(--green-deep);
  flex-shrink: 0;
}
.news__item p { font-weight: 700; }

/* ---------- CTA ---------- */

.contact-cta {
  background: var(--green);
  background-image:
    radial-gradient(circle at 12% 30%, rgba(255,255,255,.10) 0 40px, transparent 41px),
    radial-gradient(circle at 88% 70%, rgba(255,255,255,.10) 0 50px, transparent 51px);
  padding: 40px 20px 110px;
  text-align: center;
}
.contact-cta__owl {
  width: 130px;
  height: 130px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--off);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 5px solid rgba(255,255,255,.6);
}
.contact-cta__owl img { width: 84%; }
.contact-cta__title {
  font-size: 40px;
  font-weight: 900;
  color: var(--off);
  margin-bottom: 16px;
}
.contact-cta__text { color: var(--off); font-weight: 700; margin-bottom: 32px; }

/* ---------- フッター ---------- */

.footer { background: var(--ink); color: var(--off); padding: 60px 20px 90px; }
.footer__inner { max-width: 1000px; margin: 0 auto; text-align: center; }
.footer__nav {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-bottom: 36px;
  text-align: left;
}
.footer__nav li { margin-bottom: 10px; }
.footer__nav a { font-size: 14px; font-weight: 700; transition: color .2s ease; }
.footer__nav a:hover { color: var(--yellow-vivid); }
.footer__logo {
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 28px;
  margin-bottom: 12px;
}
.footer__copy { font-size: 12px; color: #999; }

/* ---------- モバイル固定CTA ---------- */

.sp-fixed-cta {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  background: rgba(34,34,34,.92);
}
.sp-fixed-cta .btn-cta {
  display: block;
  background: var(--yellow-vivid);
  font-size: 15px;
}

/* ==========================================================
   レスポンシブ
   ========================================================== */

@media (max-width: 900px) {
  .about__cards { grid-template-columns: 1fr; max-width: 520px; gap: 44px; }
  .website__steps { grid-template-columns: 1fr; max-width: 560px; }
  .works__grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .line__content { grid-template-columns: 1fr; max-width: 560px; }
  .price-cards { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .price-compare { flex-direction: column; align-items: center; }
  .price-compare__arrow { transform: rotate(90deg); }
  .price-compare__col { width: 100%; }
  .price-compare__col--special { transform: none; }
}

@media (max-width: 640px) {
  .sp-only { display: inline; }
  .pc-only { display: none; }

  html { scroll-padding-top: 76px; }

  .header { padding: 10px 12px; }
  .logo-text { font-size: 20px; }
  .logo-tagline { font-size: 9px; }
  .header__cta { display: none; }
  .menu-btn { padding: 10px 20px; }

  .hero { padding: 110px 16px 70px; }
  .hero__badge-wrap { flex-direction: column-reverse; align-items: flex-end; }
  .hero__lead-badge { font-size: 14px; padding: 8px 20px; align-self: stretch; text-align: center; }
  .hero__accept-badge { width: 92px; height: 92px; font-size: 14px; margin-top: -10px; }
  .hero__main { flex-direction: column; gap: 28px; }
  .hero__owl { width: 210px; height: 210px; }
  .hero__title { font-size: 34px; text-align: center; }
  .hero__sub { font-size: 15px; text-align: center; }

  .message { padding: 64px 20px; }
  .message__inner { font-size: 14px; line-height: 2.2; text-align: left; }
  .message__inner strong { font-size: 18px; }

  .section-head { padding: 64px 16px 28px; }
  .section-head__en { font-size: 52px; top: 34px; }
  .section-head__title { font-size: 30px; }
  .section-head__desc { font-size: 14.5px; }
  .section-head--small .section-head__en { font-size: 44px; }
  .section-head--small .section-head__title { font-size: 26px; }

  .about { padding-bottom: 70px; }
  .website { padding-bottom: 70px; }
  .line { padding-bottom: 70px; }
  .network { padding-bottom: 70px; }

  .works__title { font-size: 24px; }

  .price-block { margin: 50px 16px 0; padding: 30px 18px 24px; }
  .price-block__title { font-size: 22px; }
  .price-compare__col { padding: 20px; }
  .price-compare__col--special dd strong { font-size: 26px; }

  .plan { padding: 60px 16px 70px; }
  .plan__inner { padding: 40px 20px; }
  .plan__title { font-size: 30px; }
  .plan__formula { flex-direction: column; gap: 6px; }
  .plan__formula span { font-size: 17px; }
  .plan__prices { flex-direction: column; gap: 12px; }
  .plan__price-num strong { font-size: 38px; }
  .btn-cta--large { font-size: 16px; padding: 14px 32px; }

  .network__number strong { font-size: 60px; }
  .network__number p { font-size: 20px; }
  .network__number span { font-size: 15px; }

  .news__item { flex-direction: column; gap: 2px; padding: 14px 20px; }

  .contact-cta { padding-bottom: 90px; }
  .contact-cta__title { font-size: 26px; }
  .contact-cta__text { font-size: 14px; }

  .footer { padding-bottom: 120px; }
  .footer__nav { gap: 32px; }

  .sp-fixed-cta { display: block; }
}
