@charset "UTF-8";

:root{
  --blue:#0f5bff;
  --blue2:#0046d8;
  --blue3:#eaf2ff;
  --navy:#07152f;
  --text:#0f172a;
  --muted:#526173;
  --line:#d9e6f7;
  --bg:#f7fbff;
  --white:#fff;
  --red:#e11d48;
  --orange:#f97316;
  --green:#16a34a;
  --gold:#f6bd2b;
  --shadow:0 22px 55px rgba(15,35,80,.12);
  --radius:24px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Meiryo,"Yu Gothic","游ゴシック",YuGothic,"Yu Gothic UI","Hiragino Sans","Noto Sans JP",sans-serif;
  color:#1e293b;
  background:#fff;
  line-height:1.9;
  letter-spacing:0;
  line-break:strict;
}
h1,h2,h3,.btn,.nav,.hero-points,.media-list,.price-heading,.price-main,.price-specs strong{
  word-break:keep-all;
  overflow-wrap:break-word;
  line-break:strict;
}
h1,h2,h3{
  text-wrap:balance;
}
.nowrap{white-space:nowrap}
a{text-decoration:none;color:inherit}
img{max-width:100%}
.container{width:min(1160px,92%);margin:0 auto}
.sp{display:none}

.site-header{
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(255,255,255,.86);
  backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(217,230,247,.8);
}
.header-inner{
  height:76px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.brand{display:flex;align-items:center;gap:12px;font-weight:900}
.brand-mark{
  width:38px;height:38px;
  display:grid;place-items:center;
  border-radius:12px;
  color:#fff;
  background:linear-gradient(135deg,var(--blue),var(--blue2));
  box-shadow:0 10px 22px rgba(15,91,255,.25);
}
.brand-text{display:grid;gap:2px;line-height:1.25}
.brand-name{font-size:24px;color:var(--navy)}
.brand-name span{color:var(--blue)}
.brand-sub{font-size:11px;color:#526173;font-weight:800}
.nav{display:flex;align-items:center;gap:20px;font-size:14px;font-weight:800;color:#233044}
.nav a{transition:.2s}
.nav a:hover{color:var(--blue)}
.nav-btn{
  color:#fff!important;
  padding:11px 18px;
  border-radius:999px;
  background:linear-gradient(135deg,var(--blue),var(--blue2));
  box-shadow:0 10px 24px rgba(15,91,255,.25);
}
.login-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:112px;
  min-height:38px;
  padding:5px 12px;
  border-radius:999px;
  color:var(--blue);
  background:#fff;
  border:1px solid #bcd7ff;
  font-size:12px;
  line-height:1.35;
  text-align:center;
  box-shadow:0 8px 20px rgba(15,91,255,.1);
}
.nav-toggle{
  display:none;
  flex-direction:column;
  justify-content:center;
  gap:5px;
  width:44px;
  height:44px;
  padding:0;
  border:none;
  border-radius:12px;
  background:var(--blue3);
  cursor:pointer;
}
.nav-toggle span{
  display:block;
  width:22px;
  height:2px;
  margin:0 auto;
  background:var(--navy);
  border-radius:2px;
  transition:.2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1){
  transform:translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2){
  opacity:0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3){
  transform:translateY(-7px) rotate(-45deg);
}
.header-inner{position:relative}

.hero{
  position:relative;
  overflow:hidden;
  padding:94px 0 76px;
  background:
    radial-gradient(circle at 78% 18%,rgba(90,165,255,.25),transparent 32%),
    linear-gradient(135deg,#f9fcff 0%,#edf6ff 54%,#ffffff 100%);
}
.hero:before{
  content:"";
  position:absolute;
  inset:auto -180px -260px auto;
  width:720px;height:720px;
  border-radius:50%;
  background:linear-gradient(135deg,rgba(15,91,255,.18),rgba(15,91,255,0));
}
.hero-bg{
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(rgba(15,91,255,.05) 1px,transparent 1px),
    linear-gradient(90deg,rgba(15,91,255,.05) 1px,transparent 1px);
  background-size:44px 44px;
  mask-image:linear-gradient(90deg,transparent,black 38%,black 78%,transparent);
}
.hero-inner{
  position:relative;
  display:grid;
  grid-template-columns:.93fr 1.07fr;
  gap:56px;
  align-items:center;
}
.label{
  margin:0 0 12px;
  color:var(--blue);
  font-size:13px;
  font-weight:900;
  letter-spacing:.12em;
}
.hero h1{
  margin:0 0 24px;
  font-size:56px;
  line-height:1.16;
  letter-spacing:0;
  color:var(--navy);
}
.hero h1 .h-line{display:block}
.hero h1 em{
  font-style:normal;
  color:var(--blue);
  font-size:1.12em;
  background:linear-gradient(transparent 64%,#fff19b 64%);
}
.lead{
  margin:0 0 28px;
  color:#334155;
  font-size:18px;
  font-weight:500;
}
.lead.dark{color:#435266}
.cta-row{display:flex;gap:14px;flex-wrap:wrap}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  padding:0 24px;
  border-radius:14px;
  font-weight:900;
  transition:.2s;
}
.btn-primary{
  color:#fff;
  background:linear-gradient(135deg,var(--blue),var(--blue2));
  box-shadow:0 15px 30px rgba(15,91,255,.28);
}
.btn-primary:hover{transform:translateY(-2px);box-shadow:0 20px 38px rgba(15,91,255,.34)}
.btn-outline{
  color:var(--blue);
  background:#fff;
  border:1px solid #bcd7ff;
}
.hero-points{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
  margin-top:28px;
}
.hero-points div{
  padding:14px 16px;
  border-radius:18px;
  background:rgba(255,255,255,.8);
  border:1px solid rgba(188,215,255,.85);
  box-shadow:0 10px 28px rgba(15,91,255,.08);
}
.hero-points strong{
  display:block;
  font-size:26px;
  line-height:1;
  color:var(--blue);
}
.hero-points span{font-size:12px;font-weight:900;color:#526173}
.hero-card{position:relative}
.hero-person{
  position:absolute;
  right:-18px;
  bottom:-28px;
  z-index:3;
  width:152px;
  height:190px;
  pointer-events:none;
}
.person-head{
  position:absolute;
  left:48px;
  top:0;
  width:54px;
  height:54px;
  border-radius:50%;
  background:#ffd7bd;
  border:3px solid #334155;
  box-shadow:inset -8px -7px 0 rgba(223,120,87,.1);
}
.person-head:before{
  content:"";
  position:absolute;
  left:5px;
  top:-10px;
  width:44px;
  height:26px;
  border-radius:28px 28px 10px 10px;
  background:#334155;
}
.person-head:after{
  content:"";
  position:absolute;
  left:11px;
  top:31px;
  width:9px;
  height:6px;
  border-radius:50%;
  background:#f9a8a8;
  box-shadow:22px 0 0 #f9a8a8;
}
.person-body{
  position:absolute;
  left:34px;
  top:52px;
  width:82px;
  height:90px;
  border-radius:32px 32px 20px 20px;
  background:linear-gradient(135deg,#60a5fa,var(--blue));
  border:3px solid #334155;
  box-shadow:0 18px 34px rgba(15,91,255,.16);
}
.person-arm{
  position:absolute;
  left:18px;
  top:76px;
  width:58px;
  height:18px;
  border-radius:999px;
  background:#ffd7bd;
  border:3px solid #334155;
  transform:rotate(-22deg);
}
.person-laptop{
  position:absolute;
  left:6px;
  bottom:22px;
  width:112px;
  height:54px;
  border-radius:10px 10px 4px 4px;
  background:#fff;
  border:3px solid #334155;
  box-shadow:0 18px 34px rgba(15,35,80,.12);
}
.person-laptop:after{
  content:"";
  position:absolute;
  left:28px;
  top:18px;
  width:56px;
  height:8px;
  border-radius:999px;
  background:#dbeafe;
}
.browser{
  position:relative;
  z-index:1;
  background:#07152f;
  padding:14px;
  border-radius:26px;
  box-shadow:0 30px 80px rgba(7,21,47,.25);
}
.browser-dots{
  height:18px;
  display:flex;
  gap:6px;
  align-items:center;
  margin:0 0 10px 4px;
}
.browser-dots i{width:8px;height:8px;border-radius:50%;background:#7da9ff}
.browser img{display:block;border-radius:16px;background:#fff}
.floating-card{
  position:absolute;
  padding:13px 18px;
  border-radius:999px;
  background:#fff;
  color:var(--blue);
  font-weight:900;
  box-shadow:0 18px 42px rgba(15,91,255,.2);
  border:1px solid #cfe1ff;
}
.card-a{right:-8px;top:38px}
.card-b{left:-12px;bottom:42px}

.media-band{
  background:linear-gradient(135deg,var(--blue2),var(--blue));
  padding:24px 0;
  color:#fff;
}
.media-cards-band{
  padding:34px 0;
}
.media-cards-band .container{
  display:block;
}
.media-cards-band p{
  margin:0 0 18px;
  text-align:center;
  font-size:20px;
}
.media-band .container{display:flex;align-items:center;gap:20px}
.media-band p{margin:0;font-weight:900;white-space:nowrap}
.media-list{
  flex:1;
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:12px;
}
.media-list span{
  background:#fff;
  color:var(--blue);
  text-align:center;
  padding:10px 8px;
  border-radius:999px;
  font-size:13px;
  font-weight:900;
}
.large-media-list span{
  min-height:74px;
  display:grid;
  place-items:center;
  padding:16px 12px;
  border-radius:18px;
  color:var(--navy);
  font-size:18px;
  box-shadow:0 14px 30px rgba(7,21,47,.12);
}
.seo-lead{
  padding:28px 0;
  background:#f8fbff;
  border-bottom:1px solid var(--line);
}
.seo-lead p{
  margin:0;
  color:#435266;
  font-size:16px;
  font-weight:600;
}

.section{padding:72px 0}
.section-head{text-align:center;max-width:900px;margin:0 auto 42px}
.section h2,
.campaign h2,
.contact h2{
  margin:0 0 14px;
  font-size:42px;
  line-height:1.35;
  letter-spacing:0;
  color:var(--navy);
}
.section-head p:not(.label){margin:0;color:var(--muted);font-weight:600;font-size:17px}
.illustration-placeholder{
  min-height:220px;
  display:grid;
  place-items:center;
  margin:4px 0 24px;
  border-radius:26px;
  color:#7a8aa0;
  background:
    linear-gradient(rgba(15,91,255,.06) 1px,transparent 1px),
    linear-gradient(90deg,rgba(15,91,255,.06) 1px,transparent 1px),
    linear-gradient(135deg,#f7fbff,#fff);
  background-size:28px 28px,28px 28px,auto;
  border:2px dashed #bcd7ff;
  font-weight:900;
}
.illustration-placeholder.small{
  min-height:150px;
}
.illustration-frame,
.section-illustration{
  margin:4px 0 24px;
  border-radius:26px;
  background:#fff;
  border:1px solid var(--line);
  box-shadow:0 16px 38px rgba(15,35,80,.09);
  overflow:hidden;
}
.illustration-frame img,
.section-illustration img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
}
.benefit-grid .illustration-frame img{
  object-fit:contain;
  padding:10px;
}
.feature-illustration{
  margin:0 0 20px;
  aspect-ratio:3/2;
  border-radius:20px;
  background:#fff;
  border:1px solid var(--line);
  overflow:hidden;
}
.feature-illustration img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
}
.illustration-frame{
  aspect-ratio:3/2;
}
.illustration-frame.small{
  aspect-ratio:16/10;
}
.section-illustration{
  max-width:760px;
  aspect-ratio:3/2;
  margin:0 auto 36px;
}
.hero-placeholder{
  margin:0 0 18px;
}
.problem{background:#fff}
.problem-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
}
.problem-card{
  position:relative;
  min-height:294px;
  padding:28px 24px;
  border-radius:var(--radius);
  background:#fff;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  overflow:hidden;
}
.problem-card:before{
  content:"";
  position:absolute;
  inset:0 0 auto 0;
  height:6px;
  background:var(--blue);
}
.problem-card .num{
  display:inline-flex;
  width:46px;height:46px;
  align-items:center;justify-content:center;
  border-radius:50%;
  color:#fff;
  background:var(--blue);
  font-weight:900;
}
.problem-card .icon{
  margin:22px 0 18px;
  width:74px;height:74px;
  border-radius:22px;
  display:grid;place-items:center;
  font-size:38px;
  background:var(--blue3);
}
.problem-card h3{margin:0 0 10px;font-size:21px}
.problem-card p{margin:0;color:#526173;font-size:14px;font-weight:600}
.accent-pink:before,.accent-pink .num{background:#e91e63}.accent-pink h3{color:#e91e63}
.accent-blue:before,.accent-blue .num{background:var(--blue)}.accent-blue h3{color:var(--blue)}
.accent-green:before,.accent-green .num{background:#16a34a}.accent-green h3{color:#16a34a}
.accent-orange:before,.accent-orange .num{background:#f97316}.accent-orange h3{color:#f97316}

.cost{
  background:linear-gradient(180deg,#f8fbff 0%,#fff 100%);
}
.cost-inner{
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:52px;
  align-items:center;
}
.cost h2{text-align:left}
.calc-panel{
  padding:28px;
  border-radius:30px;
  background:#fff;
  border:1px solid #cfe1ff;
  box-shadow:var(--shadow);
}
.calc-top{
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  gap:18px;
}
.calc-top div{
  padding:20px;
  border-radius:18px;
  background:#f7fbff;
  border:1px solid var(--line);
  text-align:center;
}
.calc-top span{display:block;color:#526173;font-weight:900}
.calc-top strong{font-size:30px;color:var(--blue)}
.calc-top b{font-size:34px;color:#94a3b8}
.calc-mid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
  margin:18px 0;
}
.calc-mid div{
  text-align:center;
  padding:16px 10px;
  border-radius:18px;
  background:#eff6ff;
}
.calc-mid strong{font-size:34px;color:var(--blue)}
.calc-mid span{font-weight:900;color:#526173}
.calc-result{
  text-align:center;
  padding:24px;
  border-radius:22px;
  color:#fff;
  background:linear-gradient(135deg,var(--blue2),var(--blue));
}
.calc-result span,.calc-result small{display:block;font-weight:800}
.calc-result strong{
  display:block;
  font-size:48px;
  line-height:1.1;
  margin:6px 0;
}

.solution{background:#fff}
.flow{
  display:grid;
  grid-template-columns:1fr 42px 1fr 42px 1fr 42px 1fr;
  gap:0;
  align-items:center;
  margin:0 0 44px;
}
.vertical-flow{
  max-width:820px;
  margin:0 auto;
}
.flow-step{
  display:grid;
  grid-template-columns:120px 1fr;
  gap:18px;
  align-items:center;
  padding:22px 26px;
  border-radius:22px;
  background:#fff;
  border:1px solid var(--line);
  box-shadow:0 14px 34px rgba(15,35,80,.08);
}
.flow-step span{
  display:inline-grid;
  place-items:center;
  min-height:38px;
  border-radius:999px;
  color:#fff;
  background:var(--blue);
  font-size:13px;
  font-weight:900;
}
.flow-step strong{
  color:var(--navy);
  font-size:22px;
  line-height:1.45;
}
.flow-step.danger span{background:var(--red)}
.flow-step.danger strong{color:var(--red)}
.flow-down{
  width:3px;
  height:34px;
  margin:0 auto;
  background:#9ec2ff;
  position:relative;
}
.flow-down:after{
  content:"";
  position:absolute;
  left:50%;
  bottom:-2px;
  width:10px;
  height:10px;
  border-right:3px solid #9ec2ff;
  border-bottom:3px solid #9ec2ff;
  transform:translateX(-50%) rotate(45deg);
}
.flow-item{
  min-height:190px;
  padding:22px 16px;
  text-align:center;
  border-radius:22px;
  background:#fff;
  border:1px solid var(--line);
  box-shadow:0 14px 34px rgba(15,35,80,.08);
}
.flow-item span{
  display:inline-flex;
  width:34px;height:34px;
  align-items:center;justify-content:center;
  border-radius:50%;
  background:var(--blue3);
  color:var(--blue);
  font-weight:900;
}
.flow-item i{display:block;font-style:normal;font-size:34px;margin:10px 0}
.flow-item strong{display:block;font-size:20px;color:var(--blue)}
.flow-item p{margin:6px 0 0;color:#526173;font-size:13px;font-weight:700}
.flow-item.active{
  color:#fff;
  background:linear-gradient(135deg,var(--blue2),var(--blue));
}
.flow-item.active span{background:#fff}
.flow-item.active strong,.flow-item.active p{color:#fff}
.arrow{
  height:2px;
  background:linear-gradient(90deg,var(--blue),#9ec2ff);
  position:relative;
}
.arrow:after{
  content:"";
  position:absolute;
  right:-1px;top:50%;
  width:10px;height:10px;
  border-top:2px solid #9ec2ff;
  border-right:2px solid #9ec2ff;
  transform:translateY(-50%) rotate(45deg);
}
.network-block{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:36px;
  align-items:center;
  padding:34px;
  border-radius:30px;
  background:linear-gradient(135deg,#f7fbff,#fff);
  border:1px solid var(--line);
}
.network{position:relative;height:360px}
.lines{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  z-index:0;
}
.lines line{
  stroke:#78aaff;
  stroke-width:3;
  stroke-dasharray:8 8;
}
.node{
  position:absolute;
  z-index:1;
  width:124px;height:124px;
  border-radius:50%;
  display:grid;place-items:center;
  text-align:center;
  background:#fff;
  color:var(--blue);
  border:2px solid #bfdbfe;
  box-shadow:0 15px 32px rgba(15,91,255,.12);
  font-weight:900;
  font-size:13px;
}
.center-node{
  left:50%;top:50%;
  transform:translate(-50%,-50%);
  width:156px;height:156px;
  background:linear-gradient(135deg,var(--blue2),var(--blue));
  color:#fff;
  font-size:24px;
  line-height:1.25;
}
.n1{left:50%;top:0;transform:translateX(-50%)}
.n2{left:2%;top:34%}
.n3{right:2%;top:34%}
.n4{left:19%;bottom:0}
.n5{right:19%;bottom:0}
.network-copy h3{font-size:30px;line-height:1.35;margin:0 0 18px;color:var(--navy)}
.check-list{list-style:none;margin:0;padding:0}
.check-list li{
  position:relative;
  padding-left:34px;
  margin:13px 0;
  color:#253247;
  font-weight:900;
}
.check-list li:before{
  content:"✓";
  position:absolute;
  left:0;top:0;
  width:22px;height:22px;
  display:grid;place-items:center;
  border-radius:50%;
  color:#fff;
  background:#16a34a;
  font-size:14px;
}

.dashboard{background:#f8fbff}
.dash-inner{
  display:grid;
  grid-template-columns:.82fr 1.18fr;
  gap:44px;
  align-items:center;
}
.dashboard h2{text-align:left}
.mini-points{display:grid;gap:12px;margin-top:22px}
.mini-points div{
  display:flex;align-items:center;gap:10px;
  padding:15px 16px;
  border-radius:16px;
  background:#fff;
  border:1px solid var(--line);
  font-weight:900;
}
.mini-points i{
  font-style:normal;
  color:#fff;
  background:var(--blue);
  width:24px;height:24px;
  border-radius:50%;
  display:grid;place-items:center;
  font-size:13px;
}
.browser.big{border-radius:24px}

.benefit-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:28px;
}
.benefit-grid article{
  padding:42px;
  border-radius:30px;
  background:#fff;
  border:1px solid var(--line);
  box-shadow:0 16px 38px rgba(15,35,80,.09);
}
.benefit-icon{
  width:82px;height:82px;
  display:grid;place-items:center;
  border-radius:24px;
  background:var(--blue3);
  color:var(--blue);
  font-size:40px;
}
.benefit-grid h3{margin:22px 0 10px;font-size:28px;color:var(--blue)}
.benefit-grid p{margin:0;color:#526173;font-weight:600}
.support .benefit-grid,
.support .benefit-grid article,
.support .illustration-frame{
  max-width:100%;
  min-width:0;
}
.support .illustration-frame{
  width:100%;
}
.support .benefit-grid h3{
  overflow-wrap:anywhere;
  word-break:normal;
}

.price{
  background:linear-gradient(180deg,#fff,#edf6ff);
}
.price-card{
  padding:48px;
  text-align:center;
  border:2px solid var(--blue);
  border-radius:34px;
  background:#fff;
  box-shadow:0 24px 70px rgba(15,91,255,.15);
}
.price-card h2 em{
  font-style:normal;
  font-size:56px;
  color:var(--blue);
  background:linear-gradient(transparent 66%,#fff19b 66%);
}
.price-lead{margin:0;color:#526173;font-weight:700}
.price-heading{
  margin:8px 0 0;
  color:var(--navy);
  font-size:30px;
  font-weight:900;
}
.price-main{
  margin:22px auto 30px;
  color:var(--blue);
  font-weight:900;
}
.price-main strong{font-size:96px;line-height:1}
.price-main span{font-size:30px}
.price-specs{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
  margin-bottom:22px;
}
.price-specs div{
  padding:22px;
  border-radius:20px;
  background:#f8fbff;
  border:1px solid var(--line);
}
.price-specs i{
  display:block;
  font-style:normal;
  font-size:34px;
  color:var(--blue);
}
.price-specs b{display:block;color:#526173}
.price-specs strong{display:block;font-size:28px;color:var(--navy)}
.roi{
  display:flex;
  gap:14px;
  justify-content:center;
  align-items:center;
  flex-wrap:wrap;
  padding:20px;
  border-radius:20px;
  background:#eff6ff;
  color:#1e2d43;
  font-weight:900;
}
.roi strong{font-size:28px;color:var(--red)}

.campaign{
  padding:90px 0;
  background:
    radial-gradient(circle at 12% 8%,rgba(255,214,0,.22),transparent 28%),
    linear-gradient(180deg,#fff7ed,#fff);
}
.campaign-card{
  text-align:center;
  padding:48px;
  border-radius:34px;
  background:#fff;
  border:2px solid #f2b72d;
  box-shadow:0 24px 70px rgba(245,158,11,.18);
}
.ribbon{
  display:inline-block;
  padding:11px 42px;
  border-radius:999px;
  color:#07152f;
  background:linear-gradient(135deg,#f59e0b,#fde68a,#f59e0b);
  font-weight:900;
}
.campaign h2{font-size:50px;margin-top:18px}
.campaign-main{
  display:grid;
  grid-template-columns:220px 1fr 170px;
  gap:30px;
  align-items:center;
  margin:30px 0;
}
.limit-badge,.off-badge{
  aspect-ratio:1;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  color:#fff;
  background:radial-gradient(circle at 30% 25%,#ff5a5a,#d90018);
  box-shadow:0 18px 40px rgba(225,29,72,.25);
  font-size:24px;
  font-weight:900;
}
.limit-badge strong{
  font-size:80px;
  line-height:1;
  color:#ffec6a;
}
.off-badge{
  color:#ffec6a;
  font-size:40px;
}
.campaign-price p{
  margin:0 0 8px;
  font-weight:900;
  color:#334155;
  font-size:22px;
}
.campaign-price span{
  display:inline-block;
  padding:5px 12px;
  border-radius:8px;
  background:#dc2626;
  color:#fff;
  font-weight:900;
}
.campaign-price strong{
  display:block;
  color:#dc2626;
  font-size:110px;
  line-height:1;
  letter-spacing:0;
}
.campaign-price small{font-size:28px}
.gold-banner{
  padding:18px;
  border-radius:16px;
  background:linear-gradient(135deg,#f59e0b,#fde68a,#f59e0b);
  color:#07152f;
  font-size:30px;
  font-weight:900;
}
.gold-banner strong{
  color:#dc2626;
  font-size:40px;
}
.campaign-note{
  margin:22px 0;
  font-size:20px;
  font-weight:900;
}
.campaign-lists{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:24px;
  text-align:left;
}
.campaign-lists>div{
  padding:24px;
  border-radius:24px;
  border:1px solid #bfd7ff;
  background:#fff;
}
.campaign-lists h3{
  margin:0 0 16px;
  padding:9px;
  text-align:center;
  border-radius:12px;
  color:#fff;
  background:var(--blue2);
}
.deadline{
  margin:26px 0 0;
  padding:16px;
  border-radius:16px;
  background:#fff1f2;
  color:#dc2626;
  font-weight:900;
  border:1px solid #fecdd3;
}

.contact{
  padding:72px 0;
  text-align:center;
  color:#fff;
  background:linear-gradient(135deg,var(--blue2),var(--blue));
}
.contact h2{color:#fff}
.contact h2{max-width:980px;margin-left:auto;margin-right:auto}
.contact p{font-size:20px;font-weight:700;margin:0}

.hero-badges{grid-template-columns:repeat(5,1fr)}
.hero-badges strong{font-size:20px}

.two-card-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:28px;
}
.three-card-grid{
  grid-template-columns:repeat(3,1fr);
}
.focus-card{
  position:relative;
  padding:36px;
  border-radius:30px;
  background:#fff;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  overflow:hidden;
}
.focus-card:before{
  content:"";
  position:absolute;
  inset:0 0 auto 0;
  height:7px;
  background:linear-gradient(90deg,var(--blue2),var(--blue));
}
.focus-card.accent-sales:before{background:linear-gradient(90deg,#16a34a,var(--blue))}
.focus-card.accent-media:before{background:linear-gradient(90deg,#f6bd2b,var(--blue))}
.card-label{
  margin:0 0 12px;
  color:var(--muted);
  font-size:14px;
  font-weight:900;
}
.focus-card h3{
  margin:0 0 14px;
  color:var(--blue);
  font-size:34px;
  line-height:1.25;
}
.focus-card.accent-sales h3{color:#16a34a}
.focus-card.accent-media h3{color:#b77900}
.focus-card p:not(.card-label){
  margin:0 0 22px;
  color:#435266;
  font-weight:600;
}
.soft-person{
  position:absolute;
  z-index:2;
  width:88px;
  height:132px;
}
.person-blue{right:34px;bottom:18px}
.person-green{left:132px;bottom:18px}
.soft-head{
  position:absolute;
  left:26px;
  top:0;
  width:38px;
  height:38px;
  border-radius:50%;
  background:#ffd7bd;
  border:3px solid #334155;
}
.soft-head:before{
  content:"";
  position:absolute;
  left:3px;
  top:-8px;
  width:30px;
  height:18px;
  border-radius:18px 18px 7px 7px;
  background:#334155;
}
.soft-head:after{
  content:"";
  position:absolute;
  left:7px;
  top:22px;
  width:7px;
  height:5px;
  border-radius:50%;
  background:#f9a8a8;
  box-shadow:16px 0 0 #f9a8a8;
}
.soft-body{
  position:absolute;
  left:16px;
  top:38px;
  width:58px;
  height:70px;
  border-radius:24px 24px 16px 16px;
  background:linear-gradient(135deg,#93c5fd,var(--blue));
  border:3px solid #334155;
}
.person-green .soft-body{background:linear-gradient(135deg,#86efac,#16a34a)}
.soft-arm{
  position:absolute;
  left:4px;
  top:58px;
  width:46px;
  height:14px;
  border-radius:999px;
  background:#ffd7bd;
  border:3px solid #334155;
  transform:rotate(-24deg);
}
.card-illustration{
  position:relative;
  height:170px;
  margin:4px 0 24px;
  border-radius:24px;
  background:
    radial-gradient(circle at 16% 18%,rgba(255,215,189,.42),transparent 20%),
    radial-gradient(circle at 84% 22%,rgba(187,247,208,.45),transparent 22%),
    linear-gradient(135deg,#f7fbff,#fff);
  border:2px solid #dbeafe;
  overflow:hidden;
}
.card-illustration:before{
  content:"";
  position:absolute;
  width:170px;
  height:170px;
  right:-48px;
  top:-62px;
  border-radius:50%;
  background:rgba(15,91,255,.1);
}
.mini-window{
  position:absolute;
  left:24px;
  top:30px;
  width:150px;
  padding:16px;
  border-radius:18px;
  background:#fff;
  box-shadow:0 16px 34px rgba(15,35,80,.12);
  border:2px solid #334155;
}
.mini-window span{
  display:inline-block;
  width:8px;
  height:8px;
  margin-right:5px;
  border-radius:50%;
  background:#8bb8ff;
}
.mini-window b{
  display:block;
  height:10px;
  margin-top:12px;
  border-radius:999px;
  background:#dbeafe;
}
.mini-window b:nth-of-type(2){width:78%;background:#bfdbfe}
.mini-window b:nth-of-type(3){width:58%;background:#93c5fd}
.sync-ring{
  position:absolute;
  left:160px;
  top:52px;
  width:68px;
  height:68px;
  display:grid;
  place-items:center;
  border-radius:50%;
  color:#fff;
  background:linear-gradient(135deg,var(--blue2),var(--blue));
  box-shadow:0 16px 30px rgba(15,91,255,.24);
  font-size:34px;
  font-weight:900;
}
.media-stack{
  position:absolute;
  right:28px;
  top:38px;
  display:grid;
  gap:12px;
}
.media-stack i{
  width:104px;
  height:28px;
  border-radius:999px;
  background:#fff;
  border:2px solid #334155;
  box-shadow:0 10px 22px rgba(15,91,255,.1);
}
.media-stack i:nth-child(2){transform:translateX(-18px)}
.media-stack i:nth-child(3){transform:translateX(8px)}
.phone-card{
  position:absolute;
  left:34px;
  top:26px;
  width:92px;
  height:122px;
  padding:14px;
  border-radius:22px;
  background:#fff;
  border:2px solid #334155;
  box-shadow:0 16px 34px rgba(22,163,74,.14);
}
.phone-card span{
  display:block;
  width:36px;
  height:6px;
  margin:0 auto 18px;
  border-radius:999px;
  background:#cbd5e1;
}
.phone-card strong{
  display:grid;
  place-items:center;
  height:48px;
  border-radius:14px;
  color:#16a34a;
  background:#dcfce7;
  font-size:15px;
}
.phone-card b{
  display:block;
  width:34px;
  height:6px;
  margin:16px auto 0;
  border-radius:999px;
  background:#16a34a;
}
.growth-bars{
  position:absolute;
  right:52px;
  bottom:28px;
  display:flex;
  align-items:flex-end;
  gap:12px;
}
.growth-bars i{
  width:28px;
  border-radius:10px 10px 0 0;
  background:linear-gradient(180deg,#60a5fa,#16a34a);
  box-shadow:0 12px 24px rgba(22,163,74,.16);
}
.growth-bars i:nth-child(1){height:42px}
.growth-bars i:nth-child(2){height:72px}
.growth-bars i:nth-child(3){height:104px}
.customer-bubble{
  position:absolute;
  right:38px;
  top:34px;
  padding:10px 16px;
  border-radius:999px;
  color:#fff;
  background:linear-gradient(135deg,#16a34a,var(--blue));
  border:2px solid #334155;
  font-weight:900;
  box-shadow:0 14px 28px rgba(15,91,255,.18);
}

.loss{background:linear-gradient(180deg,#f8fbff 0%,#fff 100%)}
.loss-flow{
  display:grid;
  grid-template-columns:1fr 70px 1fr;
  gap:0;
  align-items:center;
}
.loss-box{
  min-height:300px;
  padding:34px;
  border-radius:30px;
  background:#fff;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}
.loss-box span{
  display:inline-flex;
  padding:6px 14px;
  border-radius:999px;
  color:#fff;
  background:var(--blue);
  font-size:13px;
  font-weight:900;
}
.loss-box h3{
  margin:18px 0 12px;
  color:var(--navy);
  font-size:30px;
  line-height:1.35;
}
.loss-box p{margin:0;color:#526173;font-weight:600}
.loss-box.danger{border-color:#fecdd3}
.loss-box.danger span{background:var(--red)}
.small-illustration{
  position:relative;
  height:92px;
  margin-bottom:20px;
  border-radius:20px;
  background:#f8fbff;
  border:1px solid var(--line);
  overflow:hidden;
}
.toggle-track{
  position:absolute;
  left:24px;
  top:30px;
  width:96px;
  height:36px;
  border-radius:999px;
  background:#e2e8f0;
}
.toggle-track span{
  position:absolute;
  left:6px;
  top:6px;
  width:24px;
  height:24px;
  border-radius:50%;
  background:#94a3b8;
}
.muted-lines{
  position:absolute;
  right:24px;
  top:22px;
  display:grid;
  gap:9px;
}
.muted-lines i{
  width:150px;
  height:10px;
  border-radius:999px;
  background:#cbd5e1;
}
.muted-lines i:nth-child(2){width:118px}
.muted-lines i:nth-child(3){width:88px}
.missed-call{
  position:absolute;
  left:30px;
  top:26px;
  width:42px;
  height:42px;
  border-radius:50%;
  background:var(--red);
  box-shadow:0 12px 28px rgba(225,29,72,.2);
}
.missed-call:before,
.missed-call:after{
  content:"";
  position:absolute;
  left:13px;
  top:19px;
  width:18px;
  height:4px;
  border-radius:999px;
  background:#fff;
}
.missed-call:before{transform:rotate(45deg)}
.missed-call:after{transform:rotate(-45deg)}
.drop-lines{
  position:absolute;
  left:96px;
  right:24px;
  top:22px;
  display:grid;
  gap:8px;
}
.drop-lines i{
  height:12px;
  border-radius:999px;
  background:#fee2e2;
}
.drop-lines i:nth-child(1){width:100%}
.drop-lines i:nth-child(2){width:76%}
.drop-lines i:nth-child(3){width:54%}
.loss-arrow{
  position:relative;
  height:3px;
  background:linear-gradient(90deg,var(--blue),var(--red));
}
.loss-arrow:after{
  content:"";
  position:absolute;
  right:-1px;
  top:50%;
  width:13px;
  height:13px;
  border-top:3px solid var(--red);
  border-right:3px solid var(--red);
  transform:translateY(-50%) rotate(45deg);
}
.emphasis{
  margin:34px auto 0;
  max-width:900px;
  padding:22px 26px;
  text-align:center;
  border-radius:20px;
  color:var(--blue);
  background:#eff6ff;
  border:1px solid #bfdbfe;
  font-size:20px;
  font-weight:900;
}
.compact-solution-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:28px;
}
.compact-card{
  padding:30px;
  border-radius:30px;
  background:#fff;
  border:1px solid var(--line);
  box-shadow:0 16px 38px rgba(15,35,80,.09);
}
.compact-card h3{
  margin:0 0 14px;
  color:var(--blue);
  font-size:28px;
}
.danger-list li:before{background:var(--red)}

.five-flow{
  grid-template-columns:1fr 34px 1fr 34px 1fr 34px 1fr 34px 1fr;
}
.five-flow .flow-item{min-height:172px}
.feature-grid{grid-template-columns:repeat(3,1fr)}
.feature-grid .problem-card{min-height:440px}
.feature-media-block{
  margin-top:34px;
  padding:30px;
  border-radius:30px;
  background:linear-gradient(135deg,#f7fbff,#fff);
  border:1px solid var(--line);
}
.feature-media-block h3{
  margin:0 0 18px;
  text-align:center;
  color:var(--navy);
  font-size:28px;
}
.feature-media-block.compact{
  margin:22px 0;
  padding:24px;
}
.three-grid{grid-template-columns:repeat(3,1fr)}
.features,.support{background:#fff}
.benefit-icon{
  font-size:32px;
  font-weight:900;
}
.price-specs-wide{grid-template-columns:repeat(4,1fr)}
.price-specs i{
  font-size:28px;
  font-weight:900;
  min-height:42px;
}
.media-note{
  margin:0 0 20px;
  color:#526173;
  font-weight:800;
}
.roi small{
  display:block;
  width:100%;
  color:#526173;
  font-weight:700;
}
.partner{background:linear-gradient(180deg,#fff,#f8fbff)}
.faq{background:#fff}
.faq-list{
  display:flex;
  flex-direction:column;
  gap:18px;
  width:100%;
  max-width:100%;
}
.faq-list article{
  width:100%;
  max-width:100%;
  min-width:0;
  padding:28px 30px;
  border-radius:24px;
  background:#fff;
  border:1px solid var(--line);
  box-shadow:0 12px 30px rgba(15,35,80,.07);
}
.faq-list h3{
  margin:0 0 10px;
  color:var(--navy);
  font-size:22px;
  line-height:1.45;
  overflow-wrap:break-word;
  word-break:normal;
}
.faq-list p{
  margin:0;
  color:#526173;
  font-weight:600;
  overflow-wrap:break-word;
  word-break:normal;
}
.partner-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.partner-grid article{
  padding:30px;
  border-radius:28px;
  background:#fff;
  border:1px solid var(--line);
  box-shadow:0 14px 34px rgba(15,35,80,.08);
}
.partner-grid h3{
  margin:0 0 18px;
  color:var(--blue);
  font-size:24px;
  line-height:1.35;
}
.partner-cta{
  margin-top:30px;
  text-align:center;
}
.contact .label{color:#bfdbfe}
.contact p{
  margin:0 auto 26px;
  max-width:820px;
}
.contact-btn{
  color:var(--blue);
  background:#fff;
  box-shadow:0 15px 30px rgba(7,21,47,.18);
}

@media(max-width:960px){
  .nav-toggle{display:flex}
  .nav{
    display:none;
    position:absolute;
    top:100%;
    left:0;
    right:0;
    flex-direction:column;
    align-items:stretch;
    gap:0;
    padding:12px 4%;
    background:rgba(255,255,255,.98);
    border-bottom:1px solid rgba(217,230,247,.8);
    box-shadow:0 18px 40px rgba(15,35,80,.12);
  }
  .nav.open{display:flex}
  .nav a{
    padding:14px 12px;
    border-bottom:1px solid var(--line);
  }
  .nav a:last-child{border-bottom:none}
  .nav-btn,.login-link{
    text-align:center;
    margin-top:8px;
  }
  .hero-inner,.cost-inner,.dash-inner,.network-block,.two-card-grid,.loss-flow,.compact-solution-grid{grid-template-columns:1fr}
  .hero h1{font-size:44px;line-height:1.22}
  .problem-grid{grid-template-columns:repeat(2,1fr)}
  .flow{grid-template-columns:1fr}
  .five-flow{grid-template-columns:1fr}
  .arrow{height:36px;width:2px;margin:0 auto}
  .arrow:after{right:auto;left:50%;top:auto;bottom:-1px;transform:translateX(-50%) rotate(135deg)}
  .loss-arrow{width:3px;height:46px;margin:0 auto}
  .loss-arrow:after{right:auto;left:50%;top:auto;bottom:-1px;transform:translateX(-50%) rotate(135deg)}
  .media-band .container{display:block}
  .media-list{grid-template-columns:repeat(2,1fr);margin-top:12px}
  .large-media-list{grid-template-columns:repeat(2,1fr)}
  .campaign-main{grid-template-columns:1fr}
  .limit-badge,.off-badge{width:190px;margin:auto}
  .hero-badges{grid-template-columns:repeat(2,1fr)}
  .three-grid,.feature-grid,.partner-grid,.price-specs-wide{grid-template-columns:1fr}
  .hero-person{right:4px;bottom:-20px;transform:scale(.82);transform-origin:right bottom}
}
@media(max-width:640px){
  .section{padding:54px 0}
  .hero{padding:62px 0}
  .sp{display:block}
  .hero h1{font-size:32px;line-height:1.35}
  .hero h1 em{font-size:1.03em}
  .section h2,.campaign h2{font-size:28px;line-height:1.45}
  .lead{font-size:16px;line-height:1.85}
  .section-head p:not(.label){font-size:15px;line-height:1.85}
  .btn{width:100%;min-height:50px}
  .problem-grid,.benefit-grid,.price-specs,.campaign-lists{grid-template-columns:1fr}
  .focus-card,.loss-box,.benefit-grid article,.price-card,.partner-grid article,.compact-card{padding:26px}
  .support .container{width:calc(100% - 28px)}
  .support .benefit-grid{gap:16px;width:100%}
  .support .benefit-grid article{padding:20px}
  .support .illustration-frame.small{aspect-ratio:4/3;margin-bottom:16px}
  .support .benefit-grid h3{font-size:22px;line-height:1.45}
  .faq-list article{padding:22px 18px}
  .faq-list h3{font-size:18px;line-height:1.5}
  .faq-list p{font-size:15px;line-height:1.85}
  .hero-points{grid-template-columns:1fr}
  .hero-badges{grid-template-columns:1fr}
  .card-illustration{height:210px}
  .sync-ring{left:50%;top:68px;transform:translateX(-50%);width:58px;height:58px;font-size:28px}
  .mini-window{left:18px;top:24px;width:126px}
  .media-stack{right:18px;top:92px}
  .media-stack i{width:98px}
  .phone-card{left:22px}
  .growth-bars{right:26px}
  .customer-bubble{right:20px}
  .person-green{left:98px}
  .person-blue{right:18px}
  .soft-person{transform:scale(.86);transform-origin:bottom center}
  .hero-person{display:none}
  .muted-lines i{width:112px}
  .muted-lines i:nth-child(2){width:90px}
  .muted-lines i:nth-child(3){width:66px}
  .media-list{grid-template-columns:1fr}
  .large-media-list{grid-template-columns:1fr}
  .large-media-list span{min-height:62px;font-size:17px}
  .illustration-placeholder{min-height:180px}
  .illustration-placeholder.small{min-height:130px}
  .flow-step{grid-template-columns:1fr;gap:10px;text-align:center;padding:20px}
  .flow-step strong{font-size:18px}
  .feature-media-block{padding:22px}
  .price{padding:44px 0}
  .price-card{padding:22px 18px;border-radius:24px}
  .price-card h2{margin-bottom:4px}
  .price-heading{font-size:18px;margin:0}
  .price-main{margin:6px auto 16px}
  .price-main strong{font-size:52px}
  .price-main span{font-size:18px;display:block;margin-top:2px}
  .price-specs{grid-template-columns:repeat(2,1fr);gap:10px;margin-bottom:12px}
  .price-specs div{padding:12px 8px;border-radius:14px}
  .price-specs b{font-size:12px}
  .price-specs strong{font-size:18px}
  .price .feature-media-block.compact{margin:12px 0 0;padding:14px;border-radius:18px}
  .price .feature-media-block h3{font-size:18px;margin-bottom:10px}
  .price .large-media-list{grid-template-columns:repeat(2,1fr);gap:8px}
  .price .large-media-list span{min-height:44px;padding:8px 6px;border-radius:12px;font-size:13px}
  .calc-top,.calc-mid{grid-template-columns:1fr}
  .network{height:500px}
  .node{width:112px;height:112px}
  .center-node{width:140px;height:140px}
  .n2{left:0;top:28%}.n3{right:0;top:28%}
  .n4{left:8%;bottom:4%}.n5{right:8%;bottom:4%}
  .campaign-price strong{font-size:76px}
}
