/* style.css - wishallmsg.com */
:root {
    --primary: #2c3e8f;
    --primary-dark: #1a2a6e;
    --secondary: #e67e22;
    --light: #f8f9fa;
    --dark: #212529;
    --gray: #6c757d;
    --border: #dee2e6;
}
* { margin:0; padding:0; box-sizing: border-box; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: white;
}
.container { width: 90%; max-width: 1200px; margin: 0 auto; }
/* Navbar */
.navbar { background: white; box-shadow: 0 2px 10px rgba(0,0,0,0.05); position: sticky; top:0; z-index: 1000; }
.nav-container { display: flex; justify-content: space-between; align-items: center; padding: 1rem 0; }
.logo { font-size: 1.8rem; font-weight: 700; text-decoration: none; color: var(--primary); }
.logo span { color: var(--secondary); }
.nav-menu { display: flex; gap: 2rem; list-style: none; }
.nav-menu a { text-decoration: none; color: var(--dark); font-weight: 500; transition: 0.3s; }
.nav-menu a:hover, .nav-menu a.active { color: var(--primary); }
.mobile-toggle { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; }
/* Hero */
.hero { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); color: white; padding: 4rem 0; text-align: center; }
.hero h1 { font-size: 2.8rem; margin-bottom: 1rem; }
.hero-subtitle { font-size: 1.2rem; max-width: 700px; margin: 0 auto 2rem; }
.btn { display: inline-block; padding: 0.8rem 2rem; border-radius: 50px; text-decoration: none; font-weight: 600; margin: 0 0.5rem; transition: 0.3s; }
.btn-primary { background: var(--secondary); color: white; }
.btn-primary:hover { background: #d35400; transform: translateY(-2px); }
.btn-secondary { background: transparent; border: 2px solid white; color: white; }
.btn-secondary:hover { background: white; color: var(--primary); }
/* trust badges */
.trust-badges { padding: 2rem 0; background: var(--light); text-align: center; }
.badge-grid { display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; }
.badge { background: white; padding: 0.7rem 1.5rem; border-radius: 40px; box-shadow: 0 2px 5px rgba(0,0,0,0.05); font-weight: 500; }
/* features */
.features { padding: 4rem 0; }
.features-grid, .article-grid, .stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin-top: 2rem; }
.feature-card, .article-card { background: white; border: 1px solid var(--border); border-radius: 12px; padding: 1.5rem; transition: 0.3s; }
.feature-card i { font-size: 2.5rem; color: var(--primary); margin-bottom: 1rem; }
/* tool page */
.comparator-wrapper { background: var(--light); padding: 2rem; border-radius: 20px; margin: 2rem 0; }
.store-selector { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2rem; align-items: flex-end; }
.store-group { flex: 1; min-width: 200px; }
.store-group label { display: block; font-weight: 600; margin-bottom: 0.5rem; }
select, button { padding: 0.7rem 1rem; border-radius: 8px; border: 1px solid var(--border); font-size: 1rem; }
.compare-btn { background: var(--primary); color: white; border: none; cursor: pointer; font-weight: 600; }
.policy-table { overflow-x: auto; margin-top: 2rem; }
table { width: 100%; border-collapse: collapse; background: white; border-radius: 12px; overflow: hidden; }
th, td { padding: 1rem; text-align: left; border-bottom: 1px solid var(--border); }
th { background: var(--primary); color: white; }
/* footer */
footer { background: #1a1a2e; color: #ccc; padding: 3rem 0 1rem; margin-top: 4rem; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; }
footer a { color: #ccc; text-decoration: none; }
footer a:hover { color: white; }
.copyright { text-align: center; margin-top: 2rem; padding-top: 1rem; border-top: 1px solid #444; }
/* responsive */
@media (max-width: 768px) {
    .mobile-toggle { display: block; }
    .nav-menu { display: none; flex-direction: column; position: absolute; top: 70px; left: 0; width: 100%; background: white; padding: 1rem; box-shadow: 0 5px 10px rgba(0,0,0,0.1); }
    .nav-menu.active { display: flex; }
    .hero h1 { font-size: 2rem; }
    .btn { display: block; margin: 0.5rem auto; width: 80%; }
}
.faq-question { background: none; border: none; width: 100%; text-align: left; font-size: 1.1rem; font-weight: 600; padding: 1rem 0; cursor: pointer; display: flex; justify-content: space-between; }
.faq-answer { display: none; padding-bottom: 1rem; }
.scroll-top { position: fixed; bottom: 20px; right: 20px; background: var(--primary); color: white; width: 40px; height: 40px; border-radius: 50%; display: none; align-items: center; justify-content: center; cursor: pointer; z-index: 99; }