:root {
  --navy: #19314a;
  --blue: #3479c8;
  --blue-dark: #245f9f;
  --sky: #edf6fb;
  --coral: #ef7d68;
  --coral-light: #fff3ef;
  --mint: #e7f4ee;
  --cream: #fffaf4;
  --text: #24384a;
  --muted: #637284;
  --line: #dfe7ed;
  --white: #fff;
  --shadow: 0 14px 38px rgba(32, 58, 82, 0.09);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  margin: 0;
  color: var(--text);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.8;
  background: #fffdf9;
  overflow-x: hidden;
}
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
.container { width: min(1120px, calc(100% - 40px)); margin-inline: auto; }
.section { padding: 110px 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  min-height: 76px;
  padding: 10px max(24px, calc((100vw - 1240px) / 2));
  display: flex;
  align-items: center;
  gap: 32px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(217, 229, 238, 0.85);
}
.brand { display: inline-flex; align-items: center; gap: 11px; flex-shrink: 0; }
.brand-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  font-family: "DM Sans", sans-serif;
  font-weight: 800;
  font-size: 22px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue), #62b4f0);
  box-shadow: 0 9px 22px rgba(61, 134, 223, 0.25);
}
.brand-copy { display: grid; line-height: 1.35; }
.brand-copy strong { font-size: 15px; letter-spacing: 0.02em; }
.brand-copy small { color: var(--muted); font-size: 10px; }
.desktop-nav { margin-left: auto; display: flex; gap: 26px; }
.desktop-nav a { font-size: 13px; font-weight: 700; transition: color 0.2s; }
.desktop-nav a:hover { color: var(--blue); }
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 12px 18px;
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  border-radius: 999px;
  background: var(--navy);
}
.header-cta span { color: #9bd1ff; }

.hero {
  position: relative;
  padding-top: 68px;
  background: linear-gradient(180deg, #f7fbfb 0%, #fffdf9 78%);
  overflow: hidden;
}
.hero-orb { position: absolute; border-radius: 50%; filter: blur(2px); pointer-events: none; }
.hero-orb-one { width: 420px; height: 420px; top: -180px; right: 28%; background: rgba(218, 236, 245, 0.5); }
.hero-orb-two { width: 280px; height: 280px; left: -130px; bottom: 40px; background: rgba(255, 222, 212, 0.32); }
.hero .container { width: min(1260px, calc(100% - 48px)); }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .92fr 1.08fr; gap: 34px; align-items: center; }
.eyebrow { margin: 0 0 20px; color: var(--blue-dark); font-size: 13px; font-weight: 800; letter-spacing: 0.08em; }
.eyebrow span { margin-right: 8px; padding: 6px 10px; color: var(--white); border-radius: 999px; background: var(--coral); letter-spacing: 0; }
.hero h1 { margin: 0; color: var(--navy); font-size: clamp(38px, 4.4vw, 64px); line-height: 1.35; letter-spacing: -0.055em; }
.hero h1 > span { color: var(--coral); font-size: .56em; letter-spacing: .03em; }
.mobile-break { display: none; }
.hero h1 em { color: var(--blue); font-style: normal; position: relative; white-space: nowrap; }
.hero h1 em::after { content: ""; position: absolute; left: 0; right: 0; bottom: -5px; height: 8px; border-radius: 50%; background: rgba(255, 128, 111, 0.35); transform: rotate(-1deg); }
.hero-lead { max-width: 590px; margin: 28px 0 32px; color: var(--muted); font-size: 16px; }
.hero-lead strong { color: var(--navy); font-size: 1.06em; background: linear-gradient(transparent 65%, rgba(255,128,111,.24) 0); }
.hero-actions { display: flex; align-items: center; gap: 12px; }
.button {
  min-height: 56px;
  padding: 14px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  border: 0;
  border-radius: 16px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--white); background: linear-gradient(135deg, var(--blue), #4ca5eb); box-shadow: 0 14px 30px rgba(61, 134, 223, 0.24); }
.button-primary:hover { box-shadow: 0 18px 34px rgba(61, 134, 223, 0.32); }
.button-ghost { color: var(--navy); border: 1px solid var(--line); background: var(--white); }
.hero-assurance { display: flex; flex-wrap: wrap; gap: 18px; padding: 0; margin: 24px 0 0; list-style: none; color: var(--muted); font-size: 12px; font-weight: 700; }
.hero-assurance li::before { content: "✓"; margin-right: 6px; color: var(--coral); }
.hero-visual { position: relative; min-width: 0; }
.hero-visual > img { width: 100%; min-height: 520px; aspect-ratio: 1.22 / 1; object-fit: cover; object-position: center; border-radius: 38px 38px 88px 38px; box-shadow: 0 24px 70px rgba(29,69,104,.16); }
.hero-visual::before { content: ""; position: absolute; z-index: -1; inset: 32px -28px -24px 42px; border-radius: 38px 38px 96px 38px; background: var(--sky); }
.industry-band { margin-top: 78px; border-top: 1px solid #e7eef4; border-bottom: 1px solid #e7eef4; background: rgba(255,255,255,.8); }
.industry-band .container { min-height: 66px; display: flex; align-items: center; justify-content: space-between; gap: 22px; color: #81909e; font-size: 12px; font-weight: 800; letter-spacing: .08em; }

.section-heading { margin-bottom: 48px; }
.section-heading h2, .challenge-intro h2, .profile-copy h2, .faq-intro h2, .contact-copy h2 { margin: 6px 0 0; color: var(--navy); font-size: clamp(32px, 4vw, 48px); line-height: 1.45; letter-spacing: -0.04em; }
.section-heading h2 strong, .challenge-intro h2 strong, .profile-copy h2 strong, .faq-intro h2 strong, .contact-copy h2 strong { color: var(--blue); }
.section-label { margin: 0; color: var(--coral); font-family: "DM Sans", sans-serif; font-size: 12px; font-weight: 800; letter-spacing: .16em; }
.split-heading { display: grid; grid-template-columns: 1.1fr .9fr; gap: 80px; align-items: end; }
.split-heading > p { margin: 0 0 8px; color: var(--muted); }
.centered { max-width: 760px; margin-inline: auto; text-align: center; }
.centered > p:last-child { margin: 15px auto 0; color: var(--muted); }

.results { background: #fffdf9; }
.results .container { width: min(1200px, calc(100% - 40px)); }
.results .section-heading { margin-bottom: 56px; }
.results .section-heading h2 { font-size: clamp(38px, 4.7vw, 58px); }
.result-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.result-card { position: relative; min-height: 350px; padding: 38px 36px; display: flex; flex-direction: column; justify-content: center; border-radius: 32px; overflow: hidden; }
.result-card::after { content: ""; position: absolute; width: 160px; height: 160px; right: -70px; bottom: -70px; border: 28px solid rgba(255,255,255,.55); border-radius: 50%; }
.result-blue { background: var(--sky); }
.result-coral { background: var(--coral-light); }
.result-mint { background: var(--mint); }
.result-top { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.result-top span { padding: 7px 13px; color: var(--white); font-size: 13px; font-weight: 800; border-radius: 999px; background: var(--navy); }
.result-top small { color: var(--muted); font-size: 13px; font-weight: 700; }
.result-number { position: relative; z-index: 1; margin: 32px 0 0; display: flex; align-items: baseline; gap: 10px; line-height: 1; }
.result-number strong { color: var(--navy); font-family: "DM Sans", sans-serif; font-size: clamp(78px, 7.2vw, 108px); letter-spacing: -.065em; }
.result-number span { font-weight: 900; font-size: 25px; }
.result-card > p:nth-of-type(2) { position: relative; z-index: 1; margin: 12px 0 28px; color: var(--navy); font-size: 15px; font-weight: 800; }
.result-tags { position: relative; z-index: 1; display: flex; flex-wrap: wrap; gap: 6px; }
.result-tags span { padding: 7px 10px; border: 1px solid rgba(34,56,76,.12); border-radius: 999px; background: rgba(255,255,255,.65); font-size: 11px; font-weight: 700; }
.result-note { margin: 15px 0 0; color: #8a98a4; font-size: 11px; text-align: right; }

.challenges { background: #f6fafb; }
.challenge-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 80px; align-items: start; }
.challenge-intro { position: sticky; top: 125px; }
.challenge-intro > p:not(.section-label) { color: var(--muted); }
.mini-quote { margin-top: 34px; padding: 22px 24px; color: var(--navy); border-left: 4px solid var(--coral); border-radius: 0 18px 18px 0; background: var(--white); box-shadow: 0 12px 35px rgba(31, 65, 94, .07); }
.mini-quote strong { color: var(--blue); font-size: 19px; }
.challenge-cards { display: grid; gap: 14px; }
.challenge-cards article { display: grid; grid-template-columns: 58px 1fr; gap: 20px; padding: 28px; border: 1px solid var(--line); border-radius: 22px; background: var(--white); transition: transform .2s, box-shadow .2s; }
.challenge-cards article:hover { transform: translateX(-5px); box-shadow: 0 14px 35px rgba(31, 65, 94, .08); }
.challenge-cards article > span { display: grid; place-items: center; width: 50px; height: 50px; color: var(--blue); font-family: "DM Sans", sans-serif; font-size: 12px; font-weight: 800; border-radius: 16px; background: var(--sky); }
.challenge-cards h3 { margin: 0 0 6px; color: var(--navy); font-size: 18px; }
.challenge-cards p { margin: 0; color: var(--muted); font-size: 13px; }

.sns-value { background: #fffdf9; }
.visual-section-container { width: min(1280px, calc(100% - 24px)); }
.section-visual { width: 100%; height: auto; display: block; }
.sns-value .visual-section-container { width: min(1380px, calc(100% - 24px)); }
.how-it-works-visual { margin-top: 70px; }
.mobile-value-section { display: none; }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.value-grid article { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: 0 12px 28px rgba(31,65,94,.055); }
.value-image { position: relative; }
.value-image img { aspect-ratio: 1.45 / 1; object-fit: cover; }
.platform-badge { position: absolute; z-index: 4; left: 17px; top: 17px; width: 48px; height: 48px; display: grid; place-items: center; color: var(--white); font-family: "DM Sans", sans-serif; font-size: 11px; font-weight: 800; border: 3px solid rgba(255,255,255,.92); border-radius: 15px; box-shadow: 0 8px 20px rgba(23,50,77,.18); }
.instagram-badge { background: radial-gradient(circle at 30% 105%, #ffd600 0 18%, #ff7a00 31%, #ff0169 53%, #d300c5 72%, #7638fa 100%); }
.instagram-badge svg { width: 29px; height: 29px; fill: none; stroke: currentColor; stroke-width: 1.9; }
.instagram-badge .instagram-dot { fill: currentColor; stroke: none; }
.youtube-badge { background: var(--white); }
.youtube-badge svg { width: 32px; height: 24px; }
.youtube-badge rect { fill: #ff0033; }
.youtube-badge path { fill: var(--white); }
.line-badge { background: #06c755; }
.line-mark { position: relative; width: 34px; height: 25px; display: grid; place-items: center; color: #06c755; font-family: Arial, sans-serif; font-size: 8px; font-weight: 900; line-height: 1; border-radius: 50%; background: var(--white); }
.line-mark::after { content: ""; position: absolute; right: 3px; bottom: -3px; width: 9px; height: 8px; background: var(--white); clip-path: polygon(0 0, 100% 0, 100% 100%); transform: rotate(12deg); }
.value-body { padding: 25px 27px 28px; }
.value-grid small { color: var(--coral); font-family: "DM Sans", sans-serif; font-size: 10px; font-weight: 800; letter-spacing: .12em; }
.value-grid h3 { margin: 10px 0 11px; color: var(--navy); font-size: 19px; line-height: 1.5; }
.value-grid p { margin: 0; color: var(--muted); font-size: 13px; }
.journey { margin-top: 28px; padding: 24px 30px; display: flex; align-items: center; justify-content: space-between; gap: 18px; color: var(--blue); border: 1px solid #dcebf5; border-radius: 20px; background: #f4f9fc; }
.journey div { display: grid; gap: 2px; text-align: center; }
.journey span { color: var(--blue); font-size: 10px; font-weight: 800; letter-spacing: .1em; }
.journey strong { color: var(--navy); font-size: 13px; }

.services { background: linear-gradient(180deg, #f6fafb, #fffdf9); }
.service-heading { font-size: clamp(31px, 3.35vw, 43px) !important; }
.service-heading span, .service-heading strong { white-space: nowrap; }
.service-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.service-cards article { overflow: hidden; border: 1px solid var(--line); border-radius: 24px; background: var(--white); box-shadow: 0 12px 35px rgba(31,65,94,.06); }
.service-image { position: relative; overflow: hidden; }
.service-image img { aspect-ratio: 1.85 / 1; object-fit: cover; transition: transform .4s ease; }
.service-cards article:hover .service-image img { transform: scale(1.025); }
.service-no { position: absolute; left: 18px; top: 18px; display: grid; place-items: center; width: 43px; height: 43px; color: var(--white); font-family: "DM Sans", sans-serif; font-size: 12px; font-weight: 800; border: 3px solid rgba(255,255,255,.8); border-radius: 14px; background: var(--blue); box-shadow: 0 8px 20px rgba(23,50,77,.18); }
.service-cards article:nth-child(2) .service-no { background: var(--coral); }
.service-cards article:nth-child(3) .service-no { background: #3ebf8f; }
.service-cards article:nth-child(4) .service-no { background: var(--navy); }
.service-body { padding: 25px 27px 27px; }
.service-body small { color: var(--coral); font-size: 10px; font-weight: 800; }
.service-cards h3 { margin: 4px 0 8px; color: var(--navy); font-size: 22px; }
.service-cards p { margin: 0; color: var(--muted); font-size: 13px; }
.service-body ul { display: flex; flex-wrap: wrap; gap: 6px; margin: 18px 0 0; padding: 0; list-style: none; }
.service-body li { padding: 5px 9px; color: var(--blue-dark); border-radius: 999px; background: var(--sky); font-size: 10px; font-weight: 700; }
.work-scope { margin-top: 76px; }
.work-heading { max-width: 820px; margin: 0 auto 34px; text-align: center; }
.work-heading h3 { margin: 8px 0 8px; color: var(--navy); font-size: clamp(32px, 4vw, 50px); line-height: 1.45; letter-spacing: -.04em; }
.work-heading h3 strong { color: var(--coral); }
.work-heading p:last-child { margin: 0; color: var(--muted); }
.work-scope-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 22px; align-items: stretch; }
.work-scope-grid article { border-radius: 26px; background: var(--white); box-shadow: 0 12px 30px rgba(31,65,94,.055); }
.client-work { padding: 28px; border: 2px solid #f3b7aa; background: linear-gradient(180deg, #fff8f5, #fff); }
.partner-work { padding: 28px; border: 2px solid #b8d8ef; background: linear-gradient(180deg, #f5fbff, #fff); }
.work-label { display: inline-flex; min-height: 34px; align-items: center; padding: 6px 16px; font-size: 12px; font-weight: 900; border-radius: 999px; background: var(--white); }
.client-work .work-label { color: #c65c4b; }
.partner-work .work-label { color: var(--blue-dark); }
.client-work-list { margin-top: 24px; display: grid; gap: 16px; }
.client-work-list > div { padding: 18px; display: grid; grid-template-columns: 62px 1fr; gap: 16px; align-items: start; border: 1px solid #f6d4ce; border-radius: 18px; background: rgba(255,255,255,.78); }
.client-work-list span { color: var(--coral); font-family: "DM Sans", sans-serif; font-size: 38px; font-weight: 800; line-height: 1; letter-spacing: -.06em; }
.client-work-list strong, .partner-work-list strong { color: var(--navy); }
.client-work-list p { margin: 7px 0 0; color: var(--muted); font-size: 12px; line-height: 1.75; }
.partner-work-list { margin-top: 24px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.partner-work-list div { min-height: 112px; padding: 16px; display: flex; flex-direction: column; gap: 9px; justify-content: center; border: 1px solid #cfe4f3; border-radius: 16px; background: rgba(255,255,255,.72); }
.partner-work-list span { width: fit-content; padding: 4px 9px; color: var(--blue-dark); border-radius: 999px; background: #e7f3fb; font-size: 10px; font-weight: 900; }
.partner-work-list strong { font-size: 13px; line-height: 1.65; }
.partner-work-note { margin: 22px 0 0; padding: 16px 18px; color: var(--blue-dark); border-radius: 16px; background: #edf7fd; font-size: 13px; font-weight: 800; }
.role-heading { margin-top: 70px; text-align: center; }
.role-heading h3 { margin: 5px 0 2px; color: var(--navy); font-size: clamp(28px, 3.5vw, 42px); }
.role-heading h3 strong { color: var(--coral); font-size: 1.18em; }
.role-heading > p:last-child { margin: 0; color: var(--muted); font-size: 13px; }
.role-split { margin-top: 35px; display: grid; grid-template-columns: .72fr 1.28fr; gap: 18px; align-items: stretch; }
.role-split > article { padding: 30px; border-radius: 25px; }
.client-role { border: 2px solid #ff897e; background: linear-gradient(145deg, #fff6f3, #fffafa); }
.partner-role { color: var(--navy); border: 2px solid #79bff0; background: linear-gradient(145deg, #eef8ff, #e3f4ff); }
.role-label { display: table; margin: 0 auto; padding: 7px 22px; font-size: 12px; font-weight: 800; border-radius: 999px; }
.client-role .role-label { color: #d75546; background: var(--white); }
.partner-role .role-label { color: var(--white); background: var(--blue); }
.client-steps { margin-top: 25px; }
.client-step { min-height: 126px; padding: 19px 18px; display: grid; grid-template-columns: 52px 70px 1fr; gap: 12px; align-items: center; border: 1px solid #ffd7d1; border-radius: 20px; background: rgba(255,255,255,.85); }
.client-step-no { color: var(--coral); font-family: "DM Sans", sans-serif; font-size: 42px; font-weight: 800; line-height: 1; letter-spacing: -.06em; }
.client-step-icon { display: grid; place-items: center; width: 65px; height: 80px; color: var(--navy); }
.client-step-icon svg { width: 58px; height: 68px; fill: none; stroke: currentColor; stroke-width: 1.45; stroke-linecap: round; stroke-linejoin: round; }
.client-step strong { display: block; color: var(--navy); font-size: 19px; }
.client-step p { margin: 7px 0 0; color: var(--muted); font-size: 12px; }
.client-step-arrow { display: block; height: 32px; color: var(--coral); font-size: 22px; font-weight: 900; text-align: center; line-height: 32px; }
.partner-process { margin-top: 30px; display: grid; grid-template-columns: 1fr 18px 1fr 18px 1fr 18px 1fr; align-items: start; }
.partner-step { position: relative; min-width: 0; text-align: center; }
.partner-step + .partner-arrow + .partner-step::before { content: ""; position: absolute; left: -10px; top: 97px; bottom: 0; border-left: 1px dashed #b9d9ef; }
.partner-step-no { position: absolute; z-index: 2; left: 50%; top: -9px; width: 28px; height: 28px; display: grid; place-items: center; color: var(--white); border-radius: 50%; background: #287bd0; transform: translateX(-50%); font-family: "DM Sans", sans-serif; font-size: 15px; font-weight: 800; }
.partner-step-icon { width: 82px; height: 82px; margin: 4px auto 14px; display: grid; place-items: center; color: var(--navy); border: 1px solid #bad9ee; border-radius: 50%; background: rgba(255,255,255,.86); }
.partner-step-icon svg { width: 42px; height: 42px; fill: none; stroke: currentColor; stroke-width: 1.55; stroke-linecap: round; stroke-linejoin: round; }
.partner-step strong { display: block; color: #1769b7; font-size: 17px; }
.partner-step p { min-height: 68px; margin: 8px 0 0; color: var(--muted); font-size: 11px; line-height: 1.65; }
.partner-arrow { padding-top: 47px; color: #287bd0; font-size: 16px; text-align: center; }
.partner-summary { margin-top: 22px; padding: 20px 18px 0; display: flex; align-items: center; justify-content: center; gap: 18px; border-top: 1px solid #bdddf3; }
.partner-summary > span { width: 60px; height: 60px; display: grid; place-items: center; flex-shrink: 0; color: var(--blue); border-radius: 50%; background: rgba(255,255,255,.72); }
.partner-summary svg { width: 34px; height: 34px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.partner-summary p { margin: 0; color: var(--muted); font-size: 12px; }
.partner-summary strong { color: #1769b7; font-size: 19px; }
.flow-note { margin: 16px 0 0; color: var(--muted); font-size: 12px; text-align: center; }

.profile { background: var(--navy); overflow: hidden; }
.profile-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 78px; align-items: center; }
.profile-images { position: relative; }
.profile-main { aspect-ratio: .9 / 1; object-fit: cover; border-radius: 32px; }
.profile-inset { position: absolute; right: -28px; bottom: 34px; width: 34%; aspect-ratio: 1; object-fit: cover; border: 7px solid var(--navy); border-radius: 50%; }
.profile-badge { position: absolute; left: -26px; top: 28px; padding: 12px 16px; display: flex; align-items: center; gap: 9px; color: var(--navy); border-radius: 15px; background: var(--white); box-shadow: var(--shadow); }
.profile-badge strong { color: var(--blue); font-family: "DM Sans", sans-serif; font-size: 26px; line-height: 1; }
.profile-badge span { font-size: 8px; font-weight: 800; line-height: 1.3; letter-spacing: .08em; }
.profile-copy .section-label { color: #78c3fa; }
.profile-copy h2 { color: var(--white); }
.profile-copy h2 strong { color: #8ed2ff; }
.profile-name { margin: 28px 0 22px; display: flex; align-items: baseline; gap: 16px; color: var(--white); }
.profile-name strong { font-size: 23px; }
.profile-name span { color: #aab9c8; font-size: 12px; }
.profile-copy > p:not(.section-label) { color: #c4d0da; font-size: 14px; }
.profile-strengths { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 8px; }
.profile-strengths span { padding: 7px 11px; color: #d9edff; border: 1px solid rgba(142,210,255,.28); border-radius: 999px; background: rgba(255,255,255,.06); font-size: 11px; font-weight: 700; }

.price { background: var(--cream); }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.price-card { position: relative; padding: 32px; border: 1px solid #e7e5dd; border-radius: var(--radius); background: var(--white); }
.price-card.featured { border: 3px solid var(--blue); box-shadow: 0 20px 50px rgba(61,134,223,.17); transform: translateY(-12px); }
.featured-label { position: absolute; top: -17px; right: 25px; padding: 7px 15px; color: var(--white); font-size: 11px; font-weight: 800; border-radius: 999px; background: var(--coral); }
.price-icon { width: 54px; height: 54px; display: grid; place-items: center; color: var(--blue); border-radius: 16px; background: var(--sky); }
.price-icon svg { width: 29px; height: 29px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.price-card:nth-child(1) .price-icon { color: #d8529b; background: #fff0f8; }
.price-card:nth-child(2) .price-icon { color: var(--white); background: linear-gradient(135deg, var(--blue), #67b8ef); }
.price-card:nth-child(3) .price-icon { color: #ef5d59; background: #fff0ef; }
.price-card > small { display: block; margin-top: 24px; color: var(--muted); font-size: 10px; }
.price-card h3 { margin: 3px 0 23px; color: var(--navy); font-size: 19px; }
.price-value { min-height: 54px; margin: 0 0 24px; display: flex; align-items: baseline; flex-wrap: wrap; gap: 3px; }
.price-value > span { margin-right: 5px; color: var(--muted); font-size: 11px; font-weight: 700; }
.price-value strong { color: var(--navy); font-family: "DM Sans", sans-serif; font-size: clamp(31px, 3vw, 42px); letter-spacing: -.05em; }
.price-value b { color: var(--navy); font-size: 14px; }
.price-value small { margin-left: 4px; color: var(--muted); font-size: 9px; }
.price-purpose { min-height: 88px; margin: 0 0 20px; padding: 14px; color: var(--muted); border-radius: 13px; background: #f7fafc; font-size: 11px; }
.price-card ul { margin: 0; padding: 20px 0 0; list-style: none; border-top: 1px solid var(--line); }
.price-card li { margin: 9px 0; color: var(--muted); font-size: 12px; }
.price-card li::before { content: "✓"; margin-right: 8px; color: var(--blue); font-weight: 900; }
.price-card li b { display: inline-block; min-width: 43px; color: var(--navy); }
.price-card > a { min-height: 48px; margin-top: 23px; padding: 10px 14px; display: flex; align-items: center; justify-content: space-between; color: var(--blue-dark); border: 1px solid #b9d9f4; border-radius: 12px; background: var(--sky); font-size: 11px; font-weight: 800; }
.price-card.featured > a { color: var(--white); border-color: var(--blue); background: var(--blue); }
.price-includes { margin-top: 30px; padding: 18px 22px; display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 8px; border: 1px solid #eadfce; border-radius: 16px; background: var(--white); }
.price-includes strong { margin-right: 8px; color: var(--coral); font-size: 12px; }
.price-includes span { padding: 5px 9px; color: var(--navy); border-radius: 999px; background: var(--cream); font-size: 10px; font-weight: 700; }
.price-notes { margin-top: 22px; padding: 18px 22px; color: var(--muted); border-radius: 16px; background: rgba(255,255,255,.65); font-size: 11px; }
.price-notes p { margin: 3px 0; }

.faq { background: var(--white); }
.faq-grid { display: grid; grid-template-columns: .65fr 1.35fr; gap: 80px; align-items: start; }
.faq-intro { position: sticky; top: 125px; }
.faq-intro > p:not(.section-label) { color: var(--muted); }
.faq-intro > a { display: inline-flex; gap: 18px; margin-top: 15px; color: var(--blue); font-size: 13px; font-weight: 800; }
.accordion { border-top: 1px solid var(--line); }
.accordion details { border-bottom: 1px solid var(--line); }
.accordion summary { padding: 24px 4px; display: grid; grid-template-columns: 36px 1fr 22px; gap: 13px; align-items: center; color: var(--navy); font-weight: 700; cursor: pointer; list-style: none; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary span { display: grid; place-items: center; width: 34px; height: 34px; color: var(--blue); font-family: "DM Sans", sans-serif; border-radius: 11px; background: var(--sky); }
.accordion summary b { color: var(--blue); font-size: 20px; font-weight: 400; transition: transform .2s; }
.accordion details[open] summary b { transform: rotate(45deg); }
.accordion details > div { padding: 0 8px 24px 52px; display: grid; grid-template-columns: 27px 1fr; gap: 11px; color: var(--muted); }
.accordion details > div span { color: var(--coral); font-family: "DM Sans", sans-serif; font-weight: 800; }
.accordion details > div p { margin: 0; font-size: 13px; }

.contact { position: relative; background: linear-gradient(135deg, #edf7ff 0%, #f9fcff 52%, #fff2ef 100%); }
.contact::before { content: ""; position: absolute; inset: 0; opacity: .35; background-image: radial-gradient(#9bcaf0 1px, transparent 1px); background-size: 28px 28px; }
.contact-grid { position: relative; display: grid; grid-template-columns: .82fr 1.18fr; gap: 70px; align-items: start; }
.contact-copy { position: sticky; top: 120px; }
.contact-copy > p:not(.section-label):not(.contact-safe) { color: var(--muted); }
.contact-options { margin-top: 28px; display: grid; gap: 10px; }
.contact-options article { padding: 13px 15px; display: flex; align-items: center; gap: 13px; border: 1px solid rgba(61,134,223,.14); border-radius: 14px; background: rgba(255,255,255,.7); }
.contact-options article > span { display: grid; place-items: center; width: 32px; height: 32px; color: var(--blue); font-family: "DM Sans", sans-serif; font-size: 10px; font-weight: 800; border-radius: 10px; background: var(--sky); }
.contact-options strong, .contact-options small { display: block; }
.contact-options strong { color: var(--navy); font-size: 13px; }
.contact-options small { color: var(--muted); font-size: 10px; }
.contact-safe { margin-top: 20px; color: var(--blue-dark); font-size: 11px; font-weight: 800; }
.contact-form { padding: 38px; border: 1px solid rgba(255,255,255,.7); border-radius: 28px; background: rgba(255,255,255,.92); box-shadow: var(--shadow); backdrop-filter: blur(10px); }
.form-title { position: relative; margin-bottom: 26px; }
.form-title small { color: var(--coral); font-family: "DM Sans", sans-serif; font-size: 10px; font-weight: 800; letter-spacing: .14em; }
.form-title h3 { margin: 2px 0 0; color: var(--navy); font-size: 23px; }
.form-title p { position: absolute; right: 0; bottom: 3px; margin: 0; color: var(--muted); font-size: 9px; }
.form-title p span, .field-label > span, legend span { color: var(--coral); }
.field-label, legend { display: block; margin-bottom: 17px; color: var(--navy); font-size: 12px; font-weight: 800; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
input[type="text"], input[type="email"], select, textarea {
  width: 100%;
  margin-top: 7px;
  padding: 14px 15px;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 12px;
  outline: none;
  background: #fbfdff;
  transition: border-color .2s, box-shadow .2s;
}
textarea { resize: vertical; min-height: 110px; }
input:focus, select:focus, textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(61,134,223,.1); }
fieldset { padding: 0; margin: 0 0 17px; border: 0; }
legend { margin-bottom: 8px; }
.radio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; }
.radio-grid label { cursor: pointer; }
.radio-grid input { position: absolute; opacity: 0; pointer-events: none; }
.radio-grid span { min-height: 55px; padding: 9px; display: grid; place-items: center; color: var(--muted); border: 1px solid var(--line); border-radius: 11px; background: #fbfdff; font-size: 10px; font-weight: 700; text-align: center; transition: .2s; }
.radio-grid input:checked + span { color: var(--blue-dark); border-color: var(--blue); background: var(--sky); box-shadow: 0 0 0 3px rgba(61,134,223,.08); }
.form-button { width: 100%; margin-top: 3px; }
.form-button:disabled { opacity: .65; cursor: wait; }
.privacy { margin: 11px 0 0; color: var(--muted); font-size: 9px; text-align: center; }
.privacy a { color: var(--blue-dark); text-decoration: underline; }
.honeypot { position: absolute; left: -9999px; }

footer { color: #c1ccd6; background: #10263b; }
.footer-main { min-height: 140px; display: flex; align-items: center; gap: 42px; }
.footer-brand .brand-copy strong { color: var(--white); }
.footer-main > p { margin-right: auto; font-size: 12px; }
.footer-main nav { display: flex; gap: 22px; font-size: 11px; font-weight: 700; }
.footer-bottom { padding: 16px 0 22px; display: flex; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.1); font-size: 10px; }
.mobile-cta { display: none; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

.legal-body { min-height: 100vh; background: #f5f9fc; }
.legal-main { padding: 80px 0 100px; }
.legal-card { max-width: 850px; margin: auto; padding: 56px; border-radius: 28px; background: var(--white); box-shadow: var(--shadow); }
.legal-card h1 { margin: 5px 0 30px; color: var(--navy); font-size: 36px; }
.legal-card h2 { margin-top: 32px; color: var(--navy); font-size: 18px; }
.legal-card p, .legal-card li { color: var(--muted); font-size: 13px; }
.legal-card .button { margin-top: 25px; }

@media (max-width: 960px) {
  .desktop-nav { display: none; }
  .site-header { justify-content: space-between; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 680px; }
  .hero-visual { max-width: 760px; margin-inline: auto; }
  .hero-visual > img { min-height: 0; }
  .result-grid, .value-grid, .price-grid { grid-template-columns: 1fr 1fr; }
  .result-card:last-child, .value-grid article:last-child, .price-card:last-child { grid-column: 1 / -1; }
  .split-heading, .challenge-grid, .faq-grid, .contact-grid { grid-template-columns: 1fr; gap: 42px; }
  .challenge-intro, .faq-intro, .contact-copy { position: static; }
  .work-scope-grid { grid-template-columns: 1fr; }
  .partner-work-list { grid-template-columns: 1fr 1fr; }
  .role-split { grid-template-columns: 1fr; }
  .profile-grid { grid-template-columns: .85fr 1.15fr; gap: 45px; }
  .profile-inset { right: -15px; }
}

@media (max-width: 680px) {
  body { font-size: 14px; padding-bottom: 70px; }
  .container { width: min(100% - 30px, 1120px); }
  .section { padding: 76px 0; }
  .site-header { min-height: 65px; padding: 9px 15px; }
  .brand-icon { width: 38px; height: 38px; border-radius: 12px; }
  .brand-copy strong { font-size: 13px; }
  .brand-copy small { font-size: 8px; }
  .header-cta { display: none; }
  .hero { padding-top: 44px; }
  .hero-grid { gap: 38px; }
  .eyebrow { font-size: 10px; }
  .eyebrow span { padding: 5px 8px; }
  .hero h1 { font-size: clamp(34px, 10.5vw, 48px); line-height: 1.42; }
  .hero h1 em { white-space: normal; }
  .mobile-break { display: inline; }
  .hero-lead { margin: 22px 0 27px; font-size: 14px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .button { min-height: 54px; }
  .hero-assurance { gap: 7px 13px; margin-top: 18px; font-size: 10px; }
  .hero .container { width: min(100% - 30px, 1120px); }
  .hero-visual > img { aspect-ratio: 1.05 / 1; object-position: center; border-radius: 26px 26px 65px 26px; }
  .hero-visual::before { inset: 19px -12px -14px 22px; }
  .industry-band { margin-top: 50px; overflow: hidden; }
  .industry-band .container { width: max-content; min-height: 54px; justify-content: flex-start; animation: industry-scroll 24s linear infinite; }
  @keyframes industry-scroll { to { transform: translateX(-45%); } }
  .section-heading { margin-bottom: 32px; }
  .section-heading h2, .challenge-intro h2, .profile-copy h2, .faq-intro h2, .contact-copy h2 { font-size: 30px; }
  .split-heading { gap: 18px; }
  .result-grid, .value-grid, .price-grid { grid-template-columns: 1fr; }
  .result-card:last-child, .value-grid article:last-child, .price-card:last-child { grid-column: auto; }
  .result-card { min-height: 315px; padding: 28px; }
  .result-number strong { font-size: 78px; }
  .result-note { text-align: left; }
  .challenge-grid { gap: 34px; }
  .challenge-cards article { grid-template-columns: 44px 1fr; gap: 13px; padding: 21px; }
  .challenge-cards article > span { width: 42px; height: 42px; }
  .challenge-cards h3 { font-size: 16px; }
  .sns-value .visual-section-container { width: min(100% - 30px, 1120px); }
  .section-visual-desktop { display: none; }
  .mobile-value-section { display: block; }
  .mobile-section-heading { margin-bottom: 28px; text-align: center; }
  .mobile-section-heading h2 { margin: 8px 0 12px; color: var(--navy); font-size: 30px; line-height: 1.35; }
  .mobile-section-heading h2 strong { color: var(--blue); }
  .mobile-section-heading > p:last-child { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.8; text-align: left; }
  .mobile-value-grid { gap: 18px; }
  .mobile-value-grid article { border-radius: 26px; box-shadow: 0 16px 40px rgba(31,65,94,.08); }
  .mobile-value-grid .value-image img { aspect-ratio: 1.28 / 1; border-radius: 0; object-position: center; }
  .mobile-value-grid .platform-badge { left: 14px; top: 14px; width: 54px; height: 54px; border-radius: 17px; }
  .value-image img { aspect-ratio: 1.35 / 1; }
  .value-body { padding: 22px; }
  .journey { padding: 20px 16px; gap: 6px; overflow-x: auto; justify-content: flex-start; }
  .journey div { min-width: 94px; }
  .journey b { flex-shrink: 0; }
  .service-cards { grid-template-columns: 1fr; }
  .service-heading { font-size: 27px !important; }
  .service-heading span, .service-heading strong { white-space: normal; }
  .service-image img { aspect-ratio: 1.45 / 1; }
  .service-body { padding: 22px; }
  .service-cards h3 { font-size: 20px; }
  .work-scope { margin-top: 58px; }
  .work-heading { margin-bottom: 24px; text-align: left; }
  .work-heading h3 { font-size: 30px; }
  .work-scope-grid { gap: 16px; }
  .client-work, .partner-work { padding: 22px; }
  .client-work-list > div { grid-template-columns: 48px 1fr; gap: 12px; padding: 16px; }
  .client-work-list span { font-size: 32px; }
  .partner-work-list { grid-template-columns: 1fr; gap: 9px; }
  .partner-work-list div { min-height: 0; padding: 15px; }
  .partner-work-note { font-size: 12px; }
  .role-heading { margin-top: 55px; text-align: left; }
  .role-heading h3 { font-size: 28px; }
  .role-heading > p:last-child { margin-top: 7px; }
  .role-split > article { padding: 24px 20px; }
  .role-label { margin: 0 auto; }
  .client-step { min-height: 112px; padding: 16px 13px; grid-template-columns: 43px 57px 1fr; gap: 9px; }
  .client-step-no { font-size: 34px; }
  .client-step-icon { width: 54px; height: 68px; }
  .client-step-icon svg { width: 48px; height: 58px; }
  .client-step strong { font-size: 17px; }
  .client-step p { font-size: 11px; }
  .partner-process { grid-template-columns: 1fr 1fr; gap: 28px 12px; }
  .partner-arrow { display: none; }
  .partner-step + .partner-arrow + .partner-step::before { display: none; }
  .partner-step-icon { width: 74px; height: 74px; }
  .partner-step-icon svg { width: 36px; height: 36px; }
  .partner-step strong { font-size: 15px; }
  .partner-step p { min-height: 0; font-size: 10px; }
  .partner-summary { padding-inline: 0; align-items: flex-start; }
  .partner-summary > span { width: 50px; height: 50px; }
  .partner-summary strong { font-size: 16px; }
  .profile-grid { grid-template-columns: 1fr; gap: 55px; }
  .profile-images { width: 88%; }
  .profile-main { aspect-ratio: 1 / 1.08; }
  .profile-badge { left: -10px; top: 18px; }
  .profile-inset { right: -14%; bottom: 24px; border-width: 5px; }
  .price-card { padding: 28px; }
  .price-card.featured { transform: none; }
  .price-purpose { min-height: 0; }
  .price-includes { justify-content: flex-start; }
  .faq-grid, .contact-grid { gap: 34px; }
  .accordion summary { padding: 21px 0; grid-template-columns: 34px 1fr 18px; gap: 10px; font-size: 13px; }
  .accordion details > div { padding-left: 44px; }
  .contact-form { padding: 26px 20px; border-radius: 23px; }
  .form-title p { position: static; margin-top: 3px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .radio-grid { grid-template-columns: 1fr; }
  .radio-grid span { min-height: 48px; }
  .footer-main { padding: 35px 0; align-items: flex-start; flex-direction: column; gap: 17px; }
  .footer-main > p { margin: 0; }
  .footer-main nav { flex-wrap: wrap; gap: 13px 20px; }
  .footer-bottom { margin-bottom: 0; }
  .mobile-cta { position: fixed; z-index: 40; left: 10px; right: 10px; bottom: 9px; min-height: 55px; display: flex; align-items: center; justify-content: center; gap: 25px; color: var(--white); font-weight: 800; border-radius: 16px; background: linear-gradient(135deg, var(--blue), #4ca5eb); box-shadow: 0 10px 30px rgba(35,101,165,.3); }
  .legal-main { padding: 45px 0 70px; }
  .legal-card { padding: 30px 22px; }
  .legal-card h1 { font-size: 27px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
