/* ============================= */
/* GLOBAL RESET / BASE           */
/* ============================= */

* {
box-sizing: border-box;
margin: 0;
padding: 0;
}

body {
font-family: 'Inter', Arial, sans-serif;
background: #ffffff;
color: #111827;
line-height: 1.7;
-webkit-font-smoothing: antialiased;
}

a {
text-decoration: none;
}

/* ============================= */
/* HEADER – MOBILE FIRST         */
/* ============================= */

.site-header {
background: #ffffff;
border-bottom: 1px solid #e5e7eb;
padding: 10px 0;
position: sticky;
top: 0;
z-index: 999;
}

.header-container {
max-width: 1100px;
margin: 0 auto;
display: flex;
align-items: center;
justify-content: center;
padding: 0 16px;
}

.logo {
height: 64px;
}

.site-name {
display: none;
}

/* ============================= */
/* MAIN CONTAINER                */
/* ============================= */

.container {
max-width: 760px;
margin: 30px auto;
padding: 16px;
}

h1 {
font-size: 26px;
font-weight: 700;
margin-bottom: 20px;
color: #0f172a;
line-height: 1.3;
}

.lead {
font-size: 18px;
margin-bottom: 18px;
font-weight: 500;
}

p {
font-size: 17px;
margin-bottom: 18px;
color: #1f2937;
}

/* ============================= */
/* VIDEO SECTION                 */
/* ============================= */

.video-wrapper {
margin: 24px 0;
width: 100%;
}

.video-wrapper iframe,
.video-wrapper video {
width: 100%;
border-radius: 10px;
}

/* ============================= */
/* CTA BUTTON                    */
/* ============================= */

.cta-wrapper {
text-align: center;
margin: 30px 0;
}

.cta-button {
background: #1b5fa7;
color: #ffffff;
padding: 18px 24px;
font-size: 18px;
font-weight: 600;
border-radius: 8px;
display: inline-block;
transition: 0.3s ease;
}

.cta-button:hover {
background: #144a80;
}

/* CTA DELAY (VSL PAGE) */

.cta-container {
display: none;
text-align: center;
margin-top: 30px;
}

.cta-container.show {
display: block;
animation: fadeIn 0.6s ease-in-out;
}

@keyframes fadeIn {
from { opacity: 0; transform: translateY(10px); }
to { opacity: 1; transform: translateY(0); }
}

/* ============================= */
/* DISCLAIMER                    */
/* ============================= */

.disclaimer {
font-size: 13px;
color: #6b7280;
margin-top: 30px;
text-align: center;
}

/* ============================= */
/* FOOTER                        */
/* ============================= */

.site-footer {
background: #f9fafb;
border-top: 1px solid #e5e7eb;
margin-top: 50px;
padding: 24px 0;
}

.footer-container {
max-width: 1100px;
margin: 0 auto;
padding: 0 16px;
display: flex;
flex-direction: column;
align-items: center;
gap: 10px;
}

.footer-links a {
color: #1b5fa7;
font-size: 14px;
margin: 0 8px;
}

.footer-links a:hover {
text-decoration: underline;
}

/* ============================= */
/* DESKTOP ADJUSTMENTS           */
/* ============================= */

@media (min-width: 768px) {

.header-container {
justify-content: flex-start;
}

.site-name {
display: block;
font-size: 16px;
font-weight: 500;
color: #374151;
margin-left: 10px;
}

.logo {
height: 72px;
}

.container {
margin: 40px auto;
padding: 20px;
}

h1 {
font-size: 32px;
}

.lead {
font-size: 20px;
}

p {
font-size: 18px;
}

.footer-container {
flex-direction: row;
justify-content: space-between;
}

}

/* ============================= */
/* CONTACT FORM                  */
/* ============================= */

.contact-form {
margin-top: 30px;
display: flex;
flex-direction: column;
gap: 14px;
}

.contact-form label {
font-size: 14px;
font-weight: 600;
color: #374151;
}

.contact-form input,
.contact-form textarea {
padding: 12px;
border: 1px solid #d1d5db;
border-radius: 6px;
font-size: 15px;
width: 100%;
}

.contact-form input:focus,
.contact-form textarea:focus {
outline: none;
border-color: #1b5fa7;
}

/* ============================= */
/* VSL PAGE TITLE                */
/* ============================= */

.vsl-title {
font-size: 20px;
font-weight: 600;
text-align: center;
margin-bottom: 16px;
line-height: 1.3;
}

/* Desktop */
@media (min-width: 768px) {
.vsl-title {
font-size: 28px;
margin-bottom: 24px;
}
}
