:root{
    --bg-black:#0a0908;
    --gold:#c99a3d;
    --gold-light:#e0b153;
    --text-white:#f5f3ef;
    --text-muted:#c9c6c0;
    --bg-page:#ffffff;
    --card-bg:#111111;
    --gold:#c99a3d;
    --gold-light:#e0b153;
    --text-dark:#1a1a1a;
    --text-card-body:#c9c6c0;
    --bg-white:#ffffff;
    --gold:#c99a3d;
    --text-dark:#1a1a1a;
    --text-body:#4a4a4a;
    --divider:#e6e3dd;
    --test-bg-page:#fbfaf8;
    --test-card-bg:#ffffff;
    --test-card-border:#eae7e0;
    --test-gold:#c99a3d;
    --test-text-dark:#1a1a1a;
    --test-text-body:#4a4a4a;
    --faq-bg-page:#fbfaf8;
    --faq-card-bg:#ffffff;
    --faq-card-border:#eae7e0;
    --faq-gold:#c99a3d;
    --faq-text-dark:#1a1a1a;
    --faq-text-body:#4a4a4a;
    --bg-dark:#0c0b09;
  }

  *{ box-sizing:border-box; margin:0; padding:0; }
 
  .sft-hero{
    position:relative;
    width:100%;
    min-height:460px;
    background-color:var(--bg-black);
    overflow:hidden;
    font-family:'Segoe UI', Tahoma, Arial, sans-serif;
  }
 
  /* ---- Background image (replace url below with your own image) ---- */
  .sft-hero__bg{
    position:absolute;
    inset:0;
    background-image:url('../images/home-banner.webp');
    background-size:cover;
    background-position:center right;
  }
 
  /* Dark gradient so image fades into black on the left where text sits */
  .sft-hero__overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
      90deg,
      rgba(10,9,8,1) 0%,
      rgba(10,9,8,0.97) 30%,
      rgba(10,9,8,0.55) 52%,
      rgba(10,9,8,0.1) 72%,
      rgba(10,9,8,0.02) 100%
    );
  }
 
  .sft-hero__content{
    position:relative;
    z-index:2;
    max-width:760px;
    padding:70px 32px 70px 64px;
  }
 
  .sft-hero__eyebrow{
    color:var(--gold);
    font-size:13px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:20px;
  }
 
  .sft-hero__title{
    font-family:'Segoe UI', Tahoma, Arial, sans-serif;
    font-weight:700;
    font-size:42px;
    line-height:1.25;
    color:var(--text-white);
    margin-bottom:22px;
  }
 
  .sft-hero__title span{
    color:var(--gold-light);
  }
 
  .sft-hero__desc{
    font-size:15px;
    line-height:1.8;
    color:var(--text-muted);
    max-width:480px;
    margin-bottom:32px;
  }
 
  .sft-hero__actions{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
  }
 
  .sft-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    font-size:13.5px;
    font-weight:700;
    padding:14px 20px;
    border-radius:6px;
    text-decoration:none;
    cursor:pointer;
    border:1px solid transparent;
    white-space:nowrap;
    flex:0 1 auto;
  }
 
  .sft-btn--filled{
    background:var(--gold);
    color:#1a1a1a;
  }
 
  .sft-btn--outline{
    background:transparent;
    color:var(--text-white);
    border:1px solid var(--gold);
  }
 
  .sft-btn svg{
    width:14px;
    height:14px;
    stroke:currentColor;
    flex-shrink:0;
  }
 
  /* ---------------- Responsive ---------------- */
  @media (max-width: 900px){
    .sft-hero__content{ padding:48px 24px; max-width:100%; }
    .sft-hero__title{ font-size:32px; }
    .sft-hero__overlay{
      background:linear-gradient(180deg, rgba(10,9,8,0.55) 0%, rgba(10,9,8,0.95) 55%, rgba(10,9,8,1) 100%);
    }
  }
 
  @media (max-width: 560px){
    .sft-hero{ min-height:560px; }
    .sft-hero__title{ font-size:26px; }
    .sft-hero__desc{ font-size:14px; }
    .sft-hero__actions{ flex-direction:column; }
    .sft-btn{ justify-content:center; width:100%; }
  }




 
  .pillars{
    width:100%;
    background:var(--bg-page);
    font-family:'Segoe UI', Tahoma, Arial, sans-serif;
    padding:60px 40px 72px;
    text-align:center;
  }
 
  .pillars__eyebrow{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:14px;
    color:var(--gold);
    font-size:12.5px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:14px;
  }
 
  .pillars__eyebrow::before,
  .pillars__eyebrow::after{
    content:"";
    width:34px;
    height:1px;
    background:var(--gold);
  }
 
  .pillars__title{
    font-family:'Segoe UI', Tahoma, Arial, sans-serif;
    font-weight:700;
    font-size:27px;
    color:var(--text-dark);
    margin-bottom:44px;
  }
 
  .pillars__grid{
    max-width:1200px;
    margin:0 auto;
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:24px;
  }
 
  .pillars__card{
    background:var(--card-bg);
    border-radius:10px;
    padding:36px 30px 32px;
    text-align:center;
  }
 
  .pillars__icon{
    width:60px;
    height:60px;
    margin:0 auto 18px;
    border-radius:50%;
    border:1.5px solid var(--gold);
    display:flex;
    align-items:center;
    justify-content:center;
  }
 
  .pillars__icon svg{
    width:26px;
    height:26px;
    stroke:var(--gold);
  }
 
  .pillars__label{
    font-size:11.5px;
    font-weight:700;
    letter-spacing:1.5px;
    color:#ffffff;
    text-transform:uppercase;
    margin-bottom:10px;
  }
 
  .pillars__card-title{
    font-family:'Segoe UI', Tahoma, Arial, sans-serif;
    font-weight:700;
    font-size:19px;
    line-height:1.35;
    color:var(--gold-light);
    margin-bottom:16px;
  }
 
  .pillars__desc{
    font-size:13px;
    line-height:1.75;
    color:var(--text-card-body);
    margin-bottom:24px;
  }
 
  .pillars__divider{
    width:40px;
    height:2px;
    background:var(--gold);
    margin:0 auto;
  }
 
  /* ---------------- Responsive ---------------- */
  @media (max-width: 900px){
    .pillars__grid{
      grid-template-columns:1fr;
      max-width:480px;
    }
  }
 
  @media (max-width: 480px){
    .pillars{ padding:44px 20px; }
    .pillars__title{ font-size:22px; }
    .pillars__card{ padding:30px 22px 26px; }
  }



 
  .about{
    width:100%;
    background:var(--bg-white);
    font-family:'Segoe UI', Tahoma, Arial, sans-serif;
    padding:56px 64px;
  }
 
  .about__grid{
    max-width:1200px;
    margin:0 auto;
    display:flex;
    flex-wrap:wrap;
    gap:44px;
    align-items:flex-start;
  }
 
  /* ---------------- Left column (image) ---------------- */
  .about__left{
    flex:1 1 340px;
    min-width:260px;
  }
 
  .about__image{
    width:100%;
    aspect-ratio:4 / 5;
    border-radius:14px;
    background-image:url('../images/aboutkeizai-image.webp');
    background-size:cover;
    background-position:center;
  }
 
  /* ---------------- Right column ---------------- */
  .about__right{
    flex:1.6 1 520px;
    min-width:280px;
  }
 
  .about__eyebrow{
    color:var(--gold);
    font-size:12.5px;
    font-weight:700;
    letter-spacing:1.8px;
    text-transform:uppercase;
    margin-bottom:12px;
  }
 
  .about__title{
    font-family:'Segoe UI', Tahoma, Arial, sans-serif;
    font-weight:700;
    font-size:25px;
    line-height:1.35;
    color:var(--text-dark);
    margin-bottom:24px;
  }
 
  .about__row{
    display:flex;
    gap:18px;
    padding:20px 0;
    border-bottom:1px solid var(--divider);
  }
 
  .about__row:first-of-type{
    padding-top:0;
  }
 
  .about__row:last-of-type{
    border-bottom:none;
    padding-bottom:0;
  }
 
  .about__icon{
    flex-shrink:0;
    width:38px;
    height:38px;
    border-radius:50%;
    border:1.5px solid var(--gold);
    display:flex;
    align-items:center;
    justify-content:center;
  }
 
  .about__icon svg{
    width:17px;
    height:17px;
    stroke:var(--gold);
  }
 
  .about__row-title{
    font-size:15px;
    font-weight:700;
    color:var(--text-dark);
    margin-bottom:6px;
  }
 
  .about__row-desc{
    font-size:13.5px;
    line-height:1.7;
    color:var(--text-body);
  }
 
  /* ---------------- Core Values sub-grid ---------------- */
  .about__values{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:20px;
    margin-top:14px;
  }
 
  .about__value-title{
    font-size:14px;
    font-weight:700;
    color:var(--text-dark);
    margin-bottom:6px;
  }
 
  .about__value-desc{
    font-size:13px;
    line-height:1.7;
    color:var(--text-body);
  }
 
  /* ---------------- Responsive ---------------- */
  @media (max-width: 900px){
    .about{ padding:44px 24px; }
    .about__image{ aspect-ratio:4 / 5; }
  }
 
  @media (max-width: 560px){
    .about__title{ font-size:21px; }
    .about__row{ flex-direction:column; gap:10px; }
    .about__values{ grid-template-columns:1fr; gap:16px; }
  }





 
  .trusted{
    width:100%;
    background:var(--bg-white);
    font-family:'Segoe UI', Tahoma, Arial, sans-serif;
    padding:26px 40px 30px;
  }
 
  .trusted__inner{
    max-width:1300px;
    margin:0 auto;
  }
 
  .trusted__title{
    text-align:center;
    font-size:13px;
    font-weight:700;
    letter-spacing:1.5px;
    color:var(--gold);
    text-transform:uppercase;
    position:relative;
    margin-bottom:26px;
    padding-bottom:18px;
  }
 
  .trusted__title::after{
    content:"";
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    height:1px;
    background:var(--divider);
  }
 
  .trusted__slider{
    display:flex;
    align-items:center;
    gap:14px;
  }
 
  .trusted__nav{
    flex-shrink:0;
    width:38px;
    height:38px;
    border-radius:50%;
    border:1.5px solid var(--gold);
    background:transparent;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
  }
 
  .trusted__nav svg{
    width:16px;
    height:16px;
    stroke:var(--gold);
  }
 
  .trusted__viewport{
    flex:1;
    overflow:hidden;
  }
 
  .trusted__track{
    display:flex;
    align-items:center;
    gap:56px;
    transition:transform 0.45s ease;
    will-change:transform;
  }
 
  .trusted__logo{
    flex:0 0 auto;
    height:100px;
    display:flex;
    align-items:center;
    justify-content:center;
  }
 
  .trusted__logo img{
    height:100%;
    width:auto;
    max-width:150px;
    object-fit:contain;
    display:block;
  }
 
  /* ---------------- Responsive ---------------- */
  @media (max-width: 900px){
    .trusted{ padding:22px 20px 26px; }
    .trusted__track{ gap:36px; }
    .trusted__logo{ height:36px; }
    .trusted__logo img{ max-width:110px; }
  }
 
  @media (max-width: 560px){
    .trusted__title{ font-size:11.5px; letter-spacing:1px; }
    .trusted__nav{ width:32px; height:32px; }
    .trusted__nav svg{ width:13px; height:13px; }
    .trusted__track{ gap:28px; }
    .trusted__logo{ height:30px; }
    .trusted__logo img{ max-width:90px; }
  }




  
 
  .stats{
    width:100%;
    background:var(--bg-page);
    font-family:'Segoe UI', Tahoma, Arial, sans-serif;
    padding:40px 40px;
  }
 
  .stats__card{
    max-width:1240px;
    margin:0 auto;
    background:var(--card-bg);
    border-radius:14px;
    padding:8px 20px;
  }
 
  .stats__grid{
    display:grid;
    grid-template-columns:repeat(5, 1fr);
  }
 
  .stats__item{
    display:flex;
    align-items:center;
    gap:14px;
    padding:24px 18px;
    border-right:1px solid var(--divider);
  }
 
  .stats__item:last-child{
    border-right:none;
  }
 
  .stats__icon{
    flex-shrink:0;
    width:28px;
    height:28px;
  }
 
  .stats__icon svg{
    width:100%;
    height:100%;
    stroke:var(--gold);
  }
 
  .stats__number{
    font-size:22px;
    font-weight:800;
    color:var(--text-white);
    line-height:1.1;
    margin-bottom:4px;
    white-space:nowrap;
  }
 
  .stats__label{
    font-size:12px;
    line-height:1.4;
    color:var(--text-muted);
  }
 
  /* ---------------- Responsive ---------------- */
 
  /* Tablet: 3 columns wrap into 2 rows (3 + 2) */
  @media (max-width: 980px){
    .stats__grid{ grid-template-columns:repeat(3, 1fr); }
 
    .stats__item{ border-right:1px solid var(--divider); border-bottom:1px solid var(--divider); }
    .stats__item:nth-child(3n){ border-right:none; }
    .stats__item:last-child { border-right: 1px solid var(--divider);; }
  }
 
  /* Mobile: 2 columns */
  @media (max-width: 640px){
    .stats{ padding:24px 16px; }
    .stats__card{ padding:6px 8px; }
 
    .stats__grid{ grid-template-columns:repeat(2, 1fr); }
 
    .stats__item{
      border-right:1px solid var(--divider);
      border-bottom:1px solid var(--divider);
      padding:18px 12px;
      gap:10px;
    }
    .stats__item:nth-child(3n){ border-right:1px solid var(--divider); }
    .stats__item:nth-child(2n){ border-right:none; }
    .stats__item:last-child { border-right: 1px solid var(--divider);; }
 
    .stats__icon{ width:22px; height:22px; }
    .stats__number{ font-size:18px; }
    .stats__label{ font-size:10.5px; }
  }
 
  /* Extra small: single column, only horizontal dividers */
  @media (max-width: 380px){
    .stats__grid{ grid-template-columns:1fr; }
    .stats__item{
      border-right:none !important;
      border-bottom:1px solid var(--divider) !important;
      justify-content:flex-start;
    }
    .stats__item:last-child{ border-bottom:none !important; }
  }





 
  .testi{
    width:100%;
    background:var(--test-bg-page);
    font-family:'Segoe UI', Tahoma, Arial, sans-serif;
    padding:44px 40px 20px;
  }
 
  .testi__eyebrow{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:14px;
    color:var(--test-gold);
    font-size:12.5px;
    font-weight:700;
    letter-spacing:1.8px;
    text-transform:uppercase;
    margin-bottom:28px;
  }
 
  .testi__eyebrow::before,
  .testi__eyebrow::after{
    content:"";
    width:60px;
    height:1px;
    background:var(--test-gold);
  }
 
  .testi__viewport{
    max-width:1240px;
    margin:0 auto;
    overflow-x:auto;
    scroll-snap-type:x mandatory;
    -webkit-overflow-scrolling:touch;
    scrollbar-width:none;
  }
 
  .testi__viewport::-webkit-scrollbar{
    display:none;
  }
 
  .testi__track{
    display:flex;
    gap:22px;
  }
 
  .testi__card{
    flex:0 0 100%;
    scroll-snap-align:start;
    background:var(--test-card-bg);
    border:1px solid var(--test-card-border);
    border-radius:10px;
    padding:30px 26px;
  }
 
  .testi__quote{
    width:30px;
    height:22px;
    stroke:var(--test-gold);
    margin-bottom:14px;
  }
 
  .testi__text{
    font-size:13.5px;
    line-height:1.75;
    color:var(--test-text-body);
    margin-bottom:20px;
  }
 
  .testi__author{
    font-size:13.5px;
    font-weight:700;
    color:var(--test-text-dark);
    margin-bottom:12px;
  }
 
  .testi__stars{
    display:flex;
    gap:4px;
  }
 
  .testi__stars svg{
    width:14px;
    height:14px;
    fill:var(--test-gold);
    stroke:var(--test-gold);
  }
 
  .testi__dots{
    display:flex;
    justify-content:center;
    gap:8px;
    margin-top:26px;
  }
 
  .testi__dot{
    width:8px;
    height:8px;
    border-radius:50%;
    background:#d8d5cf;
    border:none;
    cursor:pointer;
    padding:0;
  }
 
  .testi__dot.is-active{
    background:var(--test-gold);
  }
 
  /* ---------------- Desktop: show 3 cards side by side, no scroll ---------------- */
  @media (min-width: 901px){
    .testi__viewport{ overflow:visible; }
    .testi__track{ display:grid; grid-template-columns:repeat(3, 1fr); }
    .testi__card{ flex:none; }
    .testi__dots{ display:none; }
  }
 
  /* ---------------- Tablet / Mobile: swipeable single-card carousel ---------------- */
  @media (max-width: 900px){
    .testi{ padding:36px 20px 20px; }
    .testi__eyebrow::before,
    .testi__eyebrow::after{ width:30px; }
    .testi__card{ flex:0 0 100%; }
  }
 
  @media (max-width: 560px){
    .testi__eyebrow{ font-size:11.5px; }
    .testi__card{ padding:24px 20px; }
  }







 
  .faq{
    width:100%;
    background:var(--faq-bg-page);
    font-family:'Segoe UI', Tahoma, Arial, sans-serif;
    padding:44px 40px;
  }
 
  .faq__eyebrow{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:16px;
    color:var(--faq-text-dark);
    font-size:16px;
    font-weight:800;
    letter-spacing:1.5px;
    text-transform:uppercase;
    margin-bottom:28px;
  }
 
  .faq__eyebrow::before,
  .faq__eyebrow::after{
    content:"";
    width:60px;
    height:1px;
    background:var(--faq-gold);
  }
 
  .faq__list{
    max-width:1200px;
    margin:0 auto;
    display:flex;
    flex-direction:column;
    gap:12px;
  }
 
  .faq__item{
    background:var(--faq-card-bg);
    border:1px solid var(--faq-card-border);
    border-radius:8px;
    overflow:hidden;
  }
 
  .faq__question{
    width:100%;
    display:flex;
    align-items:center;
    gap:16px;
    padding:18px 22px;
    background:none;
    border:none;
    cursor:pointer;
    text-align:left;
  }
 
  .faq__icon{
    flex-shrink:0;
    width:32px;
    height:32px;
    border-radius:50%;
    border:1.5px solid var(--faq-gold);
    display:flex;
    align-items:center;
    justify-content:center;
  }
 
  .faq__icon svg{
    width:16px;
    height:16px;
    stroke:var(--faq-gold);
  }
 
  .faq__question-text{
    flex:1;
    font-size:14.5px;
    font-weight:700;
    color:var(--faq-text-dark);
  }
 
  .faq__chevron{
    flex-shrink:0;
    width:16px;
    height:16px;
    stroke:var(--faq-gold);
    transition:transform 0.25s ease;
  }
 
  .faq__item.is-open .faq__chevron{
    transform:rotate(180deg);
  }
 
  .faq__answer{
    max-height:0;
    overflow:hidden;
    transition:max-height 0.3s ease;
  }
 
  .faq__answer-inner{
    padding:0 22px 20px 70px;
    font-size:13.5px;
    line-height:1.7;
    color:var(--faq-text-body);
  }
 
  /* ---------------- Responsive ---------------- */
  @media (max-width: 640px){
    .faq{ padding:32px 18px; }
    .faq__eyebrow{ font-size:13px; }
    .faq__eyebrow::before,
    .faq__eyebrow::after{ width:24px; }
    .faq__question{ padding:15px 16px; gap:12px; }
    .faq__question-text{ font-size:13.5px; }
    .faq__icon{ width:28px; height:28px; }
    .faq__icon svg{ width:14px; height:14px; }
    .faq__answer-inner{ padding:0 16px 16px 56px; font-size:13px; }
  }




 
  .cta{
    width:100%;
    background:var(--bg-page, #ffffff);
    font-family:'Segoe UI', Tahoma, Arial, sans-serif;
    padding:24px 40px;
  }
 
  .cta__card{
    position:relative;
    max-width:1300px;
    margin:0 auto;
    background:var(--bg-dark);
    border-radius:14px;
    overflow:hidden;
    padding:38px 48px;
  }
 
  /* decorative gold swirl on the left */
  .cta__card::before{
    content:"";
    position:absolute;
    left:-40px;
    top:-40px;
    width:220px;
    height:220px;
    background:radial-gradient(circle, rgba(201,154,61,0.25) 0%, rgba(201,154,61,0) 70%);
    pointer-events:none;
  }
 
  .cta__deco{
    position:absolute;
    right:0;
    top:0;
    height:100%;
    width:38%;
    opacity:0.55;
    pointer-events:none;
  }
 
  .cta__deco svg{
    width:100%;
    height:100%;
    stroke:var(--gold);
  }
 
  .cta__grid{
    position:relative;
    z-index:1;
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    gap:32px;
  }
 
  .cta__left{
    flex:1.3 1 340px;
    min-width:260px;
  }
 
  .cta__title{
    font-family:'Segoe UI', Tahoma, Arial, sans-serif;
    font-weight:700;
    font-size:26px;
    line-height:1.35;
    color:var(--text-white);
  }
 
  .cta__right{
    flex:1 1 300px;
    min-width:240px;
    padding-left:32px;
    border-left:1px solid rgba(201,154,61,0.3);
  }
 
  .cta__right-text{
    font-size:14px;
    font-weight:600;
    line-height:1.5;
    color:var(--text-white);
    margin-bottom:18px;
  }
 
  .cta__btn{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:var(--gold);
    color:#1a1a1a;
    font-size:14px;
    font-weight:700;
    padding:14px 24px;
    border-radius:6px;
    text-decoration:none;
    white-space:nowrap;
  }
 
  .cta__btn svg{
    width:15px;
    height:15px;
    stroke:#1a1a1a;
  }
 
  /* ---------------- Responsive ---------------- */
  @media (max-width: 900px){
    .cta__card{ padding:32px 28px; }
    .cta__title{ font-size:22px; }
    .cta__right{
      padding-left:0;
      border-left:none;
      padding-top:24px;
      border-top:1px solid rgba(201,154,61,0.3);
    }
    .cta__deco{ width:55%; opacity:0.35; }
  }
 
  @media (max-width: 560px){
    .cta{ padding:18px 16px; }
    .cta__card{ padding:26px 20px; }
    .cta__title{ font-size:19px; }
    .cta__btn{ width:100%; justify-content:center; }
    .cta__deco{ display:none; }
  }