:root {
    --primary: #E63946;
    --primary-dark: #D62828;
    --dark: #1D3557;
    --text: #2B2D42;
    --light: #F1FAEE;
    --white: #FFFFFF;
    --border: #EDF2F4;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--white);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    line-height: 1.5;
    text-align: center;
}

h1, h2, h3, .pricing-title {
    font-family: 'Outfit', sans-serif;
    color: var(--dark);
    font-weight: 800;
    letter-spacing: -0.03em;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 30px;
}

/* --- ANN BAR --- */
.ann-bar {
    background: var(--primary);
    color: white;
    padding: 12px 0;
    font-weight: 700;
    font-size: 0.9rem;
}

/* --- HEADER --- */
header {
    background: white;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}

.logo-pro {
    height: 40px; /* Small, professional, clean */
    display: block;
    margin: 0 auto;
}

/* --- SOCIAL PROOF STRIP --- */
.social-strip {
    background: #000;
    color: #fff;
    padding: 10px 0;
    font-size: 0.8rem;
    font-weight: 700;
}
.social-strip span { color: #A8DADC; }

/* --- HERO (NO DISTORTION) --- */
.hero {
    padding: 80px 0;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
}
.hero h1 span { color: var(--primary); }

.hero-mockup {
    width: 100%;
    max-width: 450px; /* Fixed max size */
    height: auto;
    margin: 40px auto;
    display: block;
}

.btn-pro {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 22px 50px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.3rem;
    transition: all 0.25s ease;
}
.btn-pro:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(230, 57, 70, 0.3);
}

/* --- BONUSES GRID (STRICT ALIGNMENT) --- */
.bonuses-section {
    padding: 80px 0;
    background: var(--light);
}

.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Exactly 2 for bonuses */
    gap: 30px;
    margin-top: 40px;
}

.bonus-box {
    background: white;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--border);
}

.bonus-box img {
    width: 100%;
    max-width: 200px; /* Fixed size */
    height: auto;
    border-radius: 6px;
    margin-bottom: 20px;
}

/* --- OPINIONS GRID (STRICT ALIGNMENT) --- */
.opinions-section {
    padding: 80px 0;
}

.opinions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Exactly 3 for opinions */
    gap: 20px;
    margin-top: 40px;
}

.opinion-item img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* --- PRICING --- */
.pricing-card {
    background: white;
    max-width: 800px;
    margin: 60px auto 100px;
    padding: 60px;
    border-radius: 20px;
    border: 2px solid var(--border);
}

.p-old { font-size: 1.5rem; text-decoration: line-through; color: #a4b0be; }
.p-new { font-size: 5rem; color: var(--primary); font-weight: 800; line-height: 1; margin: 20px 0; }

/* --- TOAST --- */
.p-toast {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: white;
    padding: 12px 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border-radius: 8px;
    border-left: 4px solid var(--primary);
    text-align: left;
    font-size: 0.8rem;
    z-index: 1000;
    transform: translateY(200px);
    transition: transform 0.5s ease;
}
.p-toast.show { transform: translateY(0); }

/* --- RESPONSIVE FIXES --- */
@media (max-width: 900px) {
    .opinions-grid, .bonuses-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2.5rem; }
    .hero-mockup { max-width: 90%; }
}
