:root {
    --face-teal: #5DAFA0;
    --face-gold: #C9A84C;
    --face-gold-hover: #B8952F;
    --deep-teal: #1A3C3C;
    --silk: #F7F5F2;
    --charcoal: #2D2D2D;
    --text-muted: #6B7280;
    --white: #FFFFFF;
    --nav-height: 80px;
    --container-width: 1100px;
}

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

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: var(--charcoal);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--deep-teal);
}

.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
}

/* ========== Buttons ========== */
.btn {
    display: inline-block;
    padding: 18px 36px;
    background-color: var(--face-gold);
    color: var(--deep-teal);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn:hover {
    background-color: var(--face-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(201, 168, 76, 0.3);
}

.btn--large {
    padding: 22px 48px;
    font-size: 1.25rem;
}

.btn--small {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.btn--outline {
    background: transparent;
    border: 2px solid var(--face-gold);
}

.btn--pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.4); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(201, 168, 76, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(201, 168, 76, 0); }
}

/* ========== Nav ========== */
.nav {
    height: var(--nav-height);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    border-bottom: 2px solid var(--face-teal);
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 20px; /* Add breathing room for Logo and CTA */
}

.nav-logo {
    height: 60px; /* Larger FACE logo */
}

.nav-date {
    font-size: 1.15rem;
    color: var(--face-teal);
    font-weight: 700;
    background: rgba(93, 175, 160, 0.08);
    padding: 8px 16px;
    border-radius: 50px;
    border: 1px solid rgba(93, 175, 160, 0.2);
}

.nav-cta {
    display: none;
}

@media (min-width: 768px) {
    .nav-cta { display: block; }
}

/* ========== Hero ========== */
.hero {
    background-color: var(--deep-teal);
    color: var(--white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(93, 175, 160, 0.15), transparent);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
}

@media (min-width: 992px) {
    .hero-grid { grid-template-columns: 1.2fr 1fr; }
}

.hero-eyebrow {
    color: var(--face-teal);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 24px;
}

.hero h1 em {
    color: var(--face-teal);
    font-style: italic;
}

.hero-sub {
    font-size: 1.25rem;
    opacity: 0.95;
    margin-bottom: 40px;
    max-width: 600px;
    text-align: justify;
}

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

.hero-image-wrapper {
    position: relative;
}

.hero-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.1);
}

.hero-image-caption {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.1rem;
    margin-top: 15px;
    text-align: right;
    color: var(--face-teal);
}

/* ========== Press Bar ========== */
.press-bar {
    padding: 30px 0;
    background: var(--silk);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.press-bar-label {
    text-align: center;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.press-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px 50px;
}

.press-logos img {
    height: 30px;
    filter: grayscale(1);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.press-logos img:hover {
    filter: grayscale(0);
    opacity: 1;
}

/* ========== Sections ========== */
.section {
    padding: 100px 0;
}

.section--dark {
    background-color: var(--deep-teal);
    color: var(--white);
}

.section--dark .section-title {
    color: var(--white);
}

.section--silk {
    background-color: var(--silk);
}

.section-label {
    color: var(--face-teal);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 35px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Base typography and alignment classes */
p {
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 1.1rem;
    text-align: left; /* Default for mobile */
}

@media (min-width: 768px) {
    /* Apply justify alignment only on desktop/tablet for premium feel */
    .pain-text, .expert-text p, .mechanism-content p, .irrweg-card p, .method-card p, .testimonial-card p {
        text-align: justify;
        hyphens: auto;
    }
}

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

/* ========== Pain Section ========== */
.pain-text {
    font-size: 1.35rem;
    margin-bottom: 28px;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.pain-bullets {
    list-style: none;
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

@media (min-width: 600px) {
    .pain-bullets { grid-template-columns: 1fr 1fr; }
}

.pain-bullets li {
    padding-left: 30px;
    position: relative;
    font-weight: 600;
}

.pain-bullets li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--face-teal);
    font-weight: 900;
}

/* ========== Irrwege Grid ========== */
.irrwege-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.irrweg-card {
    background: rgba(255,255,255,0.03);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.08);
}

.irrweg-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.irrweg-card h3 {
    color: var(--face-teal);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* ========== Mechanism ========== */
.shift-highlight {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}

.mechanism-content {
    max-width: 850px;
    margin: 0 auto 60px;
    text-align: center;
}

.mechanism-content p {
    font-size: 1.15rem;
    margin-bottom: 20px;
}

.method-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.method-card {
    padding: 40px;
    background: var(--silk);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.method-card:hover {
    transform: translateY(-5px);
    background: var(--white);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.method-card-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

/* ========== Expert Section ========== */
.proof-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
}

@media (min-width: 768px) {
    .proof-grid { grid-template-columns: 1fr 1.2fr; }
}

.proof-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* ========== Qualify Section ========== */
.qualify-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 50px;
}

@media (min-width: 850px) {
    .qualify-grid { grid-template-columns: 1fr 1fr; }
}

.qualify-card {
    padding: 50px;
    border-radius: 24px;
}

.qualify-card--yes {
    background-color: var(--silk);
    border: 2px solid var(--face-teal);
    border-top: 4px solid var(--deep-teal);
}

.qualify-card--no {
    background-color: rgba(229, 115, 115, 0.03);
    border: 2px solid rgba(229, 115, 115, 0.4);
    border-top: 4px solid #E57373;
}

.qualify-card h3 {
    font-size: 1.4rem;
    margin-bottom: 25px;
}

.qualify-card ul {
    list-style: none;
}

.qualify-card ul li {
    padding-left: 35px;
    position: relative;
    margin-bottom: 18px;
}

.qualify-card--yes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2D6A4F;
    font-weight: 900;
}

.qualify-card--no li::before {
    content: '✕';
    position: absolute;
    left: 0;
    color: #D62828;
    font-weight: 900;
}

/* ========== WebinarJam Box ========== */
.register-box {
    background: var(--white);
    padding: 60px;
    border-radius: 24px;
    box-shadow: 0 45px 90px rgba(0,0,0,0.12);
    max-width: 850px;
    margin: 0 auto;
}

.register-date-time {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--face-teal);
    margin-bottom: 25px;
    text-shadow: 0 1px 1px rgba(0,0,0,0.05);
}

/* ========== FAQ ========== */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

details {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 15px;
    padding: 20px 30px;
}

summary {
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

summary::after {
    content: '+';
    color: var(--face-teal);
    font-size: 1.5rem;
    font-weight: 400;
}

details[open] summary::after {
    content: '−';
}

.faq-answer {
    padding-top: 20px;
    color: var(--text-muted);
}

/* ========== Testimonials ========== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.testimonial-card p {
    font-style: italic;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    margin-bottom: 20px;
}

.testimonial-card cite {
    display: block;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    font-style: normal;
    color: var(--face-teal);
}

/* ========== Cookie Banner ========== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    z-index: 2000;
    padding: 30px 0;
    box-shadow: 0 -20px 50px rgba(0,0,0,0.1);
    border-top: 3px solid var(--face-teal);
}

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

@media (min-width: 768px) {
    .cookie-content { flex-direction: row; justify-content: space-between; }
}

.cookie-btns {
    display: flex;
    gap: 15px;
}

/* ========== Footer ========== */
.footer {
    padding: 80px 0 120px;
    background: #111;
    color: var(--white);
    text-align: center;
}

.footer-logo {
    height: 40px;
    margin-bottom: 30px;
    filter: brightness(0) invert(1);
}

.footer-links {
    margin: 30px 0;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.footer-links a {
    color: var(--white);
    opacity: 0.7;
    text-decoration: none;
    font-size: 0.9rem;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    text-decoration: underline;
}

/* ========== Sticky Mobile CTA ========== */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: none;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.1);
}

.sticky-cta .btn {
    width: 100%;
    display: block;
}

/* ========== Scroll Reveal ========== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.visible {
    opacity: 1;
    transform: translateY(0);
}
