/* BASIC css start */
  
  @import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');  
  
   .bbs-tit {max-width:1690px;margin: 0 auto;}
  
  :root {
    --navy: #0d1b2a;
    --navy-mid: #1a2e42;
    --orange: #ed6d00;
    --orange-light: #ff8c2a;
    --orange-pale: #fff3e8;
    --cream: #f7f4ef;
    --white: #ffffff;
    --gray-100: #f5f5f3;
    --gray-200: #e8e6e2;
    --gray-500: #8a8880;
    --text-main: #1a1a18;
    --text-sub: #5a5855;
  }
  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body { background: var(--white); color: var(--text-main); overflow-x: hidden; }
 
  /* HERO */
  .hero {
    position: relative;
    background: var(--navy);
    min-height: 620px;
    display: flex;
    overflow: hidden;
    max-width: 1690px;
    margin: 0 auto;
    border-radius: 0 0 50px 50px;
    /* margin-top: 50px; */
    flex-direction: column;
  }
  .hero-bg-img {
    position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(13,27,42,.97) 45%, rgba(13,27,42,.5) 100%),
      url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1400&auto=format&fit=crop') center/cover no-repeat;
  }
  .hero-bar { position: absolute; left: 0; top: 0; width: 5px; height: 100%; background: linear-gradient(180deg, transparent, var(--orange), transparent); }
  .hero-content { position: relative; z-index: 2; padding: 80px clamp(28px,7vw,110px); max-width: 100%; }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(237,109,0,.15); border: 1px solid rgba(237,109,0,.45);
    color: var(--orange-light); font-size: 11px; font-weight: 600;
    letter-spacing: 2.5px; text-transform: uppercase;
    padding: 6px 14px; border-radius: 2px; margin-bottom: 26px;
    animation: fadeUp .55s ease both;
  }
  .badge-dot { width: 6px; height: 6px; background: var(--orange); border-radius: 50%; animation: blink 2s infinite; }
  @keyframes blink { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(1.5)} }
  .hero-title {
    font-size: clamp(28px,4.8vw,50px); font-weight: 700;
    color: var(--white); line-height: 1.28; margin-bottom: 18px;
    animation: fadeUp .55s .12s ease both; word-break: keep-all;
  }
  .hero-title em { color: var(--orange); font-style: normal; }
  .hero-sub {
    font-size: clamp(13px,1.5vw,16px); color: rgba(255,255,255,.58);
    line-height: 1.85; word-break: keep-all;
    animation: fadeUp .55s .22s ease both;
  }
  .hero-stats {
    display: flex; flex-wrap: wrap; gap: 40px;
    margin-top: 52px; border-top: 1px solid rgba(255,255,255,.1); padding-top: 36px;
    animation: fadeUp .55s .32s ease both;
  }
  .hero-stat { display: flex; flex-direction: column; }
  .hero-stat-num { font-family: 'InfinitySans-RegularA1', sans-serif; font-size: 44px; color: var(--orange); line-height: 1; letter-spacing: 1px; }
  .hero-stat-label { font-size: 11px; color: rgba(255,255,255,.45); margin-top: 5px; letter-spacing: .5px; }
  @keyframes fadeUp { from{opacity:0;transform:translateY(22px)} to{opacity:1;transform:translateY(0)} }
 
  /* SECTION COMMON */
  .section { padding: clamp(64px,9vw,108px) clamp(28px,7vw,110px); }
  .inner { max-width: 1160px; margin: 0 auto; }
  .s-label { font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--orange); margin-bottom: 10px; }
  .s-title { font-size: clamp(22px,3.2vw,38px); font-weight: 700; color: var(--navy); line-height: 1.32; margin-bottom: 14px; word-break: keep-all; }
  .s-title.light { color: var(--white); }
  .s-div { width: 44px; height: 3px; background: var(--orange); margin-bottom: 22px; border-radius: 2px; }
 
  /* INTRO (CEO) */
  .intro-section {
    position: relative; overflow: hidden;
    background: var(--navy);
    padding: clamp(80px,10vw,130px) clamp(28px,7vw,110px);
  }
  .intro-bg {
    position: absolute; inset: 0;
    background: url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?w=1600&auto=format&fit=crop') center/cover no-repeat;
    opacity: .08;
  }
  .intro-gradient {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(237,109,0,.06) 0%, transparent 70%);
  }
  .intro-inner {
    position: relative; z-index: 1;
    max-width: 100%; margin: 0 auto; text-align: center; padding: 80px 0 50px;
  }
  .intro-q-icon {
    width: 52px; height: 52px; background: rgba(237,109,0,.15);
    border: 1px solid rgba(237,109,0,.35); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 28px;
  }
  .intro-msg {
    font-size: clamp(15px,1.9vw,17px); color: rgba(255,255,255,.82);
    line-height: 170%; word-break: keep-all; margin-bottom: 48px;
  }
  .intro-sig {
    display: flex; align-items: center; justify-content: center; gap: 14px; margin-bottom: 64px;
  }
  .intro-sig-line { width: 36px; height: 2px; background: var(--orange); }
  .intro-sig-text { color: var(--orange-light); font-size: 13px; font-weight: 600; letter-spacing: .8px; }
  .intro-divider {
    width: 1px; height: 40px; background: rgba(255,255,255,.12); margin: 0 auto 64px;
  }

  .value-item {
    display: flex; gap: 14px; align-items: flex-start;
    padding: 20px 18px; background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 12px; border-top: 2px solid var(--orange);
    transition: background .25s;
  }
  .value-item:hover { background: rgba(237,109,0,.1); }
  .v-icon {
    width: 40px; height: 40px; background: rgba(237,109,0,.15); border-radius: 10px;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  }
  .v-icon svg { width: 19px; height: 19px; fill: none; stroke: var(--orange); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
  .v-text strong { display: block; font-size: 13px; font-weight: 700; color: rgba(255,255,255,.9); margin-bottom: 4px; }
  .v-text p { font-size: 12px; color: rgba(255,255,255,.45); line-height: 1.7; }
 
  /* BUSINESS */
  .biz-section { background: var(--white); }
  .biz-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px,1fr)); gap: 20px; margin-top: 52px; }
  .biz-card { border-radius: 14px; overflow: hidden; border: 1px solid var(--gray-200); transition: transform .28s, box-shadow .28s; background: var(--white); }
  .biz-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(13,27,42,.1); }
  .biz-card-img { width: 100%; height: 160px; object-fit: cover; display: block; }
  .biz-card-body { padding: 20px 20px 22px; }
  .biz-icon-wrap {
    width: 40px; height: 40px; background: var(--orange-pale); border-radius: 10px;
    display: flex; align-items: center; justify-content: center; margin-bottom: 12px;
  }
  .biz-icon-wrap svg { width: 20px; height: 20px; fill: none; stroke: var(--orange); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
  .biz-card h3 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 7px; }
  .biz-card p { font-size: 12.5px; color: var(--text-sub); line-height: 1.78; }
  .biz-tag { display: inline-block; margin-top: 12px; font-size: 10px; font-weight: 700; letter-spacing: 1px; color: var(--orange); text-transform: uppercase; border: 1px solid rgba(237,109,0,.3); padding: 3px 10px; border-radius: 20px; }
 
  /* NUMBERS */
  .num-section { background: var(--navy); position: relative; overflow: hidden; }
  .num-section::before {
    content: ''; position: absolute; inset: 0;
    background: url('https://images.unsplash.com/photo-1521737711867-e3b97375f902?w=1400&auto=format&fit=crop') center/cover no-repeat;
    opacity: .06;
  }
  .num-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(180px,1fr));
    gap: 1px; background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.08); border-radius: 14px; overflow: hidden; margin-top: 52px;
  }
  .num-item { padding: 40px 32px; background: var(--navy); display: flex; flex-direction: column; align-items: center; text-align: center; transition: background .2s; }
  .num-item:hover { background: rgba(237,109,0,.1); }
  .num-ic { width: 52px; height: 52px; border-radius: 50%; background: rgba(237,109,0,.15); border: 1px solid rgba(237,109,0,.3); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
  .num-ic svg { width: 24px; height: 24px; fill: none; stroke: var(--orange); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
  .num-val { font-family: 'InfinitySans-RegularA1', sans-serif; font-size: 52px; line-height: 1; color: var(--orange); letter-spacing: 1px; }
  .num-unit { font-size: 22px; vertical-align: super; }
  .num-lbl { font-size: 12px; color: rgba(255,255,255,.5); margin-top: 8px; line-height: 1.5; }
 
  /* PARTNERS */
  .partners-section { background: var(--gray-100); }
  .partners-hdr { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 44px; flex-wrap: wrap; gap: 20px; }
  .partners-sub { font-size: 13.5px; color: var(--text-sub); line-height: 1.75; }
  .partner-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px,1fr)); gap: 12px; }
  .partner-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: 10px; padding: 20px 14px; text-align: center; transition: all .22s; cursor: default; }
  .partner-card:hover { border-color: var(--orange); box-shadow: 0 4px 18px rgba(237,109,0,.12); transform: translateY(-3px); }
  .partner-card img {width:100%;}
 
  /* CHANNELS - merged into biz */
  .ch-card { border-radius: 14px; overflow: hidden; position: relative; min-height: 220px; display: flex; flex-direction: column; justify-content: flex-end; transition: transform .28s; cursor: default; }
  .ch-card:hover { transform: scale(1.025); }
  .ch-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
  .ch-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(13,27,42,.1) 0%, rgba(13,27,42,.82) 100%); }
  .ch-body { position: relative; z-index: 1; padding: 20px 22px; }
  .ch-tag { display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; background: var(--orange); color: var(--white); padding: 3px 10px; border-radius: 20px; margin-bottom: 7px; }
  .ch-card h3 { font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
  .ch-card p { font-size: 12px; color: rgba(255,255,255,.65); line-height: 1.6; }
 
  /* HISTORY */
  .hist-section { background: var(--cream); }
  .hist-layout { display: grid; grid-template-columns: 345px 1fr; gap: 72px; align-items: start; }
  .hist-sticky { position: sticky; top: 155px; }
  .hist-desc { font-size: 13.5px; color: var(--text-sub); line-height: 1.85; margin-top: 16px; word-break: keep-all; }
  .hist-img { width: 100%; aspect-ratio: 4/3; border-radius: 12px; overflow: hidden; margin-top: 26px; }
  .hist-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .timeline { position: relative; padding-left: 30px; }
  .timeline::before { content: ''; position: absolute; left: 0; top: 12px; bottom: 0; width: 2px; background: linear-gradient(180deg, var(--orange), var(--gray-200)); }
  .tl-group { margin-bottom: 36px; }
  .tl-year { font-family: 'InfinitySans-RegularA1', sans-serif; font-size: 38px; color: var(--navy); letter-spacing: 2px; margin-bottom: 12px; position: relative; }
  .tl-year::before { content: ''; position: absolute; left: -39px; top: 50%; transform: translateY(-50%); width: 18px; height: 18px; background: var(--orange); border-radius: 50%; border: 3px solid var(--cream); box-shadow: 0 0 0 2px var(--orange); }
  .tl-items { display: flex; flex-direction: column; gap: 7px; padding-left: 6px; }
  .tl-item { display: flex; gap: 14px; align-items: baseline; padding: 9px 15px; background: var(--white); border-radius: 8px; border-left: 3px solid transparent; font-size: 13px; transition: border-color .2s, box-shadow .2s; }
  .tl-item:hover { border-left-color: var(--orange); box-shadow: 0 2px 12px rgba(237,109,0,.1); }
  .tl-mon { font-weight: 700; color: var(--orange); font-size: 11px; min-width: 20px; flex-shrink: 0; }
  .tl-txt { color: var(--text-sub); line-height: 1.6; }
 
  /* CTA */
  .cta-section { background: var(--navy); position: relative; overflow: hidden; }
  .cta-bg-img { position: absolute; inset: 0; background: url('https://images.unsplash.com/photo-1600880292203-757bb62b4baf?w=1400&auto=format&fit=crop') center/cover no-repeat; opacity: .08; }
  .cta-glow { position: absolute; inset: 0; background: radial-gradient(ellipse 65% 80% at 75% 50%, rgba(237,109,0,.1) 0%, transparent 65%); }
  .cta-inner { position: relative; z-index: 1; text-align: center; max-width: 640px; margin: 0 auto; }
  .cta-title { font-size: clamp(24px,3.8vw,44px); color: var(--white); font-weight: 700; line-height: 1.3; margin-bottom: 18px; word-break: keep-all; }
  .cta-title em { color: var(--orange); font-style: normal; }
  .cta-sub { font-size: 14.5px; color: rgba(255,255,255,.52); line-height: 1.85; margin-bottom: 36px; }
  .cta-info { display: flex; justify-content: center; gap: 36px; margin-bottom: 38px; flex-wrap: wrap; }
  .cta-info-item { display: flex; align-items: center; gap: 10px; }
  .cta-info-ic { width: 38px; height: 38px; background: rgba(237,109,0,.18); border-radius: 8px; display: flex; align-items: center; justify-content: center; }
  .cta-info-ic svg { width: 18px; height: 18px; fill: none; stroke: var(--orange); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
  .cta-info-lbl { font-size: 10px; color: rgba(255,255,255,.38); letter-spacing: 1px; text-transform: uppercase; }
  .cta-info-val { font-size: 13px; color: rgba(255,255,255,.8); font-weight: 500; margin-top: 2px; }
  .cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
  .btn-p { display: inline-flex; align-items: center; gap: 8px; background: var(--orange); color: var(--white); font-size: 14px; font-weight: 700; padding: 14px 28px; border-radius: 5px; text-decoration: none; letter-spacing: .4px; transition: all .2s; }
  .btn-p:hover { background: var(--orange-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(237,109,0,.35); }
  .btn-o { display: inline-flex; align-items: center; gap: 8px; border: 1px solid rgba(255,255,255,.22); color: rgba(255,255,255,.78); font-size: 14px; font-weight: 500; padding: 14px 28px; border-radius: 5px; text-decoration: none; transition: all .2s; }
  .btn-o:hover { border-color: var(--orange); color: var(--orange-light); }
 
  /* REVEAL */
  .reveal { opacity: 0; transform: translateY(26px); transition: opacity .65s ease, transform .65s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .d1{transition-delay:.1s}.d2{transition-delay:.18s}.d3{transition-delay:.26s}.d4{transition-delay:.34s}
 
  @media (max-width: 820px) {
    .ceo-wrap { grid-template-columns: 1fr; }
    .hist-layout { grid-template-columns: 1fr; }
    .hist-sticky { position: static; }
    
    
    
/* BASIC css end */

