*{ margin:0; padding:0; box-sizing:border-box; }

body{ font-family:'Lato',sans-serif; background:#fff; color:#777; line-height:1.5; }
a{ text-decoration:none; }
img{ max-width:100%; display:block; }
.container{ max-width:940px; margin:0 auto; }

/* ── HEADER ── */
.top-header{ background:#fff; padding:12px 0; }
.top-wrap{
    display:grid; grid-template-columns:1fr 1fr 1fr;
    align-items:center; padding:0 10px;
    max-width:940px; margin:0 auto;
}
.logo img{ height:38px; }
.phone{ display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center; }
.phone strong{ display:block; font-size:24px; font-family:'Open Sans'; font-weight:600; line-height:1.1; color:#222; }
.phone span{ display:block; font-size:14px; line-height:1.2; color:#444; }
.inc{ text-align:right; display:flex; justify-content:flex-end; align-items:center; }
.inc img{ height:19px; width:92px; display:block; margin-left:auto; }
.bonus{ text-align:center; font-size:15px; color:#6f8db4; padding:18px 0 12px; }

/* ── MIDDLE SECTION ── */
.main-section{ padding:30px 10px 10px; }

/* Row 1: full-width heading */
.title-block{ margin-bottom:20px; }
.title-block h1{
    font-size:36px; line-height:1.25; color:#111;
    font-family:'Open Sans'; font-weight:700; margin-bottom:10px;
}
.subheading{ font-size:17px; font-weight:700; color:#333; line-height:1.5; }

/* Row 2: two-column */
.two-col{ display:flex; gap:36px; align-items:flex-start; }

.book{ width:340px; flex-shrink:0; }
.book img{ border:1px solid #ccc; width:100%; }

.right-col{ flex:1; }
.description{ font-size:16px; color:#555; line-height:1.7; margin-bottom:8px; }
.module-title{ font-size:17px; font-weight:700; color:#222; margin-bottom:10px; font-family:'Open Sans'; }
.feature-list{ padding-left:22px; margin-bottom:26px; }
.feature-list li{ margin-bottom:3px; font-size:16px; color:#444; }

.download-btn{
    display:inline-block; background:#d84920; color:#fff;
    border:none; padding:15px 40px; font-size:21px; font-weight:700;
    border-radius:6px; cursor:pointer; font-family:'Open Sans';
}

/* ── BOTTOM TEXT ── */
.bottom-text{ padding:28px 10px 50px; font-size:16px; color:#666; line-height:1.8; }
.bottom-text p{ margin-bottom:22px; }
.bottom-text strong{ color:#222; }

/* ── POPUP ── */
.popup-overlay{
    display:none; position:fixed; inset:0;
    background:rgba(0,0,0,0.7); z-index:9999;
    align-items:center; justify-content:center;
    padding:20px; overflow-y:auto;
}
.popup-box{
    background:#fff; width:100%; max-width:540px;
    border-radius:10px; padding:35px;
    position:relative; margin:auto;
}
.close-btn{
    position:absolute; top:15px; right:18px;
    background:none; border:none; font-size:28px;
    cursor:pointer; color:#555; line-height:1;
}
.popup-box h2{ font-size:30px; color:#0a7bbd; margin-bottom:8px; font-family:'Open Sans'; }
.popup-sub{ color:#666; margin-bottom:22px; font-size:15px; }

.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:14px; margin-bottom:14px; }
.form-row input, .form-single input{
    width:100%; padding:13px 14px; border:1px solid #ccc;
    border-radius:5px; font-size:15px; font-family:'Lato',sans-serif;
    color:#333; transition:border-color .2s;
}
.form-row input:focus, .form-single input:focus{ outline:none; border-color:#0a7bbd; }
.form-single{ margin-bottom:14px; }

.submit-btn{
    width:100%; background:#2ca24f; color:#fff;
    border:none; padding:16px; font-size:20px; font-weight:700;
    border-radius:6px; cursor:pointer; font-family:'Open Sans';
    margin-top:6px; transition:background .2s;
}
.submit-btn:hover{ background:#239044; }
.submit-btn:disabled{ background:#7ec898; cursor:not-allowed; }

.success-msg{ display:none; text-align:center; padding:30px 10px 10px; }
.success-msg .check{ font-size:52px; color:#2ca24f; margin-bottom:14px; }
.success-msg h3{ font-size:24px; color:#222; font-family:'Open Sans'; margin-bottom:10px; }
.success-msg p{ font-size:15px; color:#666; }

/* ── BLUE STRIP ── */
.blue-strip{
    background:#017bbe; color:#fff; text-align:center;
    font-size:26px; padding:24px 15px; line-height:1.35;
}

/* ── FOOTER ── */
.footer{ background:#282936; color:#aaacbc; padding:26px 0; }
.footer-wrap{
    display:flex; justify-content:space-between;
    align-items:center; font-size:14px; padding:0 10px; gap:20px;
}
.footer a{ color:#aaacbc; }

/* ── RESPONSIVE ── */
@media(max-width:768px){
    .top-wrap, .footer-wrap{ flex-direction:column; text-align:center; }
    .title-block h1{ font-size:26px; }
    .two-col{ flex-direction:column; }
    .book{ width:100%; }
    .download-btn{ width:100%; text-align:center; }
    .form-row{ grid-template-columns:1fr; }
}