/* Simple responsive styles for Tradeas landing pages */
:root{--accent:#0066cc;--accent-light:#e6f0ff;--dark:#1a1a1a;--muted:#666;--gold:#d3a200}
*{box-sizing:border-box}
body{font-family:'Outfit', Segoe UI, Roboto, sans-serif;line-height:1.6;margin:0;color:#333;background-color:#fcfcfc}
.container{max-width:1100px;margin:0 auto;padding:1rem}
.site-header{background:#fff;border-bottom:1px solid #eee}
.site-header .container{display:flex;align-items:center;justify-content:space-between;padding:0.75rem 1rem}
.brand{display:flex;align-items:center;text-decoration:none}
.brand img{height:50px;width:auto;transition:transform 0.3s ease}
.brand:hover img{transform:scale(1.05)}
.site-header nav a{margin-left:1.5rem;color:var(--dark);text-decoration:none;font-weight:500;transition:color 0.3s ease}
.site-header nav a:hover{color:var(--gold)}
.hero{background:linear-gradient(90deg, #f7fbff, #ffffff);padding:3rem 0}
.hero h1{margin:0 0 0.5rem;font-size:2rem}
.btn{display:inline-block;padding:0.5rem 0.9rem;background:var(--accent);color:#fff;border-radius:4px;text-decoration:none}
.btn-secondary{background:#eee;color:#111;margin-left:0.5rem}
.features, .product-grid{margin-top:2rem;padding-bottom:3rem}
.swiper{width:100%;height:auto;padding:20px 0 50px}
.swiper-slide{height:auto;display:flex;justify-content:center}
.card, .features article{width:100%;max-width:350px;background:#fff;padding:1.5rem;border-radius:12px;border:1px solid #eee;box-shadow:0 10px 30px rgba(0,0,0,0.05);transition:transform 0.3s ease, box-shadow 0.3s ease;display:flex;flex-direction:column}
.card:hover, .features article:hover{transform:translateY(-5px);box-shadow:0 15px 40px rgba(0,0,0,0.1)}
.card img, .features article img{width:100%;height:220px;object-fit:cover;border-radius:8px;margin-bottom:1rem}
.card h2, .features article h3{font-size:1.25rem;margin:0.5rem 0;color:var(--dark)}
.card p, .features article p{font-size:0.95rem;color:var(--muted);flex-grow:1}
.swiper-pagination-bullet-active{background:var(--gold) !important}
.swiper-button-next, .swiper-button-prev{color:var(--gold) !important}
.site-footer{margin-top:2rem;padding:1rem 0;background:#fafafa;border-top:1px solid #eee}
.contact-form label{display:block;margin-bottom:0.5rem}
.contact-form input,.contact-form textarea{width:100%;padding:0.5rem;margin-top:0.25rem;border:1px solid #ddd;border-radius:4px}
@media(max-width:700px){
  .features{flex-direction:column}
  .site-header .container{flex-direction:row;gap:0.5rem}
  .hero h1{font-size:1.4rem}
}
