/* gsi-front-page.css — Homepage-specific styles */

/* ── HERO ── */
.hero{position:relative;overflow:hidden;min-height:600px;display:flex;align-items:center}
.hero-carousel{position:absolute;inset:0;z-index:0}
.hero-carousel img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;opacity:0;transition:opacity 1s ease}
.hero-carousel img.active{opacity:1}
.carousel-overlay{position:absolute;inset:0;background:linear-gradient(105deg,rgba(1,60,54,.92) 0%,rgba(1,60,54,.78) 45%,rgba(1,60,54,.22) 100%)}
.carousel-dots{position:absolute;bottom:20px;left:50%;transform:translateX(-50%);display:flex;gap:7px;z-index:2}
.carousel-dot{width:7px;height:7px;border-radius:50%;background:rgba(255,255,255,.45);border:none;padding:0;cursor:pointer;transition:background .2s,transform .2s}
.carousel-dot.active{background:#fff;transform:scale(1.25)}
.hero-content{position:relative;z-index:2;width:100%;max-width:1200px;margin:0 auto;padding:100px 48px}
.hero-eyebrow{display:inline-flex;align-items:center;gap:8px;background:rgba(0,169,157,.25);border:1px solid rgba(0,169,157,.55);color:#5EEEE8;font-family:var(--f-head);font-size:13px;font-weight:700;letter-spacing:.06em;text-transform:uppercase;padding:6px 14px;border-radius:6px;margin-bottom:24px}
.hero-eyebrow::before{content:'';width:6px;height:6px;border-radius:50%;background:#5EEEE8}
.hero h1{font-family:var(--f-head);font-size:clamp(36px,4.2vw,68px);font-weight:800;line-height:1.08;letter-spacing:-1px;color:#fff;text-wrap:pretty;margin-bottom:22px;max-width:18ch}
.hero h1 em{color:#7EEEE9;font-style:normal}
.hero-sub{font-size:18px;color:rgba(255,255,255,.78);line-height:1.65;max-width:50ch;margin-bottom:36px}
.hero-ctas{display:flex;align-items:center;gap:14px;flex-wrap:wrap}
.btn-wa{display:inline-flex;align-items:center;gap:9px;background:var(--orange);color:#fff;font-family:var(--f-head);font-weight:700;font-size:15px;padding:14px 24px;border-radius:10px;transition:background .18s,transform .15s;white-space:nowrap;text-decoration:none}
.btn-wa:hover{background:var(--orange-hover);transform:translateY(-1px);color:#fff}
.btn-outline-light{display:inline-flex;align-items:center;gap:8px;border:2px solid rgba(255,255,255,.35);color:#fff;font-family:var(--f-head);font-weight:700;font-size:15px;padding:12px 22px;border-radius:10px;transition:border-color .18s,background .18s;text-decoration:none}
.btn-outline-light:hover{border-color:rgba(255,255,255,.7);background:rgba(255,255,255,.06)}

/* ── TRUST BAR ── */
.trust{background:var(--orange);padding:20px 48px}
.trust-inner{max-width:1200px;margin:0 auto;display:flex;align-items:center;justify-content:center;gap:0}
.trust-item{display:flex;align-items:center;gap:12px;padding:0 36px}
.trust-item:not(:last-child){border-right:1px solid rgba(255,255,255,.25)}
.trust-num{font-family:var(--f-head);font-size:22px;font-weight:800;color:#fff;white-space:nowrap}
.trust-label{font-size:13px;color:rgba(255,255,255,.82);line-height:1.3;white-space:nowrap}

/* ── SHARED SECTION STYLES ── */
section{padding:80px 48px}
.section-inner{max-width:1200px;margin:0 auto}
.section-eyebrow{font-family:var(--f-head);font-size:12px;font-weight:700;letter-spacing:.08em;text-transform:uppercase;color:var(--teal);margin-bottom:12px}
.section-title{font-family:var(--f-head);font-size:40px;font-weight:800;line-height:1.1;letter-spacing:-.5px;color:var(--navy);margin-bottom:16px;text-wrap:pretty}
.section-sub{font-size:17px;color:var(--stone);line-height:1.65;max-width:56ch}

/* ── SEGMENTS ── */
.segments{background:var(--white)}
.segments-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;margin-top:48px}
.seg-card{border:1px solid #dde3ea;border-radius:14px;padding:32px;transition:border-color .2s,box-shadow .2s}
.seg-card:hover{border-color:var(--teal);box-shadow:0 8px 32px rgba(13,115,119,.10)}
.seg-icon{width:52px;height:52px;border-radius:12px;background:var(--teal-pale);display:flex;align-items:center;justify-content:center;margin-bottom:20px}
.seg-icon svg{color:var(--teal)}
.seg-title{font-family:var(--f-head);font-size:19px;font-weight:800;color:var(--navy);margin-bottom:10px;line-height:1.25}
.seg-desc{font-size:15px;color:var(--stone);line-height:1.65;margin-bottom:18px}
.seg-tags{display:flex;flex-wrap:wrap;gap:6px}
.seg-tag{font-family:var(--f-head);font-size:12px;font-weight:600;padding:4px 10px;border-radius:6px;background:var(--teal-pale);color:var(--teal);border:1px solid rgba(13,115,119,.2)}

/* ── PRODUCTS ── */
.products{background:var(--off-white)}
.filter-tabs{display:flex;gap:8px;margin-top:36px;margin-bottom:36px;flex-wrap:wrap}
.tab{font-family:var(--f-head);font-size:14px;font-weight:700;padding:9px 20px;border-radius:8px;border:2px solid transparent;cursor:pointer;background:var(--white);color:var(--stone);transition:all .18s}
.tab:hover{color:var(--teal);border-color:var(--teal)}
.tab.active{background:var(--teal);color:#fff;border-color:var(--teal)}
.product-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
.prod-card{background:var(--white);border-radius:12px;border:1px solid #dde3ea;overflow:hidden;transition:box-shadow .2s,transform .2s}
.prod-card:hover{box-shadow:0 10px 36px rgba(11,37,69,.10);transform:translateY(-2px)}
.prod-card[hidden]{display:none}
.prod-img{height:200px;background:linear-gradient(135deg,#f0f4f8,#e6edf3);display:flex;align-items:center;justify-content:center;position:relative}
.prod-img img{max-height:160px;width:auto;object-fit:contain;filter:drop-shadow(0 8px 20px rgba(11,37,69,.12))}
.prod-img .ph{width:120px;height:120px;border-radius:8px;background:#dde3ea;display:flex;align-items:center;justify-content:center;color:var(--stone);font-size:13px;font-family:var(--f-head);font-weight:600;text-align:center;padding:10px}
.prod-body{padding:18px 20px 20px}
.prod-cat{font-family:var(--f-head);font-size:11px;font-weight:700;letter-spacing:.06em;text-transform:uppercase;color:var(--teal);margin-bottom:6px}
.prod-name{font-family:var(--f-head);font-size:17px;font-weight:800;color:var(--navy);margin-bottom:8px;line-height:1.25}
.prod-desc{font-size:14px;color:var(--stone);line-height:1.55;margin-bottom:16px}
.prod-cta{display:inline-flex;align-items:center;gap:7px;color:var(--teal);font-family:var(--f-head);font-weight:700;font-size:14px;transition:opacity .15s;text-decoration:none}
.prod-cta:hover{opacity:.8;color:var(--teal)}

/* ── WHY ── */
.why{background:var(--white)}
.why-grid{display:grid;grid-template-columns:1fr 380px;gap:64px;margin-top:52px;align-items:start}
.why-list{display:flex;flex-direction:column;gap:28px}
.why-item{display:grid;grid-template-columns:52px 1fr;gap:20px;align-items:start}
.why-num{font-family:var(--f-head);font-size:13px;font-weight:800;color:var(--teal);background:var(--teal-pale);border:1px solid rgba(13,115,119,.2);width:38px;height:38px;border-radius:10px;display:flex;align-items:center;justify-content:center}
.why-title{font-family:var(--f-head);font-size:17px;font-weight:800;color:var(--navy);margin-bottom:5px}
.why-desc{font-size:15px;color:var(--stone);line-height:1.6}
.why-panel{background:var(--navy);border-radius:16px;padding:40px;display:flex;flex-direction:column;gap:24px}
.why-year{font-family:var(--f-head);font-size:96px;font-weight:800;color:#fff;letter-spacing:-4px;line-height:1}
.why-year-sub{font-family:var(--f-head);font-size:14px;font-weight:600;color:rgba(255,255,255,.6);margin-top:-4px}
.why-badges{display:flex;flex-direction:column;gap:10px;margin-top:8px}
.why-badge{display:flex;align-items:center;gap:12px;background:rgba(255,255,255,.07);border:1px solid rgba(255,255,255,.1);border-radius:10px;padding:12px 16px}
.why-badge-dot{width:8px;height:8px;border-radius:50%;background:var(--teal-light);flex-shrink:0}
.why-badge-text{font-family:var(--f-head);font-size:14px;font-weight:600;color:rgba(255,255,255,.85)}

/* ── CONTACT (homepage quick form) ── */
.contact{background:var(--off-white)}
.contact-grid{display:grid;grid-template-columns:1fr 380px;gap:64px;margin-top:48px;align-items:start}
.form-group{display:flex;flex-direction:column;gap:6px;margin-bottom:16px}
.form-group label{font-family:var(--f-head);font-size:13px;font-weight:700;color:var(--navy)}
.form-group input,.form-group select,.form-group textarea{font-family:var(--f-body);font-size:15px;color:var(--navy);background:#fff;border:1.5px solid #d0d8e2;border-radius:9px;padding:11px 14px;outline:none;transition:border-color .18s;width:100%}
.form-group input:focus,.form-group select:focus,.form-group textarea:focus{border-color:var(--teal)}
.form-group textarea{resize:vertical;min-height:100px}
.btn-submit{width:100%;background:var(--orange);color:#fff;font-family:var(--f-head);font-weight:800;font-size:16px;padding:15px;border-radius:10px;border:none;cursor:pointer;transition:background .18s}
.btn-submit:hover{background:var(--orange-hover)}
.contact-side{display:flex;flex-direction:column;gap:20px}
.wa-block{background:var(--wa);border-radius:16px;padding:28px;display:flex;flex-direction:column;align-items:center;gap:14px;text-align:center}
.wa-block-title{font-family:var(--f-head);font-size:17px;font-weight:800;color:#fff}
.wa-block-sub{font-size:14px;color:rgba(255,255,255,.82);line-height:1.5}
.btn-wa-lg{display:inline-flex;align-items:center;gap:10px;background:#fff;color:var(--wa);font-family:var(--f-head);font-weight:800;font-size:16px;padding:14px 28px;border-radius:10px;transition:transform .15s;text-decoration:none}
.btn-wa-lg:hover{transform:scale(1.02);color:var(--wa)}
.contact-info{background:#fff;border:1.5px solid #dde3ea;border-radius:14px;padding:24px;display:flex;flex-direction:column;gap:14px}
.info-row{display:flex;align-items:flex-start;gap:12px;font-size:14px;color:var(--navy);line-height:1.5}
.info-row strong{font-family:var(--f-head);font-weight:700;color:var(--stone);font-size:11px;letter-spacing:.05em;text-transform:uppercase;display:block;margin-bottom:2px}
.info-icon{width:32px;height:32px;border-radius:8px;background:var(--teal-pale);display:flex;align-items:center;justify-content:center;flex-shrink:0;color:var(--teal)}

/* ── WA FLOAT BUTTON ── */
.wa-float{position:fixed;bottom:28px;right:28px;z-index:200;width:58px;height:58px;border-radius:50%;background:var(--wa);display:flex;align-items:center;justify-content:center;box-shadow:0 6px 24px rgba(37,211,102,.45);transition:transform .18s,box-shadow .18s}
.wa-float:hover{transform:scale(1.08);box-shadow:0 8px 32px rgba(37,211,102,.55)}
.wa-float-pulse{position:absolute;inset:-4px;border-radius:50%;border:2px solid rgba(37,211,102,.4);animation:pulse 2s ease-out infinite}
@keyframes pulse{0%{opacity:1;transform:scale(1)}100%{opacity:0;transform:scale(1.4)}}

/* ── RESPONSIVE ── */
@media(max-width:900px){
  .hero-content{padding:48px 24px}
  .segments-grid,.why-grid,.contact-grid{grid-template-columns:1fr}
  .product-grid{grid-template-columns:repeat(2,1fr)}
  section{padding:60px 24px}
  .trust{padding:0;overflow:hidden}
  .trust-inner{display:grid;grid-template-columns:repeat(2,1fr);gap:0;max-width:100%}
  .trust-item{padding:16px 20px;border-right:none!important;border-bottom:1px solid rgba(255,255,255,.2);align-items:flex-start;min-width:0;box-sizing:border-box}
  .trust-item:nth-child(odd){border-right:1px solid rgba(255,255,255,.2)!important}
  .trust-num{font-size:18px;white-space:normal;word-break:break-word}
  .trust-label{font-size:11px;white-space:normal;line-height:1.4}
}
@media(max-width:600px){
  .hero h1{font-size:clamp(32px,8vw,48px)}
  .hero-sub{font-size:16px}
  .product-grid{grid-template-columns:1fr}
  .filter-tabs{gap:6px}
  .tab{font-size:13px;padding:7px 14px}
  .why-year{font-size:72px}
}
