/*
Theme Name: Kyonosuke SNS Consulting LP v4
Theme URI: https://example.com/
Author: LP CRAFT
Description: Instagramグラデーションを活かした白ベースのSNSコンサルティングLPテーマ。問い合わせフォーム・スクロール演出・カウントアップ付き。
Version: 4.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GPL-2.0-or-later
Text Domain: kyonosuke-sns-consulting-lp
*/

:root {
  --base: #ffffff;
  --ink: #171923;
  --muted: #6f6a78;
  --line: #eee8f2;
  --soft: #fff7fb;
  --soft-orange: #fff6ed;
  --navy: #1e2348;
  --pink: #d62976;
  --purple: #962fbf;
  --blue: #4f5bd5;
  --orange: #fa7e1e;
  --yellow: #feda75;
  --grad: linear-gradient(135deg, #feda75 0%, #fa7e1e 26%, #d62976 52%, #962fbf 76%, #4f5bd5 100%);
  --grad-soft: linear-gradient(135deg, rgba(254,218,117,.25), rgba(250,126,30,.13), rgba(214,41,118,.14), rgba(150,47,191,.13), rgba(79,91,213,.14));
  --shadow: 0 24px 70px rgba(43, 21, 55, .12);
  --radius-lg: 34px;
  --radius-md: 22px;
  --width: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.kyo-lp {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 4%, rgba(254,218,117,.25), transparent 24rem),
    radial-gradient(circle at 90% 10%, rgba(214,41,118,.12), transparent 26rem),
    linear-gradient(180deg, #fff, #fff);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
  line-height: 1.9;
  letter-spacing: .04em;
  overflow-x: hidden;
}

body.admin-bar .site-header {
  top: 32px;
}

a {
  color: inherit;
  text-decoration: none;
}

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

strong {
  background: linear-gradient(transparent 60%, rgba(254,218,117,.45) 60%);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 54px);
  background: rgba(255,255,255,.78);
  border-bottom: 1px solid rgba(238,232,242,.85);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 13px;
  background: var(--grad);
  box-shadow: 0 14px 35px rgba(214,41,118,.22);
  position: relative;
}

.brand-mark::before {
  content: "";
  position: absolute;
  inset: 9px;
  border: 3px solid rgba(255,255,255,.9);
  border-radius: 10px;
}

.brand-mark::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  right: 11px;
  top: 11px;
  background: #fff;
  border-radius: 50%;
}

.brand-text span {
  display: block;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.1;
}

.brand-text small {
  display: block;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.header-nav a {
  color: rgba(23,25,35,.74);
  transition: color .25s ease, transform .25s ease;
}

.header-nav a:hover {
  color: var(--pink);
  transform: translateY(-1px);
}

.nav-cta {
  padding: 10px 16px;
  border-radius: 999px;
  color: #fff !important;
  background: var(--grad);
  box-shadow: 0 12px 30px rgba(214,41,118,.2);
}

.section {
  position: relative;
  padding: clamp(72px, 11vw, 138px) clamp(20px, 5vw, 72px);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 56vw;
  height: 56vw;
  right: -18vw;
  top: -18vw;
  border-radius: 50%;
  background: var(--grad-soft);
  filter: blur(4px);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  width: 20vw;
  height: 20vw;
  left: -8vw;
  bottom: 7vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(150,47,191,.12), transparent 68%);
  pointer-events: none;
}

.hero-bg-word {
  position: absolute;
  top: 11%;
  left: -1vw;
  z-index: 0;
  font-size: clamp(70px, 14vw, 210px);
  line-height: .8;
  font-weight: 900;
  letter-spacing: .03em;
  color: rgba(23,25,35,.028);
  white-space: nowrap;
  pointer-events: none;
}

.hero-inner {
  width: min(1280px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.15fr);
  gap: clamp(34px, 5.5vw, 92px);
  align-items: center;
  position: relative;
  z-index: 1;
}

.eyebrow,
.section-kicker,
.card-label {
  margin: 0 0 16px;
  color: var(--pink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0 0 28px;
  font-size: clamp(42px, 6vw, 82px);
  line-height: 1.04;
  letter-spacing: .02em;
  font-weight: 900;
}

.hero h1 span {
  display: inline-block;
  color: transparent;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
}

.lead {
  margin: 0;
  color: #3d3947;
  font-size: clamp(15px, 1.8vw, 18px);
  line-height: 2.05;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .08em;
  transition: transform .25s ease, box-shadow .25s ease, opacity .25s ease;
  border: 0;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: var(--grad);
  box-shadow: 0 18px 42px rgba(214,41,118,.22);
}

.btn-primary:hover {
  box-shadow: 0 24px 54px rgba(214,41,118,.28);
}

.btn-ghost {
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 10px 26px rgba(23,25,35,.06);
}

.support-text {
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.hero-visual {
  position: relative;
  isolation: isolate;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 4% -3% 1%;
  border-radius: 58px;
  background: var(--grad);
  opacity: .24;
  filter: blur(42px);
  transform: rotate(-3deg);
}

.hero-visual::after {
  content: "SNS BRANDING";
  position: absolute;
  right: -22px;
  top: 42px;
  z-index: -1;
  color: rgba(23,25,35,.045);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 700;
  letter-spacing: .08em;
  writing-mode: vertical-rl;
  white-space: nowrap;
}

.hero-visual img {
  position: relative;
  width: min(760px, 100%);
  margin: 0 auto;
  filter: drop-shadow(0 38px 62px rgba(34, 20, 40, .18));
  transform-origin: center;
  animation: floatVisual 6s ease-in-out infinite;
}

.hero-copy {
  position: relative;
}

.hero-copy::before {
  content: "01";
  display: block;
  margin-bottom: 12px;
  color: transparent;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 6vw, 76px);
  line-height: .9;
  font-weight: 700;
  letter-spacing: .02em;
}

@keyframes floatVisual {
  0%, 100% { transform: translateY(0) rotate(.2deg); }
  50% { transform: translateY(-14px) rotate(-.2deg); }
}

.scroll-sign {
  position: absolute;
  bottom: 24px;
  right: clamp(20px, 4vw, 62px);
  color: var(--muted);
  font-size: 10px;
  letter-spacing: .26em;
  writing-mode: vertical-rl;
}

.scroll-sign::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 56px;
  margin-top: 12px;
  background: var(--grad);
  animation: scrollLine 1.7s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { transform: scaleY(.35); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
}

.section-head,
.wide-copy,
.split,
.service-grid,
.target-slider,
.reason-list,
.works-area,
.stats,
.plan-card,
.plan-list,
.consult-grid,
.flow-list,
.faq-list,
.contact-inner,
.center-copy {
  width: min(var(--width), 100%);
  margin-left: auto;
  margin-right: auto;
}

.section-head {
  margin-bottom: clamp(34px, 5vw, 62px);
}

.section-num {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: transparent;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  font-family: Georgia, serif;
  font-size: clamp(48px, 8vw, 92px);
  line-height: 1;
  font-weight: 700;
}

.section-num::after {
  content: "";
  width: 76px;
  height: 1px;
  background: var(--line);
}

h2 {
  margin: 0;
  font-size: clamp(30px, 4.4vw, 58px);
  line-height: 1.2;
  letter-spacing: .03em;
}

.section-head > p:not(.section-kicker),
.wide-copy > p,
.text-block p,
.center-copy {
  color: var(--muted);
  font-size: 15px;
}

.split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.text-block {
  padding: clamp(24px, 4vw, 42px);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow);
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 18px 20px 18px 56px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.74);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 21px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--grad);
  box-shadow: 0 8px 20px rgba(214,41,118,.2);
}

.design {
  background:
    radial-gradient(circle at 18% 24%, rgba(254,218,117,.16), transparent 22rem),
    radial-gradient(circle at 86% 70%, rgba(79,91,213,.12), transparent 24rem),
    linear-gradient(180deg, #fff, #fff8fc);
}

.wide-copy {
  text-align: center;
  max-width: 880px;
}

.design-grid {
  width: min(1040px, 100%);
  margin: 54px auto 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.design-card {
  min-height: 170px;
  padding: 22px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 18px 50px rgba(64,43,76,.07);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.design-card span {
  color: var(--pink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
}

.design-card strong {
  background: none;
  font-size: 15px;
  line-height: 1.6;
}

.center-copy {
  max-width: 780px;
  margin-top: 42px;
  text-align: center;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  min-height: 290px;
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 18px 50px rgba(64,43,76,.07);
  transition: transform .3s ease, box-shadow .3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 70px rgba(64,43,76,.12);
}

.icon-dot {
  display: inline-block;
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background: var(--grad);
  margin-bottom: 24px;
}

.service-card h3,
.target-card h3,
.reason-item h3,
.flow-step h3,
.portfolio-card h3 {
  margin: 0 0 14px;
  font-size: 20px;
  line-height: 1.5;
}

.service-card p,
.target-card p,
.reason-item p,
.flow-step p,
.portfolio-card p,
.plan-card p,
.price-box p,
.consultation p,
.faq-item p {
  color: var(--muted);
  font-size: 14px;
}

.targets {
  overflow: hidden;
}

.target-slider {
  display: grid;
  grid-template-columns: repeat(4, minmax(230px, 1fr));
  gap: 18px;
}

.target-card {
  position: relative;
  min-height: 300px;
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #fff, #fff8fc);
  border: 1px solid var(--line);
  overflow: hidden;
}

.target-card::after {
  content: "";
  position: absolute;
  right: -36px;
  bottom: -50px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--grad);
  opacity: .14;
}

.reason {
  background: #161821;
  color: #fff;
}

.reason .section-head > p:not(.section-kicker) {
  color: rgba(255,255,255,.72);
}

.reason .section-num::after {
  background: rgba(255,255,255,.16);
}

.reason-list {
  display: grid;
  gap: 14px;
}

.reason-item {
  display: grid;
  grid-template-columns: 180px 1fr 1.2fr;
  gap: 24px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,.14);
}

.reason-item span {
  color: transparent;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
}

.reason-item p {
  color: rgba(255,255,255,.72);
  margin-top: 0;
}

.stats {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 42px;
}

.stat-card {
  min-height: 170px;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 16px 45px rgba(64,43,76,.08);
}

.stat-card span {
  display: inline-block;
  color: transparent;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: .02em;
}

.stat-card small {
  font-size: 22px;
  font-weight: 800;
}

.stat-card p {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.works-area {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 18px;
}

.works-copy,
.portfolio-card {
  padding: 34px;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--line);
}

.works-copy ul {
  margin: 0;
  padding-left: 1.2em;
  color: var(--muted);
}

.portfolio-card {
  min-height: 280px;
  background:
    linear-gradient(rgba(255,255,255,.9), rgba(255,255,255,.9)),
    var(--grad);
  position: relative;
  overflow: hidden;
}

.portfolio-card::after {
  content: "PORTFOLIO";
  position: absolute;
  right: -16px;
  bottom: 10px;
  color: rgba(23,25,35,.04);
  font-size: 86px;
  font-weight: 900;
  letter-spacing: .05em;
}

.plan {
  background: linear-gradient(180deg, #fff8fc, #fff);
}

.plan-card {
  display: grid;
  grid-template-columns: 1.1fr .8fr;
  gap: 28px;
  padding: clamp(28px, 5vw, 54px);
  border-radius: 42px;
  background:
    linear-gradient(#fff, #fff) padding-box,
    var(--grad) border-box;
  border: 2px solid transparent;
  box-shadow: var(--shadow);
}

.price-box {
  padding: 30px;
  border-radius: 30px;
  background: #171923;
  color: #fff;
  align-self: stretch;
}

.plan-name {
  color: rgba(255,255,255,.76) !important;
  font-weight: 800;
}

.price {
  margin: 18px 0 !important;
  color: transparent !important;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: clamp(54px, 8vw, 86px) !important;
  line-height: 1 !important;
  font-weight: 900;
}

.price span {
  font-size: .35em;
}

.price-box .note {
  color: rgba(255,255,255,.72) !important;
}

.plan-list {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.plan-list span {
  padding: 10px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.consult-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.consult-item {
  min-height: 96px;
  display: flex;
  align-items: center;
  padding: 22px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: #fff;
  font-weight: 800;
}

.consult-item::before {
  content: "";
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  margin-right: 12px;
  border-radius: 50%;
  background: var(--grad);
}

.center-button {
  text-align: center;
  margin-top: 42px;
}

.flow-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.flow-step {
  position: relative;
  min-height: 280px;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--line);
}

.flow-step span {
  display: inline-block;
  margin-bottom: 36px;
  color: var(--pink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
}

.faq {
  background: #fff8fc;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--line);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  padding: 22px 56px 22px 24px;
  font-weight: 800;
  position: relative;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 20px;
  color: transparent;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 26px;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0;
  padding: 0 24px 24px;
}

.contact {
  background:
    radial-gradient(circle at 6% 22%, rgba(254,218,117,.20), transparent 20rem),
    radial-gradient(circle at 100% 4%, rgba(150,47,191,.16), transparent 24rem),
    #fff;
}

.contact-inner {
  display: grid;
  grid-template-columns: .85fr 1.05fr;
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: 118px;
}

.form-wrap {
  padding: clamp(24px, 4vw, 42px);
  border-radius: 42px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.form-message {
  padding: 14px 18px;
  margin-bottom: 18px;
  border-radius: 14px;
  font-weight: 700;
}

.form-message.success {
  color: #166534;
  background: #ecfdf3;
}

.form-message.error {
  color: #991b1b;
  background: #fff1f2;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.contact-form label,
.contact-form legend {
  color: var(--ink);
  font-weight: 800;
  font-size: 14px;
}

.contact-form label span {
  color: var(--pink);
  font-size: 12px;
  margin-left: 5px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="url"],
.contact-form textarea {
  width: 100%;
  margin-top: 8px;
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  line-height: 1.5;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(214,41,118,.36);
  box-shadow: 0 0 0 4px rgba(214,41,118,.08);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form fieldset {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.contact-form fieldset label {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--muted);
  font-weight: 600;
}

.contact-form input[type="checkbox"] {
  accent-color: var(--pink);
}

.btn-submit {
  width: 100%;
  min-height: 58px;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.hp-field {
  display: none;
}

.site-footer {
  padding: 56px 20px 88px;
  text-align: center;
  color: var(--muted);
  background: #171923;
}

.footer-brand {
  margin: 0 0 4px;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: .08em;
}

.site-footer p {
  margin: 8px 0;
}

.copyright {
  font-size: 12px;
  opacity: .75;
}

.mobile-fixed-cta {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s ease, transform .8s ease;
}

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

.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .24s; }
.delay-3 { transition-delay: .36s; }

@media (max-width: 980px) {
  body.admin-bar .site-header {
    top: 46px;
  }

  .site-header {
    padding: 14px 18px;
  }

  .header-nav {
    display: none;
  }

  .brand {
    min-width: auto;
  }

  .hero {
    padding-top: 104px;
  }

  .hero-inner,
  .split,
  .works-area,
  .plan-card,
  .contact-inner {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: -1;
  }

  .hero-visual img {
    width: min(620px, 100%);
  }

  .hero h1 {
    font-size: clamp(40px, 12vw, 68px);
  }

  .design-grid,
  .service-grid,
  .consult-grid,
  .flow-list,
  .stats {
    grid-template-columns: 1fr 1fr;
  }

  .target-slider {
    display: flex;
    overflow-x: auto;
    padding-bottom: 12px;
    scroll-snap-type: x mandatory;
  }

  .target-card {
    min-width: 78%;
    scroll-snap-align: start;
  }

  .reason-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .contact-copy {
    position: static;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 70px 18px;
  }

  .hero {
    padding-top: 92px;
  }

  .hero-inner {
    gap: 22px;
  }

  .hero-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .support-text {
    font-size: 12px;
  }

  .scroll-sign {
    display: none;
  }

  .section-num {
    font-size: 54px;
  }

  h2 {
    font-size: 30px;
  }

  .text-block,
  .form-wrap,
  .plan-card {
    border-radius: 28px;
  }

  .design-grid,
  .service-grid,
  .consult-grid,
  .flow-list,
  .stats {
    grid-template-columns: 1fr;
  }

  .design-card {
    min-height: 120px;
  }

  .target-card {
    min-width: 86%;
  }

  .service-card,
  .target-card,
  .flow-step,
  .stat-card {
    min-height: auto;
  }

  .works-copy,
  .portfolio-card {
    padding: 28px 22px;
  }

  .price-box {
    padding: 24px;
  }

  .contact-form fieldset {
    padding: 14px;
  }

  .site-footer {
    padding-bottom: 104px;
  }

  .mobile-fixed-cta {
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 60;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 13px 18px;
    border-radius: 999px;
    color: #fff;
    background: var(--grad);
    box-shadow: 0 18px 50px rgba(214,41,118,.32);
    font-weight: 900;
    letter-spacing: .06em;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .hero-visual img,
  .scroll-sign::after {
    transition: none;
    animation: none;
    transform: none;
  }
}
