:root{
  --c-primary:#4CAF50;
  --c-trust:#2563EB;
  --c-bg:#F8FAFC;
  --c-text:#1F2937;
  --radius:16px;
  --container:1120px;
  --shadow-sm:0 2px 10px rgba(31,41,55,.08);
  --shadow-md:0 12px 28px rgba(31,41,55,.14);
  --space-2:8px;
  --space-3:12px;
  --space-4:16px;
  --space-5:24px;
  --space-6:32px;
  --space-7:48px;
  --space-8:72px;
  --header-h:72px;
  --c-cta-red:#EF4444;
  --c-cta-red-dark:#DC2626;
}

[hidden]{ display:none !important; }

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:"Noto Sans JP", system-ui, -apple-system, "Segoe UI", sans-serif;
  color:var(--c-text);
  background:var(--c-bg);
  line-height:1.6;
}

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

a{ color:inherit; text-decoration:none; }
a:hover{ opacity:.92; }

.skip-link{
  position:absolute;
  left:-9999px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
}
.skip-link:focus{
  left:16px; top:16px;
  width:auto; height:auto;
  padding:12px 14px;
  background:#fff;
  border-radius:12px;
  box-shadow:var(--shadow-sm);
  z-index:2000;
}

.container{
  width:min(100% - 32px, var(--container));
  margin-inline:auto;
}

.section{
  padding:var(--space-8) 0;
  scroll-margin-top: calc(var(--header-h) + 16px);
}

.section-bg{
  background:linear-gradient(#fff, #fff);
}

.section-title{
  margin:0 0 var(--space-3);
  font-weight:700;
  letter-spacing:.01em;
  font-size:clamp(22px, 2.2vw, 30px);
}
.section-lead{
  margin:0 0 var(--space-6);
  font-weight:400;
  color:rgba(31,41,55,.82);
}

.card{
  background:#fff;
  border-radius:var(--radius);
  box-shadow:var(--shadow-sm);
  padding:var(--space-6);
}

.card-title{
  margin:0 0 10px;
  font-weight:700;
  font-size:18px;
}
.card-text{ margin:0; color:rgba(31,41,55,.85); }

.grid{ display:grid; gap:var(--space-5); }
.grid-2{ grid-template-columns:repeat(2, 1fr); }
.grid-3{ grid-template-columns:repeat(3, 1fr); }

@media (max-width: 1024px){
  :root{ --header-h:64px; }
  .grid-3{ grid-template-columns:repeat(2, 1fr); }
  .header-nav{ display:none; }
  .header-cta{ display:none; }
}
@media (max-width: 640px){
  .grid-2, .grid-3{ grid-template-columns:1fr; }
  .section{ padding:56px 0; }
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:14px 18px;
  border-radius:999px;
  font-weight:700;
  border:2px solid transparent;
  cursor:pointer;
  transition:transform .08s ease, box-shadow .2s ease, opacity .2s ease;
}
.btn:hover{ transform:translateY(-1px); }
.btn:active{ transform:translateY(0); }
.btn-block{ width:100%; }

.btn-primary{
  background:var(--c-primary);
  color:#fff;
  box-shadow:0 14px 24px rgba(76,175,80,.22);
}
.btn-blue{
  background:var(--c-trust);
  color:#fff;
  box-shadow:0 14px 24px rgba(37,99,235,.18);
}
.btn-outline{
  background:#fff;
  color:var(--c-primary);
  border-color:rgba(76,175,80,.55);
  box-shadow:0 10px 22px rgba(31,41,55,.08);
}

.mt-12{ margin-top:12px; }

.site-header{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(255,255,255,.92);
  backdrop-filter:saturate(180%) blur(10px);
  border-bottom:1px solid rgba(31,41,55,.06);
}

.header-inner{
  height:var(--header-h);
  display:flex;
  align-items:center;
  gap:16px;
  justify-content:space-between;
}

.brand{ display:flex; align-items:center; }
.brand-logo{ height:40px; width:auto; }

.header-nav{
  display:flex;
  gap:24px;
  margin-left:auto;
  margin-right:12px;
  font-weight:500;
  color:rgba(31,41,55,.86);
}
.header-nav a{
  padding:10px 8px;
  border-radius:10px;
}
.header-nav a:hover{
  background:rgba(31,41,55,.04);
}

.header-cta{
  display:flex;
  gap:12px;
}

.header-btn-primary{
  background:#EF4444;
  color:#fff;
  border-color:transparent;
  padding:10px 20px;
}
.header-btn-primary:hover{ background:#DC2626; }

.header-btn-secondary{
  background:#fff;
  color:#EF4444;
  border-color:rgba(239,68,68,.65);
  padding:10px 20px;
}
.header-btn-secondary:hover{
  border-color:#EF4444;
}

.header-cta .btn::after,
.mobile-menu-cta .btn::after{
  content:"→";
  font-weight:700;
  line-height:1;
  transform:translateY(-1px);
  display: none;
}

.hamburger{
  margin-left:auto;
  width:44px;
  height:44px;
  border-radius:12px;
  border:1px solid rgba(31,41,55,.10);
  background:#fff;
  display:none;
  align-items:center;
  justify-content:center;
  gap:6px;
  flex-direction:column;
  box-shadow:var(--shadow-sm);
}
.hamburger span{
  width:18px; height:2px;
  background:rgba(31,41,55,.75);
  border-radius:2px;
}
@media (max-width: 1024px){
  .header-nav{ display:none; }  
  .header-cta{ display:none; }   
  .hamburger{ display:flex; margin-left:auto; }
}

.menu-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.35);
  z-index:1200;
}
.mobile-menu{
  position:fixed;
  top:0; right:0;
  width:min(92vw, 360px);
  height:100%;
  background:#fff;
  z-index:1300;
  box-shadow:var(--shadow-md);
  padding:18px;
  display:flex;
  flex-direction:column;
  gap:18px;
}
.mobile-menu-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.mobile-menu-title{
  font-weight:700;
  letter-spacing:.06em;
  color:rgba(31,41,55,.7);
}
.menu-close{
  width:44px; height:44px;
  border-radius:12px;
  border:1px solid rgba(31,41,55,.10);
  background:#fff;
  cursor:pointer;
}
.mobile-menu-nav{
  display:flex;
  flex-direction:column;
  gap:12px;
  padding-top:8px;
}
.mobile-menu-nav a{
  padding:12px 10px;
  border-radius:12px;
  font-weight:500;
  background:rgba(31,41,55,.04);
}
.mobile-menu-cta{
  display:flex;
  flex-direction:column;
  gap:12px;
  margin-top:auto;
}

.hero{
  padding:0;
  position:relative;
}
.hero-media img{
  width:100%;
  height:clamp(420px, 54vh, 640px);
  object-fit:cover;
}
@media (min-width: 1025px){
  .hero-media img{
    height:clamp(480px, 60vh, 720px);
  }
}

.hero-overlay{
  position:absolute;
  inset:0;
  display:flex;
  align-items:flex-end;
  padding-bottom:48px;
}

.hero-cta-box{
  width:min(690px, 100%);
  background:rgba(255,255,255,.88);
  backdrop-filter:saturate(120%) blur(2px);
  padding:0 22px 20px;
}
.hero-title{
  margin-bottom:8px;
  line-height:1.25;
  font-weight:800;
  font-size:clamp(22px, 2.3vw, 34px);
  text-wrap: balance; 
  line-break: normal;   
}
@media (max-width: 640px){
  .hero-title{
    font-size:28px;
    line-height:1.25;
}
}

@media (max-width: 420px){
  .hero-media img{
    height: 66vh;     
    min-height: 520px;  
  }

  .hero-overlay{
    padding-bottom: 16px; 
  }

  .hero-cta-box{
    padding: 0 16px 14px;
  }

  .hero-title{
    font-size: 24px;
    line-height: 1.22;
    letter-spacing: -0.01em;
  }

  .hero-lead{
    font-size: 13px;
    margin-bottom: 10px;
  }

  .hero-actions{
    flex-direction: column;
  }
  .hero-actions .btn{
    width: 100%;
  }

  .hero-proof{
    gap: 8px;
    margin-top: 12px;
  }
  .hero-proof li{
    padding: 6px 10px;
    font-size: 11px;
  }
}

.hero-lead{
  line-height:1.5;
  margin-bottom:14px;
  color:rgba(31,41,55,.86);
}
.hero-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
.hero-note{
  margin:12px 0 0;
  font-size:12px;
  color:rgba(31,41,55,.65);
}

.hero-actions .btn{
  border-radius:6px;
  padding:10px 16px;
  font-size:14px;
  box-shadow:none;
}

.hero-btn-primary{
  background:var(--c-cta-red);
  color:#fff;
  border:2px solid var(--c-cta-red);
}
.hero-btn-primary:hover{
  background:var(--c-cta-red-dark);
  border-color:var(--c-cta-red-dark);
}

.hero-btn-secondary{
  background:#fff;
  color:var(--c-cta-red);
  border:2px solid var(--c-cta-red);
}
.hero-btn-secondary:hover{
  background:rgba(239,68,68,.04);
}
.hero-actions .btn::after{
  content:"→";
  margin-left:6px;
  font-weight:700;
  transform:translateY(-1px);
  display: none;
}

.hero-proof{
  list-style:none;
  padding:0 4px;
  margin:16px 0 0;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.hero-proof li{
  padding:8px 14px;
  border-radius:999px;
  background:rgba(76,175,80,.10);
  color:rgba(31,41,55,.82);
  font-size:12px;
  font-weight:500;
}
.hero-proof li::before{
  content:"✓";
  font-weight:800;
  color:var(--c-primary);
  line-height:1;
  margin-right:3px;
}

.hero-proof strong{
  font-weight:800;
  color:rgba(31,41,55,.92);
}

.metrics{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:var(--space-5);
}
.metric-value{
  font-weight:700;
  font-size:28px;
  color:var(--c-trust);
}
.metric-label{ color:rgba(31,41,55,.72); }

@media (max-width: 1024px){
  .metrics{ grid-template-columns:repeat(2, 1fr); }
}
@media (max-width: 640px){
  .metrics{ grid-template-columns:1fr; }
}


/* --- Pain section --- */
.section.section-pain{
  background:var(--c-primary);
  padding-top:24px;
  padding-bottom:72px; 
}

.pain-frame{
  background:#E0F2E9;
  border:2px solid #4CAF50;
  border-radius:24px;
  padding:32px;
  width:min(900px, 100%);
  margin:0 auto;
}

.pain-head{
  text-align:center;
  margin-bottom:24px;
}

.pain-title{
  text-align:center;
  color:#fff;
  font-weight:900;
  font-size:clamp(28px, 3.4vw, 44px);
  line-height:1.2;
}
.dot-char{
  position:relative;
  display:inline-block;
  padding-top:0.55em;
}

.dot-char::before{
  content:"・";
  position:absolute;
  left:50%;
  top:0;
  transform:translate(-50%, -15%);
  font-size:0.45em;
  line-height:1;
  color:#fff;                 
  pointer-events:none;
}

.pain-lead{
  margin:24px auto 0;
  text-align:center;
  font-size:15px;
  line-height:1.8;
  color:rgba(31,41,55,.75);
  max-width:760px;
}

.pain-illust{
  position:relative;
  margin:0 0 16px;
  display:flex;
  justify-content:center;
}
.pain-illust img{
  width:min(520px, 100%);
  height:auto;
  border-radius:14px;
}

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

@media(min-width:768px){
  .pain-list{
    grid-template-columns:repeat(3, 1fr);
    gap:16px;
  }
  .pain-item{
    padding:20px 16px 20px 54px;
    display:flex;
    align-items:center;
  }
}

.pain-item{
  position:relative;
  background:rgba(255,255,255,.94);
  border:1px solid rgba(31,41,55,.12);
  border-radius:14px;
  padding:14px 16px 14px 54px;
  font-weight:500;
}

.pain-item::before{
  content:"";
  position:absolute;
  left:16px;
  top:50%;
  transform:translateY(-50%);
  width:26px; height:26px;
  border-radius:999px;
  background:rgba(76,175,80,.14);
  border:2px solid rgba(76,175,80,.55);
}
.pain-item::after{
  content:"✓";
  position:absolute;
  left:23px;
  top:50%;
  transform:translateY(-55%);
  color:var(--c-primary);
  font-weight:900;
  font-size:16px;
}

.pain-alert{
  margin:28px auto 0;
  max-width:900px;
  padding:20px 24px;
  background:#FEF08A;       
  color:#1F2937;             
  font-size:22px;
  font-weight:700;
  line-height:1.6;
  text-align:center;
  border-radius:16px;
}

.pain-alert strong{
  color:inherit;                 
  font-weight:700;
  text-decoration: underline;
  text-decoration-color:#DC2626; 
  text-decoration-thickness:3px; 
  text-underline-offset:4px;  
}

.section.section-solution{
  position:relative;
  background:#fff;
  overflow:hidden; 
  z-index:10;
}

.section.section-solution::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(rgba(255,255,255,.75), rgba(255,255,255,.75)),
    url("../img/solution-bg2.jpg") center / cover no-repeat;
  opacity:1;
  z-index:0;
  pointer-events:none;
}

.section.section-solution > .container{
  position:relative;
  z-index:1;
}

.solution-head{
  text-align:center;
  max-width:820px;
  margin:0 auto 32px;
}

.solution-title{
  margin:0;
  font-size:clamp(30px, 3.4vw, 44px);
  font-weight:900;
  line-height:1.3;
  letter-spacing:.02em;
}

.solution-logo{
  display:inline-flex;
  align-items:center;
}

.solution-logo img{
  height:1.1em;
  width:auto;
  vertical-align:middle;
}

.solution-highlight{
  position:relative;
  display:inline-block;
  font-weight:900;
  font-size:1em;
}

.solution-highlight::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0.06em;
  width:100%;
  height:0.38em;
  background:#FACC15;  
  z-index:-1;
  border-radius:4px;
}

.solution-lead{
  margin:16px auto 0;
  max-width:760px;
  font-size:15px;
  line-height:1.8;
  color:rgba(31,41,55,.75);
}

.solution-cards{
  width:min(980px, 100%);
  margin:28px auto 0;
}
.solution-card{
  text-align:center;
  padding:18px 18px;
  background:rgba(255,255,255,.96);
  backdrop-filter:saturate(120%) blur(2px);
  border:1px solid rgba(31,41,55,.10);
  box-shadow:0 8px 18px rgba(31,41,55,.08); /* 控えめ */
  transition:transform .18s ease, box-shadow .22s ease;
}

.solution-icon{
  width:144px;
  aspect-ratio:16 / 9;
  border-radius:24px;
  margin:0 auto 12px;
}

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

.solution-card-title{
  position:relative;
  padding-top:20px;
  margin:0 0 15px;
  font-weight:900;
  font-size:21px;
  line-height:1.35;
  letter-spacing:.02em;
}

.solution-card-title::before{
  content:"";
  position:absolute;
  top:0;
  left:50%;
  transform:translateX(-50%);
  width:44px;
  height:4px;
  border-radius:3px;
  background:var(--c-primary);
}

.solution-card-text{
  margin:0;
  color:rgba(31,41,55,.78);
}


/* =========================
   Curriculum section
========================= */

.section.section-curriculum{
  background:linear-gradient(180deg, rgba(29,78,216,1), rgba(37,99,235,.92));
  color:#fff;
  padding-top: 40px;
}

.curr-head{
  text-align:center;
  max-width:900px;
  margin:0 auto 26px;
}

.curr-kicker{
  margin:0 0 8px;
  font-weight:900;
  letter-spacing:.08em;
  opacity:.92;
}

.curr-title{
  margin:0;
  font-size:clamp(26px, 3.2vw, 40px);
  font-weight:900;
  line-height:1.2;
}

.curr-lead{
  margin:14px auto 0;
  max-width:840px;
  color:rgba(255,255,255,.88);
  line-height:1.9;
  font-size:14px;
}

.curr-metrics{
  width:min(980px, 100%);
  margin:26px auto 0;
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:18px;
}

.metric-card{
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.18);
  border-radius:18px;
  padding:22px 18px;
  text-align:center;
  backdrop-filter:saturate(140%) blur(2px);
  box-shadow:var(--shadow-sm);
}

.metric-icon{
  width:auto;
  height:auto;
  margin:0 auto 10px;
  background:none;
  border:none;
  border-radius:0;
  display:flex;
  align-items:center;
  justify-content:center;
  color:rgba(255,255,255,.95);
}

.metric-svg {
  width:40px;
  height:40px;
  stroke:currentColor;
  fill:none;
  stroke-width:2;
  stroke-linecap:round;
  stroke-linejoin:round;
  display:block;
}

.metric-value{
  margin:10px 0 6px;
  font-weight:900;
  font-size:clamp(34px, 3.2vw, 44px);
  line-height:1.05;
  color:#fff;
  letter-spacing:.02em;
}

.metric-label{
  position:relative;
  display:inline-block;
  margin:0 0 10px;
  font-weight:900;
  color:#fff;
  letter-spacing:.02em;
  padding:0 .2em;              
}
.metric-label::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0.1em;
  width:100%;
  height:0.35em;
  background:rgba(250,204,21,.55);
  z-index:-1;
  border-radius:4px;
}

.metric-text{
  margin:0;
  color:rgba(255,255,255,.86);
  font-size:13px;
  line-height:1.8;
}

@media (max-width: 900px){
  .curr-metrics{ grid-template-columns:1fr; }
  .metric-card{ padding:20px 18px; }
}

.curr-strengths{
  max-width:980px;
  margin:26px auto 0;  
  background:#fff;           
  color:#1f2937;
  border-radius:22px;
  padding:22px 22px;
  box-shadow:var(--shadow-md);
}

.strengths-title{
  margin:0 0 18px;
  text-align:center;
  font-size:26px;
  font-weight:900;
  letter-spacing:.04em;
  color:#0F172A;
}
.strengths-title::after{
  content:"";
  display:block;
  width:48px;
  height:4px;
  margin:10px auto 0;
  border-radius:999px;
  background:rgba(37,99,235,.35);
}

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

.strength-item{
  display:grid;
  grid-template-columns: 70px 1fr;
  gap:14px;
  align-items:flex-start;
  background:#fff;
  border:1px solid rgba(15,23,42,.10);
  border-radius:18px;
  padding:16px 18px;
  box-shadow:var(--shadow-sm);
  position:relative;
  overflow:hidden;
}

.strength-item::after{
  content:"";
  position:absolute;
  right:-40px;
  top:-40px;
  width:140px;
  height:140px;
  border-radius:999px;
  background:rgba(37,99,235,.06);
  pointer-events:none;
}

.strength-num{
  width:56px;
  height:56px;
  border-radius:999px;
  display:grid;
  place-items:center;
  font-weight:900;
  font-size:20px;
  color:#fff;
  background:#2563EB;
}

.strength-head{
  margin:2px 0 6px;
  font-size:18px;
  font-weight:900;
  line-height:1.35;
  color:#0F172A;
  position:relative;
  padding-left:12px;
}

.strength-head::before{
  content:"";
  position:absolute;
  left:0;
  top:.2em;
  width:4px;
  height:1.05em;
  border-radius:999px;
  background:#2563EB;
}

.strength-text{
  margin:0;
  color:rgba(15,23,42,.78);
  line-height:1.8;
  font-size:14px;
}

.strength-text strong{
  font-weight:900;
  background:linear-gradient(transparent 62%, rgba(255,213,79,.55) 62%);
}

@media (max-width: 900px){
  .curr-metrics{
    grid-template-columns: 1fr;
  }
  .metric-card{
    padding:18px;
  }
  .curr-strengths{
    padding:20px;
  }
}

@media (max-width: 640px){
  .curr-head{
    margin-bottom:18px;
  }
  .curr-lead{
    font-size:13px;
  }
  .strength-item{
    grid-template-columns: 40px 1fr;
  }
  .strength-num{
    width:40px;
    height:40px;
  }
}

.section.section-reasons{
  background:#fff;
  padding-top:24px;
}

.reasons-head{
  text-align:center;
  margin-top:0;
  padding-top:0;
}

.reasons-title{
  text-align:center;
  font-size:clamp(26px, 6vw, 40px);
  font-weight:700;
  line-height:1.5;
  letter-spacing:-0.01em;
  margin-top:0;
}

.reasons-logo{
  display:inline-block;
  vertical-align:middle;
  margin-right:8px;
}

.reasons-logo img{
  height:40px;
  width:auto;
  vertical-align:middle;
}

@media (max-width:768px){
  .reasons-logo img{
    height:32px;
  }
}

.reasons-highlight{
  position:relative;
  display:inline-block;
  z-index:0;
}

.reasons-highlight::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0.15em;
  width:100%;
  height:0.5em;
  background:#ffd84d; 
  z-index:-1;
}

.reasons{
  display:grid;
  gap:28px;
}

.reason{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:28px;
  align-items:center;
  padding:26px;
  border-radius:24px;
  background:linear-gradient(180deg, rgba(37,99,235,.06), rgba(76,175,80,.04));
  border:1px solid rgba(31,41,55,.06);
}

.reason.is-reverse{
  grid-template-columns: .95fr 1.05fr;
}
.reason.is-reverse .reason-text{ order:2; }
.reason.is-reverse .reason-media{ order:1; }

.reason-kicker{
  display:flex;
  align-items:baseline;
  gap:10px;
  margin:0 0 10px;
}

.reason-no{
  font-weight:900;
  font-size:44px;
  line-height:1;
  letter-spacing:.02em;
  color:rgba(37,99,235,.35);
}
.reason-label{
  font-weight:800;
  letter-spacing:.12em;
  color:rgba(31,41,55,.55);
  font-size:12px;
}

.reason-title{
  margin:0 0 10px;
  font-weight:900;
  font-size:22px;
  line-height:1.3;
}

.reason-lead{
  margin:0 0 10px;
  font-weight:800;
  color:rgba(31,41,55,.88);
}

.reason-desc{
  margin:0 0 14px;
  color:rgba(31,41,55,.78);
  line-height:1.9;
}

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

.reason-list li{
  position:relative;
  background:#fff;
  border:1px solid rgba(31,41,55,.08);
  border-radius:14px;
  padding:12px 14px 12px 44px;
  line-height:1.6;
}

.reason-list li::before{
  content:"";
  position:absolute;
  left:14px;
  top:50%;
  transform:translateY(-50%);
  width:22px;
  height:22px;
  border-radius:999px;
  background:rgba(76,175,80,.14);
  border:2px solid rgba(76,175,80,.55);
}
.reason-list li::after{
  content:"✓";
  position:absolute;
  left:20px;
  top:50%;
  transform:translateY(-55%);
  font-weight:900;
  color:var(--c-primary);
}

.reason-media{
  border-radius:22px;
  overflow:hidden;
  background:#fff;
  border:1px solid rgba(31,41,55,.08);
}
.reason-media img{
  width:100%;
  height:100%;
  max-height:320px;
  object-fit:cover;
  display:block;
}

@media (max-width: 900px){
  .reason,
  .reason.is-reverse{
    grid-template-columns:1fr;
  }
  .reason.is-reverse .reason-text,
  .reason.is-reverse .reason-media{
    order:initial;
  }
  .reason-media img{ max-height:260px; }
}


/* ===== Intern section ===== */
.section.section-intern{
  background:#FFF3E6; 
}

.intern-head{
  text-align:center;
  max-width:920px;
  margin:0 auto 26px;
}

.intern-title{
  position:relative;
  margin:0 0 42px;
  padding:0 48px; 
  font-weight:900;
  font-size:clamp(26px, 3.4vw, 40px);
  line-height:1.25;
  letter-spacing:.01em;
}

.intern-title::before{
  content:"“";
  position:absolute;
  left:0;
  top:-0.15em;
  font-size:clamp(56px, 6vw, 88px);
  font-weight:900;
  line-height:1;
  color:#EA580C; 
  opacity:.85;
}

.intern-title::after{
  content:"”";
  position:absolute;
  right:0;
  bottom:-0.35em;
  font-size:clamp(56px, 6vw, 88px);
  font-weight:900;
  line-height:1;
  color:#EA580C; 
  opacity:.85;
}

.intern-title::before,
.intern-title::after{
  filter: drop-shadow(0 4px 8px rgba(234,88,12,.25));
  display: none;
}

.intern-lead{
  margin:0 auto;
  max-width:820px;
  color:rgba(31,41,55,.78);
  line-height:1.9;
  font-size:15px;
}

.intern-panels{
  display:grid;
  gap:18px;
  margin-top:18px;
}

.intern-panel-title{
  margin:0 0 22px;
  padding-left:14px;
  position:relative;
  font-weight:900;
  font-size:clamp(18px, 2.2vw, 22px);
  line-height:1.25;
}

.intern-panel-title::before{
  content:"";
  position:absolute;
  left:0;
  top:0.15em;
  width:4px;
  height:1.1em;
  border-radius:999px;
  background:#EA580C; 
}

.intern-dl{
  margin:0;
  display:grid;
  gap:12px;
}
.intern-dl dt{
  margin:0;
  font-weight:800;
  font-size:18px;
  line-height:1.2;
}
.intern-dl dd{
  margin:0 0 12px;
  font-size:14px;
  line-height:1.2;
  color:rgba(31,41,55,.78);
}
.intern-dl dd strong{
  font-weight:900;
  color:#EA580C;
}

.intern-points{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  gap:14px;
}

.intern-point-title{
  font-size:18px;    
  font-weight:800;
  line-height:1.35;
  position:relative;
  padding-left:26px;
}
.intern-point-title::before{
  content:"✓";
  position:absolute;
  left:0;
  top:0.05em;
  color:#EA580C;    
  font-weight:900;
  font-size:16px;
}

.intern-point-text{
  margin-left:26px;
  color:rgba(31,41,55,.76);
  line-height:1.1;
  font-size: 14px;
  margin-bottom: 0;
}

.intern-offer{
  margin-top:28px;
  text-align:center;
}

.intern-offer-title{
  margin:36px 0 32px; 
  font-size:clamp(28px, 4vw, 44px);
  font-weight:900;
  line-height:1.45;
  text-align:center;
}

.intern-logo{
  display:inline-flex;
  align-items:center;
  vertical-align:middle;
}

.intern-logo img{
  height:1.05em;    
  margin-right:6px;
  vertical-align:-0.08em;
  filter:saturate(.9);
}

.intern-feats-card{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:18px;
  margin-top:12px;
  text-align:left; 
}

.intern-feat{
  position:relative;
  background:#fff;
  border-radius:18px;
  padding:22px 22px 22px 28px;
  border:1px solid rgba(31,41,55,.08);
  box-shadow:0 10px 22px rgba(31,41,55,.08);
  overflow:hidden;
}

.intern-feat::before{
  content:"";
  position:absolute;
  left:11px;
  top:18px;
  bottom:18px;
  width:6px;
  border-radius:999px;
  background:linear-gradient(180deg, #F97316, #FB923C);
  filter:drop-shadow(0 2px 6px rgba(249,115,22,.25));
}

.intern-feat::after{
  content:"";
  position:absolute;
  right:-48px;
  top:-48px;
  width:160px;
  height:160px;
  background:rgba(249,115,22,.06);
  border-radius:999px;
  pointer-events:none;
}


.intern-feat-title{
  margin:0 0 10px;
  font-weight:900;
  font-size:18px;
  line-height:1.35;
  letter-spacing:.01em;
}

.intern-feat-text{
  margin:0;
  color:rgba(31,41,55,.78);
  line-height:1.85;
  font-size:14px;
}

.intern-cta{
  display:flex;
  gap:12px;
  justify-content:center;
  margin-top:36px;
  flex-wrap:wrap;
}

@media (max-width: 900px){
  .intern-feats-card{ grid-template-columns:1fr; }
}

.section-languages{
  background:rgba(37,99,235,.06);
  padding-top: 50px;
}

.lang-head{
  text-align:center;
  max-width:880px;
  margin:0 auto 32px;
}

.lang-title{
  margin:0 0 16px;
  font-size:clamp(26px, 3vw, 36px);
  font-weight:900;
}

.lang-kicker{
  margin:0;
  font-weight:900;
  font-size:16px;
  letter-spacing:.06em;
  color:var(--c-primary);
  text-decoration: underline;
  text-decoration-color: rgba(76,175,80,.35);
  text-decoration-thickness:2px;
  text-underline-offset:4px;
}

.lang-desc{
  margin:0 auto;
  max-width:760px;
  color:rgba(31,41,55,.75);
  line-height:1.9;
  font-size:15px;
}

.lang-cards{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:18px;
  max-width:900px;
  margin:0 auto;
}

@media (max-width: 900px){
  .lang-cards{
    grid-template-columns:repeat(2, 1fr);
  }
}
@media (max-width: 480px){
  .lang-cards{
    grid-template-columns:1fr;
  }
}

.lang-card{
  background:#fff;
  border-radius:18px;
  padding:22px 16px;
  text-align:center;
  box-shadow:var(--shadow-sm);
  border:1px solid rgba(31,41,55,.06);
  transition:transform .15s ease, box-shadow .15s ease;
}

.lang-card:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow-md);
}

.lang-flag{
  width:48px;
  height:48px;
  margin:0 auto 12px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.lang-flag img{
  width:100%;
  height:100%;
  object-fit:contain;
  display:block;
}

.lang-name-ja{
  margin:0;
  font-weight:900;
  font-size:16px;
}

.lang-name-en{
  margin:4px 0 0;
  font-size:13px;
  color:rgba(31,41,55,.6);
}

.section-results{
  background:var(--c-trust);
  color:#fff;
  padding-top: 40px;
}

.results-head{
  text-align:center;
  margin:0 0 28px;
}

.results-title{
  margin:0;
  font-size:clamp(22px, 2.6vw, 30px);
  font-weight:900;
  letter-spacing:.02em;
}

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

@media (max-width: 1024px){
  .results-grid{ grid-template-columns:repeat(2, 1fr); }
}
@media (max-width: 560px){
  .results-grid{ grid-template-columns:1fr; }
}

.results-card{
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.14);
  border-radius:18px;
  padding:22px 18px;
  text-align:center;
  backdrop-filter:saturate(140%) blur(2px);
}

.results-icon{
  width:44px;
  height:44px;
  border-radius:14px;
  margin:0 auto 12px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(255,255,255,.16);
  color:#fff;
}

.results-value{
  font-size:36px;  
  font-weight:900;
  line-height:1.05;
  margin:6px 0 8px;
}

.results-label{
  font-weight:800;
  margin:0 0 10px;
  opacity:.95;
}

.results-text{
  margin:0;
  font-size:13px;
  line-height:1.7;
  color:rgba(255,255,255,.88);
}

.results-highlight{
  position:relative;
  display:inline-block;
  z-index:0;
}

.results-highlight::after{
  content:"";
  position:absolute;
  left:-0.08em;
  right:-0.08em;
  bottom:0.01em;
  height:0.28em;
  background:rgba(250,204,21,.55);
  z-index:-1;
  border-radius:4px;
}

.section-voice{
  position:relative;
  background:#fff;
  overflow:hidden;
  padding-top: 50px;
}

.section-voice::before{
  content:"";
  position:absolute;
  inset:0;
  background: url("../img/voice-bg.jpg") center / cover no-repeat;
  opacity:.10;                
  pointer-events:none;
  z-index:0;
}

.section-voice .container{ position:relative; z-index:1; }

.voice-head{
  text-align:center;
  margin:0 0 26px;
}

.voice-title{
  margin:0;
  font-weight:900;
  font-size:clamp(22px, 2.6vw, 30px);
  letter-spacing:.02em;
}

.voice-carousel{
  position:relative;
  max-width:980px;
  margin:0 auto;
}

.voice-viewport{
  overflow:hidden;
  border-radius:18px;
}

.voice-track{
  display:flex;
  transition:transform .45s ease;
  will-change:transform;
}

.voice-slide{
  flex:0 0 100%;
  padding:6px;
}

.voice-card{
  background:rgba(255,255,255,.92);
  border:1px solid rgba(31,41,55,.08);
  border-radius:18px;
  box-shadow:var(--shadow-md);
  padding:26px;
}

.voice-grid{
  display:grid;
  grid-template-columns: minmax(240px, 280px) 1fr; 
  gap:22px;
  align-items:start;
}

@media (max-width: 860px){
  .voice-grid{
    grid-template-columns:1fr;
  }
}

.voice-illust{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:12px;
  padding:0;
}

.voice-avatar{
  display:none;
}
.voice-avatar-img{
  width:100%;
  max-width:220px;  
  height:auto;
  border-radius:12px;
  display:block;
}

.voice-meta-top{
  text-align:left;
  width:100%;
  max-width:220px;   
  margin:0 auto 8px;  
}


.voice-company{
  white-space:nowrap;   
  word-break:keep-all;
  font-weight:900;
  font-size:18px;
  margin:0 0 6px;
}

.voice-sub{
  margin:0;
  white-space:nowrap;
  color:rgba(31,41,55,.72);
  font-size:13px;
}

.voice-company{
  font-weight:900;
  font-size:18px;
  margin:0 0 6px;
}

.voice-panels{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
  margin:18px 0 16px;
}
@media (max-width: 640px){
  .voice-panels{ grid-template-columns:1fr; }
}

.voice-panel{
  background:rgba(31,41,55,.04);
  border:1px solid rgba(31,41,55,.06);
  border-radius:14px;
  padding:10px 14px 14px;
}

.voice-panel-title{
  position:relative;
  margin:0 0 8px;   
  padding-left:14px;
  font-weight:900;
  letter-spacing:.06em;
  font-size:13px;
  text-transform:none;
}

.voice-panel.is-before .voice-panel-title::before{
  content:"";
  position:absolute;
  left:0;
  top:0.2em;
  width:4px;
  height:1.1em;
  background:#9CA3AF; 
  border-radius:2px;
}

.voice-panel.is-after .voice-panel-title::before{
  content:"";
  position:absolute;
  left:0;
  top:0.2em;
  width:4px;
  height:1.1em;
  background:var(--c-primary);
  border-radius:2px;
}

.voice-panel-text{
  margin:0;
  font-size:15px;
  font-weight:800;
  color:rgba(31,41,55,.90);
  line-height:1.6;
}

.voice-quote{
  margin:0;
  padding:26px 18px 18px 34px; 
  border-radius:14px;
  background:#fff;
  border:1px solid rgba(31,41,55,.10);
  position:relative;
}
.voice-quote::before{
  content:"“";
  position:absolute;
  left:14px;
  top:-4px;
  font-size:40px;
  color:rgba(76,175,80,.45);
  font-weight:900;
}
.voice-quote p{
  margin:0;
  color:rgba(31,41,55,.86);
  line-height:1.8;
}
.voice-quote footer{
  margin-top:10px;
  font-size:12px;
  color:rgba(31,41,55,.68);
  font-weight:700;
}

.voice-nav{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:52px;
  height:52px;
  border-radius:999px;
  border:none;
  background:var(--c-primary);
  color:#fff;
  font-size:34px;
  line-height:1;
  cursor:pointer;
  box-shadow:var(--shadow-sm);
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:5;
}
.voice-prev{ left:-22px; }
.voice-next{ right:-22px; }

@media (max-width: 1024px){
  .voice-prev{ left:-10px; }
  .voice-next{ right:-10px; }
}

.voice-dots{
  display:flex;
  gap:10px;
  justify-content:center;
  margin:14px 0 0;
}

.voice-dot{
  width:10px;
  height:10px;
  border-radius:999px;
  border:0;
  background:rgba(31,41,55,.22);
  cursor:pointer;
}

.voice-dot.is-active{
  background:var(--c-primary);
}


.section-service{
  background:rgba(76,175,80,.07);
  padding-top: 50px;
}

.service-head{
  text-align:center;
  max-width:820px;
  margin:0 auto;
}
.section-service .section-lead{
  margin-left:auto;
  margin-right:auto;
}

.service-stack{
  display:grid;
  gap:var(--space-6);
  margin-top:var(--space-6);
}

.service-item{
  padding:28px;
}

.service-item-title{
  margin:0 0 18px;
  font-weight:900;
  font-size:24px;
  line-height:1.25;
  letter-spacing:.02em;
  display:flex;
  align-items:flex-start;
  gap:14px;
}

.service-item-title::before{
  content:"";
  width:4px;
  height:1.2em;          
  border-radius:2px;
  background:var(--c-primary); 
  flex:0 0 auto;
  margin-top:0.15em;      
}

.service-item-body{
  display:grid;
  grid-template-columns: 1fr 1.25fr;
  gap:24px;
  align-items:center;
}

.service-item-media img{
  width:100%;
  aspect-ratio: 4 / 3; 
  object-fit:cover;
  border-radius:18px;
  display:block;
}

.service-desc{
  margin:0 0 14px;
  color:rgba(31,41,55,.85);
  line-height:1.8;
}

.service-meta{
  margin-top:8px;
  padding-top:10px;
  border-top:1px solid rgba(31,41,55,.08);
}

.service-meta p{ margin:0 0 8px; }
.service-meta .small{ margin-top:6px; }

.service-points{
  list-style:none;
  padding:0;
  margin:14px 0 0;
  display:grid;
  gap:10px;
}

.service-points li{
  position:relative;
  padding-left:22px;   
  line-height:1.75;
  color:rgba(31,41,55,.86);
}

/* チェックマーク */
.service-points li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:0.15em;        
  font-weight:900;
  color:var(--c-primary);   
}


.sp-txt{
  color:rgba(31,41,55,.86);
  line-height:1.75;
}

@media (max-width: 900px){
  .service-item-body{
    grid-template-columns: 1fr;
  }
  .service-item{ padding:22px; }
}

.section.section-pricing{
  background:#fff;
  padding-top: 40px;
}

.pricing-head{
  text-align:center;
  margin:0 auto 28px;
}
.pricing-title{
  margin:0;
  font-size:clamp(28px, 3.2vw, 40px);
  font-weight:900;
  line-height:1.2;
}
.pricing-lead{
  margin:10px 0 0;
  color:rgba(31,41,55,.75);
  font-size:15px;
}

.pricing-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:18px;
  align-items:stretch;
  margin-top:42px;
}

.pricing-card{
  background:#fff;
  border-radius:18px;
  border:1px solid rgba(31,41,55,.10);
  box-shadow:var(--shadow-sm);
  padding:22px 20px;
  position:relative;
  display:flex;
  flex-direction:column;
}

.pricing-card.is-featured{
  border:4px solid rgba(239,68,68,.80); 
  box-shadow:var(--shadow-sm);
  transform:translateY(-6px);        
}
@media (max-width: 1024px){
  .pricing-card.is-featured{ transform:none; }
}

.plan-badge{
  position:absolute;
  left:50%;
  top:-12px;
  transform:translateX(-50%);
  background:var(--c-cta-red);
  color:#fff;
  font-weight:800;
  font-size:12px;
  padding:6px 12px;
  border-radius:999px;
  letter-spacing:.04em;
}

.plan-name{
  margin:0;
  font-weight:900;
  font-size:18px;
  text-align:center;
}

.plan-price{
  margin:14px 0 0;
  text-align:center;
  font-weight:900;
  letter-spacing:.02em;
}
.price-main{
  font-size:40px; 
  line-height:1;
}
.price-sub{
  font-size:14px;
  color:rgba(31,41,55,.70);
  margin-left:6px;
  font-weight:700;
}

.plan-cap{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin:12px auto 0;
  padding:8px 12px;
  border-radius:999px;
  width:fit-content;
  background:rgba(37,99,235,.10);
  border:1px solid rgba(37,99,235,.22);
  color:rgba(31,41,55,.78);
  font-size:13px;
  font-weight:800;
}

.plan-list{
  margin:16px 0 0;
  padding:0;
  list-style:none;
  display:grid;
  gap:10px;
}

.plan-list li{
  position:relative;
  padding-left:28px;
  color:rgba(31,41,55,.82);
  font-weight:500;
}
.plan-list li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  color:var(--c-primary);
  font-weight:900;
}

.pricing-notes{
  width:100%;
  margin:18px 0 0;     
  padding:14px 16px;
  border-radius:16px;
  background:rgba(37,99,235,.08);
  border:1px solid rgba(37,99,235,.18);
  display:grid;
  gap:6px;
}

.note-item{
  position:relative;
  margin:0;
  padding-left:22px;
  font-size:14px;
  font-weight:800;
  line-height:1.35;
  color:rgba(31,41,55,.86);
}

.note-item::before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  color:var(--c-trust);
  font-weight:900;
}

.pricing-cta{
  margin-top:26px; 
  display:flex;
  justify-content:center;
  gap:12px;
  flex-wrap:wrap;
}

@media (max-width: 1024px){
  .pricing-grid{ grid-template-columns:1fr; }
  .pricing-card.is-featured{ transform:none; }
}

.section.section-flow{
  background:rgba(37,99,235,.06);
  padding-top: 40px;
}

.flow-head{
  text-align:center;
  margin:0 auto 22px;
}

.flow-title{
  margin:0;
  font-size:clamp(28px, 3.2vw, 40px);
  font-weight:900;
  letter-spacing:.01em;
}

.flow-lead{
  margin:10px 0 0;
  color:rgba(31,41,55,.72);
  font-weight:800;
}

.flow-rail{
  position:relative;
  display:grid;
  grid-auto-flow:column;
  grid-auto-columns: 340px; 
  gap:18px;

  padding:16px 8px 10px;
  overflow-x:auto;
  overscroll-behavior-x:contain;
  scroll-snap-type:x mandatory;
  -webkit-overflow-scrolling:touch;
}

.flow-rail::before{
  content:"";
  position:absolute;
  left:0; right:0;
  top:34px;
  border-top:2px dashed rgba(37,99,235,.28);
  pointer-events:none;
}

.flow-step{
  scroll-snap-align:start;
  background:#fff;
  border:1px solid rgba(31,41,55,.10);
  border-left:4px solid rgba(37,99,235,.28);
  border-radius:18px;
  padding:18px 18px 16px; 
  box-shadow:var(--shadow-sm);
  position:relative;
  overflow:hidden;
}


.flow-step-top{
  display:flex;
  align-items:center;
  margin-bottom:8px;
  position:relative;
  z-index:1;
  justify-content:flex-end;
}

.flow-term{
  font-size:12px;
  font-weight:900;
  color:var(--c-trust);
  background:rgba(37,99,235,.12);
  border:1px solid rgba(37,99,235,.25);
  padding:6px 10px;
  border-radius:999px;
}

.flow-step-title{
  margin:0 0 8px;
  font-weight:900;
  font-size:16px;
  line-height:1.35;
  position:relative;
  z-index:1;
}

.flow-step-text{
  margin:0;
  color:rgba(31,41,55,.78);
  font-size:14px;
  line-height:1.7;
  position:relative;
  z-index:1;
}

.flow-note{
  margin:14px auto 0;
  max-width:860px;
  color:rgba(31,41,55,.72);
  font-size:14px;
  line-height:1.8;
}

@media (min-width: 1025px){
  .flow-rail{
    grid-auto-columns: 1fr;  
    overflow-x:hidden;    
}
}
@media (max-width: 640px){
  .flow-rail{
    grid-auto-columns: 86vw;
    gap:14px;
  }
}

.flow-badge{
  display:none;
}

.flow-step::after{
  content: attr(data-step);
  position:absolute;
  left:16px;
  top:0;
  right:auto;
  bottom:auto;
  font-size:42px;
  font-weight:900;
  letter-spacing:.06em;
  color:rgba(37,99,235,.18);   
  pointer-events:none;
}

.section.section-faq{
  background:#fff;
}

.faq-head{
  text-align:center;
  margin:0 auto 26px;
}

.faq-title{
  margin:0;
  font-size:clamp(28px, 3.2vw, 40px);
  font-weight:900;
  letter-spacing:.02em;
}

.faq-grid{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:20px;
}

.faq-card{
  background:#fff;
  border:1px solid rgba(31,41,55,.10);
  border-radius:18px;
  padding:18px 18px 16px;
  box-shadow:var(--shadow-sm);
  transition:transform .12s ease, box-shadow .2s ease;
}

.faq-card:hover{
  transform:translateY(-2px);
  box-shadow:var(--shadow-md);
}

.faq-q{
  margin:0 0 10px;
  font-size:16px;
  line-height:1.45;
  font-weight:900;
  display:flex;
  gap:10px;
  align-items:flex-start;
}

.faq-badge{
  flex:0 0 auto;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:28px;
  padding:0 10px;
  border-radius:999px;
  background:rgba(37,99,235,.12);
  color:var(--c-trust);
  font-weight:900;
  font-size:12px;
}

.faq-a{
  margin:0;
  color:rgba(31,41,55,.78);
  font-size:14px;
  line-height:1.75;
}

@media (max-width: 1024px){
  .faq-grid{
    grid-template-columns:repeat(2, 1fr); 
  }
}

@media (max-width: 640px){
  .faq-grid{
    grid-template-columns:1fr; 
  }
  .faq-card{
    padding:18px;
  }
}

/* =========================
   Contact / Request Section
   ========================= */

.section-contact-onecol{
  background: var(--c-primary); 
  padding: clamp(64px, 8vw, 120px) 0;
  color: #fff;
  padding-top: 60px;
}

.contact-head{
  text-align: center;
  max-width: 760px;
  margin: 0 auto 48px;
}

.contact-title{
  margin: 0;
  font-size: clamp(28px, 3.6vw, 40px);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: .02em;
  color: #fff;
}

.contact-lead{
  margin: 16px auto 0;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,.92);
}

.contact-benefits{
  margin-top: 28px;
}

.benefits-title{
  display:inline-block;
  padding:8px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.18);
  color:#fff;
  font-weight:900;
  font-size:14px;
  letter-spacing:.06em;
  margin:18px auto 14px;
}


.benefits-list{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  gap:28px;
  justify-content:center;
  flex-wrap:wrap;
}

.benefits-list li{
  position:relative;
  padding-left:22px;
  font-size:14px;
  color:rgba(255,255,255,.95);
  white-space: normal;
}

.benefits-list li::before{
  content: "●";
  position: absolute;
  left: 0;
  top: 0;
  color: #FFD54F;
  font-size: 14px;
}

@media (max-width: 640px){
  .benefits-list{
    flex-direction:column;
    align-items:flex-start;
    gap:10px;
  }
}

.contact-card{
  max-width: 720px;
  margin: 0 auto 40px;
  background: #fff;
  color: #111827;
  border-radius: 24px;
  padding: clamp(28px, 4vw, 40px);
  box-shadow: 0 24px 48px rgba(0,0,0,.18);
}

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

.contact-form label{
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #111827;
}

.contact-form input,
.contact-form select,
.contact-form textarea{
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #D1D5DB;
  font-size: 14px;
  font-family: inherit;
}

.contact-form textarea{
  min-height: 120px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder{
  color: #9CA3AF;
}

.contact-actions{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 12px;
}

.contact-actions .btn{
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  border: none;
}

.contact-actions .btn-primary{
  background: #FF7A00;
  color: #fff;
}

.contact-actions .btn-secondary{
  background: #22C55E;
  color: #fff;
}

.contact-notes{
  margin:16px 0 0;
  padding:12px 14px;
  border-radius:14px;
  background:rgba(255,255,255,.10); 
  color:rgba(255,255,255,.92);
  display:flex;          
  gap:14px;
  justify-content:center;
  flex-wrap:wrap;
  font-size:12px;
}

.contact-notes li{
  display:flex;
  align-items:center;
  gap:8px;
  margin:0;
}

.contact-notes li::before{
  content:"✓";
  color:#FFD54F;              
  font-weight:900;
}

.contact-info{
  margin-top:14px;
  padding-top:14px;
  border-top:1px solid rgba(255,255,255,.18);
  text-align:center;
  font-size:12px;
  color:rgba(255,255,255,.9);
}

.contact-inline{
  margin:0;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  flex-wrap:wrap;
  display: none;
}

.contact-label{
  font-weight:800;
  letter-spacing:.04em;
  opacity:.9;
}

.contact-inline a{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:0;
  border-radius:0;
  background:none;
  color:#fff;
}


.contact-sep{
  opacity:.4;
}

@media (max-width:640px){
  .contact-inline{
    flex-direction:column;
    gap:6px;
  }
  .contact-sep{
    display:none;
  }
}

.contact-info .contact-title-mini{
  margin:0 0 10px;
  font-weight:900;
  letter-spacing:.06em;
  font-size:12px;
  opacity:.95;
}

@media (max-width: 640px){
  .contact-actions{
    grid-template-columns: 1fr;
  }

  .benefits-list{
    width: 100%;
  }
}


/* =========================
   Footer
   ========================= */

.site-footer{
  background:#08130D; 
  color:rgba(255,255,255,.92);
  padding: 56px 0 24px;
}

/* grid */
.footer-inner{
  display:grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  align-items:start;
}

/* brand */
.footer-logo{
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin-bottom: 14px;
}
.footer-logo img{
  height: 34px;
  width: auto;
  display:block;
}

.footer-tagline{
  margin:0;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,.78);
}

/* headings */
.footer-title{
  margin: 4px 0 14px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .06em;
  color:#fff;
}

/* links */
.footer-links{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap: 10px;
}

.footer-links a{
  color: rgba(255,255,255,.78);
  text-decoration:none;
  font-size: 14px;
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:0;
}

.footer-links a:hover{
  color:#fff;
}

/* bottom */
.footer-bottom{
  margin-top: 34px;
}

.footer-divider{
  height:1px;
  background: rgba(255,255,255,.12);
  margin: 0 0 14px;
}

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

/* responsive */
@media (max-width: 1024px){
  .footer-inner{
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
}

@media (max-width: 640px){
  .site-footer{
    padding: 44px 0 18px;
  }
  .footer-inner{
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .footer-copy{
    text-align:left;
  }
}


:target{
  scroll-margin-top: calc(var(--header-h) + 16px);
}
.pain-item2{
  background-color: #EF4444;
}

.pain-item2::before{
  background-color: #fff;
}
.pain-item2 span{
  font-size: 1.1em;
  font-weight: bold;
  color: white;
}

.intern-title span{
  color: #EA580C;
}