
    :root{
      --navy:#171a20;
      --navy-2:#3d3d3d;
      --blue:#171a20;
      --silver:#8e8e93;
      --silver-2:#f4f4f4;
      --ink:#171a20;
      --muted:#5c5e62;
      --line:#e5e5e5;
      --bg:#ffffff;
      --card:#ffffff;
      --success:#2da44e;
      --shadow:0 12px 28px rgba(0,0,0,.08);
      --radius:18px;
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:
        -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang TC", "Noto Sans TC",
        "Microsoft JhengHei", Roboto, Helvetica, Arial, sans-serif;
      background:var(--bg);
      color:var(--ink);
    }

    button, input, textarea{font:inherit}

    .site-header{
      position:sticky;
      top:0;
      z-index:30;
      backdrop-filter:blur(18px);
      background:rgba(255,255,255,.85);
      border-bottom:1px solid rgba(0,0,0,.08);
    }

    .nav{
      max-width:1400px;
      margin:auto;
      padding:16px 32px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:28px;
    }

    .brand{
      display:flex;
      align-items:center;
      gap:12px;
      font-weight:800;
      letter-spacing:.02em;
      color:var(--ink);
      text-decoration:none;
      flex:0 0 auto;
    }

    .brand-icon{
      display:block;
      height:52px;
      width:auto;
      object-fit:contain;
      pointer-events:none;
      user-select:none;
    }

    .nav-links{
      display:flex;
      align-items:center;
      flex:1;
      gap:20px;
      min-width:0;
    }

    .nav-menu{
      display:flex;
      align-items:center;
      justify-content:center;
      flex:1;
      gap:12px;
      min-width:0;
    }

    .nav-actions{
      display:flex;
      align-items:center;
      gap:14px;
      flex:0 0 auto;
    }

    @media (min-width:1401px){
      .nav{
        display:grid;
        grid-template-columns:1fr auto 1fr;
        gap:20px;
      }
      .brand{justify-self:start}
      .nav-links{display:contents}
      .nav-actions{justify-self:end}
    }

    .nav-link{
      border:0;
      background:transparent;
      color:var(--ink);
      padding:12px 16px;
      border-radius:12px;
      cursor:pointer;
      font-size:16px;
      white-space:nowrap;
    }

    .nav-link:hover{background:#f4f4f4}
    .nav-link.active{background:#f4f4f4;font-weight:600}

    .nav-toggle{
      display:none;
      width:40px;
      height:40px;
      align-items:center;
      justify-content:center;
      border-radius:10px;
      border:1px solid var(--line);
      background:#fff;
      cursor:pointer;
      font-size:18px;
    }

    .btn{
      border:0;
      border-radius:999px;
      padding:14px 28px;
      font-weight:600;
      font-size:15px;
      cursor:pointer;
      white-space:nowrap;
      transition:.2s ease;
    }

    .btn:hover{transform:translateY(-1px)}
    .btn-primary{
      color:#fff;
      background:var(--ink);
      box-shadow:none;
    }
    .btn-primary:hover{background:#000}
    .btn-secondary{
      background:#fff;
      color:var(--ink);
      border:1px solid var(--ink);
    }
    .btn-secondary:hover{background:#f4f4f4}

    .hero{
      max-width:1220px;
      margin:0 auto;
      padding:96px 24px 56px;
      display:grid;
      grid-template-columns:1.06fr .94fr;
      gap:36px;
      align-items:center;
    }

    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 12px;
      border-radius:999px;
      background:#fff;
      border:1px solid var(--line);
      color:var(--navy-2);
      font-size:13px;
      font-weight:800;
      box-shadow:0 8px 24px rgba(0,0,0,.06);
    }

    .dot{
      width:8px;
      height:8px;
      border-radius:50%;
      background:var(--success);
      box-shadow:0 0 0 5px rgba(15,159,110,.12);
    }

    h1{
      font-size:clamp(40px,5vw,68px);
      line-height:1.05;
      margin:24px 0 18px;
      letter-spacing:-.03em;
      font-weight:700;
      color:var(--navy);
    }

    .hero-copy{
      max-width:680px;
      color:var(--muted);
      font-size:18px;
      line-height:1.8;
      margin:0;
    }

    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      margin-top:28px;
    }

    .hero-note{
      display:flex;
      gap:18px;
      flex-wrap:wrap;
      margin-top:22px;
      color:var(--muted);
      font-size:13px;
    }

    .hero-note span::before{
      content:"✓";
      color:var(--success);
      margin-right:7px;
      font-weight:900;
    }

    

    

    

    
    

    

    

    

    
    
    
    

    

    
    
    

    

    .section{
      max-width:1220px;
      margin:0 auto;
      padding:76px 24px;
    }

    .section-head{
      display:flex;
      justify-content:space-between;
      gap:24px;
      align-items:flex-end;
      margin-bottom:32px;
    }

    .section-kicker{
      color:var(--muted);
      font-size:13px;
      font-weight:600;
      letter-spacing:.08em;
      text-transform:uppercase;
    }

    h2{
      margin:7px 0 0;
      color:var(--navy);
      font-size:clamp(30px,4vw,48px);
      letter-spacing:-.02em;
      font-weight:700;
    }

    .section-desc{
      max-width:520px;
      color:var(--muted);
      line-height:1.7;
      margin:0;
    }

    .filters{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-bottom:24px;
    }

    .filter{
      border:1px solid var(--line);
      background:#fff;
      color:var(--muted);
      padding:10px 14px;
      border-radius:999px;
      cursor:pointer;
      font-weight:750;
      transition:.2s ease;
    }

    .filter:hover,
    .filter.active{
      color:#fff;
      background:var(--navy);
      border-color:var(--navy);
    }

    .product-grid{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:22px;
    }
    .product-grid.cols-4{grid-template-columns:repeat(4,1fr)}
    @media(max-width:1100px){.product-grid.cols-4{grid-template-columns:repeat(2,1fr)}}
    @media(max-width:680px){.product-grid.cols-4{grid-template-columns:1fr}}

    .card{
      position:relative;
      overflow:hidden;
      background:var(--card);
      border:1px solid var(--line);
      border-radius:var(--radius);
      box-shadow:none;
      transition:.24s ease;
    }

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

    .product-media{
      background-position:center center;
      height:292px;
      position:relative;
      display:flex;
      justify-content:center;
      align-items:center;
      overflow:hidden;
      background:
        radial-gradient(circle at 50% 35%,rgba(255,255,255,.95),rgba(232,237,242,.68) 58%,rgba(183,194,206,.35)),
        #edf1f5;
    }

    .product-placeholder .placeholder-icon{
      position:relative;
      z-index:2;
      width:96px;
      height:96px;
      display:grid;
      place-items:center;
      border-radius:50%;
      background:linear-gradient(145deg,var(--navy),var(--blue));
      color:#fff;
      font-size:34px;
      font-weight:800;
      box-shadow:0 16px 30px rgba(0,0,0,.3);
    }

    .product-media::after{
      content:"";
      position:absolute;
      left:12%;
      right:12%;
      bottom:32px;
      height:22px;
      border-radius:50%;
      background:rgba(0,0,0,.13);
      filter:blur(11px);
    }

    .product-image{
      position:relative;
      z-index:2;
      width:88%;
      height:88%;
      object-fit:contain;
      object-position:center;
      filter:drop-shadow(0 18px 18px rgba(0,0,0,.18));
      transition:transform .25s ease;
    }

    .card:hover .product-image{
      transform:scale(1.035);
    }

    .official-badge{
      position:absolute;
      top:16px;
      left:16px;
      z-index:4;
      padding:7px 10px;
      border-radius:999px;
      background:rgba(0,0,0,.88);
      color:#fff;
      font-size:11px;
      font-weight:850;
      letter-spacing:.04em;
    }

    .card-body{padding:25px}

    .product-code{
      color:var(--muted);
      font-size:13px;
      font-weight:750;
      letter-spacing:.04em;
    }

    .card h3{
      margin:7px 0 4px;
      font-size:30px;
      color:var(--navy);
      letter-spacing:-.03em;
    }

    .product-subtitle{
      margin:0 0 14px;
      color:var(--navy-2);
      font-weight:780;
    }

    .product-copy{
      color:var(--muted);
      line-height:1.7;
      min-height:82px;
      margin:0;
    }

    .tags{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin:18px 0;
    }

    .tag{
      padding:7px 10px;
      border-radius:999px;
      background:#f1f4f7;
      color:#566174;
      font-size:12px;
      font-weight:750;
    }

    .spec-strip{
      border-top:1px solid var(--line);
      padding-top:17px;
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:10px;
    }

    .spec{
      background:#f8fafc;
      border-radius:14px;
      padding:11px 12px;
    }

    .spec small{
      display:block;
      color:var(--muted);
      font-size:11px;
      margin-bottom:3px;
    }

    .spec strong{
      color:var(--navy);
      font-size:13px;
    }

    .card-actions{
      display:flex;
      gap:10px;
      margin-top:18px;
    }

    .card-actions .btn{flex:1}

    .value-grid{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:16px;
    }

    .value-card{
      padding:23px;
      border-radius:20px;
      background:#fff;
      border:1px solid var(--line);
    }

    .value-icon{
      width:42px;
      height:42px;
      display:grid;
      place-items:center;
      border-radius:13px;
      background:#f4f4f4;
      color:var(--blue);
      font-weight:900;
      margin-bottom:15px;
    }

    .value-card h4{
      margin:0 0 8px;
      color:var(--navy);
    }

    .value-card p{
      margin:0;
      color:var(--muted);
      line-height:1.65;
      font-size:14px;
    }

    .cta{
      max-width:1172px;
      margin:40px auto 80px;
      padding:38px;
      border-radius:30px;
      color:#fff;
      background:
        radial-gradient(circle at 85% 20%,rgba(255,255,255,.16),transparent 25%),
        linear-gradient(135deg,var(--navy),#000000);
      box-shadow:var(--shadow);
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:24px;
    }

    .cta h2{color:#fff;margin:0 0 8px;font-size:36px}
    .cta p{margin:0;color:rgba(255,255,255,.72);line-height:1.7}

    .contact-section{
      max-width:1172px;
      margin:0 auto 34px;
      display:grid;
      grid-template-columns:.9fr 1.1fr;
      gap:22px;
    }

    .contact-panel{
      padding:32px;
      border-radius:26px;
      background:#fff;
      border:1px solid var(--line);
      box-shadow:0 10px 32px rgba(0,0,0,.06);
    }

    .contact-brand{
      display:flex;
      align-items:center;
      gap:14px;
      margin-bottom:22px;
    }

    .contact-brand .contact-brand-icon{
      height:38px;
    }

    .contact-description{
      max-width:480px;
      margin:0;
      color:var(--muted);
      font-size:16px;
      line-height:1.85;
    }

    .contact-title{
      margin:0 0 22px;
      color:var(--navy);
      font-size:24px;
      letter-spacing:-.025em;
    }

    .contact-list{
      display:grid;
      gap:15px;
    }

    .contact-item{
      display:grid;
      grid-template-columns:118px 1fr;
      gap:12px;
      align-items:start;
      color:var(--muted);
      line-height:1.7;
    }

    .contact-item strong{
      color:var(--navy);
      font-size:16px;
    }

    .contact-item a{
      color:var(--muted);
      text-decoration:none;
    }

    .contact-item a:hover{
      color:var(--blue);
    }

    .contact-address{
      font-style:normal;
    }

    .contact-item div:has(.visit-chip){
      display:flex;
      align-items:center;
      flex-wrap:wrap;
      gap:8px;
    }

    .visit-chip{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 11px;
      border-radius:999px;
      background:#f4f4f4;
      color:var(--navy-2);
      font-size:12px;
      font-weight:800;
    }

    footer{
      padding:26px 24px 42px;
      text-align:center;
      color:var(--muted);
      font-size:12px;
    }

    .modal{
      position:fixed;
      inset:0;
      z-index:100;
      display:none;
      place-items:center;
      padding:24px;
      background:rgba(5,15,28,.66);
      backdrop-filter:blur(8px);
    }

    .modal.open{display:grid}

    .modal-panel{
      width:min(820px,100%);
      max-height:88vh;
      overflow:auto;
      border-radius:26px;
      background:#fff;
      box-shadow:0 28px 80px rgba(0,0,0,.28);
    }

    .modal-head{
      position:sticky;
      top:0;
      background:rgba(255,255,255,.94);
      backdrop-filter:blur(10px);
      padding:20px 22px;
      border-bottom:1px solid var(--line);
      display:flex;
      justify-content:space-between;
      align-items:center;
      z-index:2;
    }

    .modal-head h3{margin:0;color:var(--navy)}
    .close{
      width:38px;
      height:38px;
      border:0;
      border-radius:12px;
      background:#f1f4f7;
      cursor:pointer;
      font-size:20px;
    }

    .modal-content{padding:24px}
    .detail-list{
      display:grid;
      gap:12px;
      padding:0;
      margin:18px 0 0;
      list-style:none;
    }
    .detail-list li{
      padding:14px 16px;
      background:#f8fafc;
      border:1px solid #edf1f4;
      border-radius:14px;
      color:#4d596c;
    }

    .detail-section-title{
      margin:24px 0 12px;
      color:var(--navy);
      font-size:16px;
      font-weight:850;
      letter-spacing:.01em;
    }

    .detail-spec-grid{
      display:grid;
      grid-template-columns:repeat(2,minmax(0,1fr));
      gap:10px;
    }

    .detail-spec{
      min-height:78px;
      padding:13px 14px;
      border-radius:15px;
      background:linear-gradient(145deg,#f8fafc,#eef3f8);
      border:1px solid #e4eaf0;
    }

    .detail-spec small{
      display:block;
      margin-bottom:6px;
      color:var(--muted);
      font-size:11px;
      font-weight:750;
      letter-spacing:.02em;
    }

    .detail-spec strong{
      display:block;
      color:var(--navy);
      font-size:14px;
      line-height:1.45;
    }

    .detail-source-note{
      margin-top:16px;
      padding:11px 13px;
      border-radius:12px;
      background:#f7f9fc;
      color:#7a8495;
      font-size:11px;
      line-height:1.65;
    }

    .form-grid{display:grid;gap:14px}
    label{font-size:13px;font-weight:800;color:var(--navy)}
    input, textarea, select{
      width:100%;
      margin-top:7px;
      padding:13px 14px;
      border-radius:13px;
      border:1px solid var(--line);
      outline:none;
      background:#fff;
    }
    input:focus, textarea:focus, select:focus{
      border-color:var(--blue);
      box-shadow:0 0 0 4px rgba(0,0,0,.1);
    }


    

    

    

    

    

    

    

    

    

    

    @media (max-width:980px){
      .hero{grid-template-columns:1fr}
      
      .product-grid{grid-template-columns:1fr 1fr}
      .value-grid{grid-template-columns:1fr 1fr}
      .contact-section{grid-template-columns:1fr}
      
      
    }

    @media (max-width:1400px){
      .nav-toggle{display:inline-flex}
      .nav-links{
        position:fixed;
        top:64px;
        left:0;
        right:0;
        z-index:29;
        flex-direction:column;
        align-items:stretch;
        gap:4px;
        background:#fff;
        padding:10px 16px 20px;
        border-bottom:1px solid var(--line);
        box-shadow:0 18px 30px rgba(0,0,0,.12);
        display:none;
      }
      .nav-links.open{display:flex}
      .nav-menu,.nav-actions{
        display:flex;
        flex-direction:column;
        align-items:stretch;
        gap:4px;
        width:100%;
      }
      .nav-links .nav-link{display:block;padding:13px 12px;text-align:left;justify-content:flex-start}
      .nav-links .language-switcher{margin:6px 0}
      .nav-links .btn-primary{width:100%}
    }

    @media (max-width:680px){
      .hero{padding-top:44px}
      .product-grid,.value-grid{grid-template-columns:1fr}
      .detail-spec-grid{grid-template-columns:1fr}
      .contact-section{margin-left:16px;margin-right:16px}
      .contact-panel{padding:24px}
      .contact-item{grid-template-columns:1fr;gap:3px}
      .section-head{display:block}
      .section-desc{margin-top:14px}
      .cta{margin-left:16px;margin-right:16px;display:block}
      .cta .btn{margin-top:20px;width:100%}
      .product-copy{min-height:auto}
    }
  
    a.btn, a.nav-link{display:inline-flex;align-items:center;justify-content:center;text-decoration:none}
    
    
    
    
    
    
    
    
    
    
    

    /* Heading layout refinement: controlled phrase wrapping on desktop and mobile */
    .heading-line{
      display:block;
      text-wrap:balance;
    }

    .mobile-break{display:none}

    .hero-title{
      font-size:clamp(40px,3.7vw,48px);
      line-height:1.16;
      letter-spacing:-.025em;
      font-weight:700;
      margin:24px 0 18px;
    }

    .section-title-split{
      font-size:clamp(34px,3.45vw,46px);
      line-height:1.2;
      letter-spacing:-.03em;
    }

    @media (min-width:981px){
      .hero-title .heading-line,
      .section-title-split .heading-line{
        white-space:nowrap;
      }
    }

    @media (max-width:980px){
      .hero-title{
        font-size:clamp(38px,6.2vw,50px);
      }
      .section-title-split{
        font-size:clamp(32px,5.2vw,42px);
      }
    }

    @media (max-width:680px){
      .mobile-break{display:inline}
      .hero-title{
        font-size:clamp(28px,8.4vw,36px);
        line-height:1.18;
        letter-spacing:-.035em;
      }
      .section-title-split{
        font-size:clamp(28px,8vw,35px);
        line-height:1.22;
        letter-spacing:-.025em;
      }
      .hero-title .heading-line,
      .section-title-split .heading-line{
        white-space:normal;
      }
    }

    /* Language switcher */
    .language-switcher{
      position:relative;
      display:inline-flex;
      align-items:center;
      gap:8px;
      min-width:120px;
      height:46px;
      padding:0 16px;
      border:1px solid var(--line);
      border-radius:999px;
      background:rgba(255,255,255,.92);
      color:var(--navy);
      box-shadow:0 6px 18px rgba(0,0,0,.06);
    }

    .language-switcher:focus-within{
      border-color:var(--blue);
      box-shadow:0 0 0 4px rgba(0,0,0,.1);
    }

    .language-icon{
      flex:0 0 auto;
      font-size:16px;
      line-height:1;
    }

    .language-select{
      width:100%;
      border:0;
      outline:0;
      appearance:none;
      -webkit-appearance:none;
      padding:0 20px 0 0;
      background:
        linear-gradient(45deg,transparent 50%,var(--navy) 50%) calc(100% - 4px) 50%/6px 6px no-repeat,
        linear-gradient(135deg,var(--navy) 50%,transparent 50%) 100% 50%/6px 6px no-repeat;
      color:var(--navy);
      font-size:13.5px;
      font-weight:800;
      cursor:pointer;
    }

    .hero > *,
    .section-head > *{
      min-width:0;
    }

    html[lang="en"] .hero-copy,
    html[lang="en"] .section-desc,
    html[lang="en"] .product-copy,
    html[lang="en"] .contact-description{
      letter-spacing:0;
    }

    html[lang="en"] .hero-title .heading-line,
    html[lang="en"] .section-title-split .heading-line{
      white-space:normal;
    }

    html[lang="en"] .hero-title{
      font-size:clamp(38px,3.25vw,50px);
      line-height:1.1;
      letter-spacing:-.035em;
    }

    @media (max-width:680px){
      .nav{
        padding:12px 14px;
      }

      .nav-links{
        gap:7px;
      }

      .language-switcher{
        min-width:86px;
        height:39px;
        padding:0 8px;
      }

      .language-icon{
        display:none;
      }

      .language-select{
        font-size:12px;
      }

      .nav-links > .btn-primary{
        padding:10px 11px;
        font-size:12px;
        white-space:nowrap;
      }

      

      
    }



    /* Final mobile layout fix: replace desktop absolute map positioning with a fluid grid */
    @media (max-width:680px){
      .hero{
        padding:34px 16px 34px;
        gap:26px;
      }

      

      

      

      

      

      

      

      
    }

    



    /* Simple enquiry submission: email app + WhatsApp */
    .form-actions{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:10px;
    }

    .btn-whatsapp{
      color:#075e54;
      background:#ecfdf5;
      border:1px solid #a7f3d0;
    }

    .btn-whatsapp:hover{
      background:#d1fae5;
    }

    @media (max-width:520px){
      .form-actions{grid-template-columns:1fr}
    }


/* ===== School-first campaign redesign ===== */
:root{
  --campus-teal:#171a20;
  --campus-teal-soft:#f4f4f4;
  --campus-warm:#5c5e62;
  --campus-warm-soft:#f4f4f4;
  --campus-sky:#f4f4f4;
}
.hero-campus-v2{
  max-width:1280px;
  padding-top:62px;
  padding-bottom:54px;
  grid-template-columns:minmax(0,700px) minmax(480px,540px);
  justify-content:center;
  gap:40px;
  align-items:center;
}
.hero-copy-panel{position:relative;z-index:2;max-width:700px}
.hero-campus-v2 .hero-title{
  max-width:700px;
  font-size:clamp(39px,3vw,47px);
  line-height:1.1;
  letter-spacing:-.038em;
}
.hero-campus-v2 .hero-copy{max-width:680px;font-size:17px;line-height:1.82}
.hero-photo-card{
  width:100%;
  max-width:540px;
  aspect-ratio:1/1;
  min-height:0;
  justify-self:start;
  transform:translateX(-10px);
  position:relative;
  display:grid;
  place-items:center;
  overflow:visible;
  border-radius:36px;
  background:
    radial-gradient(circle at 68% 16%,rgba(0,0,0,.15),transparent 24rem),
    linear-gradient(145deg,#ffffff 0%,#f4f4f4 100%);
  border:1px solid rgba(255,255,255,.9);
  box-shadow:0 24px 60px rgba(0,0,0,.14);
}
.hero-photo-orbit{
  position:absolute;
  width:400px;height:400px;border-radius:50%;
  border:1px dashed rgba(0,0,0,.22);
  box-shadow:0 0 0 30px rgba(0,0,0,.05),0 0 0 62px rgba(0,0,0,.04);
}
.hero-campus-photo{
  position:relative;z-index:2;
  width:min(88%,450px);height:auto;display:block;
  filter:drop-shadow(0 24px 28px rgba(0,0,0,.18));
}
.hero-photo-label{
  position:absolute;z-index:4;left:28px;bottom:24px;width:252px;
  padding:15px 17px;border-radius:18px;
  background:rgba(255,255,255,.95);
  border:1px solid rgba(221,227,234,.92);
  box-shadow:0 12px 28px rgba(0,0,0,.12);
}
.hero-photo-label span{display:block;color:var(--campus-teal);font-size:12px;font-weight:900;letter-spacing:.08em;text-transform:uppercase}
.hero-photo-label strong{display:block;margin-top:4px;color:var(--navy);font-size:15px;line-height:1.45}
.hero-float{
  position:absolute;z-index:5;
  width:238px;padding:14px 16px;border-radius:18px;
  box-shadow:0 16px 32px rgba(0,0,0,.18);
}
.hero-float b,.hero-float small{display:block}
.hero-float b{font-size:15px;color:#fff}
.hero-float small{margin-top:4px;color:rgba(255,255,255,.82);font-size:12px;line-height:1.55}
.hero-float-one{top:42px;right:18px;background:rgba(0,0,0,.94)}
.hero-float-two{right:18px;bottom:94px;background:linear-gradient(135deg,var(--campus-teal),#000000)}
.stats-bar{max-width:1280px;margin:0 auto;padding:6px 24px 0}
.stats-bar-inner{display:grid;grid-template-columns:repeat(3,1fr);border-top:1px solid var(--line);border-bottom:1px solid var(--line);padding:30px 0}
.stat-item{position:relative;text-align:center}
.stat-item:not(:last-child)::after{content:"";position:absolute;right:0;top:50%;transform:translateY(-50%);width:1px;height:38px;background:var(--line)}
.stat-item strong{display:block;font-size:clamp(30px,3.2vw,40px);font-weight:850;letter-spacing:-.03em;color:var(--navy)}
.stat-item span{display:block;margin-top:6px;color:var(--muted);font-size:13px;font-weight:750}
@media(max-width:680px){
  .stats-bar-inner{grid-template-columns:1fr;gap:18px;padding:22px 0}
  .stat-item:not(:last-child){padding-bottom:18px;border-bottom:1px solid var(--line)}
  .stat-item:not(:last-child)::after{display:none}
}
.campus-needs{padding-top:76px}
.needs-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:22px}
.need-card{
  position:relative;display:flex;flex-direction:column;min-height:296px;
  padding:34px 32px 30px;border-radius:26px;background:#fff;
  border:1px solid var(--line);box-shadow:0 10px 30px rgba(0,0,0,.06);
}
.need-card:hover{transform:translateY(-3px);box-shadow:var(--shadow);transition:.2s ease}
.need-number{position:absolute;right:24px;top:21px;font-size:14px;font-weight:900;color:#aab4c2;letter-spacing:.1em}
.need-icon{width:56px;height:56px;display:grid;place-items:center;border-radius:16px;background:var(--campus-teal-soft);color:var(--campus-teal)}
.need-icon svg{width:28px;height:28px}
.need-card:nth-child(2) .need-icon,.need-card:nth-child(4) .need-icon{background:var(--campus-warm-soft);color:#3d3d3d}
.need-card h3{margin:18px 0 10px;color:var(--navy);font-size:21px;line-height:1.38;min-height:58px}
.need-card>p{margin:0;color:var(--muted);line-height:1.8;min-height:84px}
.need-answer{margin-top:auto;padding:18px 18px;border-radius:18px;background:#f7f9fc;color:#4c596d;line-height:1.7;font-size:14px;min-height:102px}
.need-answer span{display:block;margin-bottom:7px;color:var(--blue);font-size:11px;font-weight:900;letter-spacing:.07em;text-transform:uppercase}
.campus-day{padding-top:64px}
.day-timeline{
  display:grid;grid-template-columns:repeat(4,1fr);gap:18px;
  padding:28px 22px 18px;border-radius:26px;background:#fff;border:1px solid var(--line);
  box-shadow:0 10px 30px rgba(0,0,0,.05)
}
.day-step{position:relative;padding:0 12px 12px}
.day-step time{display:block;color:var(--blue);font-size:13px;font-weight:900;letter-spacing:.08em}
.day-step::after{content:"";position:absolute;top:49px;left:52px;right:-12px;height:3px;border-radius:999px;background:#d8dfeb}
.day-step:nth-child(1)::after{background:linear-gradient(90deg,var(--campus-teal),var(--blue))}
.day-step:nth-child(2)::after{background:var(--blue)}
.day-step:nth-child(3)::after{background:linear-gradient(90deg,var(--blue),var(--campus-warm))}
.day-step:last-child::after{display:none}
.day-dot{position:relative;z-index:2;width:18px;height:18px;margin:18px 0 18px;border-radius:50%;background:var(--campus-teal);border:5px solid #fff;box-shadow:0 0 0 4px rgba(0,0,0,.08)}
.day-step:nth-child(2) .day-dot,.day-step:nth-child(3) .day-dot{background:var(--blue)}
.day-step:nth-child(4) .day-dot{background:var(--campus-warm)}
.day-step h3{margin:0 0 9px;color:var(--navy);font-size:18px;line-height:1.42;min-height:52px}
.day-step p{margin:0;color:var(--muted);line-height:1.78;font-size:14px}
.campus-solutions{padding-top:66px}
.solution-scene-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:22px}
.solution-scene-card{overflow:hidden;border-radius:26px;background:#fff;border:1px solid var(--line);box-shadow:0 12px 34px rgba(0,0,0,.07)}
.solution-scene-card img{width:100%;height:270px;object-fit:cover;object-position:center;display:block}
.solution-scene-card img.scene-image-delivery{object-position:center 34%}
.solution-scene-card img.scene-image-learning{object-position:center center}
.scene-card-body{padding:25px}
.scene-tag{display:inline-flex;padding:7px 10px;border-radius:999px;background:var(--campus-teal-soft);color:#3d3d3d;font-size:11px;font-weight:900;letter-spacing:.05em}
.solution-scene-card:nth-child(2n) .scene-tag{background:var(--campus-warm-soft);color:#3d3d3d}
.scene-card-body h3{margin:16px 0 10px;color:var(--navy);font-size:24px;line-height:1.32}
.scene-card-body p{margin:0;color:var(--muted);line-height:1.78;font-size:15px}
.scene-link{margin-top:17px;padding:0;border:0;background:transparent;color:var(--blue);font-weight:850;cursor:pointer}
.scene-link b{display:inline-block;margin-left:4px;transition:.2s ease}
.scene-link:hover b{transform:translateX(4px)}
.deployment{padding-top:62px}
.deployment-shell{
  display:grid;grid-template-columns:.92fr 1.08fr;gap:34px;padding:40px 36px;border-radius:30px;
  background:linear-gradient(135deg,var(--navy),#000000);color:#fff;box-shadow:var(--shadow)
}
.deployment-intro h2{margin-top:8px;color:#fff;font-size:clamp(32px,3.4vw,46px);line-height:1.1;max-width:620px}
.deployment-intro>p{max-width:560px;color:rgba(255,255,255,.8);line-height:1.82;font-size:16px}
.support-badges{display:flex;flex-wrap:wrap;gap:10px;margin-top:24px}
.support-badges span{padding:8px 12px;border-radius:999px;background:rgba(255,255,255,.1);border:1px solid rgba(255,255,255,.15);font-size:12px;font-weight:800}
.deployment-steps{list-style:none;margin:0;padding:0;display:grid;grid-template-columns:repeat(2,1fr);gap:12px}
.deployment-steps li{min-height:126px;padding:18px;border-radius:18px;background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.12)}
.deployment-steps b{display:inline-block;color:#ffffff;font-size:11px;letter-spacing:.08em}
.deployment-steps strong{display:block;margin:8px 0 6px;font-size:16px;line-height:1.35}
.deployment-steps span{display:block;color:rgba(255,255,255,.72);font-size:13px;line-height:1.62}
#products{padding-top:76px}
#products .section-head{padding:28px 30px;border-radius:24px;background:linear-gradient(135deg,#fff,#f2f6fb);border:1px solid var(--line)}
#products .section-head h2{max-width:680px}
#products .section-head .section-desc{max-width:470px}
@media(max-width:1100px){
  .hero-campus-v2{grid-template-columns:minmax(0,1fr) minmax(430px,.96fr);gap:32px}
  .hero-campus-v2 .hero-title{font-size:clamp(36px,3.7vw,43px)}
  .hero-photo-card{transform:none;justify-self:stretch}
  .hero-float{width:210px}
  .deployment-shell{grid-template-columns:1fr}
}
@media(max-width:980px){
  .hero-campus-v2{grid-template-columns:1fr}
  .hero-copy-panel{max-width:760px}
  .hero-campus-v2 .hero-title{max-width:720px;font-size:clamp(38px,6.2vw,50px)}
  .hero-photo-card{max-width:620px;aspect-ratio:1/1;min-height:0;justify-self:center}
  .hero-float{display:none}
  .day-timeline{grid-template-columns:repeat(2,1fr);gap:16px}
  .day-timeline::before,.day-step::after{display:none}
  .day-dot{margin:12px 0}
  .solution-scene-grid{grid-template-columns:1fr}
}
@media(max-width:680px){
  .hero-campus-v2{padding:32px 16px 28px}
  .hero-campus-v2 .hero-title{font-size:clamp(32px,9.4vw,43px)}
  .hero-photo-card{max-width:100%;aspect-ratio:1/1;min-height:0;border-radius:28px;overflow:hidden}
  .hero-photo-orbit{width:310px;height:310px}
  .hero-campus-photo{width:88%}
  .hero-photo-label,.hero-float{display:none !important}
  .needs-grid,.day-timeline,.deployment-steps{grid-template-columns:1fr}
  .need-card{padding:23px}
  .solution-scene-card img{height:230px}
  .deployment-shell{padding:26px}
}

/* ===== Company site: home / solutions / products / about / contact ===== */

/* Home hero carousel */
.hero-carousel{position:relative;height:82vh;min-height:540px;max-height:780px;overflow:hidden;background:#111}
.hero-slide{position:absolute;inset:0;opacity:0;visibility:hidden;transition:opacity .8s ease;display:flex;align-items:center;justify-content:center}
.hero-slide.active{opacity:1;visibility:visible;z-index:1}
.hero-slide img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
.hero-slide::after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(0,0,0,.32) 0%,rgba(0,0,0,.1) 30%,rgba(0,0,0,.38) 100%)}
.hero-slide-copy{position:relative;z-index:1;max-width:640px;padding:0 24px;text-align:center;color:#fff}
.hero-slide-copy .eyebrow{background:rgba(255,255,255,.14);border-color:rgba(255,255,255,.3);color:#fff;box-shadow:none}
.hero-slide-copy h1{color:#fff;font-size:clamp(38px,5.2vw,62px);line-height:1.06;letter-spacing:-.03em;margin:18px 0 12px}
.hero-slide-copy p{color:rgba(255,255,255,.9);max-width:560px;margin:0 auto 26px;font-size:16.5px;line-height:1.7}
.hero-slide-copy .hero-actions{justify-content:center}
.hero-slide-copy .hero-note{justify-content:center;margin-top:22px;color:rgba(255,255,255,.8)}
.btn-primary-blue{color:#fff;background:var(--tesla-blue,#3e6ae1);box-shadow:none}
.btn-primary-blue:hover{background:#2f56c4}
.hero-arrow{position:absolute;top:50%;transform:translateY(-50%);width:44px;height:44px;border-radius:50%;border:0;background:rgba(255,255,255,.18);color:#fff;font-size:18px;cursor:pointer;z-index:2;display:flex;align-items:center;justify-content:center;transition:background .2s ease}
.hero-arrow:hover{background:rgba(255,255,255,.32)}
.hero-arrow.prev{left:20px}
.hero-arrow.next{right:20px}
.hero-dots{position:absolute;left:50%;bottom:26px;transform:translateX(-50%);display:flex;gap:10px;z-index:2}
.hero-dots button{width:8px;height:8px;border-radius:50%;border:0;background:rgba(255,255,255,.4);cursor:pointer;padding:0}
.hero-dots button.active{background:#fff}
@media(max-width:680px){
  .hero-carousel{height:70vh;min-height:460px}
}

.stats-bar-inner.cols-4{grid-template-columns:repeat(4,1fr)}
@media(max-width:680px){.stats-bar-inner.cols-4{grid-template-columns:1fr 1fr;gap:22px 0}
  .stats-bar-inner.cols-4 .stat-item:nth-child(2)::after{display:none}
  .stats-bar-inner.cols-4 .stat-item:nth-child(1),.stats-bar-inner.cols-4 .stat-item:nth-child(2){padding-bottom:18px;border-bottom:1px solid var(--line)}
}

.industry-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:22px}
.industry-card{padding:32px;border-radius:24px;background:#fff;border:1px solid var(--line);box-shadow:0 10px 30px rgba(0,0,0,.06);transition:.2s ease}
.industry-card:hover{transform:translateY(-4px);box-shadow:var(--shadow)}
.industry-icon{width:52px;height:52px;display:grid;place-items:center;border-radius:15px}
.industry-icon svg{width:26px;height:26px}
.industry-card:nth-child(1) .industry-icon{background:var(--campus-teal-soft);color:var(--campus-teal)}
.industry-card:nth-child(2) .industry-icon{background:#f4f4f4;color:var(--blue)}
.industry-card:nth-child(3) .industry-icon{background:var(--campus-warm-soft);color:#3d3d3d}
.industry-card:nth-child(4) .industry-icon{background:#f4f4f4;color:#171a20}
.industry-card h3{margin:18px 0 4px;color:var(--navy);font-size:22px;letter-spacing:-.02em}
.industry-en{display:block;margin-bottom:10px;color:var(--muted);font-size:12px;font-weight:800;letter-spacing:.08em;text-transform:uppercase}
.industry-card p{margin:0 0 16px;color:var(--muted);line-height:1.75}
.industry-link{color:var(--blue);font-weight:850;text-decoration:none}
.industry-link:hover{text-decoration:underline}

.about-hero-copy{max-width:760px}
.about-cta-band{max-width:1172px;margin:0 auto 40px;padding:30px;border-radius:24px;background:#fff;border:1px solid var(--line);box-shadow:0 10px 30px rgba(0,0,0,.06);display:flex;align-items:center;justify-content:space-between;gap:20px;flex-wrap:wrap}
.about-cta-band h3{margin:0 0 4px;color:var(--navy)}
.about-cta-band p{margin:0;color:var(--muted)}

.contact-info-page{max-width:1220px;margin:0 auto;padding:0 24px 80px;display:grid;grid-template-columns:.85fr 1.15fr;gap:24px}

@media(max-width:980px){
  .industry-grid{grid-template-columns:1fr}
  .contact-info-page{grid-template-columns:1fr}
}
@media(max-width:680px){
  .about-cta-band{display:block}
  .about-cta-band .btn{margin-top:16px;width:100%}
}

.solution-block{display:grid;grid-template-columns:.85fr 1.15fr;border-radius:26px;overflow:hidden;background:#fff;border:1px solid var(--line);box-shadow:0 12px 34px rgba(0,0,0,.07);margin-bottom:24px}
.solution-block .product-media{height:auto;min-height:300px}
.solution-block-copy{padding:36px}
.solution-block-copy .scene-tag{display:inline-flex;margin-bottom:14px;padding:7px 10px;border-radius:999px;background:var(--campus-teal-soft);color:#3d3d3d;font-size:11px;font-weight:900;letter-spacing:.05em}
.solution-block:nth-child(2n) .solution-block-copy .scene-tag{background:var(--campus-warm-soft);color:#3d3d3d}
.solution-block-copy h3{margin:0 0 4px;color:var(--navy);font-size:26px;letter-spacing:-.02em}
.solution-block-copy .industry-en{margin-bottom:0}
.solution-block-copy p{margin:12px 0 16px;color:var(--muted);line-height:1.8}
.solution-model-list{display:flex;flex-wrap:wrap;gap:8px;margin-bottom:20px}
.solution-model-list span{padding:7px 10px;border-radius:999px;background:#f1f4f7;color:#566174;font-size:12px;font-weight:750}
@media(max-width:860px){
  .solution-block{grid-template-columns:1fr}
  .solution-block .product-media{min-height:220px}
}

/* ===== Product detail pages ===== */
.product-detail-hero{display:grid;grid-template-columns:.9fr 1.1fr;gap:36px;align-items:center;padding-top:24px}
.product-detail-media{position:relative;min-height:400px;border-radius:28px;display:flex;align-items:center;justify-content:center;overflow:hidden;padding:30px;
  background:radial-gradient(circle at 50% 35%,rgba(255,255,255,.95),rgba(232,237,242,.68) 58%,rgba(183,194,206,.35)),#edf1f5;
  border:1px solid #fff;box-shadow:var(--shadow)}
.product-detail-media .product-image{width:78%;height:78%;object-fit:contain;filter:drop-shadow(0 20px 20px rgba(0,0,0,.18))}
.product-detail-copy h1{margin:8px 0 6px;font-size:clamp(34px,4vw,50px);color:var(--navy);letter-spacing:-.03em}
.product-detail-tagline{margin:0 0 14px;color:var(--navy-2);font-weight:800;font-size:18px}
.product-detail-intro{margin:0 0 18px;color:var(--muted);line-height:1.8;font-size:16px;max-width:560px}
.product-detail-features{grid-template-columns:repeat(2,1fr)}
.product-detail-specs{grid-template-columns:repeat(3,minmax(0,1fr))}
@media(max-width:980px){
  .product-detail-hero{grid-template-columns:1fr}
  .product-detail-media{min-height:320px}
  .product-detail-features{grid-template-columns:1fr}
  .product-detail-specs{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:680px){
  .product-detail-specs{grid-template-columns:1fr}
}

/* ===== FAQ accordion ===== */
.faq-list{display:grid;gap:12px;max-width:800px;margin:0 auto}
.faq-item{border:1px solid var(--line);border-radius:16px;background:#fff;overflow:hidden}
.faq-item summary{list-style:none;cursor:pointer;padding:18px 20px;display:flex;align-items:center;justify-content:space-between;gap:12px;font-weight:800;color:var(--navy)}
.faq-item summary::-webkit-details-marker{display:none}
.faq-item summary::after{content:"+";font-size:20px;color:var(--muted);transition:.2s ease;flex:0 0 auto}
.faq-item[open] summary::after{content:"–"}
.faq-item p{margin:0;padding:0 20px 18px;color:var(--muted);line-height:1.75}

/* ===== Funding page ===== */
.funding-hero{display:block;max-width:900px;margin:0 auto;padding:56px 24px 12px;text-align:center}
.funding-hero .eyebrow{margin:0 auto 18px}
.funding-hero h1{font-size:clamp(32px,4vw,48px);color:var(--navy);letter-spacing:-.03em;margin:0 0 16px;line-height:1.2}
.funding-hero p{color:var(--muted);font-size:17px;line-height:1.8;max-width:680px;margin:0 auto 26px}
.funding-hero .hero-actions{justify-content:center}
.funding-hero .hero-note{justify-content:center}
.why-us-grid{display:grid;grid-template-columns:repeat(4,1fr)}
@media(max-width:860px){.why-us-grid{grid-template-columns:1fr 1fr}}
@media(max-width:520px){.why-us-grid{grid-template-columns:1fr}}

/* ===== Case studies & media insights ===== */
.case-study-grid{display:grid;grid-template-columns:1fr 1fr;gap:22px}
.case-study-card{padding:30px;border-radius:26px;background:#fff;border:1px solid var(--line);box-shadow:0 12px 34px rgba(0,0,0,.07)}
.case-study-card img{width:100%;height:200px;object-fit:cover;border-radius:16px;margin-bottom:18px;display:block}
.case-study-card .scene-tag{margin-bottom:10px}
.case-study-card h3{margin:4px 0 18px;color:var(--navy);font-size:24px}
.case-step{display:flex;gap:12px;margin-bottom:14px}
.case-step b{flex:0 0 auto;width:26px;height:26px;display:grid;place-items:center;border-radius:8px;background:#f1f4f7;color:var(--navy);font-size:12px;font-weight:900}
.case-step div{color:var(--muted);line-height:1.65;font-size:14px}
.case-step div strong{display:block;color:var(--navy);font-size:13px;margin-bottom:2px}
.case-metrics{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin:18px 0 14px}
.case-metric{padding:12px 14px;border-radius:14px;background:#f7f9fc}
.case-metric small{display:block;color:var(--muted);font-size:11px;margin-bottom:3px}
.case-metric strong{display:block;color:var(--blue);font-size:17px}
.case-source{margin:0;color:#9aa4b2;font-size:11px}

.insight-filters{margin-bottom:24px}
.insight-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px}
.insight-card{border-radius:22px;overflow:hidden;background:#fff;border:1px solid var(--line);box-shadow:0 10px 28px rgba(0,0,0,.06)}
.insight-card img{width:100%;height:150px;object-fit:cover;display:block}
.insight-card-body{padding:18px}
.insight-card-body .scene-tag{margin-bottom:10px}
.insight-card-body h4{margin:0 0 8px;color:var(--navy);font-size:15px;line-height:1.45}
.insight-card-body p{margin:0 0 12px;color:var(--muted);font-size:13px;line-height:1.6}
.insight-meta{display:flex;justify-content:space-between;color:#9aa4b2;font-size:11px}

@media(max-width:980px){
  .case-study-grid{grid-template-columns:1fr}
  .insight-grid{grid-template-columns:1fr 1fr}
}
@media(max-width:680px){
  .insight-grid{grid-template-columns:1fr}
}

/* ===== Industry solutions page v2 (fit cards) ===== */
.industry-section{padding:56px 0;border-top:1px solid var(--line)}
.industry-section:first-of-type{border-top:0}
.industry-section-head{display:flex;gap:32px;justify-content:space-between;align-items:flex-start;margin-bottom:32px;flex-wrap:wrap}
.industry-section-title{display:flex;align-items:center;gap:16px}
.industry-section-title .industry-icon{width:56px;height:56px;font-size:22px;border-radius:16px;background:#f4f4f4;color:var(--ink)}
.industry-section-title h2{margin:0}
.industry-section-desc{max-width:520px;color:var(--muted);line-height:1.75;margin:0}

.fit-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.fit-card{border:1px solid var(--line);border-radius:var(--radius);overflow:hidden;background:#fff;transition:.2s ease}
.fit-card:hover{transform:translateY(-4px);box-shadow:var(--shadow)}
.fit-card-media{height:180px;display:flex;align-items:center;justify-content:center;background:radial-gradient(circle at 50% 35%,#fff,#f4f4f4 70%);padding:16px}
.fit-card-media img{width:80%;height:80%;object-fit:contain}
.fit-card-body{padding:20px}
.fit-card-body .fit-tag{display:inline-block;margin-bottom:10px;padding:5px 10px;border-radius:999px;background:#f4f4f4;color:var(--muted);font-size:11px;font-weight:700;letter-spacing:.03em}
.fit-card-body h4{margin:0 0 8px;color:var(--navy);font-size:17px}
.fit-card-body p{margin:0 0 14px;color:var(--muted);font-size:13.5px;line-height:1.7}
.fit-card-body a{color:var(--ink);font-weight:600;font-size:13.5px;text-decoration:underline;text-underline-offset:3px}

@media(max-width:980px){.fit-grid{grid-template-columns:1fr 1fr}}
@media(max-width:680px){.fit-grid{grid-template-columns:1fr}}

/* Fixed bottom CTA banner */
.fixed-cta-bar{position:fixed;left:0;right:0;bottom:0;z-index:40;background:var(--navy);color:#fff;padding:16px 28px;display:flex;align-items:center;justify-content:space-between;gap:20px;box-shadow:0 -8px 24px rgba(0,0,0,.14)}
.fixed-cta-text{display:flex;flex-direction:column;gap:3px;min-width:0}
.fixed-cta-text strong{font-size:15px;font-weight:700}
.fixed-cta-text span{font-size:12.5px;color:rgba(255,255,255,.7);max-width:560px}
.fixed-cta-actions{display:flex;gap:10px;flex:0 0 auto}
.fixed-cta-bar .btn{padding:11px 22px;font-size:14px}
.fixed-cta-bar .btn-primary{background:#fff;color:var(--navy)}
.fixed-cta-bar .btn-primary:hover{background:#f4f4f4}
.fixed-cta-bar .btn-secondary{background:transparent;color:#fff;border-color:rgba(255,255,255,.4)}
.fixed-cta-bar .btn-secondary:hover{background:rgba(255,255,255,.12)}
body.has-fixed-cta{padding-bottom:84px}

@media(max-width:680px){
  .fixed-cta-bar{flex-direction:column;align-items:stretch;padding:14px 18px;gap:10px}
  .fixed-cta-text span{display:none}
  .fixed-cta-actions{gap:8px}
  .fixed-cta-actions .btn{flex:1;text-align:center;padding:10px 12px;font-size:13px}
  body.has-fixed-cta{padding-bottom:112px}
}

/* Floating WhatsApp button (mobile & tablet only) */
.whatsapp-float{
  display:none;
  position:fixed;
  right:18px;
  bottom:20px;
  z-index:45;
  width:56px;
  height:56px;
  border-radius:50%;
  background:#25d366;
  align-items:center;
  justify-content:center;
  box-shadow:0 8px 20px rgba(0,0,0,.22);
  transition:transform .2s ease;
}
.whatsapp-float:hover{transform:scale(1.06)}
.whatsapp-float svg{width:30px;height:30px;fill:#fff}
body.has-fixed-cta .whatsapp-float{bottom:100px}

@media(max-width:1024px){
  .whatsapp-float{display:flex}
}
@media(max-width:680px){
  .whatsapp-float{width:52px;height:52px;right:14px;bottom:16px}
  .whatsapp-float svg{width:28px;height:28px}
  body.has-fixed-cta .whatsapp-float{bottom:128px}
}
