:root{
  --brand:#121ACA;
  --brand2:#1F49FF;
  --text:#3C4141;
  --bg:#FFFFFF;
  --muted:#f5f7fb;
  --shadow:0 0 20px rgba(0,0,0,.15);
}

*{box-sizing:border-box}
html,body{margin:0;padding:0;font-family:"Noto Sans",system-ui,-apple-system,"Segoe UI",Arial,sans-serif;color:#000;background:#fff}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}

.container{width:min(1196px,92%);margin:0 auto}

/* Buttons */
.btn{display:inline-flex;align-items:center;justify-content:center;height:48px;padding:0 20px;border-radius:6px;font-weight:900}
.btn--primary{background:#FF6E49;color:#fff}
.btn--brand{background:var(--brand);color:#fff}
.btn--outline{border:2.5px solid var(--brand);color:var(--brand);background:#fff}
.btn--round{border-radius:30px;height:60px;padding:0 28px;font-size:18px}
.btn--lg{height:64px;padding:0 36px}

/* ---------- NAV ---------- */
.nav{background:#fff;box-shadow:0 1px 0 rgba(0,0,0,.05)}

/* compact header */
.nav__inner{
  display:grid;
  grid-template-columns:1fr auto;
  grid-template-rows:auto auto;
  align-items:center;
  gap:10px;
  padding:6px 0;
}

.nav__brand{display:flex;flex-direction:column;align-items:flex-start;gap:8px}
.nav__brand-top{font-weight:700;font-size:12px;letter-spacing:.03em;color:var(--brand)}
.nav__logo{width:176px;height:48px;background:url('../images/eebot-logo.png') center/contain no-repeat}

/* Right side: phone  */
.nav__meta{
  justify-self:end;
  display:grid;
  grid-template-columns:auto auto;   
  grid-template-rows:auto auto;      
  align-items:center;
  column-gap:16px;
}

/* Phone block: */
.nav__phone{
  grid-column:1; grid-row:1;
  display:flex; flex-direction:column; align-items:flex-end;
  line-height:1.1;
  gap:0;
}

/* Receiver icon  */
.nav__phone-number{
  position:relative;
  color:var(--brand);
  font-weight:900;
  font-size:18px;
  letter-spacing:.03em;
  padding-left:22px; 
}
.nav__phone-number::before{
  content:"";
  position:absolute; left:0; top:50%;
  width:16px; height:16px;
  background:url("../images/mark-tel.png") no-repeat center;
  background-size:contain;
  transform:translateY(-50%);
}

/* Hours */
.nav__hours{
  grid-column:1; grid-row:2;
  margin-top:1px;
  text-align:right;
  font-weight:700; font-size:11px; color:var(--text);
}

/* CTA spans both rows */
.nav__cta{
  grid-column:2; grid-row:1 / span 2;
  justify-self:start;
  white-space:nowrap;
  height:auto; padding:10px 18px; font-size:14px; border-radius:6px;
}

.nav__menu{grid-column:1/-1;display:flex;flex-wrap:wrap;gap:16px;justify-content:flex-end}
.nav__menu a{padding:8px 4px;font-weight:700;color:var(--text);font-size:13px}

/* ---------- HERO ---------- */
.hero{
  position:relative; width:100%; background:#FFFFFF; overflow:hidden;
  padding:24px 0; 
}
.hero::before{
  content:""; position:absolute; inset:0;
  background-image:url("../images/topback.jpg");
  background-size:cover; background-repeat:no-repeat; background-position:center top; z-index:0;
}
.hero::after{
  content:""; position:absolute; inset:0;
  background-image:url("../images/22328145-bl.png");
  background-repeat:no-repeat; background-size:cover; background-position:center 3px; opacity:.2; z-index:0;
}
.hero__inner{
  position:relative; z-index:1;
  display:grid; grid-template-columns:1.1fr 0.9fr; gap:20px; min-height:360px; align-items:center;
}
.hero__left{display:flex;flex-direction:column;gap:24px}
.hero__headline-img{width:min(644px,100%);height:auto;display:block}
.hero__title{margin:0;font-weight:900;font-size:clamp(28px,5vw,44px);line-height:1.2;letter-spacing:.02em}
.hero__sub{
  margin:0;font-family:"Noto Sans",system-ui,-apple-system,"Segoe UI",Roboto,"Hiragino Kaku Gothic ProN","Noto Sans JP",sans-serif;
  font-weight:900;font-size:clamp(24px,3.2vw,40px);line-height:1.1;letter-spacing:.02em;color:#E90004;
}
.hero__ctas{display:flex;flex-wrap:wrap;gap:12px}
.hero__cta-main{border-radius:30px;padding:12px 28px;font-weight:900;background:#121ACA;color:#fff}
.hero__cta-sub{border-radius:30px;padding:11px 26px;font-weight:900;border:2.5px solid #121ACA;color:#121ACA;background:#fff}
.hero__right{position:relative;display:flex;align-items:center;justify-content:center;min-height:220px}
.hero__device{width:min(460px,92%);height:auto;display:block;filter:drop-shadow(0 8px 24px rgba(0,0,0,.15))}
.hero__badge{position:absolute;left:clamp(16px,20%,120px);top:clamp(0px,8%,40px);width:78px;height:auto}

/* Fallback button styling */
.btn{display:inline-flex;align-items:center;justify-content:center;text-decoration:none;transition:.2s}
.btn--brand{background:#121ACA;color:#fff}
.btn--outline{background:#fff;border:2px solid #121ACA;color:#121ACA}
.btn--round{border-radius:999px}

/* Container helper */
.container{width:min(1196px,92%);margin-inline:auto}

/* ---------- Section titles ---------- */
.section-title{font-weight:700;font-size:28px;text-align:center;letter-spacing:.06em;color:#3C4141;margin:24px 0}
.section-title--brand{color:var(--brand)}
/* --- Reasons spacing overrides --- */
#reasons .section-title {
  margin: 30px 0 40px;   /* top | bottom */
}

#reasons.reasons {
  padding: 80px 0 120px; /* extra bottom padding for the section */
}

/* ---------- ABOUT ---------- */
.about {
  position: relative;
  background-image: url('/images/topback-2.jpg'); 
  background-repeat: no-repeat;
  background-size: cover;     
  background-position: bottom center; 
  padding-bottom: 100px;      
}

.about .container{
  position: relative;
  z-index: 1;
}
.about .section-title {
  padding-top: 40px;  
  padding-bottom: 30px; 
}

.about__grid{display:grid;grid-template-columns:1fr;gap:20px}
.about-card{background:#fff;border-radius:3px;box-shadow:var(--shadow);display:flex;flex-direction:column;overflow:hidden}
.about-card__body{padding:20px;display:flex;flex-direction:column;align-items:center;gap:22px}
.about-card__body h4{font-size:18px;font-weight:700;text-align:center;margin:0}
.about-card__img{width:158px;height:155px;background-size:contain;background-repeat:no-repeat;background-position:center}
.about-card__footer{background:linear-gradient(71.22deg,var(--brand) 0%,var(--brand2) 100%);padding:14px 12px;position:relative}
.about-card__footer-text{color:#fff;font-weight:800;font-size:18px;text-align:center}

/* === ABOUT cards === */
.about__grid{
  align-items: stretch;         
}

.about-card{
  display: flex;
  flex-direction: column;         
  height: 100%;                   
}

.about-card__body{
  flex: 1;                        
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between; 
  gap: 18px;                      
}

.about-card__footer{
  margin-top: auto;            
}


.about-card__img{ 
  height: 155px;                 
  width: 158px;
}
.about-card__body h4{
  text-align: center;
}

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

/* ---------- ONESTEP ---------- */
.onestep{position:relative;background:linear-gradient(296.88deg,#E1CFFF 16.49%,#CFF5FF 83.51%);padding:40px 0}
.onestep__bg{position:absolute;inset:0;background-size:cover;background-position:center;opacity:.12;pointer-events:none}
.onestep__inner{position:relative}
.onestep__panel{background:#fff;border-radius:3px;box-shadow:var(--shadow);padding:12px;display:flex;justify-content:center;align-items:center;min-height:220px}
.onestep__image{width:100%;max-width:1000px;height:320px;background-size:contain;background-repeat:no-repeat;background-position:center}
@media (min-width:900px){
  .onestep__image{height:405px}
}

/* ---------- REASONS ---------- */

.reasons{
  position: relative;
  padding: 60px 0;
  background:
    linear-gradient(rgba(255,255,255,.10), rgba(255,255,255,.10)),
    url("../images/top-back-4.png") center/cover no-repeat;  /* or ../images/top-bubble.png */
}

.reasons .container{
  position: relative;
  z-index: 1;  /* keep cards above any future overlays */
}

.reasons {
  position: relative;
  padding: 80px 0 120px; 
  background:
    linear-gradient(rgba(255,255,255,.25), rgba(255,255,255,.25)),
    url("../images/top-back-4.png") center/cover no-repeat;
  filter: contrast(1.05);
}
.reasons .section-title {
  margin: 60px 0 50px;   /* ↑ top | ↓ bottom */
}


.reasons .container{position:relative}
.reasons__grid{display:grid;gap:20px;grid-template-columns:1fr;}
.reason-card{background:#fff;border-radius:15px;box-shadow:0 0 10px rgba(0,0,0,.25);overflow:hidden}
.reason-card__head{background:linear-gradient(71.22deg,var(--brand) 0%,var(--brand2) 100%);padding:16px 20px;display:flex;align-items:center;justify-content:space-between}
.reason-card__title{color:#fff;font-weight:700;font-size:20px}
.reason-card__icon{width:68px;height:66px;background-size:contain;background-position:center;background-repeat:no-repeat;flex:0 0 68px}
.reason-card__body{background:#fff;padding:18px 24px;font-weight:700;line-height:1.5}

@media (min-width:900px){
  .reasons__grid{grid-template-columns:repeat(2,1fr)}
}

/* ---------- FLOW ---------- */
.flow{padding:40px 0}
.flow__grid{display:grid;grid-template-columns:1fr;gap:18px}
.flow-card{background:#fff;border-radius:15px;box-shadow:var(--shadow);padding:20px;text-align:center}
.flow-card__img{width:97px;height:97px;margin:0 auto;background-size:contain;background-position:center;background-repeat:no-repeat}
.flow-card__step{color:var(--brand);font-weight:700;margin-top:10px}
.flow-card__title{font-weight:700;margin:6px 0}
.flow-card__desc{margin:0}
.flow__cta{display:flex;justify-content:center;margin-top:30px}

@media (min-width:900px){
  .flow__grid{grid-template-columns:repeat(3,1fr)}
}

/* ---------- FEATURES ---------- */
.features{background:#E3F8F9;padding:40px 0;position:relative}
.features__inner{display:flex;flex-direction:column;gap:20px}
.chip-row{display:flex;flex-wrap:wrap;gap:12px;justify-content:center}


.chip {
 
  background:#222CEB;color:#fff;border-radius:30px;padding:10px 16px;font-weight:900;min-width:160px;text-align:center;
  border: 0;
  cursor: pointer;
  font: inherit;
  padding: 0.5rem 0.9rem; 
  border-radius: 9999px;   
  box-shadow: var(--shadow-sm, 0 1px 2px rgba(0,0,0,0.06));
  transition: transform 0.12s ease, box-shadow 0.12s ease, background-color 0.2s ease, color 0.2s ease;
}

.chip:hover,
.chip:focus-visible {
  outline: none;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md, 0 4px 10px rgba(0,0,0,0.08));
}

.chip.is-active {
  background: #fff;
  color: #121ACA;
  box-shadow: var(--shadow-md, 0 4px 10px rgba(0,0,0,0.12));
}
.features__grid{display:grid;grid-template-columns:1fr;gap:20px;align-items:start}
.features__left .features__block{background:#fff;border-radius:10px;padding:20px}
.features__left h4{margin:0 0 8px;font-size:22px}
.features__left p{margin:0 0 8px}
.features__list{font-weight:700;line-height:32px;letter-spacing:.03em}
.features__right{height:280px;background-size:cover;background-position:center;border-radius:10px;
  background-size: cover;
  background-position: center;
  transition: background-image 0.2s ease, opacity 0.2s ease;}
.features__stripe{height:134px;background:#E3F8F9}

@media (min-width:1000px){
  .features__grid{grid-template-columns:270px 1fr}
  .features__right{height:497px}
}

/* ---------- BENEFITS ---------- */

.benefits {
  position: relative;

  background:
    url('../images/top-benefits.svg') top center / 130% 299px no-repeat,
    #ffffff;
  padding: 270px 0 100px;   
  overflow: hidden;
}


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


.benefits .section-title {
  padding: 40px 0 30px;
}
.benefits__row{display:grid;grid-template-columns:1fr;gap:18px}
.benefit{display:flex;gap:12px;height: 100%; align-items:flex-start;background:#fff;padding:14px;border-radius:10px;box-shadow:var(--shadow)}
.benefit__icon{width:70px;height:68px;background-size:contain;background-position:center;background-repeat:no-repeat;flex:0 0 77px}
.benefit__title{font-size:21px;font-weight:900;letter-spacing:.03em;margin-bottom:4px}
.benefit p {
  font-weight: 600;  /* or 700 for stronger */
}

@media (min-width:900px){
  .benefits__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: start; /* ✅ ensures all cards align at the top */
}

}

/* ---------- CONTACT ---------- */
.contact{background:var(--brand);color:#fff;position:relative;padding:40px 0}
.contact__inner{position:relative}
.contact__title{text-align:center;font-weight:800;font-size:28px;letter-spacing:.06em;margin:0 0 8px}
.contact__lead{text-align:center;font-weight:800}
.contact__cards{margin-top:24px;display:grid;grid-template-columns:1fr;gap:16px}
.contact-card{display:flex;gap:16px;align-items:center;background:#fff;border-radius:10px;padding:16px;color:#000;box-shadow:var(--shadow)}
.contact-card--link{transition:.2s transform}
.contact-card--link:hover{transform:translateY(-2px)}
.contact-card__icon{width:80px;height:80px;background-size:contain;background-position:center;background-repeat:no-repeat;flex:0 0 80px}
.contact-card__label{font-weight:700}
.contact-card__value{font-weight:700;font-size:22px}
.brand{color:var(--brand)}
.contact-card__meta{font-size:16px}

@media (min-width:900px){
  .contact__cards{grid-template-columns:repeat(3,1fr)}
}

.contact__brand{margin:28px auto 12px;max-width:260px;text-align:center}
.contact__brand-sub{font-weight:700}
.contact__logo{height:71px;background-size:contain;background-position:center;background-repeat:no-repeat;margin-top:6px}
.contact__social{display:flex;justify-content:center;gap:16px;margin:12px 0}
.social-icon{width:30px;height:30px;background-size:contain;background-position:center;background-repeat:no-repeat;opacity:.9}
.contact__copy{text-align:center;font-weight:700}

/* ---------- Utilities ---------- */
.brand{color:var(--brand)}

/* ---------- PRICING ---------- */
.pricing{padding:40px 0;background:#fff}
.pricing__wrap{margin-top:8px}

.pricing-table{width:100%;border-collapse:separate;border-spacing:0;overflow:hidden;border-radius:12px;box-shadow:var(--shadow);background:#fff}
.pricing-table th,
.pricing-table td{padding:14px 12px;border:1px solid #E3E6EA;vertical-align:middle;text-align:center}
.pricing-table thead th{border-bottom-width:2px;background:#f7f8fb;font-weight:700}
.pricing-table .col-feature{width:26%;min-width:170px;text-align:left}
.pricing-table .col-plan{width:18.5%}

.plan-badge{color:#fff;font-weight:700;border-radius:10px;padding:12px 8px;line-height:1.2}
.plan-badge small{display:block;font-weight:700;opacity:.95}
.plan--trial{background:#FFB940;border:1px solid #ADADAD}
.plan--starter{background:#00D7A8;border:1px solid #ADADAD}
.plan--business{background:#1990FF;border:1px solid #ADADAD}
.plan--enterprise{background:#C60000;border:1px solid #ADADAD}

.bg-muted{background:#EDEDED}

.cell-price{font-weight:700}
.cell-price.is-free{color:#FFA202}
.color-starter{color:#00BC90}
.color-business{color:#157DD8}
.color-enterprise{color:#C41D1D}

.cell-note{font-weight:700}
.cell-wrap{line-height:1.6}
.cell-dash{color:#3C4141;opacity:.9}
.note{display:block;font-size:.9em;opacity:.85;margin-top:2px}

.dot{font-size:20px;line-height:1}
.dot--trial{color:#FFA202}
.dot--starter{color:#00BC90}
.dot--business{color:#157DD8}
.dot--enterprise{color:#C41D1D}

.row-alt th,.row-alt td{background:#FAFBFD}

.cell-wide{text-align:center;font-weight:700}
.cell-corner-left{border-bottom-left-radius:10px}
.cell-corner-right{border-bottom-right-radius:10px}

.pricing__cta{display:flex;justify-content:center;margin-top:28px}

/* --- Mobile Stacking (accessible table) --- */
@media (max-width:820px){
  .pricing-table thead{display:none}
  .pricing-table,.pricing-table tbody,.pricing-table tr,.pricing-table td,.pricing-table th{display:block;width:100%}
  .pricing-table tr{margin:0 0 18px;border:1px solid #E3E6EA;border-radius:10px;overflow:hidden}
  .pricing-table tr > th[scope="row"]{background:#f7f8fb;font-weight:700;text-align:left;border:0;border-bottom:1px solid #E3E6EA}
  .pricing-table td{text-align:left;border:0;border-top:1px solid #F0F2F5;position:relative;padding-left:42%;min-height:48px;display:flex;align-items:center}
  .pricing-table td::before{content:attr(data-label);position:absolute;left:12px;top:50%;transform:translateY(-50%);font-weight:700;color:#5b6270}
  .col-feature{width:auto}
}

/* ---------- USECASES ---------- */
.usecases{background:#222CEB;color:#fff;padding:48px 0}
.usecases__inner{display:flex;flex-direction:column;align-items:center;gap:24px}
.usecases__title{margin:0;font-weight:700;font-size:28px;line-height:38px;letter-spacing:.06em;text-align:center;color:#fff}

/* grid of 4 circles */
.usecases__grid{
  width:100%;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:22px;
  justify-items:center;
  align-items:start;
  margin-top:8px;
}
@media (min-width:900px){
  .usecases__grid{grid-template-columns:repeat(4,1fr);gap:24px}
}

.usecase{display:flex;flex-direction:column;align-items:center;gap:12px}
.usecase__circle{
  width:205px;height:205px;border-radius:50%;
  background:#fff;display:flex;align-items:center;justify-content:center;
  box-shadow:0 4px 16px rgba(0,0,0,.15);
}
.usecase__circle img{width:150px;height:150px;object-fit:contain;display:block}
.usecase__caption{font-weight:700;font-size:20px;line-height:27px;letter-spacing:.03em;text-align:center;color:#fff}


@media (max-width:420px){
  .usecase__circle{width:180px;height:180px}
  .usecase__circle img{width:132px;height:132px}
}


@media (max-width:960px){
  .nav__logo{width:160px;height:44px}
  .nav__phone-number{font-size:17px}
  .nav__hours{font-size:11px}
  .hero{padding:20px 0}
  .hero__inner{grid-template-columns:1fr;gap:24px;min-height:auto}
  .nav__meta{column-gap:14px}
}


@media (max-width:600px){
  .nav__meta{
    grid-template-columns:1fr;
    grid-template-rows:auto auto auto;
    row-gap:6px;
  }
  .nav__phone{grid-column:1;grid-row:1;align-items:end}
  .nav__hours{grid-column:1;grid-row:2;text-align:right}
  .nav__cta{grid-column:1;grid-row:3;justify-self:end}
}

/* --- Hero title sizing  --- */
.hero__title{
  margin:0;
  font-weight:900;
  line-height:1.12;
  letter-spacing:.01em;
}


.hero__line1{
  display:inline-flex;     
  align-items:center;
  gap:8px;                 
  font-size:clamp(22px, 3vw, 32px);  
  margin-bottom: 4px; 
}


.hero__line2 {
  display: inline-block;
  margin-top: 4px;
  font-weight: 2000;              
  font-size: clamp(46px, 5.6vw, 56px); 
  line-height: 1.15;
  letter-spacing: 0.01em;
}


.pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:30px;
  padding:0 14px;
  border-radius:2px;
  font-weight:900;
  font-size:14px;
  color:#fff;
  background:#111;          
  vertical-align:middle;
}
.pill-sep{
  font-weight:900;
  font-size:15px;

  color:#111;
  vertical-align:middle;
  margin: 0 4px;
}


@media (max-width: 520px){
  .hero__line1{gap:6px}
  .pill{height:26px; padding:0 10px; font-size:12px}
  .hero__line2{margin-top:4px}
}

.hero__sub {
  font-weight: 800;
  font-size: clamp(20px, 3.6vw, 30px);
  margin-top: 4px;
  margin-bottom: 5px; 
}

.hero {
  padding: 40px 0 30px; 
}




/* --- Hero Cta--- */
.hero__ctas {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px; 
  flex-wrap: wrap;
}

.hero__ctas .btn {
  min-width: 210px; 
  height: 54px; 
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 15px;
  border-radius: 40px;
  padding: 0 28px;
  box-sizing: border-box;
}


.hero__cta-main, 
.hero__cta-sub {
  text-align: center;
}



/* --- Reasons: smaller card footprint --- */

.reasons .container{
  max-width: 1100px;             
}


.reasons__grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 500px)); 
  column-gap: 18px;            
  row-gap: 18px;                
  justify-content: center;
}

.reason-card{
  max-width: 400px;
  border-radius: 12px;
}


.reason-card__head{ padding: 12px 16px; }
.reason-card__body{ padding: 14px 18px; font-size: 14.5px; line-height: 1.6; }
.reason-card__title{ font-size: 18px; }


@media (max-width: 900px){
  .reasons__grid{ grid-template-columns: 1fr; }
  .reason-card{ max-width: 680px; margin-inline: auto; }
}



/* --- REASONS tweaks: --- */


.reasons{
  padding-top: 28px;           
  padding-bottom: 56px;         
}


.reasons .section-title{
  margin: 2px 0 12px;      
}


.reasons__grid{
  grid-template-columns: repeat(2, minmax(0, 500px)); 
  column-gap: 11px;           
  row-gap: 14px;                
  justify-content: center;   
}


.reason-card{
  width: 100%;                  
  max-width: 400px;        
}

@media (min-width: 900px){
  .reasons{ padding-top: 24px; }
}

/* ----------  PAGE HEADERS (trial/contact) ---------- */
.page-header{
  height: 56px;
  background: var(--brand);          
}

.page-hero{
  background: #E9F4FF;                   
  padding: 32px 0 28px;               
  border-bottom: 1px solid rgba(0,0,0,.06);
}

.page-title{
  margin: 0;
  font-weight: 900;
  font-size: clamp(24px, 3.2vw, 34px);
  letter-spacing: .06em;
  color: var(--brand);
  text-align: center;
}

.page-content{
  padding: 28px 0 60px;
}


/* ----- AIプロンプトヘルパー page ----- */
.subhero{
  background:#E3F8F9;
  padding: 36px 0 28px;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.page-subtitle{
  margin: 6px 0 0;
  text-align: center;
  font-weight: 800;
  color: #3C4141;
  letter-spacing: .03em;
  font-size: clamp(14px, 1.9vw, 16px);
  opacity: .9;
}
.page-content{ padding: 40px 0 64px; }

/*  video placeholder  */
.video-frame{
  width: 100%;
  max-width: 900px;
  margin: 24px auto 0;
  aspect-ratio: 16 / 9;
  background: #777;
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: clamp(18px, 3vw, 28px);
  border-radius: 6px;
  box-shadow: 0 6px 18px rgba(0,0,0,.12);
}



/* ===== THANKS PAGE ONLY ===== */
.thanks-page footer .contact__logo {
  filter: brightness(0) invert(1); 
}

.thanks-page .thanks-wave {
  width: 100%;
  min-height: 260px;
  background: url('../images/topback-2.jpg') center bottom / cover no-repeat;
}

.thanks-page html,
.thanks-page body {
  overflow-x: hidden;
}


/* ===== SECURITY Section ===== */
.security{
  position: relative;
  padding: 84px 0 96px;                          
  background: url("../images/top-bubble.png")    
              center/cover no-repeat;
  scroll-margin-top: 80px;                      
}

.security .section-title{
  margin: 0 0 70px;
}


.security__grid{
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}
@media (min-width:760px){
  .security__grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (min-width:1024px){
  .security__grid{ grid-template-columns: repeat(3, 1fr); }
}


.security-card{
  display: grid;
  grid-template-columns: 64px 1fr;             
  column-gap: 16px;
  row-gap: 12px;
  padding: 18px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.security-card__icon{
  grid-column: 1;
  grid-row: 1;
  width: 60px;
  height: 60px;
  border-radius: 14px;                         
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.12));

}
@media (min-width:900px){
  .security-card__icon{ width: 66px; height: 66px; }
}


.security-card__body{
  grid-column: 2;
  grid-row: 1;
  display: block;
}
.security-card__title{
  margin: 2px 0 6px;
  font-weight: 800;
  font-size: 17px;
  letter-spacing: .02em;
  line-height: 1.35;
}
.security-card__desc{
  margin: 0;
  font-size: 14.5px;
  line-height: 1.7;
  color: #3C4141;
  opacity: .95;
}


/* ===== Adjust spacing for "eeBotが選ばれる４つの理由" section ===== */
#reasons {
  padding: 80px 0 130px !important;   /* more top and bottom padding */
}

#reasons .section-title {
  margin: 15px 0 60px !important;     /* add more space above and below the title */
}



