@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Poppins:wght@300;400;600;700&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap');

:root {
    --primary-blue: #1A82AF;
    --blue-gradient: linear-gradient(90deg, #156A92 0%, #1A82AF 24.5%, #5CB8DD 51.43%, #3B9FCC 74.5%, #1A82AF 100%);
    --bg-dark: #080808;
    --text-white: #FFFFFF;
    --text-grey: #D1D1D1;
    --success-green: #2ECC71;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

body {
    background-color: var(--bg-dark);
    min-height: 100vh;
    color: var(--text-white);
    line-height: 1.4;
    overflow-x: hidden;
    position: relative;
    background-image: url('desktop-hero.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

body.thanks-page {
    background-image: none;
    background-color: var(--bg-dark);
}

@media (max-width: 767px) {
    body {
        background-image: url('mobile-hero.png');
        background-attachment: scroll;
        /* Better performance on mobile backgrounds */
        background-position: center top;
    }
}


.glow-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 40%, rgba(26, 130, 175, 0.15) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-section {
    display: flex;
    flex-direction: row;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.content-column {
    flex: 1;
    max-width: 600px;
    z-index: 5;
}

/* Logo Area */
.logo-area {
    margin-bottom: 2.5rem;
}

.logo-image {
    width: 35%;
    max-width: 400px;
    height: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-main {
    font-family: serif;
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    background: var(--gold-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    text-transform: uppercase;
}

.logo-sub {
    font-size: 0.9rem;
    letter-spacing: 3px;
    color: #FFFFFF;
    margin-top: 5px;
    font-weight: 400;
    text-transform: uppercase;
}

/* Main Copy */
.main-copy p {
    font-size: 1.5rem;
    line-height: 1.3;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.main-copy .highlight {
    color: #39b2e6;
    font-weight: 600;
}

/* Checklist */
.checklist {
    list-style: none;
    margin-bottom: 2.5rem;
}

.checklist li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: var(--text-white);
}

.check-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.cta-subtitle {
    font-size: 1rem;
    color: var(--text-grey);
    margin-bottom: 1.5rem;
}

/* Form Styles */
.form-container {
    width: 100%;
    margin-bottom: 2.5rem;
}

.btn-primary {
    width: 100%;
    padding: 1.2rem;
    background: var(--gold-gradient);
    color: #080808;
    border: none;
    border-radius: 100px;
    font-size: 1.2rem;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0px 4px 19px rgba(255, 235, 166, 0.35);
    transition: all 0.3s ease;
    font-family: serif;
}

form label {
    color: #fff
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0px 8px 30px rgba(26, 130, 175, 0.5);
}

.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
}

.form-group input {
    width: 100%;
    padding: 1.2rem;
    background: #181818;
    border: 1px solid rgba(26, 130, 175, 0.3);
    border-radius: 8px;
    color: white;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-blue);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 10px rgba(26, 130, 175, 0.2);
}

/* Extra Info */
.extra-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: #1A82AF;
}

.info-icon {
    width: 20px;
    height: 20px;
    color: #1A82AF;
}

.info-icon svg {
    width: 100%;
    height: 100%;
}

/* Expert Column */
.expert-column {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.expert-photo {
    width: 100%;
    max-width: 600px;
    height: auto;
    z-index: 2;
    position: relative;
}

.expert-column::after {
    content: '';
    position: absolute;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(26, 130, 175, 0.3) 0%, transparent 70%);
    z-index: 1;
}

.badge-exclusive {
    background-color: transparent;
    color: #1A82AF;
    border: 1px solid rgba(26, 130, 175, 0.5);
    padding: 0.8rem 2rem;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .badge-exclusive {
        position: absolute;
        bottom: 25%;
        right: 15%;
        margin-bottom: 0;
        z-index: 10;
        white-space: nowrap;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(5px);
    }
}

/* Thank You Page Specific Styles */
.alert-bar {
    background-color: #B31B1B;
    /* Sophisticated deep red */
    color: white;
    text-align: center;
    padding: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.9rem;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
}

.progress-container {
    width: 100%;
    max-width: 600px;
    margin: 6rem auto 2rem;
    text-align: center;
}

.progress-label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-blue);
    display: flex;
    justify-content: space-between;
}

.progress-bar-bg {
    background: rgba(255, 255, 255, 0.1);
    height: 12px;
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    width: 92%;
    background: linear-gradient(90deg, #156A92, var(--primary-blue), #5CB8DD, var(--primary-blue));
    background-size: 200% 100%;
    border-radius: 10px;
    animation: fillProgress 1.5s ease-out, shimmer 2s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(26, 130, 175, 0.6);
}

@keyframes fillProgress {
    0% {
        width: 0;
    }

    100% {
        width: 92%;
    }
}

@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.thanks-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
}

.instruction-card {
    background: var(--bg-card);
    border: 1px solid rgba(26, 130, 175, 0.3);
    border-radius: 15px;
    padding: 3rem 2rem;
    margin-top: 3rem;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.icon-wrapper {
    margin-bottom: 1.5rem;
}

.icon-wrapper svg {
    width: 60px;
    height: 60px;
    fill: var(--primary-blue);
}

.instruction-card h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    background: var(--blue-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-shadow: 0 0 30px rgba(26, 130, 175, 0.3);
    filter: drop-shadow(0 2px 10px rgba(26, 130, 175, 0.4));
    animation: subtle-pulse 3s ease-in-out infinite;
}

@keyframes subtle-pulse {

    0%,
    100% {
        filter: drop-shadow(0 2px 10px rgba(26, 130, 175, 0.4));
    }

    50% {
        filter: drop-shadow(0 2px 20px rgba(26, 130, 175, 0.6));
    }
}

.instruction-card p {
    color: var(--text-grey);
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto 1.5rem;
}

.highlight-box {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.15) 0%, rgba(234, 88, 12, 0.1) 100%);
    border: 2px solid #DC2626;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    max-width: 550px;
    margin: 0 auto;
    font-size: 0.95rem;
    box-shadow: 0 0 30px rgba(220, 38, 38, 0.3), inset 0 0 20px rgba(220, 38, 38, 0.1);
    animation: alert-pulse 2s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.highlight-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: alert-shine 3s ease-in-out infinite;
}

@keyframes alert-pulse {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(220, 38, 38, 0.3), inset 0 0 20px rgba(220, 38, 38, 0.1);
        border-color: #DC2626;
    }

    50% {
        box-shadow: 0 0 40px rgba(220, 38, 38, 0.6), inset 0 0 30px rgba(220, 38, 38, 0.2);
        border-color: #EF4444;
    }
}

@keyframes alert-shine {
    0% {
        left: -100%;
    }

    50%,
    100% {
        left: 100%;
    }
}

.alert-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    animation: siren-rotate 2s linear infinite;
}

.alert-icon svg {
    width: 100%;
    height: 100%;
    fill: #DC2626;
    filter: drop-shadow(0 0 8px rgba(220, 38, 38, 0.6));
}

@keyframes siren-rotate {

    0%,
    100% {
        transform: rotate(0deg);
        filter: drop-shadow(0 0 8px rgba(220, 38, 38, 0.6));
    }

    25% {
        transform: rotate(-15deg);
        filter: drop-shadow(0 0 12px rgba(220, 38, 38, 0.8));
    }

    75% {
        transform: rotate(15deg);
        filter: drop-shadow(0 0 12px rgba(220, 38, 38, 0.8));
    }
}

.alert-content {
    flex: 1;
}

.alert-title {
    display: block;
    color: #FCA5A5;
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(220, 38, 38, 0.5);
}

.alert-content p {
    color: #FEE2E2;
    margin: 0;
    line-height: 1.6;
}

.alert-content strong {
    color: #FCA5A5;
    font-weight: 700;
}

@media (max-width: 1024px) {
    .hero-section {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 2rem 1rem;
        background-position: center top;
    }

    .content-column {
        text-align: center;
        align-items: center;
    }

    .features-list {
        align-items: center;
        width: 100%;
    }

    .expert-column {
        height: 350px;
        order: -1;
    }

    .badge-exclusive {
        bottom: 20%;
        right: 50%;
        transform: translateX(50%);
    }

    .main-headline h1 {
        font-size: 3rem;
    }
}

@media (max-width: 767px) {
    .container {
        padding: 350px 1.5rem 3rem;
        align-items: flex-start;
        min-height: auto;
        background-position: 50% 0%;
        background-size: cover;
    }

    .hero-section {
        flex-direction: column;
        gap: 0;
        text-align: center;
    }

    .logo-area {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        margin-bottom: 35px;
    }

    .logo-image {
        width: 56%;
        max-width: 300px;
        height: auto;
        margin-bottom: 15px;
    }

    .logo-sub {
        font-family: sans-serif;
        font-size: 14px;
        line-height: 1.2;
        color: #FFFFFF;
        text-transform: uppercase;
        letter-spacing: 2px;
    }

    .main-copy {
        margin-bottom: 30px;
    }

    .main-copy p {
        font-family: sans-serif;
        font-size: 18px;
        line-height: 1.4;
        margin: 0;
    }

    .highlight {
        font-size: 20px;
        line-height: 26px;
        font-weight: 700;
        background: #39b2e6;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .checklist {
        margin-bottom: 25px;
    }

    .checklist li {
        font-size: 16px;
        line-height: 24px;
        justify-content: center;
        text-align: left;
        margin-bottom: 10px;
    }

    .cta-subtitle {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .btn-primary {
        background: linear-gradient(90deg, #156A92 0%, #1A82AF 24.5%, #5CB8DD 51.43%, #3B9FCC 74.5%, #1A82AF 100%);
        font-family: 'Superior Title', serif;
        font-size: 23.5px;
        padding: 15px 0;
        border-radius: 100px;
        width: 100%;
        color: #FFFFFF;
        margin-bottom: 30px;
        box-shadow: none;
    }

    .expert-column {
        display: none;
        /* Face is in the mobile background image */
    }

    .badge-exclusive {
        position: static;
        transform: none;
        margin: 0 auto 50px;
        display: inline-block;
        font-size: 14px;
        padding: 10px 20px;
        border: 1px solid rgba(26, 130, 175, 0.5);
        color: #1A82AF;
    }


    /* Thank You Page Adjustments */
    .thanks-container {
        padding: 1rem;
    }

    .instruction-card {
        padding: 2rem 1.5rem;
        margin-top: 2rem;
    }

    .instruction-card h3 {
        font-size: 1.5rem;
    }

    .instruction-card p {
        font-size: 1rem;
    }
}