/* 
  Satiety Reset Lead Magnet Specific Styles
  Inherits clinical authority theme logic.
*/

:root {
    --primary-gold: #E6A846;
    --bg-dark: #111827;
    --bg-darker: #0B0F19;
    --bg-light: #F9FAFB;
    --bg-white: #FFFFFF;
    --text-dark: #1F2937;
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Montserrat', sans-serif;
    --shadow-premium: 0 20px 25px -5px rgba(0, 0, 0, 0.15), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

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

body,
html {
    overflow-x: hidden;
}

body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    background: var(--bg-light);
    line-height: 1.6;
}

h1,
h2,
h3 {
    font-family: var(--font-serif);
    line-height: 1.2;
    margin-bottom: 1rem;
}

em {
    color: var(--primary-gold);
    font-style: italic;
}

p {
    margin-bottom: 1.5rem;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.text-center {
    text-align: center;
}

.grids-2 {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
}

.align-center {
    align-items: center;
}

/* Buttons & Badges */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: var(--font-sans);
}

.btn-primary {
    background: var(--primary-gold);
    color: var(--bg-dark);
    border: none;
}

.btn-primary:hover {
    background: #d09335;
    transform: translateY(-2px);
}

.btn-large {
    padding: 1.2rem;
    font-size: 1.125rem;
}

.w-100 {
    width: 100%;
}

.cta-glow {
    box-shadow: 0 0 20px rgba(230, 168, 70, 0.4);
}

.badge {
    display: inline-block;
    padding: 0.25rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.badge-dark {
    background: var(--bg-dark);
    color: white;
}

/* --- Authority Sticky Header --- */
.authority-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid #E5E7EB;
    padding: 0.75rem 0;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.header-logo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.sarah-name {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--bg-dark);
    letter-spacing: 1px;
    line-height: 1.1;
}

.sarah-credentials {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-gold);
    letter-spacing: 1.5px;
}

.header-trust-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    color: #9CA3AF;
}

.trust-logo {
    filter: grayscale(100%);
    opacity: 0.6;
    transition: opacity 0.3s;
    line-height: 1;
}

.trust-logo.font-serif {
    font-family: var(--font-serif);
    font-weight: bold;
    font-size: 0.95rem;
}

.trust-logo.font-sans {
    font-family: var(--font-sans);
}

.trust-logo.fw-800 {
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: -0.5px;
}

.trust-logo.fw-600 {
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
}

.trust-logo.fw-900 {
    font-weight: 900;
    font-size: 1rem;
    letter-spacing: -1px;
}

.trust-logo:hover {
    opacity: 1;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header-badges {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.15rem;
    padding-right: 1.5rem;
    border-right: 1px solid #E5E7EB;
}

.header-license {
    font-size: 0.8rem;
    color: var(--bg-dark);
    font-weight: 700;
    letter-spacing: 0.5px;
}

.header-gold-text {
    color: var(--primary-gold);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.header-btn {
    background-color: var(--bg-dark);
    /* High contrast */
    color: #ffffff;
    padding: 0.6rem 1.25rem;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: background-color 0.3s transform 0.3s;
    white-space: nowrap;
}

.header-btn:hover {
    background-color: #000000;
    transform: translateY(-1px);
    color: white;
}

@media (max-width: 1200px) {
    .header-trust-logos {
        gap: 1rem;
    }
}

@media (max-width: 1100px) {
    .header-trust-logos {
        display: none;
        /* Hide logos on smaller screens to prioritize credentials */
    }
}

@media (max-width: 768px) {
    .header-badges {
        display: none;
        /* Stack or hide complex badges on mobile */
    }

    .header-container {
        gap: 1rem;
    }
}

/* Squeeze Hero */
.squeeze-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 3rem;
    /* Reduced to sit closer to sticky header */
    background: var(--bg-darker);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/hero-bg.png') center/cover;
    opacity: 0.4;
    pointer-events: none;
}

.content-top {
    z-index: 2;
    position: relative;
}

.hero-content {
    color: white;
    padding-right: 2rem;
}

.hero-content .badge {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-content h1 {
    font-size: 3.5rem;
}

.hero-subtext {
    font-size: 1.25rem;
    color: #D1D5DB;
    margin-bottom: 2rem;
}

.benefit-list {
    list-style: none;
    margin-bottom: 2rem;
}

.benefit-list li {
    display: flex;
    gap: 1rem;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #F3F4F6;
    align-items: flex-start;
}

.benefit-list span {
    color: var(--primary-gold);
    font-weight: bold;
}

/* Optin Panel */
.glass-panel {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-premium);
}

.optin-panel h3 {
    font-size: 1.8rem;
    color: var(--bg-dark);
}

.optin-panel p {
    color: #6B7280;
    font-size: 0.95rem;
}

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

.vertical-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.vertical-form input[type="text"],
.vertical-form input[type="email"] {
    width: 100%;
    padding: 1rem;
    border: 1px solid #D1D5DB;
    border-radius: 4px;
    font-family: var(--font-sans);
}

.vertical-form input[type="text"]:focus,
.vertical-form input[type="email"]:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 2px rgba(230, 168, 70, 0.2);
}

.secure-note {
    text-align: center;
    font-size: 0.8rem !important;
    color: #9CA3AF !important;
    margin-top: 1rem;
}

/* Social Proof Bar */
.social-proof {
    background: var(--bg-darker);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2.5rem 0;
    color: #9CA3AF;
    text-align: center;
}

.social-proof p {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.logos {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.logo-item {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: #6B7280;
}

/* Authority Section */
.authority-section {
    padding: 6rem 0;
    background: #F3F4F6;
}

.rounded-image {
    border-radius: 12px;
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    box-shadow: var(--shadow-premium);
}

.floating-license-badge {
    position: absolute;
    top: 15px;
    left: -15px;
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #E5E7EB;
    z-index: 10;
}

.floating-license-badge .badge-label {
    display: block;
    font-size: 0.7rem;
    color: #6B7280;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.floating-license-badge .badge-value {
    color: var(--primary-gold);
    font-size: 0.9rem;
}

@media(max-width: 768px) {
    .floating-license-badge {
        top: -45px;
        /* Move much further up to clear head/hair completely */
        left: 50%;
        transform: translateX(-50%);
        /* Center horizontally */
        width: max-content;
    }

    .header-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.65rem;
    }
}

.authority-content h2 {
    font-size: 2.5rem;
    color: var(--bg-dark);
}

.lead-bold {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--bg-dark);
}

.credentials-list {
    list-style: none;
    margin-top: 2rem;
}

.credentials-list li {
    margin-bottom: 1rem;
    display: flex;
    gap: 1rem;
}

.credentials-list span {
    color: var(--primary-gold);
}

/* Footer */
.site-footer {
    background: var(--bg-darker);
    color: #6B7280;
    padding: 2rem 0;
    font-size: 0.85rem;
}

.justify-center {
    justify-content: center;
    display: flex;
    gap: 2rem;
}

/* Animations */
.fade-in {
    opacity: 0;
    transition: opacity 1s;
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s;
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s;
}

.is-visible {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive */
@media(max-width: 900px) {
    .grids-2 {
        grid-template-columns: 1fr;
    }

    .hero-content {
        padding-right: 0;
        text-align: center;
    }

    .benefit-list li {
        justify-content: center;
    }

    .squeeze-hero {
        padding-top: 2rem;
        /* Reduced for smaller gap below mobile header */
        padding-bottom: 4rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }
}

@media(max-width: 600px) {
    .container {
        padding: 0 1rem;
    }

    .glass-panel {
        padding: 1.5rem;
    }

    .authority-content h2 {
        font-size: 2rem;
    }

    .credentials-list li {
        flex-direction: column;
        gap: 0.25rem;
        align-items: flex-start;
    }

    .btn-large {
        padding: 1rem;
        font-size: 1rem;
    }

    .justify-center {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
}

/* --- Wall of Love / Testimonials --- */
.testimonials-section {
    padding: 5rem 0;
    background: #F9FAFB;
    margin-top: 2rem;
    border-top: 1px solid #E5E7EB;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-header h2 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--bg-dark);
    margin-bottom: 1rem;
}

.fay-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    font-weight: 600;
    color: var(--bg-dark);
    border: 1px solid var(--border-color);
}

.fay-badge .stars {
    color: var(--primary-gold);
    letter-spacing: 2px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.testimonial-card.featured {
    grid-column: 1 / -1;
    border-left: 4px solid var(--primary-gold);
}

.testimonial-card .stars {
    color: var(--primary-gold);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.testimonial-card p.quote {
    font-size: 0.95rem;
    color: #4B5563;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.reviewer-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #E5E7EB;
    padding-top: 1rem;
}

.reviewer-details {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reviewer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
}

.reviewer-name {
    font-weight: 600;
    color: var(--bg-dark);
    font-size: 0.95rem;
}

.verified-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
    color: #6B7280;
    font-weight: 500;
}

@media(min-width: 768px) {
    .testimonial-card.featured {
        padding: 3rem;
    }

    .testimonial-card.featured p.quote {
        font-size: 1.1rem;
    }
}