/* === RESET & VARIABLES === */
:root {
    --blue: #0B51D8;
    --green: #08C26E;
    --dark: #0F172A;
    --light: #F8FAFC;
    --white: #FFFFFF;
    --gray: #475569;
    --font-head: 'Oswald', sans-serif;
    --font-body: 'Inter', sans-serif;
    --header-h: 100px;
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    color: var(--dark);
    background: var(--white);
    line-height: 1.7;
    padding-top: var(--header-h);
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color 0.2s ease; }
ul, ol { list-style: none; }
.container { width: 90%; max-width: 1200px; margin: 0 auto; }

/* === TYPOGRAPHY === */
h1 { font-family: var(--font-head); font-weight: 700; font-size: 36px; line-height: 1.2; margin-bottom: 20px; color: var(--dark); }
h2 { font-family: var(--font-head); font-weight: 400; font-size: 28px; line-height: 1.3; margin-bottom: 16px; color: var(--dark); }
h3 { font-family: var(--font-head); font-weight: 400; font-size: 22px; line-height: 1.3; margin-bottom: 12px; color: var(--dark); }
p { margin-bottom: 16px; color: var(--gray); }

@media (min-width: 768px) {
    h1 { font-size: 45px; }
    h2 { font-size: 35px; }
    h3 { font-size: 24px; }
}

/* === HEADER === */
.site-header {
    position: fixed; top: 0; left: 0; width: 100%;
    height: var(--header-h);
    background: var(--white);
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    z-index: 1000;
    display: flex; align-items: center;
}
.header-inner { display: flex; justify-content: space-between; align-items: center; width: 100%; }
.brand-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.brand-logo img {
    height: 70px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
}
.nav-list { display: flex; gap: 32px; }
.nav-link {
    font-family: var(--font-head); font-weight: 700; font-size: 15px;
    text-transform: uppercase; letter-spacing: 0.5px; color: var(--dark);
}
.nav-link:hover, .nav-link.active { color: var(--blue); }
.mobile-toggle { display: none; cursor: pointer; padding: 8px 12px;  margin-right: 12px;     /* ← ADD THIS LINE (compensates visual alignment) */
    -webkit-tap-highlight-color: transparent;}
.bar { display: block; width: 24px; height: 2px; background: var(--dark); margin: 5px 0; transition: 0.3s ease; }

@media (max-width: 1024px) {
    :root { --header-h: 80px; }
    .brand-logo img {
    height: 50px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
}
    .mobile-toggle { display: block; }
    .main-nav {
        position: fixed; top: var(--header-h); left: -100%;
        width: 100%; height: calc(100vh - var(--header-h));
        background: var(--white);
        display: flex; justify-content: center; align-items: center;
        transition: left 0.3s ease;
        box-shadow: 0 8px 16px rgba(0,0,0,0.08);
    }
    .main-nav.open { left: 0; }
    .nav-list { flex-direction: column; gap: 24px; text-align: center; }
    .nav-link { font-size: 22px; }
    .mobile-toggle.open .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .mobile-toggle.open .bar:nth-child(2) { opacity: 0; }
    .mobile-toggle.open .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* === HERO === */
.hero {
    position: relative; padding: 120px 0; text-align: center;
    background: url('/assets/images/hero-bg.jpg') center/cover no-repeat;
    color: var(--white);
}
.hero-overlay { position: absolute; inset: 0; background: rgba(15,23,42,0.72); }
.hero-content { position: relative; z-index: 1; max-width: 780px; margin: 0 auto; }
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero p { color: rgba(255,255,255,0.92); font-size: 18px; margin-bottom: 32px; }
.hero-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* === BUTTONS === */
.btn {
    display: inline-block; padding: 14px 28px;
    background: var(--blue); color: var(--white);
    font-family: var(--font-head); font-weight: 700; font-size: 14px;
    text-transform: uppercase; letter-spacing: 0.5px;
    border: 2px solid var(--blue); border-radius: 4px;
    transition: all 0.2s ease;
}
.btn:hover { background: transparent; color: var(--white); }
.btn-outline { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--blue); }
.btn-green { background: var(--green); border-color: var(--green); }
.btn-green:hover { background: transparent; color: var(--green); }

/* === SECTIONS === */
.section { padding: 80px 0; }
.bg-light { background: var(--light); }
.section-title { text-align: center; margin-bottom: 48px; }

/* === GRID === */
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 28px; }
@media (min-width: 768px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }

/* === CARDS === */
.card {
    background: var(--white); border-radius: 8px; overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    display: flex; flex-direction: column; height: 100%;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 8px 20px rgba(0,0,0,0.08); }
.card-img { width: 100%; height: 200px; object-fit: cover; }
.card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.card-meta { font-size: 12px; font-weight: 600; color: var(--green); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 8px; }
.card-body h3 { font-size: 20px; margin-bottom: 10px; }
.card-body h3 a:hover { color: var(--blue); }
.card-body p { font-size: 14px; flex: 1; }
.read-more { font-size: 14px; font-weight: 600; color: var(--green); margin-top: auto; }
.read-more:hover { color: var(--blue); }
.center-btn { text-align: center; margin-top: 40px; }

/* === TRUST === */
.trust-item { text-align: center; padding: 24px; }
.trust-item h3 { color: var(--blue); margin-bottom: 10px; }

/* === PAGE HEADER === */
.page-header { background: var(--light); padding: 60px 0; text-align: center; margin-bottom: 0; }
.page-header p { color: var(--gray); font-size: 18px; margin-top: 10px; }

/* === CONTENT WRAPPER === */
.content-wrap { max-width: 800px; margin: 0 auto; padding: 60px 20px; }
.content-wrap h2 { margin-top: 36px; }
.content-wrap ul { list-style: disc; padding-left: 24px; margin-bottom: 20px; }
.content-wrap li { margin-bottom: 8px; color: var(--gray); }
.content-wrap a { color: var(--blue); font-weight: 600; }
.content-wrap a:hover { text-decoration: underline; }

/* === REVIEW BOX === */
.review-box {
    background: var(--light); border: 2px solid var(--blue);
    border-radius: 8px; padding: 32px; margin: 32px 0;
}
.review-score { font-size: 28px; font-weight: 700; color: var(--green); margin-bottom: 8px; }
.pros-cons { display: grid; grid-template-columns: 1fr; gap: 20px; margin: 24px 0; }
@media (min-width: 768px) { .pros-cons { grid-template-columns: 1fr 1fr; } }
.pros, .cons { padding: 20px; border-radius: 8px; }
.pros { background: #f0fdf4; }
.cons { background: #fef2f2; }
.pros h4 { color: var(--green); margin-bottom: 10px; }
.cons h4 { color: #dc2626; margin-bottom: 10px; }
.pros li::before { content: '✓ '; color: var(--green); font-weight: 700; }
.cons li::before { content: '✗ '; color: #dc2626; font-weight: 700; }

/* === LANDING PAGE === */
.lp-container { max-width: 760px; margin: 40px auto; padding: 40px 24px; background: var(--white); border-radius: 12px; box-shadow: 0 4px 24px rgba(0,0,0,0.08); }
.lp-headline { font-size: 32px; color: var(--blue); text-align: center; margin-bottom: 16px; }
.lp-sub { text-align: center; font-size: 18px; margin-bottom: 32px; }
.lp-bullets li { padding: 12px 0; border-bottom: 1px solid #e2e8f0; font-size: 17px; }
.lp-bullets li::before { content: '✅ '; margin-right: 8px; }
.lp-cta { display: block; width: 100%; text-align: center; padding: 20px; font-size: 22px; margin: 32px 0; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.02); } }
.lp-footer { text-align: center; font-size: 12px; color: #94a3b8; margin-top: 40px; padding: 20px; }
.lp-footer a { color: #94a3b8; text-decoration: underline; }

/* === FOOTER === */
.site-footer { background: var(--dark); color: var(--white); padding: 72px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 36px; margin-bottom: 40px; }
.footer-brand {
    display: inline-block;
}
.footer-brand img {
    height: 80px;
    width: auto;
    max-width: 260px;
    object-fit: contain;
    margin-bottom: 16px;
}
.footer-desc { color: #cbd5e1; font-size: 15px; }
.footer-col h4 { font-family: var(--font-head); font-weight: 700; font-size: 16px; text-transform: uppercase; letter-spacing: 1px; color: var(--white); margin-bottom: 18px; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: #cbd5e1; font-size: 15px; }
.footer-links a:hover { color: var(--green); padding-left: 4px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; text-align: center; font-size: 14px; color: #94a3b8; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }

/* === 404 === */
.error-page { text-align: center; padding: 120px 20px; }
.error-code { font-family: var(--font-head); font-size: 120px; font-weight: 700; color: var(--blue); line-height: 1; }