/* TrustCart — shared styles */
:root{--green:#0F6E56;--gl:#1D9E75;--gp:#E1F5EE;--amber:#EF9F27;--dark:#0D1F1A;--white:#fff;--gray:#F7F8F6;--text:#1A2E28;--muted:#5A7268;--border:#E2E8E4;--red:#E24B4A}
*{box-sizing:border-box;margin:0;padding:0}
body{font-family:'DM Sans',sans-serif;color:var(--text);background:var(--gray)}
a{text-decoration:none;color:inherit}

/* Nav */
.tc-nav{position:sticky;top:0;z-index:100;background:var(--dark);padding:15px 48px;display:flex;align-items:center;justify-content:space-between;border-bottom:1px solid rgba(255,255,255,0.07)}
.tc-logo{display:flex;align-items:center;gap:10px}
.tc-logo-icon{width:32px;height:32px;background:var(--gl);border-radius:8px;display:flex;align-items:center;justify-content:center;font-weight:700;font-size:11px;color:#fff;white-space:nowrap}
.tc-logo-name{font-family:'Playfair Display',serif;font-size:19px;color:#fff;font-weight:600}
.tc-nav-links{display:flex;align-items:center;gap:24px}
.tc-nav-links a{color:rgba(255,255,255,0.6);font-size:13.5px;transition:color .2s}
.tc-nav-links a:hover{color:#fff}
.tc-nav-cta{display:flex;gap:8px}
.tc-btn{padding:9px 20px;border-radius:8px;font-size:13.5px;font-weight:500;transition:all .2s;cursor:pointer;border:none;display:inline-flex;align-items:center;gap:7px;font-family:'DM Sans',sans-serif}
.tc-btn-outline{border:1px solid rgba(255,255,255,0.25);color:#fff;background:transparent}
.tc-btn-outline:hover{background:rgba(255,255,255,0.08)}
.tc-btn-primary{background:var(--gl);color:#fff}
.tc-btn-primary:hover{background:var(--green)}
.tc-btn-amber{background:var(--amber);color:#fff}
.tc-btn-amber:hover{opacity:.9}
.tc-btn-dark{background:var(--dark);color:#fff}
.tc-btn-lg{padding:13px 30px;font-size:15px;border-radius:10px}
.tc-btn-wa{background:#25D366;color:#fff}
.tc-btn-wa:hover{background:#128C7E}
.tc-burger{display:none;width:38px;height:38px;border-radius:8px;border:1px solid rgba(255,255,255,0.15);background:transparent;flex-direction:column;align-items:center;justify-content:center;gap:4px;cursor:pointer;flex-shrink:0}
.tc-burger span{display:block;width:18px;height:2px;background:#fff;border-radius:2px;transition:all .2s}
.tc-burger.open span:nth-child(1){transform:translateY(6px) rotate(45deg)}
.tc-burger.open span:nth-child(2){opacity:0}
.tc-burger.open span:nth-child(3){transform:translateY(-6px) rotate(-45deg)}
.tc-mobile-menu{display:none;position:fixed;top:0;right:0;bottom:0;width:78%;max-width:320px;background:var(--dark);z-index:150;padding:80px 24px 24px;flex-direction:column;gap:2px;box-shadow:-10px 0 40px rgba(0,0,0,0.4);transform:translateX(100%);transition:transform .25s ease}
.tc-mobile-menu.open{display:flex;transform:translateX(0)}
.tc-mobile-menu a{color:rgba(255,255,255,0.75);font-size:15px;padding:13px 4px;border-bottom:1px solid rgba(255,255,255,0.06);text-decoration:none}
.tc-mobile-menu a:hover{color:#fff}
.tc-mobile-menu .tc-btn{margin-top:16px;justify-content:center}
.tc-menu-scrim{display:none;position:fixed;inset:0;background:rgba(0,0,0,0.5);z-index:140}
.tc-menu-scrim.open{display:block}

/* Hero */
.tc-hero{background:var(--dark);padding:72px 48px;position:relative;overflow:hidden}
.tc-hero::before{content:'';position:absolute;top:-100px;right:-100px;width:400px;height:400px;background:var(--green);border-radius:50%;opacity:.05}
.tc-hero-inner{max-width:760px;position:relative;z-index:1}
.tc-label{font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:2px;color:#9FE1CB;margin-bottom:10px}
.tc-title{font-family:'Playfair Display',serif;font-size:clamp(28px,4vw,48px);color:#fff;font-weight:700;line-height:1.2;margin-bottom:14px}
.tc-title span{color:var(--amber)}
.tc-sub{font-size:17px;color:rgba(255,255,255,0.6);line-height:1.75;margin-bottom:28px}

/* Content */
.tc-main{max-width:1100px;margin:0 auto;padding:64px 48px}
.tc-section{margin-bottom:56px}
.tc-section-title{font-family:'Playfair Display',serif;font-size:26px;font-weight:700;margin-bottom:14px;color:var(--text)}
.tc-section p{font-size:15px;color:var(--muted);line-height:1.8;margin-bottom:14px}
.tc-card{background:#fff;border-radius:14px;border:1px solid var(--border);padding:24px 28px;margin-bottom:14px}
.tc-grid2{display:grid;grid-template-columns:1fr 1fr;gap:18px;margin-bottom:18px}
.tc-grid3{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;margin-bottom:18px}
.tc-pill{display:inline-flex;padding:3px 10px;border-radius:20px;font-size:11px;font-weight:600}
.tc-pill-green{background:#EAF3DE;color:#3B6D11}
.tc-pill-amber{background:#FAEEDA;color:#854F0B}
.tc-pill-blue{background:#E6F1FB;color:#185FA5}
.tc-pill-gray{background:#F1EFE8;color:#5F5E5A}
.tc-divider{border:none;border-top:1px solid var(--border);margin:32px 0}
.tc-row{display:flex;justify-content:space-between;align-items:center;padding:10px 0;border-bottom:1px solid var(--border);font-size:14px}
.tc-row:last-child{border-bottom:none}

/* Footer */
.tc-footer{background:var(--dark);padding:56px 48px 28px}
.tc-footer-grid{max-width:1100px;margin:0 auto 40px;display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:48px}
.tc-footer-brand p{font-size:13px;color:rgba(255,255,255,0.4);line-height:1.7;margin-top:12px}
.tc-footer-col h4{font-size:12px;font-weight:700;text-transform:uppercase;letter-spacing:.8px;color:#fff;margin-bottom:14px}
.tc-footer-col a{display:block;font-size:13px;color:rgba(255,255,255,0.45);margin-bottom:9px;transition:color .2s}
.tc-footer-col a:hover{color:#fff}
.tc-footer-social{display:flex;gap:8px;margin-top:14px;flex-wrap:wrap}
.tc-fs{width:30px;height:30px;border-radius:7px;border:1px solid rgba(255,255,255,0.1);display:flex;align-items:center;justify-content:center;font-size:12px;color:rgba(255,255,255,0.5);transition:all .2s;text-decoration:none}
.tc-fs:hover{border-color:rgba(255,255,255,0.3);color:#fff;background:rgba(255,255,255,0.06)}
.tc-footer-bottom{max-width:1100px;margin:0 auto;padding-top:20px;border-top:1px solid rgba(255,255,255,0.07);display:flex;justify-content:space-between;align-items:center;font-size:12px;color:rgba(255,255,255,0.28);flex-wrap:wrap;gap:8px}

/* Input / form */
.tc-input{width:100%;padding:11px 14px;border-radius:9px;border:1.5px solid var(--border);font-size:14px;color:var(--text);outline:none;font-family:'DM Sans',sans-serif;background:#FAFBF9}
.tc-input:focus{border-color:var(--gl)}
.tc-select{width:100%;padding:11px 14px;border-radius:9px;border:1.5px solid var(--border);font-size:14px;color:var(--text);outline:none;font-family:'DM Sans',sans-serif;background:#FAFBF9}
.tc-label-txt{font-size:13px;font-weight:500;display:block;margin-bottom:5px;color:var(--text)}
.tc-form-group{margin-bottom:16px}
.tc-textarea{width:100%;padding:11px 14px;border-radius:9px;border:1.5px solid var(--border);font-size:14px;color:var(--text);outline:none;font-family:'DM Sans',sans-serif;background:#FAFBF9;resize:vertical;min-height:110px}
.tc-textarea:focus{border-color:var(--gl)}

/* Alert boxes */
.tc-info{background:#E6F1FB;border-radius:10px;padding:12px 16px;font-size:14px;color:#0C447C;margin-bottom:14px;border-left:3px solid #185FA5}
.tc-success{background:#EAF3DE;border-radius:10px;padding:12px 16px;font-size:14px;color:#27500A;margin-bottom:14px;border-left:3px solid #3B6D11}
.tc-warn{background:#FAEEDA;border-radius:10px;padding:12px 16px;font-size:14px;color:#633806;margin-bottom:14px;border-left:3px solid var(--amber)}

/* Star rating */
.star-row{display:flex;gap:6px;margin:8px 0}
.star{font-size:28px;cursor:pointer;color:#E2E8E4;transition:color .15s}
.star.active{color:var(--amber)}

/* Toast */
.tc-toast{position:fixed;bottom:24px;right:24px;background:var(--dark);color:#fff;padding:12px 22px;border-radius:10px;font-size:14px;opacity:0;transition:opacity .3s;pointer-events:none;z-index:999;border-left:3px solid var(--gl)}
.tc-toast.show{opacity:1}

@media(max-width:900px){
  .tc-nav{padding:14px 18px}.tc-nav-links{display:none}
  .tc-nav-cta .tc-btn-outline{display:none}
  .tc-burger{display:flex}
  .tc-hero{padding:48px 20px}
  .tc-main{padding:40px 20px}
  .tc-grid2,.tc-grid3,.tc-footer-grid{grid-template-columns:1fr;gap:16px}
  .tc-footer{padding:40px 20px 24px}
}
