/* ========================================
   登録支援機関LP — style.css
   Mobile-first responsive design
   Modern / Trust-focused redesign
   ======================================== */

/* --- Reset & Base --- */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;scroll-padding-top:70px}
body{
  font-family:'Noto Sans JP',sans-serif;
  font-weight:400;
  color:#3a3f4b;
  line-height:1.8;
  background:#fff;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;height:auto;display:block}
ul,ol{list-style:none}
button{cursor:pointer;border:none;background:none;font:inherit}
input,select,textarea{font:inherit}

/* --- Utility --- */
.container{
  width:100%;
  max-width:1100px;
  margin:0 auto;
  padding:0 20px;
}
.sp-only{display:inline}
.pc-only{display:none}

@media(min-width:768px){
  .sp-only{display:none}
  .pc-only{display:inline}
  .container{padding:0 32px}
}

/* --- Buttons --- */
.btn{
  display:inline-block;
  font-weight:500;
  text-align:center;
  border-radius:6px;
  transition:opacity .2s;
  white-space:nowrap;
}
.btn:hover{opacity:.85}
.btn:active{opacity:.75}
.btn-cta{
  background:#2d5a7b;
  color:#fff;
  padding:14px 32px;
  font-size:clamp(14px,2vw,16px);
}
.btn-lg{padding:16px 40px;font-size:clamp(15px,2.2vw,18px)}
.btn-full{width:100%;display:block}
.btn-line{
  background:#4a90b8;
  color:#fff;
  padding:14px 32px;
  font-size:clamp(14px,2vw,16px);
  display:inline-flex;
  align-items:center;
  gap:8px;
}
.btn-line:hover{opacity:.85}
.btn-line-icon{width:20px;height:20px;flex-shrink:0}
.btn-contact-line{
  width:100%;
  justify-content:center;
  padding:14px 20px;
  margin-top:16px;
  font-size:15px;
  border-radius:6px;
}

/* --- Header --- */
.header{
  position:fixed;
  top:0;left:0;right:0;
  z-index:1000;
  background:rgba(26,36,64,.97);
  backdrop-filter:blur(8px);
  box-shadow:0 1px 4px rgba(0,0,0,.08);
  transition:box-shadow .3s;
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  max-width:1100px;
  margin:0 auto;
  padding:0 20px;
  height:64px;
}
.header-logo{font-size:16px;color:#fff;font-weight:500;display:flex;gap:4px}
.logo-main{color:#fff}
.logo-accent{color:#8bb8d0}
.header-nav{display:none}
.header-actions{display:none}

.hamburger{
  display:flex;
  flex-direction:column;
  gap:5px;
  width:28px;
  padding:4px 0;
}
.hamburger span{
  display:block;
  height:2px;
  background:#fff;
  border-radius:2px;
  transition:transform .3s,opacity .3s;
}
.hamburger.active span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.hamburger.active span:nth-child(2){opacity:0}
.hamburger.active span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

@media(min-width:768px){
  .header-inner{height:72px}
  .header-logo{font-size:18px}
  .hamburger{display:none}
  .header-nav{display:none}
  .header-actions{
    display:flex;
    align-items:center;
    gap:16px;
  }
  .header-phone{
    display:flex;
    align-items:center;
    gap:6px;
    color:#fff;
    font-size:14px;
    font-weight:400;
  }
  .header-cta{padding:10px 24px;font-size:14px}
}

/* Mobile nav overlay */
.header-nav.open{
  display:flex;
  flex-direction:column;
  position:fixed;
  top:64px;left:0;right:0;
  background:rgba(26,36,64,.98);
  padding:24px 20px;
  gap:0;
  animation:slideDown .3s ease;
}
.header-nav.open a{
  display:block;
  color:#fff;
  font-size:16px;
  padding:14px 0;
  border-bottom:1px solid rgba(255,255,255,.08);
}

@keyframes slideDown{from{opacity:0;transform:translateY(-10px)}to{opacity:1;transform:translateY(0)}}

/* --- Hero --- */
.hero{
  padding:clamp(100px,15vw,140px) 0 clamp(60px,10vw,80px);
  background:#1a2440;
  color:#fff;
  overflow:hidden;
}
.hero-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:40px;
  align-items:center;
}
.hero-content{
  text-align:left;
}
.hero-label{
  display:inline-block;
  border-bottom:1px solid rgba(139,184,208,.4);
  padding:0 0 6px;
  font-size:clamp(12px,1.8vw,13px);
  font-weight:400;
  margin-bottom:24px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:rgba(255,255,255,.7);
}
.hero-title{
  font-size:clamp(24px,6.5vw,42px);
  font-weight:500;
  line-height:1.5;
  margin-bottom:16px;
  letter-spacing:.02em;
}
.hero-sub{
  font-size:clamp(13px,3.5vw,16px);
  line-height:1.8;
  color:rgba(255,255,255,.65);
  margin-bottom:28px;
  font-weight:400;
}
.hero-price-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  margin-bottom:28px;
  padding-bottom:28px;
  border-bottom:1px solid rgba(255,255,255,.1);
}
.hero-price{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:4px;
  padding:14px 12px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  border-radius:8px;
}
.hero-price:first-child{
  min-width:0;
}
.price-label{font-size:clamp(11px,1.6vw,13px);color:rgba(255,255,255,.5);font-weight:400;letter-spacing:.08em}
.price-amount{font-size:clamp(16px,2.5vw,20px);font-weight:400;white-space:nowrap}
.price-amount strong{
  font-size:clamp(32px,8vw,50px);
  font-weight:700;
  background:linear-gradient(135deg,#a78bfa,#818cf8,#6dd5ed);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
}
.price-amount small{font-size:clamp(11px,1.4vw,14px);color:rgba(255,255,255,.5)}
.hero-cta{display:flex;gap:12px;flex-wrap:wrap}
.hero-cta .btn{flex:1;min-width:0;text-align:center;justify-content:center}
.hero-cta-note{font-size:12px;color:rgba(255,255,255,.45);margin-top:14px;text-align:center;width:100%}
.hero-visual{
  display:none;
}
.hero-geo{
  width:100%;
  max-width:400px;
  height:auto;
  margin:0 auto;
}

@media(min-width:768px){
  .hero{
    padding:clamp(120px,15vw,160px) 0 clamp(80px,12vw,120px);
  }
  .hero-grid{
    grid-template-columns:1fr 1fr;
    gap:48px;
  }
  .hero-content{
    text-align:left;
  }
  .hero-price-row{
    grid-template-columns:auto auto;
    width:fit-content;
  }
  .hero-price{padding:16px 24px}
  .hero-cta .btn{width:auto}
  .hero-visual{
    display:flex;
    align-items:center;
    justify-content:center;
  }
}

@media(min-width:1024px){
  .hero-grid{
    grid-template-columns:1.1fr .9fr;
    gap:64px;
  }
}

/* --- Sections --- */
.section{padding:clamp(64px,10vw,104px) 0}
.section-sub{background:#f7f8fa}
.section-navy{background:#1a2440}
.section-en{
  text-align:center;
  font-size:12px;
  font-weight:500;
  letter-spacing:.2em;
  color:#2d5a7b;
  margin-bottom:8px;
}
.section-en-white{color:rgba(255,255,255,.45)}
.section-title{
  text-align:center;
  font-size:clamp(22px,4vw,30px);
  font-weight:500;
  margin-bottom:16px;
  line-height:1.4;
  color:#1a2440;
}
.section-title-white{color:#fff}
.section-subtitle{
  text-align:center;
  font-size:clamp(14px,2vw,16px);
  color:#5c6272;
  margin-bottom:clamp(40px,6vw,60px);
  font-weight:400;
}
.section-subtitle-white{color:rgba(255,255,255,.7)}
.section-cta{text-align:center;margin-top:clamp(36px,5vw,52px)}

/* --- Cards (課題) --- */
.cards-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:16px;
}
.card{
  background:#fff;
  border-radius:8px;
  padding:24px;
  border:1px solid #e2e5ea;
  transition:border-color .2s;
}
.card:hover{border-color:#c8cdd6}
.card-icon{margin-bottom:12px;line-height:1}
.card h3{font-size:clamp(15px,2.2vw,17px);font-weight:500;margin-bottom:8px;color:#1a2440}
.card p{font-size:14px;color:#5c6272;line-height:1.7}

@media(min-width:768px){
  .cards-grid{grid-template-columns:repeat(2,1fr);gap:20px}
}
@media(min-width:1024px){
  .cards-grid{grid-template-columns:repeat(3,1fr);gap:24px}
}

/* --- Pillars (4つの強み) --- */
.pillars{
  display:grid;
  grid-template-columns:1fr;
  gap:24px;
}
.pillar{
  text-align:center;
  padding:32px 24px;
  background:#f7f8fa;
  border-radius:8px;
  border:1px solid #e2e5ea;
  position:relative;
}
.pillar-number{
  position:absolute;
  top:16px;left:20px;
  font-size:48px;
  font-weight:700;
  color:rgba(45,90,123,.06);
  line-height:1;
}
.pillar-icon{margin-bottom:16px}
.pillar h3{font-size:clamp(17px,2.5vw,20px);font-weight:500;color:#1a2440;margin-bottom:12px}
.pillar p{font-size:14px;color:#5c6272;line-height:1.8;max-width:360px;margin:0 auto}

@media(min-width:768px){
  .pillars{grid-template-columns:repeat(2,1fr);gap:32px}
  .pillars-4{grid-template-columns:repeat(2,1fr)}
}
@media(min-width:1024px){
  .pillars{grid-template-columns:repeat(3,1fr)}
  .pillars-4{grid-template-columns:repeat(4,1fr)}
}

/* --- Comparison Table (法的優位性) --- */
.ctable-wrap{
  overflow-x:auto;
  -webkit-overflow-scrolling:touch;
  margin-bottom:32px;
}
.ctable{
  width:100%;
  min-width:640px;
  border-collapse:separate;
  border-spacing:0;
  background:#fff;
  border-radius:12px;
  overflow:hidden;
  box-shadow:0 1px 3px rgba(0,0,0,.04);
  border:1px solid #e2e5ea;
}
.ctable th,.ctable td{
  padding:18px 22px;
  font-size:14px;
  vertical-align:middle;
  border-bottom:1px solid #eef0f3;
}
.ctable-corner{
  width:22%;
  background:#f7f8fa;
}
.ctable-th-other,
.ctable-th-ours{
  text-align:center;
  font-size:14px;
  font-weight:600;
  letter-spacing:.03em;
  width:39%;
}
.ctable-th-other{
  background:#f7f8fa;
  color:#5c6272;
}
.ctable-th-ours{
  background:#2d5a7b;
  color:#fff;
}
.ctable-label{
  font-weight:500;
  color:#1a2440;
  background:#f7f8fa;
  border-right:1px solid #eef0f3;
}
.ctable-other,.ctable-ours{
  text-align:center;
}
.ctable-other strong,.ctable-ours strong{
  display:block;
  font-size:13px;
  font-weight:600;
  margin-bottom:3px;
}
.ctable-other strong{color:#a0a5b0}
.ctable-ours strong{color:#2d5a7b}
.ctable-other span,.ctable-ours span{
  display:block;
  font-size:12px;
  color:#8a8f9e;
  line-height:1.4;
}
.ctable-x,.ctable-o,.ctable-tri{
  width:18px;
  height:18px;
  fill:none;
  stroke-width:2.5;
  stroke-linecap:round;
  stroke-linejoin:round;
  display:block;
  margin:0 auto 6px;
}
.ctable-x{stroke:#c0392b}
.ctable-tri{stroke:#e67e22}
.ctable-o{stroke:#2d5a7b}
.ctable-danger{color:#c0392b !important}
.ctable-warn{color:#e67e22 !important}
.ctable-ours{
  background:rgba(45,90,123,.02);
}
.ctable-price{
  font-size:20px;
  font-weight:700;
  margin-bottom:4px;
}
.ctable-price small{
  font-size:12px;
  font-weight:400;
}
.ctable-other .ctable-price{color:#5c6272}
.ctable-price-ours{color:#2d5a7b}
.ctable-row-price td{border-bottom:none}
.ctable-row-price .ctable-ours{
  background:rgba(45,90,123,.05);
}
tbody tr:hover .ctable-other,
tbody tr:hover .ctable-ours{
  background:rgba(45,90,123,.03);
}
tbody tr:hover .ctable-label{
  background:#f0f2f6;
}

@media(max-width:767px){
  .ctable-wrap{overflow:visible}
  .ctable,.ctable thead,.ctable tbody,.ctable tr,.ctable th,.ctable td{
    display:block;
    width:100%;
  }
  .ctable{min-width:0;border:none;box-shadow:none;background:transparent}
  .ctable thead{
    display:block;
    margin-bottom:16px;
  }
  .ctable thead tr{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:8px;
  }
  .ctable-corner{display:none !important;width:0;height:0;padding:0;margin:0;border:none}
  .ctable-th-other{
    border-radius:8px;
    padding:10px 6px;
    width:auto;
    border:2px solid #8a8f9e;
    background:#f7f8fa;
    font-size:11px;
    white-space:nowrap;
  }
  .ctable-th-ours{
    border-radius:8px;
    padding:10px 6px;
    width:auto;
    font-size:11px;
    white-space:nowrap;
  }
  .ctable tbody tr{
    background:#fff;
    border:1px solid #e2e5ea;
    border-radius:10px;
    margin-bottom:10px;
    overflow:visible;
  }
  .ctable-label{
    font-size:13px;
    padding:12px 16px;
    background:#f0f4f8;
    border-right:none;
    border-bottom:1px solid #eef0f3;
    font-weight:600;
  }
  .ctable-other,.ctable-ours{
    display:inline-flex;
    align-items:flex-start;
    gap:8px;
    padding:10px 12px;
    text-align:left;
    vertical-align:top;
    width:calc(50% - 4px);
    box-sizing:border-box;
  }
  .ctable-other{
    border-right:1px solid #eef0f3;
    border-bottom:none;
  }
  .ctable-ours{background:rgba(45,90,123,.03)}
  .ctable-x,.ctable-o,.ctable-tri{
    margin:0;
    flex-shrink:0;
    width:16px;
    height:16px;
    margin-top:1px;
  }
  .ctable-other strong,.ctable-ours strong{
    display:block;
    margin-bottom:2px;
    font-size:12px;
  }
  .ctable-other span,.ctable-ours span{
    display:block;
    font-size:11px;
  }
  .ctable-price{font-size:18px}
  .ctable-row-price .ctable-ours{background:rgba(45,90,123,.05)}
}

/* Info box (replaces warning box) */
.info-box{
  background:#f7f8fa;
  border-left:4px solid #1a2440;
  border-radius:0 8px 8px 0;
  padding:24px 28px;
  margin-top:32px;
}
.info-box-content h3{
  font-size:clamp(15px,2vw,17px);
  color:#1a2440;
  margin-bottom:8px;
  font-weight:500;
}
.info-box-content p{font-size:14px;line-height:1.8;color:#5c6272}

/* --- Pricing --- */
.pricing-comparison{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:16px;
  margin-bottom:48px;
}
.pricing-arrow{
  transform:rotate(90deg);
  color:#2d5a7b;
  flex-shrink:0;
}
.pricing-card{
  width:100%;
  max-width:400px;
  border-radius:8px;
  overflow:hidden;
  border:1px solid #e2e5ea;
}
.pricing-card-header{
  padding:16px 24px;
  text-align:center;
  position:relative;
}
.pricing-card-header h3{font-size:16px;font-weight:500}
.pricing-other .pricing-card-header{background:#f0f1f3;color:#5c6272}
.pricing-ours .pricing-card-header{background:#1a2440;color:#fff}
.pricing-badge{
  display:inline-block;
  background:rgba(255,255,255,.2);
  color:#fff;
  font-size:12px;
  font-weight:500;
  padding:2px 12px;
  border-radius:100px;
  margin-left:8px;
}
.pricing-card-body{
  background:#fff;
  padding:24px;
  text-align:center;
}
.pricing-amount{font-size:16px;color:#5c6272;margin-bottom:8px}
.amount-large{font-size:clamp(32px,5.5vw,44px);font-weight:700;color:#3a3f4b}
.amount-sep{font-size:clamp(20px,3vw,28px);opacity:.5;font-weight:400;margin:0 2px}
.amount-large.accent{color:#2d5a7b}
.pricing-annual{font-size:14px;color:#5c6272;margin-bottom:4px}
.pricing-source{
  font-size:11px;
  color:#a0a5b0;
  margin:6px 0 0;
  padding:0 4px;
  text-align:right;
}
.pricing-source a{
  color:#a0a5b0;
  text-decoration:underline;
  text-underline-offset:2px;
  transition:color .2s;
}
.pricing-source a:hover{
  color:#2d5a7b;
}
.pricing-save{
  font-size:14px;
  color:#2d5a7b;
  margin-top:8px;
  padding-top:8px;
  border-top:1px solid #e2e5ea;
  font-weight:500;
}

@media(min-width:768px){
  .pricing-comparison{
    flex-direction:row;
    justify-content:center;
    gap:24px;
  }
  .pricing-arrow{transform:rotate(0)}
}

/* Included services */
.included-services{
  background:#f7f8fa;
  border-radius:8px;
  padding:32px;
  margin-bottom:16px;
  border:1px solid #e2e5ea;
}
.included-services h3{
  text-align:center;
  font-size:clamp(16px,2.2vw,20px);
  font-weight:500;
  color:#1a2440;
  margin-bottom:24px;
}
.included-label{
  text-align:center;
  font-size:15px;
  font-weight:500;
  color:#1a2440;
  margin-bottom:24px;
  letter-spacing:.03em;
}
.included-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:12px;
}
.included-card{
  display:flex;
  align-items:center;
  gap:14px;
  background:#fff;
  border:1px solid #e2e5ea;
  border-radius:8px;
  padding:16px 18px;
  transition:border-color .2s;
}
.included-card:hover{border-color:#2d5a7b}
.included-icon{
  width:40px;
  height:40px;
  background:#f0f4f8;
  border-radius:8px;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}
.included-name{
  font-size:14px;
  color:#3a3f4b;
  line-height:1.4;
}
.pricing-note{text-align:center;font-size:13px;color:#8a8f9e;margin-top:16px}

@media(min-width:768px){
  .included-grid{grid-template-columns:repeat(4,1fr);gap:16px}
  .included-card{
    flex-direction:column;
    text-align:center;
    padding:24px 16px;
    gap:12px;
  }
}

/* --- Recruitment (人材紹介) --- */
.recruit-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:32px;
}
.recruit-content{
  display:flex;
  flex-direction:column;
  gap:24px;
}
.recruit-point{
  background:#fff;
  border-radius:8px;
  padding:28px 24px;
  border:1px solid #e2e5ea;
}
.recruit-point h3{
  font-size:clamp(16px,2.2vw,18px);
  font-weight:500;
  color:#1a2440;
  margin-bottom:12px;
}
.recruit-point p{
  font-size:14px;
  color:#5c6272;
  line-height:1.8;
}
.recruit-point strong{color:#1a2440}
.recruit-fields{
  background:#fff;
  border-radius:8px;
  padding:28px 24px;
  border:1px solid #e2e5ea;
}
.recruit-fields h3{
  font-size:clamp(15px,2vw,17px);
  font-weight:500;
  color:#1a2440;
  margin-bottom:20px;
  text-align:center;
}
.recruit-fields h3 small{
  display:inline-block;
  font-size:12px;
  font-weight:400;
  color:#fff;
  background:#2d5a7b;
  border-radius:100px;
  padding:2px 12px;
  margin-left:8px;
  vertical-align:middle;
}
.fields-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:8px;
}
.field-item{
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border-radius:6px;
  background:#f7f8fa;
  border:1px solid #eef0f3;
  transition:border-color .2s;
}
.field-item:hover{border-color:#c8cdd6}
.field-item svg{flex-shrink:0;opacity:.7}
.field-item span{
  font-size:13px;
  color:#3a3f4b;
  font-weight:400;
  line-height:1.3;
}

@media(min-width:480px){
  .fields-grid{grid-template-columns:repeat(2,1fr)}
}
@media(min-width:768px){
  .recruit-grid{grid-template-columns:1fr 1fr;gap:32px;align-items:start}
}
@media(min-width:1024px){
  .fields-grid{grid-template-columns:repeat(4,1fr)}
}

/* --- Support items (10項目) --- */
.support-items{
  display:grid;
  grid-template-columns:1fr;
  gap:16px;
  margin-bottom:48px;
}
.support-item{
  display:flex;
  align-items:flex-start;
  gap:16px;
  background:#fff;
  border-radius:8px;
  padding:20px;
  border:1px solid #e2e5ea;
}
.support-num{
  flex-shrink:0;
  width:40px;height:40px;
  display:flex;align-items:center;justify-content:center;
  background:#f7f8fa;
  color:#2d5a7b;
  font-weight:500;
  font-size:14px;
  border-radius:8px;
  border:1px solid #e2e5ea;
}
.support-item h4{font-size:15px;font-weight:500;color:#1a2440;margin-bottom:4px}
.support-item p{font-size:13px;color:#5c6272;line-height:1.7}

@media(min-width:768px){
  .support-items{grid-template-columns:repeat(2,1fr);gap:20px}
}

/* Additional services */
.additional-services{
  background:#f7f8fa;
  border-radius:8px;
  padding:32px;
  border:1px solid #e2e5ea;
}
.additional-services h3{
  font-size:clamp(16px,2.2vw,20px);
  font-weight:500;
  color:#1a2440;
  margin-bottom:20px;
  text-align:center;
}
.additional-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:16px;
}
.additional-item{
  background:#fff;
  border-radius:8px;
  padding:20px;
  border:1px solid #e2e5ea;
}
.additional-item h4{font-size:15px;font-weight:500;color:#2d5a7b;margin-bottom:4px}
.additional-item p{font-size:13px;color:#5c6272}

@media(min-width:768px){
  .additional-grid{grid-template-columns:repeat(2,1fr)}
  .additional-grid-3{grid-template-columns:repeat(2,1fr)}
  .additional-grid-4{grid-template-columns:repeat(2,1fr)}
}
@media(min-width:1024px){
  .additional-grid{grid-template-columns:repeat(2,1fr)}
  .additional-grid-3{grid-template-columns:repeat(3,1fr)}
  .additional-grid-4{grid-template-columns:repeat(4,1fr)}
}

/* --- Timeline (流れ) --- */
.timeline{
  max-width:640px;
  margin:0 auto;
  position:relative;
  padding-left:32px;
}
.timeline::before{
  content:'';
  position:absolute;
  left:11px;top:0;bottom:0;
  width:2px;
  background:#e2e5ea;
}
.timeline-item{
  position:relative;
  padding-bottom:32px;
}
.timeline-item:last-child{padding-bottom:0}
.timeline-step{
  position:absolute;
  left:-32px;top:2px;
  width:24px;height:24px;
  background:#2d5a7b;
  color:#fff;
  font-size:0;
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  z-index:1;
}
.timeline-step::after{
  content:'';
  width:8px;height:8px;
  background:#fff;
  border-radius:50%;
}
.timeline-content{
  background:#fff;
  border-radius:8px;
  padding:20px 24px;
  border:1px solid #e2e5ea;
}
.timeline-content h3{font-size:clamp(15px,2vw,17px);font-weight:500;color:#1a2440;margin-bottom:6px}
.timeline-content p{font-size:14px;color:#5c6272;line-height:1.7}

@media(min-width:768px){
  .timeline{padding-left:48px}
  .timeline::before{left:19px}
  .timeline-step{
    left:-48px;
    width:40px;height:40px;
    font-size:11px;
  }
  .timeline-step::after{display:none}
  .timeline-item:nth-child(1) .timeline-step{font-size:11px}
  .timeline-item:nth-child(2) .timeline-step{font-size:11px}
  .timeline-item:nth-child(3) .timeline-step{font-size:11px}
  .timeline-item:nth-child(4) .timeline-step{font-size:11px}
  .timeline-item:nth-child(5) .timeline-step{font-size:11px}
}

/* --- FAQ --- */
.faq-list{max-width:800px;margin:0 auto}
.faq-item{
  border-bottom:1px solid #e2e5ea;
}
.faq-question{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:20px 0;
  font-size:clamp(14px,2vw,16px);
  font-weight:500;
  color:#1a2440;
  text-align:left;
  gap:16px;
}
.faq-arrow{
  flex-shrink:0;
  transition:transform .3s;
  color:#2d5a7b;
}
.faq-question[aria-expanded="true"] .faq-arrow{transform:rotate(180deg)}
.faq-answer{
  max-height:0;
  overflow:hidden;
  transition:max-height .3s ease,padding .3s ease;
}
.faq-answer p{
  padding:0 0 20px;
  font-size:14px;
  color:#5c6272;
  line-height:1.8;
}

/* --- Contact --- */
.contact-wrap{
  display:grid;
  grid-template-columns:1fr;
  gap:32px;
  max-width:940px;
  margin:0 auto;
}
.contact-info{display:flex;flex-direction:column;gap:28px}
/* Gradient accent text */
.grad-accent{
  background:linear-gradient(135deg,#a78bfa,#818cf8,#6dd5ed);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
  font-weight:500;
}
.grad-accent-light{
  background:linear-gradient(135deg,#c4b5fd,#93c5fd);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
}

.contact-message{
  border-bottom:1px solid rgba(255,255,255,.08);
  padding-bottom:28px;
}
.contact-message-title{
  font-size:clamp(20px,3.2vw,26px);
  font-weight:500;
  color:#fff;
  line-height:1.55;
  margin-bottom:16px;
  letter-spacing:.01em;
}
.contact-message-text{
  font-size:14px;
  line-height:1.9;
  color:rgba(255,255,255,.6);
  margin-bottom:22px;
}
.contact-price-highlight{
  display:flex;
  align-items:baseline;
  flex-wrap:wrap;
  gap:4px 8px;
  margin-bottom:22px;
  padding:16px 20px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.1);
  border-radius:8px;
}
.contact-price-label{
  font-size:12px;
  color:rgba(255,255,255,.5);
  letter-spacing:.06em;
}
.contact-price-value{
  font-size:16px;
  color:rgba(255,255,255,.85);
}
.contact-price-value strong{
  font-size:clamp(28px,5vw,38px);
  font-weight:700;
  background:linear-gradient(135deg,#a78bfa,#818cf8,#6dd5ed);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
}
.contact-price-sep{
  font-size:18px;
  color:rgba(255,255,255,.2);
  margin:0 4px;
}
.contact-checklist{
  display:flex;
  flex-direction:column;
  gap:14px;
}
.contact-checklist li{
  display:flex;
  align-items:center;
  gap:12px;
  font-size:clamp(16px,2.2vw,18px);
  color:rgba(255,255,255,.85);
  line-height:1.5;
  font-weight:500;
}
.contact-checklist li::before{
  content:'';
  flex-shrink:0;
  width:22px;height:22px;
  border-radius:50%;
  border:1.5px solid rgba(167,139,250,.4);
  background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='rgba(167,139,250,.9)' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/12px no-repeat;
}
.contact-details{display:flex;flex-direction:column;gap:16px}
.contact-info-item{display:flex;align-items:center;gap:12px;color:#fff}
.contact-label{font-size:12px;opacity:.6;margin-bottom:2px}
.contact-value{font-size:clamp(17px,2.5vw,20px);font-weight:500;color:#fff;display:block}
.contact-value-sm{font-size:clamp(14px,2vw,16px)}
.contact-value-text{font-size:14px;line-height:1.7;color:rgba(255,255,255,.8)}
.contact-note{font-size:12px;opacity:.5;margin-top:2px}

.contact-form{
  background:#fff;
  border-radius:8px;
  padding:clamp(24px,4vw,32px);
}
.form-honeypot{position:absolute;left:-9999px}
.form-group{margin-bottom:16px}
.form-label{
  display:block;
  font-size:14px;
  font-weight:500;
  color:#3a3f4b;
  margin-bottom:6px;
}
.required{
  font-size:11px;
  color:#fff;
  background:#2d5a7b;
  border-radius:4px;
  padding:1px 6px;
  margin-left:6px;
  font-weight:400;
}
.form-input,.form-select,.form-textarea{
  width:100%;
  padding:12px 16px;
  border:1px solid #e2e5ea;
  border-radius:6px;
  font-size:15px;
  transition:border-color .2s,box-shadow .2s;
  background:#fff;
}
.form-input:focus,.form-select:focus,.form-textarea:focus{
  outline:none;
  border-color:#2d5a7b;
  box-shadow:0 0 0 3px rgba(45,90,123,.1);
}
.form-input.error,.form-select.error,.form-textarea.error{
  border-color:#c0392b;
  box-shadow:0 0 0 3px rgba(192,57,43,.1);
}
.form-textarea{resize:vertical}
.form-privacy{margin:20px 0}
.checkbox-label{
  display:flex;
  align-items:center;
  gap:8px;
  font-size:14px;
  color:#3a3f4b;
  cursor:pointer;
}
.checkbox-label a{color:#2d5a7b;text-decoration:underline}

@media(min-width:768px){
  .contact-wrap{grid-template-columns:1fr 1.3fr;gap:40px;align-items:start}
}

/* --- Footer --- */
.footer{
  background:#111827;
  color:rgba(255,255,255,.8);
  padding:48px 0 24px;
}
.footer-top{
  display:grid;
  grid-template-columns:1fr;
  gap:40px;
  margin-bottom:32px;
  padding-bottom:24px;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.footer-info{min-width:0}
.footer-logo{font-size:20px;font-weight:500;margin-bottom:20px}
.footer-contact-list{
  display:flex;
  flex-direction:column;
  gap:10px;
  margin-bottom:20px;
}
.footer-contact-item{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:13px;
  color:rgba(255,255,255,.5);
}
.footer-contact-item svg{flex-shrink:0;color:rgba(139,184,208,.5)}
.footer-contact-item a{color:rgba(255,255,255,.6);transition:color .2s}
.footer-contact-item a:hover{color:#8bb8d0}
.footer-group{
  padding-top:16px;
  border-top:1px solid rgba(255,255,255,.06);
}
.footer-group-label{
  font-size:11px;
  color:rgba(255,255,255,.4);
  letter-spacing:.08em;
  margin-bottom:8px;
}
.footer-group-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:13px;
  color:rgba(255,255,255,.6);
  transition:color .2s;
}
.footer-group-link svg{color:rgba(139,184,208,.5)}
.footer-group-link:hover{color:#8bb8d0}
.footer-group-meta{
  display:flex;
  flex-wrap:wrap;
  gap:4px 12px;
  margin-top:6px;
  padding-left:24px;
  font-size:11px;
  color:rgba(255,255,255,.35);
}

.footer-nav{
  display:grid;
  grid-template-columns:1fr;
  gap:28px;
}
.footer-nav-group{
  display:flex;
  flex-direction:column;
  gap:6px;
}
.footer-nav-title{
  font-size:12px;
  font-weight:500;
  color:rgba(255,255,255,.6);
  letter-spacing:.08em;
  margin-bottom:8px;
  padding-bottom:8px;
  border-bottom:1px solid rgba(255,255,255,.06);
}
.footer-services-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:6px 16px;
}
.footer-services-grid a,
.footer-nav-group > a{
  display:flex;
  align-items:center;
  gap:8px;
  font-size:13px;
  color:rgba(255,255,255,.45);
  transition:color .2s;
  padding:3px 0;
}
.footer-services-grid a svg{flex-shrink:0;color:rgba(139,184,208,.4)}
.footer-services-grid a:hover,
.footer-nav-group > a:hover{color:#fff}
.footer-nav-group > a{padding:3px 0}

.footer-copy{
  text-align:center;
  font-size:12px;
  color:rgba(255,255,255,.3);
}

@media(min-width:768px){
  .footer-top{grid-template-columns:.9fr 1.1fr;gap:48px}
  .footer-nav{grid-template-columns:1fr auto;gap:40px}
  .footer-services-grid{grid-template-columns:1fr 1fr;gap:4px 24px}
}

/* --- Mobile Bar --- */
.mobile-bar{
  display:flex;
  position:fixed;
  bottom:0;left:0;right:0;
  z-index:999;
  background:#fff;
  box-shadow:0 -1px 8px rgba(0,0,0,.08);
  padding:8px;
  gap:8px;
  transform:translateY(100%);
  transition:transform .3s ease;
}
.mobile-bar.visible{transform:translateY(0)}
.mobile-bar-phone{
  flex:1;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:6px;
  padding:12px;
  background:#1a2440;
  color:#fff;
  border-radius:6px;
  font-size:14px;
  font-weight:500;
}
.mobile-bar-line{
  flex:1;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:4px;
  padding:12px;
  background:#4a90b8;
  color:#fff;
  border-radius:6px;
  font-size:14px;
  font-weight:500;
}
.mobile-bar-cta{
  flex:1;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:12px;
  background:#2d5a7b;
  color:#fff;
  border-radius:6px;
  font-size:14px;
  font-weight:500;
}

@media(min-width:768px){
  .mobile-bar{display:none}
}

/* --- Scroll animation --- */
.fade-in{
  opacity:0;
  transform:translateY(24px);
  transition:opacity .6s ease,transform .6s ease;
}
.fade-in.visible{
  opacity:1;
  transform:translateY(0);
}

/* --- Mobile responsive fixes (< 480px) --- */
@media(max-width:479px){
  /* Section titles / subtitles: prevent awkward breaks */
  .section-title{
    font-size:clamp(20px,5.5vw,26px);
    line-height:1.5;
    padding:0 4px;
  }
  .section-subtitle{
    font-size:13px;
    line-height:1.7;
    padding:0 4px;
    margin-bottom:32px;
  }

  /* Buttons: allow wrapping on small screens */
  .btn{white-space:normal}
  .btn-lg{padding:14px 24px;font-size:15px}

  /* Cards padding */
  .card{padding:20px 16px}

  /* Pillars */
  .pillar{padding:24px 16px}
  .pillar-number{font-size:40px;top:12px;left:14px}
  .pillar h3{font-size:16px}

  /* Pricing cards */
  .pricing-card-body{padding:20px 16px}
  .amount-large{font-size:28px}
  .pricing-source{font-size:10px}

  /* Included / Additional services */
  .included-services{padding:24px 16px}
  .included-services h3{font-size:16px}
  .additional-services{padding:24px 16px}
  .additional-services h3{font-size:16px}

  /* Recruit */
  .recruit-point{padding:20px 16px}
  .recruit-point h3{font-size:15px}
  .recruit-fields{padding:20px 16px}
  .recruit-fields h3{font-size:15px}
  .fields-grid{grid-template-columns:1fr 1fr;gap:6px}
  .field-item{padding:8px 8px;gap:6px}
  .field-item svg{width:20px;height:20px}
  .field-item span{font-size:11px}

  /* Included services */
  .included-grid{grid-template-columns:1fr 1fr;gap:8px}
  .included-card{padding:12px;gap:10px}
  .included-icon{width:34px;height:34px}
  .included-icon svg{width:18px;height:18px}
  .included-name{font-size:12px}

  /* Support items */
  .support-item{padding:16px;gap:12px}
  .support-num{width:36px;height:36px;font-size:13px}
  .support-item h4{font-size:14px}
  .support-item p{font-size:12px}

  /* Timeline */
  .timeline-content{padding:16px}
  .timeline-content h3{font-size:15px}
  .timeline-content p{font-size:13px}

  /* FAQ */
  .faq-question{font-size:14px;padding:16px 0;gap:12px}
  .faq-answer p{font-size:13px}

  /* Contact */
  .contact-message-title{font-size:clamp(18px,5vw,22px)}
  .contact-message-text{font-size:13px}
  .contact-checklist li{font-size:14px;gap:10px}
  .contact-checklist li::before{width:20px;height:20px;background-size:10px}
  .contact-price-highlight{padding:12px 14px;gap:4px 6px}
  .contact-price-value strong{font-size:clamp(24px,7vw,32px)}
  .contact-form{padding:20px 16px}

  /* Info box */
  .info-box{padding:20px 16px 20px 20px}
  .info-box-content h3{font-size:15px}
  .info-box-content p{font-size:13px}

  /* Footer */
  .footer-logo{font-size:16px}
}

/* --- Reduced motion --- */
@media(prefers-reduced-motion:reduce){
  *{transition-duration:.01ms !important;animation-duration:.01ms !important;scroll-behavior:auto !important}
}

/* --- Print --- */
@media print{
  .header,.mobile-bar,.btn-cta{display:none}
  .section{padding:24px 0;break-inside:avoid}
  body{font-size:12px;color:#000}
}
