:root {
  --navy:   #0C2340;
  --teal:   #00A99D;
  --teal2:  #00877D;
  --gold:   #F59E0B;
  --red:    #EF4444;
  --green:  #10B981;
  --bg:     #F0F4F8;
  --white:  #FFFFFF;
  --text:   #1E293B;
  --muted:  #64748B;
  --border: #CBD5E1;
  --radius: 12px;
  --shadow: 0 4px 20px rgba(12,35,64,0.10);
}
*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{font-family:'Inter',system-ui,sans-serif;color:var(--text);background:var(--bg);font-size:15px;line-height:1.6}
a{color:var(--teal);text-decoration:none}
a:hover{text-decoration:underline}
img{max-width:100%}

/* UTILS */
.container{max-width:1140px;margin:0 auto;padding:0 24px}
.text-center{text-align:center}
.mt-40{margin-top:40px}
.py-40{padding:40px 0}
.py-60{padding:60px 0}
.bg-white{background:var(--white)}
.bg-light{background:var(--bg)}
.bg-navy{background:var(--navy)}

/* BUTTONS */
.btn{display:inline-flex;align-items:center;gap:6px;padding:11px 24px;border-radius:8px;font-weight:700;font-size:14px;border:none;cursor:pointer;transition:all .18s;text-decoration:none;line-height:1}
.btn-primary{background:var(--teal);color:white}
.btn-primary:hover{background:var(--teal2);color:white;text-decoration:none;transform:translateY(-1px);box-shadow:0 4px 14px rgba(0,169,157,.35)}
.btn-outline{background:transparent;color:var(--teal);border:2px solid var(--teal)}
.btn-outline:hover{background:var(--teal);color:white;text-decoration:none}
.btn-outline-white{background:transparent;color:white;border:2px solid rgba(255,255,255,.6)}
.btn-outline-white:hover{background:white;color:var(--navy);text-decoration:none}
.btn-white{background:white;color:var(--navy)}
.btn-white:hover{background:#F0F4F8;text-decoration:none}
.btn-ghost{background:transparent;color:var(--muted);border:1px solid var(--border)}
.btn-ghost:hover{background:var(--bg);text-decoration:none}
.btn-lg{padding:14px 32px;font-size:16px}
.btn-danger{background:var(--red);color:white}

/* TOP BAR */
.topbar{background:var(--navy);color:rgba(255,255,255,.8);font-size:12px;padding:8px 24px}
.topbar-inner{max-width:1140px;margin:0 auto;display:flex;justify-content:space-between;flex-wrap:wrap;gap:8px}
.topbar a{color:rgba(255,255,255,.9);font-weight:600}

/* NAV */
.nav{background:white;border-bottom:1px solid var(--border);position:sticky;top:0;z-index:200;box-shadow:0 2px 12px rgba(0,0,0,.06)}
.nav-inner{max-width:1140px;margin:0 auto;padding:0 24px;height:64px;display:flex;align-items:center;gap:32px}
.logo{display:flex;align-items:center;gap:10px;color:var(--navy);font-size:18px;font-weight:600;text-decoration:none;flex-shrink:0}
.logo strong{color:var(--teal)}
.logo:hover{text-decoration:none}
.nav-links{display:flex;align-items:center;gap:4px;flex:1}
.nav-link{padding:8px 14px;border-radius:8px;color:var(--muted);font-weight:600;font-size:14px;transition:all .15s;text-decoration:none}
.nav-link:hover,.nav-link.active{color:var(--navy);background:var(--bg);text-decoration:none}
.nav-cta{margin-left:auto;flex-shrink:0}
.hamburger{display:none;flex-direction:column;gap:5px;background:none;border:none;cursor:pointer;padding:8px;margin-left:auto}
.hamburger span{display:block;width:22px;height:2px;background:var(--navy);border-radius:2px;transition:all .2s}
.hamburger.open span:nth-child(1){transform:rotate(45deg) translate(5px,5px)}
.hamburger.open span:nth-child(2){opacity:0}
.hamburger.open span:nth-child(3){transform:rotate(-45deg) translate(5px,-5px)}
@media(max-width:768px){
  .hamburger{display:flex}
  .nav-cta{display:none}
  .nav-links{display:none;position:absolute;top:64px;left:0;right:0;background:white;flex-direction:column;padding:16px;border-bottom:1px solid var(--border);box-shadow:0 8px 24px rgba(0,0,0,.1);align-items:stretch;gap:4px;z-index:300}
  .nav-links.open{display:flex}
  .nav-link{padding:12px 16px}
}

/* HERO */
.hero{background:linear-gradient(135deg,#0C2340 0%,#1a3a5c 50%,#0C3340 100%);padding:80px 24px;color:white;overflow:hidden;position:relative}
.hero::before{content:'';position:absolute;inset:0;background:url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E")}
.hero-inner{max-width:1140px;margin:0 auto;display:grid;grid-template-columns:1fr 340px;gap:60px;align-items:center}
.hero-badge{display:inline-block;background:rgba(0,169,157,.2);border:1px solid rgba(0,169,157,.4);color:#5EEAD4;border-radius:100px;padding:6px 16px;font-size:13px;font-weight:700;margin-bottom:20px}
.hero h1{font-size:clamp(32px,4.5vw,52px);font-weight:900;line-height:1.1;margin-bottom:20px;letter-spacing:-.5px}
.hero-accent{color:#5EEAD4}
.hero p{font-size:18px;opacity:.85;margin-bottom:32px;line-height:1.6}
.hero-actions{display:flex;gap:12px;flex-wrap:wrap;margin-bottom:28px}
.hero-guarantees{display:flex;flex-wrap:wrap;gap:16px;font-size:13px;font-weight:600;opacity:.8}
.hero-guarantees span{display:flex;align-items:center;gap:6px}

/* QUOTE PREVIEW CARD */
.quote-preview{background:white;border-radius:16px;padding:24px;box-shadow:0 20px 60px rgba(0,0,0,.25)}
.qp-header{display:flex;align-items:center;gap:8px;font-weight:800;color:var(--navy);font-size:16px;margin-bottom:16px;padding-bottom:12px;border-bottom:1px solid var(--border)}
.qp-item{display:flex;justify-content:space-between;padding:10px 0;border-bottom:1px solid #F1F5F9;font-size:14px}
.qp-price{font-weight:700;color:var(--teal)}
.qp-total{display:flex;justify-content:space-between;padding:14px 0 0;font-size:18px;font-weight:900;color:var(--navy)}

@media(max-width:900px){
  .hero-inner{grid-template-columns:1fr}
  .hero{padding:48px 24px}
  .quote-preview{display:none}
}

/* TRUST BAR */
.trust-bar{background:var(--teal);color:white;padding:0 24px}
.trust-bar-inner{max-width:1140px;margin:0 auto;display:grid;grid-template-columns:repeat(4,1fr);gap:0}
.trust-stat{padding:24px 16px;text-align:center;border-right:1px solid rgba(255,255,255,.2)}
.trust-stat:last-child{border-right:none}
.ts-num{display:block;font-size:28px;font-weight:900;line-height:1}
.ts-label{display:block;font-size:12px;opacity:.8;margin-top:4px;font-weight:600;text-transform:uppercase;letter-spacing:.5px}
@media(max-width:600px){.trust-bar-inner{grid-template-columns:1fr 1fr}.trust-stat{border-right:none;border-bottom:1px solid rgba(255,255,255,.2)}}

/* SECTION */
.section{padding:72px 24px}
.section-header{text-align:center;margin-bottom:48px}
.section-header h2{font-size:clamp(26px,3.5vw,38px);font-weight:800;color:var(--navy);margin-bottom:12px}
.section-header p{font-size:17px;color:var(--muted);max-width:580px;margin:0 auto}

/* STEPS */
.steps{display:flex;align-items:flex-start;gap:0;justify-content:center;flex-wrap:wrap}
.step{flex:1;min-width:180px;max-width:220px;text-align:center;padding:24px 16px}
.step-num{width:36px;height:36px;border-radius:50%;background:var(--teal);color:white;font-weight:900;font-size:14px;display:inline-flex;align-items:center;justify-content:center;margin-bottom:12px}
.step-icon{font-size:36px;margin-bottom:12px}
.step h3{font-size:16px;font-weight:700;color:var(--navy);margin-bottom:8px}
.step p{font-size:14px;color:var(--muted);line-height:1.6}
.step-arrow{font-size:24px;color:var(--teal);align-self:center;flex-shrink:0;opacity:.5;padding:0 4px;margin-top:-20px}
@media(max-width:700px){.step-arrow{display:none}.steps{gap:8px}}

/* HOMEPAGE PRODUCTS */
.product-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(200px,1fr));gap:16px}
.product-card-mini{background:white;border-radius:12px;padding:20px;border:1px solid var(--border);box-shadow:0 2px 8px rgba(0,0,0,.05);transition:all .18s;display:block;text-decoration:none;color:var(--text)}
.product-card-mini:hover{transform:translateY(-3px);box-shadow:0 8px 24px rgba(0,169,157,.15);border-color:var(--teal);text-decoration:none;color:var(--text)}
.pcm-brand{font-size:11px;font-weight:700;color:var(--teal);text-transform:uppercase;letter-spacing:1px;margin-bottom:6px}
.pcm-name{font-size:14px;font-weight:600;color:var(--navy);margin-bottom:12px;line-height:1.4}
.pcm-price{font-size:24px;font-weight:900;color:var(--navy)}
.pcm-price span{font-size:13px;font-weight:500;color:var(--muted)}
.pcm-cta{margin-top:12px;font-size:13px;font-weight:700;color:var(--teal)}

/* WHY GRID */
.why-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:20px}
.why-card{background:rgba(255,255,255,.07);border:1px solid rgba(255,255,255,.12);border-radius:12px;padding:28px;transition:all .18s}
.why-card:hover{background:rgba(255,255,255,.11)}
.why-icon{font-size:32px;margin-bottom:12px}
.why-card h3{font-size:18px;font-weight:700;color:white;margin-bottom:8px}
.why-card p{font-size:14px;color:rgba(255,255,255,.7);line-height:1.65}

/* SHIPPING */
.shipping-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:20px}
.shipping-card{background:white;border-radius:12px;padding:28px;border:1px solid var(--border);box-shadow:var(--shadow);text-align:center;position:relative}
.featured-ship{border-color:var(--teal);box-shadow:0 4px 20px rgba(0,169,157,.2)}
.sc-badge{position:absolute;top:-12px;left:50%;transform:translateX(-50%);background:var(--teal);color:white;font-size:11px;font-weight:700;padding:4px 12px;border-radius:100px;white-space:nowrap;letter-spacing:.5px}
.sc-icon{font-size:36px;margin-bottom:12px}
.shipping-card h3{font-size:17px;font-weight:700;color:var(--navy);margin-bottom:8px}
.shipping-card p{font-size:14px;color:var(--muted);line-height:1.6}

/* PAYMENT */
.pay-grid{display:flex;flex-wrap:wrap;gap:16px;justify-content:center}
.pay-card{background:white;border-radius:12px;padding:20px 28px;border:1px solid var(--border);display:flex;align-items:center;gap:10px;font-size:16px;font-weight:600;color:var(--navy);box-shadow:var(--shadow)}
.pay-card span{font-size:24px}

/* CTA BANNER */
.cta-banner{background:linear-gradient(135deg,var(--teal),#006E66);padding:72px 24px;color:white;text-align:center}
.cta-banner h2{font-size:clamp(26px,3.5vw,38px);font-weight:800;margin-bottom:12px}
.cta-banner p{font-size:18px;opacity:.85;margin-bottom:32px}

/* FOOTER */
.footer{background:var(--navy);color:rgba(255,255,255,.7);padding:60px 24px 0}
.footer-inner{max-width:1140px;margin:0 auto;display:grid;grid-template-columns:1fr 2fr;gap:60px;margin-bottom:48px}
.footer-brand p{font-size:14px;line-height:1.7;margin-top:16px;max-width:280px}
.footer-trust{display:flex;flex-direction:column;gap:6px;margin-top:16px;font-size:13px;font-weight:600;color:rgba(255,255,255,.8)}
.footer-links{display:grid;grid-template-columns:repeat(3,1fr);gap:32px}
.footer-links h4{color:white;font-size:14px;font-weight:700;margin-bottom:12px;text-transform:uppercase;letter-spacing:.5px}
.footer-links a,.footer-links p{display:block;color:rgba(255,255,255,.6);font-size:14px;margin-bottom:8px;transition:color .15s}
.footer-links a:hover{color:white;text-decoration:none}
.footer-bottom{border-top:1px solid rgba(255,255,255,.1);padding:20px 0;text-align:center;font-size:12px;opacity:.5;max-width:1140px;margin:0 auto}
@media(max-width:700px){.footer-inner{grid-template-columns:1fr}.footer-links{grid-template-columns:1fr 1fr}}

/* PAGE HEADER */
.page-header{background:var(--navy);color:white;padding:48px 24px;text-align:center}
.page-header h1{font-size:clamp(28px,4vw,44px);font-weight:900;margin-bottom:12px}
.page-header p{font-size:17px;opacity:.8}

/* SELL PAGE */
.req-bar{display:flex;flex-wrap:wrap;gap:10px;margin-bottom:16px}
.req-item{padding:8px 14px;border-radius:8px;font-size:13px;font-weight:600}
.req-item.good{background:#ECFDF5;color:#065F46}
.req-item.bad{background:#FEF2F2;color:#991B1B}
.bonus-banner{background:#FFFBEB;border:1px solid #FCD34D;border-radius:10px;padding:14px 20px;font-size:14px;margin-bottom:24px;color:#92400E}
.bonus-banner code{background:#FCD34D;padding:2px 8px;border-radius:4px;font-weight:700}
.catalog-controls{margin-bottom:24px}
.search-input{width:100%;padding:12px 16px;border:2px solid var(--border);border-radius:10px;font-size:15px;font-family:inherit;outline:none;transition:border .2s}
.search-input:focus{border-color:var(--teal)}
.brand-tabs{display:flex;flex-wrap:wrap;gap:8px;margin-top:12px}
.brand-tab{padding:7px 14px;border-radius:100px;border:2px solid var(--border);background:white;color:var(--muted);font-size:13px;font-weight:600;cursor:pointer;transition:all .15s}
.brand-tab:hover,.brand-tab.active{background:var(--teal);border-color:var(--teal);color:white}

/* CATALOG GRID */
.catalog-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(220px,1fr));gap:16px}
.prod-card{background:white;border-radius:12px;padding:20px;border:2px solid var(--border);transition:all .18s;display:flex;flex-direction:column}
.prod-card:hover{border-color:var(--teal);box-shadow:0 4px 20px rgba(0,169,157,.15);transform:translateY(-2px)}
.pc-brand{font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:1px;color:var(--teal);margin-bottom:4px}
.pc-name{font-size:14px;font-weight:700;color:var(--navy);margin-bottom:4px;line-height:1.4;flex:1}
.pc-sku{font-size:11px;color:var(--muted);margin-bottom:12px}
.pc-price{font-size:28px;font-weight:900;color:var(--navy);margin-bottom:4px}
.pc-per{font-size:12px;color:var(--muted);margin-bottom:16px}
.pc-add-row{display:flex;align-items:center;gap:8px}
.qty-control{display:flex;align-items:center;border:2px solid var(--border);border-radius:8px;overflow:hidden}
.qty-btn{width:32px;height:32px;background:white;border:none;cursor:pointer;font-size:16px;font-weight:700;color:var(--navy);transition:background .15s}
.qty-btn:hover{background:var(--bg)}
.qty-val{width:36px;text-align:center;font-size:14px;font-weight:700;color:var(--navy)}
.add-btn{flex:1;padding:8px 12px;background:var(--teal);color:white;border:none;border-radius:8px;font-weight:700;font-size:13px;cursor:pointer;transition:all .18s}
.add-btn:hover{background:var(--teal2);transform:translateY(-1px)}
.add-btn.added{background:#10B981}

/* CART */
.cart-box{background:white;border-radius:14px;border:2px solid var(--border);overflow:hidden;box-shadow:var(--shadow)}
.seller-form-box{background:white;border-radius:14px;border:2px solid var(--border);overflow:hidden;box-shadow:var(--shadow);margin-top:16px}
.cart-header{background:var(--navy);color:white;padding:16px 20px;display:flex;justify-content:space-between;align-items:center;font-weight:700}
.cart-count{background:var(--teal);color:white;border-radius:100px;padding:2px 10px;font-size:12px}
.cart-empty{padding:32px 20px;text-align:center;color:var(--muted);font-size:14px}
.cart-list{list-style:none;padding:12px 0;max-height:320px;overflow-y:auto}
.cart-list-item{display:flex;align-items:center;gap:8px;padding:10px 16px;border-bottom:1px solid #F1F5F9;font-size:13px}
.cli-name{flex:1;font-weight:600;color:var(--navy);line-height:1.3}
.cli-qty{color:var(--muted);flex-shrink:0}
.cli-price{font-weight:700;color:var(--teal);flex-shrink:0;min-width:48px;text-align:right}
.cli-remove{background:none;border:none;color:var(--red);cursor:pointer;font-size:16px;flex-shrink:0;opacity:.6;transition:opacity .15s}
.cli-remove:hover{opacity:1}
.cart-total-row{display:flex;justify-content:space-between;padding:16px 16px 0;border-top:2px solid var(--border);font-weight:700;font-size:16px;margin:4px 16px 16px}
.cart-total-val{font-size:24px;font-weight:900;color:var(--teal)}

/* SELLER FORM */
.sf-header{background:var(--bg);padding:16px 20px;border-bottom:1px solid var(--border)}
.sf-header h3{font-size:17px;font-weight:700;color:var(--navy);margin-bottom:4px}
.sf-header p{font-size:13px;color:var(--muted)}
.back-btn{background:none;border:none;color:var(--teal);cursor:pointer;font-size:13px;font-weight:600;margin-bottom:8px;padding:0}
.back-btn:hover{text-decoration:underline}
.seller-form-box form{padding:20px}
.form-group{margin-bottom:16px}
.form-group label{display:block;font-size:13px;font-weight:700;color:var(--navy);margin-bottom:6px}
.form-group input,.form-group select,.form-group textarea{width:100%;padding:10px 12px;border:2px solid var(--border);border-radius:8px;font-size:14px;font-family:inherit;outline:none;transition:border .2s;background:white;color:var(--text)}
.form-group input:focus,.form-group select:focus,.form-group textarea:focus{border-color:var(--teal)}
.form-group textarea{resize:vertical}
.quote-summary-box{background:var(--bg);border-radius:10px;padding:16px;margin-bottom:16px}
.qs-label{font-size:12px;font-weight:700;text-transform:uppercase;letter-spacing:.5px;color:var(--muted);margin-bottom:10px}
.qs-list{list-style:none;font-size:13px;display:flex;flex-direction:column;gap:4px}
.qs-list li{display:flex;justify-content:space-between;color:var(--text)}
.qs-total{margin-top:10px;padding-top:10px;border-top:1px solid var(--border);font-size:15px;font-weight:700;color:var(--navy)}

/* MODAL */
.modal-overlay{position:fixed;inset:0;background:rgba(0,0,0,.6);z-index:1000;display:flex;align-items:center;justify-content:center;padding:24px;backdrop-filter:blur(4px)}
.modal-box{background:white;border-radius:20px;padding:40px;max-width:480px;width:100%;text-align:center;box-shadow:0 24px 60px rgba(0,0,0,.3)}
.modal-box h2{font-size:28px;font-weight:800;color:var(--navy);margin-bottom:12px}
.modal-box p{color:var(--muted);margin-bottom:8px}
.modal-qid{background:var(--bg);border-radius:8px;padding:12px 20px;font-size:16px;margin:16px 0;color:var(--navy)}

/* HOW IT WORKS PAGE */
.hiw-steps{display:flex;flex-direction:column;gap:48px;max-width:780px;margin:0 auto 60px}
.hiw-step{display:grid;grid-template-columns:80px 1fr;gap:32px;align-items:start}
.hiw-num{font-size:56px;font-weight:900;color:var(--teal);line-height:1;opacity:.3}
.hiw-body h2{font-size:26px;font-weight:800;color:var(--navy);margin-bottom:14px}
.hiw-body p{font-size:15px;color:var(--muted);line-height:1.75;margin-bottom:12px}
.hiw-body a{color:var(--teal);font-weight:600}
.hiw-tip{background:#ECFDF5;border-left:4px solid var(--green);padding:12px 16px;border-radius:0 8px 8px 0;font-size:14px;color:#065F46;margin-top:16px}
.hiw-options{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:16px;margin:20px 0}
.hiw-opt{background:var(--bg);border-radius:10px;padding:16px}
.hiw-opt strong{display:block;margin-bottom:8px;color:var(--navy)}
.hiw-opt p{font-size:13px;color:var(--muted);margin:0}
.pay-methods-list{display:flex;flex-wrap:wrap;gap:12px;margin:16px 0}
.pm-item{background:var(--bg);border-radius:8px;padding:10px 16px;font-size:14px;font-weight:600;color:var(--navy)}
.cta-box{background:linear-gradient(135deg,var(--teal),#006E66);border-radius:16px;padding:48px;text-align:center;color:white;margin:0 0 60px}
.cta-box h2{font-size:28px;font-weight:800;margin-bottom:12px}
.cta-box p{font-size:16px;opacity:.85;margin-bottom:24px}
.accept-section{background:white;border-radius:16px;padding:40px;box-shadow:var(--shadow);border:1px solid var(--border)}
.accept-section h2{font-size:24px;font-weight:800;color:var(--navy);margin-bottom:24px}
.accept-grid{display:grid;grid-template-columns:1fr 1fr;gap:24px}
.accept-col{border-radius:10px;padding:20px}
.accept-col.good{background:#ECFDF5}
.accept-col.bad{background:#FEF2F2}
.accept-col h3{font-size:16px;font-weight:700;margin-bottom:12px}
.accept-col.good h3{color:#065F46}
.accept-col.bad h3{color:#991B1B}
.accept-col ul{padding-left:16px;font-size:14px;line-height:2}
.accept-col.good ul{color:#065F46}
.accept-col.bad ul{color:#991B1B}
@media(max-width:640px){.hiw-step{grid-template-columns:1fr}.hiw-num{font-size:32px}.accept-grid{grid-template-columns:1fr}}

/* FAQ PAGE */
.faq-layout{display:grid;grid-template-columns:1fr 280px;gap:40px;align-items:start}
.faq-category{font-size:13px;font-weight:700;text-transform:uppercase;letter-spacing:1px;color:var(--teal);margin:32px 0 8px;padding-bottom:8px;border-bottom:2px solid var(--teal);opacity:.8}
.faq-category:first-child{margin-top:0}
.faq-item{border:1px solid var(--border);border-radius:10px;margin-bottom:8px;overflow:hidden;background:white}
.faq-q{width:100%;padding:16px 20px;text-align:left;background:none;border:none;cursor:pointer;font-size:15px;font-weight:600;color:var(--navy);display:flex;justify-content:space-between;align-items:center;gap:12px;font-family:inherit;transition:background .15s}
.faq-q:hover{background:var(--bg)}
.faq-arrow{font-size:12px;color:var(--teal);flex-shrink:0;transition:transform .2s}
.faq-a{display:none;padding:0 20px 20px;font-size:14px;color:var(--muted);line-height:1.75}
.faq-a a{color:var(--teal);font-weight:600}
.faq-item.open .faq-arrow{transform:rotate(180deg)}
.faq-item.open .faq-a{display:block}
.faq-item.open .faq-q{background:var(--bg)}
.faq-sidebar{position:sticky;top:90px;display:flex;flex-direction:column;gap:20px}
.faq-contact-card,.faq-cta-card{background:white;border-radius:14px;padding:24px;box-shadow:var(--shadow);border:1px solid var(--border)}
.faq-contact-card h3,.faq-cta-card h3{font-size:18px;font-weight:700;color:var(--navy);margin-bottom:8px}
.faq-contact-card p,.faq-cta-card p{font-size:14px;color:var(--muted);margin-bottom:16px}
@media(max-width:768px){.faq-layout{grid-template-columns:1fr}.faq-sidebar{position:static}}

/* TRACK PAGE */
.track-form{background:white;border-radius:14px;padding:28px;box-shadow:var(--shadow);border:1px solid var(--border);margin-bottom:24px}
.track-form label{display:block;font-size:13px;font-weight:700;color:var(--navy);margin-bottom:8px}
.track-input-row{display:flex;gap:12px}
.track-input{flex:1;padding:12px 16px;border:2px solid var(--border);border-radius:8px;font-size:15px;font-family:inherit;outline:none;transition:border .2s}
.track-input:focus{border-color:var(--teal)}
.track-result{background:white;border-radius:14px;padding:32px;box-shadow:var(--shadow);border:1px solid var(--border);margin-bottom:24px}
.track-result.not-found{text-align:center;color:var(--muted)}
.track-result.not-found h3{font-size:22px;font-weight:700;color:var(--navy);margin-bottom:8px}
.tr-header{display:flex;justify-content:space-between;align-items:center;margin-bottom:20px;flex-wrap:wrap;gap:12px}
.tr-qid{font-size:14px;color:var(--muted)}
.tr-qid strong{color:var(--navy);font-size:16px}
.tr-status-badge{background:#ECFDF5;color:#065F46;border-radius:100px;padding:6px 16px;font-size:13px;font-weight:700}
.tr-details{display:flex;flex-direction:column;gap:0;border:1px solid var(--border);border-radius:10px;overflow:hidden;margin-bottom:20px}
.tr-row{display:flex;justify-content:space-between;padding:12px 16px;font-size:14px;border-bottom:1px solid var(--border)}
.tr-row:last-child{border-bottom:none}
.tr-row span:first-child{color:var(--muted);font-weight:600}
.tr-row span:last-child{color:var(--navy);font-weight:600}
.tr-items{background:var(--bg);border-radius:10px;padding:16px;margin-bottom:16px}
.tr-items-header{font-size:13px;font-weight:700;text-transform:uppercase;letter-spacing:.5px;color:var(--muted);margin-bottom:10px}
.tr-item-row{display:flex;justify-content:space-between;font-size:14px;padding:6px 0;border-bottom:1px solid var(--border);color:var(--text)}
.tr-total-row{display:flex;justify-content:space-between;font-size:16px;font-weight:800;color:var(--navy);padding-top:12px;margin-top:4px}
.tr-help{font-size:13px;color:var(--muted)}
.track-tip{background:var(--bg);border-radius:12px;padding:24px;font-size:14px;color:var(--muted)}
.track-tip h3{font-size:16px;font-weight:700;color:var(--navy);margin-bottom:8px}
.track-tip strong{color:var(--navy)}
@media(max-width:500px){.track-input-row{flex-direction:column}}
