/* ==========================================================================
   ÍRD ÚJRA A SZERELMI ÉLETED! – közös design rendszer
   A paletta és a komponensek a korábbi awakenhungary landingekből (parkapcsolat /
   boseg) származnak. Minden oldal ezt tölti be, nincs oldalankénti CSS másolat.
   ========================================================================== */

:root {
    --deep-night: #2C2014;
    --gold-light: #8B7442;
    --gold-bright: #A08853;
    --gold-pale: #C4AA7A;
    --rose-soft: #B06868;
    --stone: #6B6561;
    --cream: #1C1610;
    --card: #FDFBF8;
    --bg: #F0E8DC;
    --text-light: rgba(44, 32, 20, 0.9);
    --text-muted: rgba(44, 32, 20, 0.55);
}

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

html {
    scroll-behavior: smooth;
}

/* A `hidden` attribútum akkor is nyerjen, ha az elemnek flex/grid display-e van */
[hidden] {
    display: none !important;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(170deg, #FAF3E8 0%, #EDE0CC 35%, #E4D5BC 65%, #EDE0CC 100%);
    min-height: 100vh;
    color: var(--text-light);
    line-height: 1.7;
    overflow-x: hidden;
}

/* --- Háttér --- */
.bg-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.bg-gradient {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 20% 10%, rgba(160, 136, 83, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 90%, rgba(139, 116, 66, 0.07) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(240, 232, 220, 1) 0%, var(--bg) 100%);
}

.floating-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: rgba(160, 136, 83, 0.07);
    top: 5%;
    left: -15%;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: rgba(139, 116, 66, 0.05);
    bottom: 10%;
    right: -10%;
    animation-delay: -7s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 15px;
}

/* --- Pre-opening --- */
.pre-opening {
    padding: 24px 15px 6px;
    text-align: center;
}

.pre-opening p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 500;
    font-style: italic;
    color: var(--cream);
    line-height: 1.5;
    letter-spacing: 0.3px;
}

/* --- Hero --- */
.hero {
    padding: 16px 15px 24px;
    text-align: center;
}

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.1rem;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 10px;
    color: var(--cream);
}

.hero h1 .highlight {
    display: block;
    color: var(--gold-light);
}

.hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    color: var(--gold-light);
    margin-bottom: 18px;
    font-style: italic;
}

.badge {
    display: inline-block;
    padding: 7px 15px;
    margin-bottom: 14px;
    border: 1px solid var(--gold-light);
    border-radius: 50px;
    background: rgba(160, 136, 83, 0.1);
    color: var(--gold-light);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.promise-box {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    /* inline-flex alapból max-content szélességű – mobilon ez kilógna */
    max-width: 100%;
    padding: 10px 16px 10px 10px;
    background: rgba(160, 136, 83, 0.1);
    border: 1px solid rgba(160, 136, 83, 0.25);
    border-radius: 50px;
    margin-bottom: 16px;
    text-align: left;
}

.promise-box .host-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center 15%;
    border: 2px solid rgba(160, 136, 83, 0.4);
    flex-shrink: 0;
}

.promise-box > div {
    min-width: 0;
}

.promise-box p {
    font-size: 0.78rem;
    color: var(--gold-bright);
    margin: 0;
    line-height: 1.35;
}

.promise-box .date {
    color: var(--gold-light);
    font-weight: 600;
    margin-top: 2px;
}

/* --- Visszanézhető kiemelés --- */
.replay-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    max-width: 100%;
    margin-bottom: 16px;
    padding: 9px 17px;
    border: 1px solid rgba(160, 136, 83, 0.35);
    border-radius: 50px;
    background: rgba(253, 251, 248, 0.75);
    color: var(--gold-light);
    font-size: 0.8rem;
    font-weight: 500;
    line-height: 1.35;
    text-align: left;
}

.replay-badge .icon {
    flex-shrink: 0;
    font-size: 0.9rem;
}

.replay-badge strong {
    color: var(--cream);
    font-weight: 600;
}

.replay-line {
    margin-top: 12px;
    color: var(--gold-light);
    font-size: 0.8rem;
    text-align: center;
}

.replay-line strong {
    color: var(--cream);
    font-weight: 600;
}

/* --- Countdown --- */
.countdown-wrapper {
    margin-bottom: 16px;
}

.countdown-label {
    font-size: 0.72rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.7rem;
    font-weight: 500;
    color: var(--cream);
    background: rgba(160, 136, 83, 0.1);
    border: 1px solid rgba(160, 136, 83, 0.2);
    border-radius: 6px;
    /* 320px-es telefonon is elférjen a négy elem egy sorban */
    padding: 10px 11px;
    min-width: 46px;
}

.countdown-unit {
    font-size: 0.62rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 5px;
}

/* --- Form --- */
.form-section {
    padding: 12px 15px 36px;
}

.form-container {
    max-width: 500px;
    margin: 0 auto;
    padding: 26px 22px;
    background: var(--card);
    border: 1px solid rgba(139, 116, 66, 0.2);
    border-radius: 12px;
    box-shadow: 0 4px 32px rgba(44, 32, 20, 0.1);
    position: relative;
}

.form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-light), var(--gold-bright), var(--gold-light));
    border-radius: 12px 12px 0 0;
}

.form-container h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.45rem;
    text-align: center;
    margin-bottom: 18px;
    color: var(--cream);
}

.signup-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.72rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--stone);
}

.form-group input {
    width: 100%;
    padding: 14px 16px;
    background: #F8F4EE;
    border: 1px solid rgba(139, 116, 66, 0.25);
    border-radius: 6px;
    color: var(--text-light);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--gold-light);
    background: #F5EFE6;
}

.form-group input::placeholder {
    color: rgba(44, 32, 20, 0.3);
}

.submit-btn {
    width: 100%;
    padding: 16px 24px;
    background: var(--gold-light);
    border: none;
    border-radius: 6px;
    color: #FDFBF8;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 6px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    background: var(--gold-bright);
    box-shadow: 0 8px 30px rgba(139, 116, 66, 0.25);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: wait;
    transform: none;
}

.form-note {
    text-align: center;
    font-size: 0.78rem;
    color: var(--stone);
    margin-top: 14px;
}

.form-note a {
    color: var(--gold-light);
}

.form-error {
    display: none;
    margin-top: 12px;
    padding: 12px 14px;
    border-radius: 8px;
    background: rgba(176, 104, 104, 0.08);
    border: 1px solid rgba(176, 104, 104, 0.3);
    color: var(--rose-soft);
    font-size: 0.82rem;
    text-align: center;
}

.form-error.show {
    display: block;
}

.privacy-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 14px;
    text-align: left;
}

.privacy-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--gold-light);
    cursor: pointer;
    flex-shrink: 0;
}

.privacy-checkbox label {
    font-size: 0.75rem;
    color: var(--stone);
    line-height: 1.5;
    cursor: pointer;
}

.privacy-checkbox label a {
    color: var(--gold-light);
    text-decoration: underline;
}

/* --- Szekció cím --- */
.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.55rem;
    font-weight: 500;
    text-align: center;
    color: var(--cream);
    margin-bottom: 22px;
}

.section-lead {
    max-width: 700px;
    margin: -10px auto 24px;
    text-align: center;
    font-size: 0.92rem;
    color: var(--text-muted);
}

/* --- Kulcsgondolat --- */
.keyidea-section {
    padding: 30px 15px 20px;
}

.keyidea-box {
    max-width: 760px;
    margin: 0 auto;
    padding: 30px 24px;
    text-align: center;
    background: var(--card);
    border: 2px solid var(--gold-light);
    border-radius: 16px;
    box-shadow: 0 14px 48px rgba(139, 116, 66, 0.15);
}

.keyidea-box p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 500;
    line-height: 1.45;
    color: var(--cream);
}

.keyidea-box p em {
    font-style: normal;
    color: var(--gold-light);
}

.keyidea-box .keyidea-sub {
    margin-top: 14px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-muted);
}

/* --- Testimonials --- */
.social-proof {
    padding: 44px 15px;
}

.testimonial-grid {
    display: grid;
    gap: 14px;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-card {
    padding: 18px;
    background: var(--card);
    border: 1px solid rgba(139, 116, 66, 0.15);
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(44, 32, 20, 0.06);
}

.testimonial-card p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-style: italic;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* --- Fájdalom szekció --- */
.pain-section {
    padding: 44px 15px;
}

.pain-opener {
    max-width: 800px;
    margin: 0 auto 24px;
    text-align: center;
}

.pain-opener .intro {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.45rem;
    font-weight: 500;
    color: var(--cream);
    margin-bottom: 18px;
}

.pain-block {
    max-width: 800px;
    margin: 0 auto;
}

.pain-block p {
    font-size: 0.92rem;
    color: var(--text-muted);
    margin-bottom: 10px;
    line-height: 1.7;
}

.pain-block p strong {
    color: var(--text-light);
    font-weight: 500;
}

.pain-block .inner-voice {
    padding: 16px 18px;
    margin: 18px 0;
    border-left: 3px solid rgba(176, 104, 104, 0.35);
    background: rgba(176, 104, 104, 0.05);
    border-radius: 0 8px 8px 0;
}

.pain-block .inner-voice p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-style: italic;
    color: var(--rose-soft);
    margin-bottom: 6px;
}

.pain-block .shift {
    margin-top: 24px;
    text-align: center;
}

.pain-block .shift p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.pain-block .shift p strong {
    color: var(--cream);
}

.pain-block .shift p em {
    color: var(--gold-light);
    font-style: normal;
    font-weight: 500;
}

/* --- CTA --- */
.cta-inline {
    text-align: center;
    margin: 32px 0;
}

.cta-btn {
    display: inline-block;
    padding: 16px 28px;
    background: var(--gold-light);
    border: none;
    border-radius: 6px;
    color: #FDFBF8;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    transform: translateY(-2px);
    background: var(--gold-bright);
    box-shadow: 0 8px 30px rgba(160, 136, 83, 0.3);
}

.cta-btn.ghost {
    background: transparent;
    border: 1px solid var(--gold-light);
    color: var(--gold-light);
}

.cta-btn.ghost:hover {
    background: rgba(160, 136, 83, 0.1);
    box-shadow: none;
}

/* --- A 3 nap kártyái --- */
.days-section {
    padding: 44px 15px;
}

.day-grid {
    display: grid;
    gap: 16px;
    max-width: 860px;
    margin: 0 auto;
}

.day-card {
    position: relative;
    padding: 24px 20px;
    background: var(--card);
    border: 1px solid rgba(139, 116, 66, 0.18);
    border-radius: 14px;
    box-shadow: 0 2px 14px rgba(44, 32, 20, 0.07);
    overflow: hidden;
}

.day-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-light), var(--gold-bright), var(--gold-light));
}

.day-card .day-num {
    display: inline-block;
    padding: 5px 13px;
    margin-bottom: 12px;
    border-radius: 50px;
    background: rgba(160, 136, 83, 0.13);
    color: var(--gold-bright);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.day-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 500;
    line-height: 1.3;
    color: var(--cream);
    margin-bottom: 10px;
}

.day-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 10px;
}

.day-card p strong {
    color: var(--text-light);
    font-weight: 500;
}

.day-card .day-quote {
    margin-top: 14px;
    padding: 13px 15px;
    border-left: 3px solid rgba(160, 136, 83, 0.4);
    background: rgba(160, 136, 83, 0.06);
    border-radius: 0 8px 8px 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.02rem;
    font-style: italic;
    color: var(--gold-light);
    line-height: 1.5;
}

.day-card .day-date {
    margin-top: 14px;
    font-size: 0.78rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold-bright);
}

/* Hub-állapotok */
.day-card .day-status {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.day-card .day-status .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--stone);
    flex-shrink: 0;
}

.day-card.is-open .day-status .dot { background: #6C9A5B; }
.day-card.is-locked .day-status .dot { background: var(--gold-pale); }
.day-card.is-closed .day-status .dot { background: var(--rose-soft); }

.day-card.is-locked { opacity: 0.85; }

.day-card .day-action {
    margin-top: 16px;
}

.day-card .day-action .cta-btn {
    display: block;
    width: 100%;
    text-align: center;
}

.day-card .day-countdown {
    margin-top: 14px;
}

.day-card .day-countdown .countdown-number {
    font-size: 1.3rem;
    padding: 7px 10px;
    min-width: 42px;
}

/* --- Feature lista --- */
.features-section {
    padding: 44px 15px;
}

.features {
    display: grid;
    gap: 16px;
    max-width: 800px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 18px;
    background: var(--card);
    border-radius: 10px;
    border: 1px solid rgba(139, 116, 66, 0.15);
    box-shadow: 0 2px 12px rgba(44, 32, 20, 0.06);
}

.feature-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gold-light);
    border-radius: 50%;
    flex-shrink: 0;
    color: var(--gold-light);
    font-size: 1.1rem;
}

.feature-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--cream);
    margin-bottom: 6px;
}

.feature-content p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

/* --- Personák --- */
.personas-section {
    padding: 44px 15px;
}

.persona-grid {
    display: grid;
    gap: 16px;
    max-width: 800px;
    margin: 0 auto;
}

.persona-card {
    padding: 22px 20px;
    background: var(--card);
    border: 1px solid rgba(139, 116, 66, 0.15);
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(44, 32, 20, 0.06);
}

.persona-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 14px;
    line-height: 1.6;
    padding: 14px 16px;
    background: rgba(196, 134, 138, 0.06);
    border-left: 3px solid rgba(196, 134, 138, 0.3);
    border-radius: 0 8px 8px 0;
}

.persona-type {
    font-size: 0.88rem;
    color: var(--gold-light);
    font-weight: 500;
    margin-bottom: 6px;
}

.persona-result {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* --- "Ez NEM egy újabb..." --- */
.not-another {
    padding: 44px 15px;
}

.not-another-box {
    max-width: 800px;
    margin: 0 auto;
}

.not-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.92rem;
    color: var(--text-muted);
}

.not-item.negative { opacity: 0.75; }

.not-item.positive { color: var(--text-light); }

.not-item .icon {
    flex-shrink: 0;
    font-size: 1rem;
}

.not-item.negative .icon { color: var(--rose-soft); }

.not-item.positive .icon { color: var(--gold-light); }

.not-divider {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    color: var(--cream);
    text-align: center;
    margin: 24px 0;
    font-weight: 500;
}

/* --- Alízról --- */
.about-section {
    padding: 44px 15px;
}

.about-box {
    max-width: 900px;
    margin: 0 auto;
    padding: 28px 22px;
    background: var(--card);
    border: 1px solid rgba(139, 116, 66, 0.15);
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(44, 32, 20, 0.06);
    display: flex;
    flex-direction: column;
    gap: 22px;
    align-items: center;
}

.about-box .about-photo {
    width: 200px;
    height: 260px;
    object-fit: cover;
    object-position: center 20%;
    border-radius: 10px;
    flex-shrink: 0;
    box-shadow: 0 4px 20px rgba(44, 32, 20, 0.12);
}

.about-box .about-text {
    flex: 1;
    min-width: 0;
    /* Az .about-box `align-items: center`-je miatt mobilon (column irány) a szöveg
       max-content szélességű lenne és kilógna – a stretch teljes szélességet ad. */
    align-self: stretch;
}

.about-box blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    font-style: italic;
    color: var(--text-muted);
    line-height: 1.8;
    margin: 0 0 14px;
}

.about-box blockquote strong {
    color: var(--text-light);
    font-style: normal;
}

.about-box .author {
    font-size: 0.9rem;
    color: var(--gold-light);
    text-align: right;
}

/* --- Záró szekció --- */
.final-section {
    padding: 44px 15px;
    text-align: center;
}

.final-section .question {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.final-section .answer {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    color: var(--gold-light);
    font-weight: 500;
    margin-bottom: 14px;
}

.final-section p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 12px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.final-section p strong {
    color: var(--cream);
    font-weight: 500;
}

.final-section p em {
    color: var(--gold-light);
    font-style: normal;
}

.replay-info {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    background: rgba(160, 136, 83, 0.08);
    border: 1px solid rgba(160, 136, 83, 0.2);
    border-radius: 10px;
    max-width: 600px;
    margin: 24px auto;
}

.replay-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
    color: var(--gold-light);
}

.replay-text {
    font-size: 0.88rem;
    color: var(--text-muted);
}

.replay-text strong {
    display: block;
    color: var(--gold-light);
    font-size: 0.92rem;
    margin-bottom: 4px;
}

/* --- Email gate (nap-oldalak, hub) --- */
.verification-gate {
    padding: 40px 15px 60px;
}

.verification-gate.hidden { display: none; }

.verification-box {
    max-width: 480px;
    margin: 0 auto;
    padding: 32px 24px;
    text-align: center;
    background: var(--card);
    border: 1px solid rgba(139, 116, 66, 0.2);
    border-radius: 14px;
    box-shadow: 0 4px 32px rgba(44, 32, 20, 0.1);
}

.verification-box .lock-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.verification-box h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--cream);
    margin-bottom: 10px;
}

.verification-box > p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.verification-form .form-group { margin-bottom: 12px; }

.verify-btn {
    width: 100%;
    padding: 15px 24px;
    background: var(--gold-light);
    border: none;
    border-radius: 6px;
    color: #FDFBF8;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.verify-btn:hover {
    transform: translateY(-2px);
    background: var(--gold-bright);
}

.verify-btn:disabled {
    opacity: 0.7;
    cursor: wait;
    transform: none;
}

.content-locked { display: none; }

.content-locked.unlocked { display: block; }

/* --- Videó --- */
.video-section {
    padding: 20px 15px 30px;
}

.video-container {
    position: relative;
    width: min(100%, 900px);
    margin: 0 auto;
    padding-top: 56.25%;
    border-radius: 12px;
    overflow: hidden;
    background: #1C1610;
    box-shadow: 0 10px 40px rgba(44, 32, 20, 0.18);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Zárolt nap panel */
.locked-panel {
    width: min(100%, 640px);
    margin: 0 auto;
    padding: 34px 24px;
    text-align: center;
    background: var(--card);
    border: 1px solid rgba(139, 116, 66, 0.2);
    border-radius: 14px;
    box-shadow: 0 4px 28px rgba(44, 32, 20, 0.09);
}

.locked-panel .lock-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.locked-panel h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--cream);
    margin-bottom: 10px;
}

.locked-panel p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 18px;
}

/* --- Napi jegyzet blokk --- */
.day-notes {
    width: min(100%, 800px);
    margin: 0 auto;
    padding: 24px 20px;
    background: var(--card);
    border: 1px solid rgba(139, 116, 66, 0.15);
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(44, 32, 20, 0.06);
}

.day-notes h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--cream);
    margin-bottom: 14px;
    text-align: center;
}

/* A nap-oldalak jegyzetdobozában eddig csak lista volt. A 3. napon a kérdőív-átvezetés
   folyó szöveget is használ, ezért kap saját bekezdés-stílust. */
.day-notes p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.65;
    text-align: center;
    margin-bottom: 10px;
}

.day-notes p.muted {
    font-size: 0.82rem;
    opacity: 0.75;
}

.day-notes ul { list-style: none; }

.day-notes li {
    position: relative;
    padding: 7px 0 7px 24px;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.day-notes li::before {
    content: '\2726';
    position: absolute;
    left: 0;
    color: var(--gold-light);
}

.next-day-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    padding: 30px 15px 10px;
}

/* --- Köszönő oldal --- */
.confirmation-banner {
    display: flex;
    align-items: center;
    gap: 14px;
    width: min(100%, 760px);
    margin: 0 auto 22px;
    padding: 18px 20px;
    background: rgba(160, 136, 83, 0.1);
    border: 1px solid rgba(160, 136, 83, 0.28);
    border-radius: 12px;
    text-align: left;
}

.confirmation-banner .check {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--gold-light);
    color: #FDFBF8;
    font-size: 1.1rem;
}

.confirmation-banner strong {
    display: block;
    color: var(--cream);
    font-size: 1rem;
}

.confirmation-banner span.sub {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.info-box {
    width: min(100%, 760px);
    margin: 0 auto 26px;
    padding: 22px 20px;
    background: var(--card);
    border: 1px solid rgba(139, 116, 66, 0.15);
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(44, 32, 20, 0.06);
}

.info-box h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--cream);
    margin-bottom: 14px;
    text-align: center;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 7px 0;
    font-size: 0.88rem;
    color: var(--text-muted);
}

.info-item .icon {
    color: var(--gold-light);
    flex-shrink: 0;
}

.main {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 22px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 34px 15px 40px;
}

/* --- Audio ajánlat (OTO) --- */
.audio-offer-section {
    padding: 18px 15px 70px;
}

.audio-offer-card {
    position: relative;
    width: min(100%, 760px);
    margin: 0 auto;
    padding: 32px 22px 34px;
    overflow: hidden;
    background: var(--card);
    border: 2px solid var(--gold-light);
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 14px 48px rgba(139, 116, 66, 0.17), 0 0 0 6px rgba(160, 136, 83, 0.06);
}

.audio-offer-card::before {
    content: '';
    position: absolute;
    inset: 0 0 auto;
    height: 5px;
    background: linear-gradient(90deg, var(--gold-light), var(--gold-bright), var(--gold-pale), var(--gold-bright), var(--gold-light));
}

.audio-offer-badge {
    display: inline-block;
    margin-bottom: 14px;
    padding: 7px 15px;
    border-radius: 999px;
    background: rgba(160, 136, 83, 0.13);
    color: var(--gold-bright);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.audio-offer-card h2 {
    margin-bottom: 7px;
    color: var(--cream);
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 7vw, 3rem);
    font-weight: 600;
    line-height: 1.1;
}

.audio-offer-subtitle {
    margin-bottom: 16px;
    color: var(--gold-light);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-style: italic;
}

.audio-offer-lead {
    width: min(100%, 610px);
    margin: 0 auto 18px;
    color: var(--text-muted);
    font-size: 0.92rem;
}

.audio-offer-list {
    width: min(100%, 580px);
    margin: 18px auto;
    padding: 17px 19px;
    background: #F5EFE6;
    border: 1px solid rgba(139, 116, 66, 0.18);
    border-radius: 11px;
    text-align: left;
}

.audio-offer-list li {
    position: relative;
    padding: 5px 0 5px 23px;
    list-style: none;
    color: var(--text-light);
    font-size: 0.86rem;
    line-height: 1.55;
}

.audio-offer-list li::before {
    content: '\2726';
    position: absolute;
    left: 0;
    color: var(--gold-light);
}

.audio-offer-price {
    margin: 19px 0 15px;
}

.audio-offer-price .old-price {
    margin-right: 10px;
    color: var(--text-muted);
    font-size: 1rem;
    text-decoration: line-through;
}

.audio-offer-price .new-price {
    color: var(--gold-light);
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 600;
}

.audio-offer-price small {
    display: block;
    margin-top: 3px;
    color: var(--gold-bright);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.audio-offer-btn,
.webinar-cta-btn {
    display: inline-block;
    padding: 16px 30px;
    border: 0;
    border-radius: 8px;
    background: var(--gold-light);
    color: #FDFBF8;
    box-shadow: 0 5px 20px rgba(139, 116, 66, 0.25);
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: transform 0.2s ease, background 0.2s ease;
}

.audio-offer-btn:hover,
.webinar-cta-btn:hover {
    transform: translateY(-2px);
    background: var(--gold-bright);
}

.audio-offer-btn[aria-busy='true'] {
    cursor: wait;
    opacity: 0.75;
}

.audio-offer-note {
    margin-top: 13px;
    color: var(--text-muted);
    font-size: 0.74rem;
    font-style: italic;
}

.audio-offer-error {
    margin-top: 12px;
    color: var(--rose-soft);
    font-size: 0.82rem;
}

.main > .webinar-cta-btn {
    width: min(100%, 600px);
}

/* --- Footer --- */
footer {
    padding: 28px 15px;
    text-align: center;
    border-top: 1px solid rgba(139, 116, 66, 0.15);
}

footer p {
    font-size: 0.82rem;
    color: var(--text-muted);
}

footer a {
    color: var(--gold-light);
    text-decoration: none;
}

.disclaimer {
    max-width: 600px;
    margin: 0 auto 16px;
    padding: 16px;
    background: rgba(139, 116, 66, 0.06);
    border: 1px solid rgba(139, 116, 66, 0.12);
    border-radius: 8px;
}

.disclaimer p {
    font-size: 0.7rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
    opacity: 0.85;
}

/* --- Sticky mobil CTA --- */
.sticky-cta {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 12px 15px;
    padding-bottom: max(12px, env(safe-area-inset-bottom));
    background: rgba(240, 232, 220, 0.97);
    border-top: 1px solid rgba(139, 116, 66, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.sticky-cta .sticky-btn {
    display: block;
    width: 100%;
    padding: 16px 24px;
    background: var(--gold-light);
    border: none;
    border-radius: 8px;
    color: #FDFBF8;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(139, 116, 66, 0.25);
    transition: all 0.3s ease;
}

.sticky-cta .sticky-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(160, 136, 83, 0.4);
}

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

@media (max-width: 767px) {
    /* Csak ott hagyunk helyet a fixált sávnak, ahol tényleg van sticky CTA
       (body.has-sticky-cta – lásd index.html), így a többi oldal nem kap
       felesleges üres sávot a lábléc alá. */
    body.has-sticky-cta footer { padding-bottom: 100px; }
}

/* --- Reveal animáció ---
   A rejtést a <html class="js"> kapcsolja be (lásd a <head>-ben lévő snippetet).
   Ha a JS nem töltődik be, hibára fut, vagy egy blokkoló megállítja, a tartalom
   akkor is látszik – nem üres oldalt kap a látogató. */
.js .reveal {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.js .reveal.active {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    .js .reveal,
    .js .reveal.active {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .floating-orb {
        animation: none;
    }
}

/* ==========================================================================
   Desktop
   ========================================================================== */
@media (min-width: 768px) {
    .pre-opening { padding: 40px 24px 10px; }
    .pre-opening p { font-size: 1.35rem; line-height: 1.6; }

    .hero { padding: 14px 24px 30px; }
    .hero h1 { font-size: 3.6rem; margin-bottom: 16px; }
    .hero-subtitle { font-size: 1.5rem; margin-bottom: 28px; }

    .promise-box p { font-size: 1.05rem; }

    .replay-badge { font-size: 0.95rem; padding: 11px 22px; }
    .replay-line { font-size: 0.92rem; }

    .countdown { gap: 12px; }
    .countdown-number { font-size: 2.8rem; padding: 12px 18px; min-width: 70px; }
    .countdown-unit { font-size: 0.82rem; }

    .form-container { max-width: 540px; padding: 40px 35px; }
    .form-container h3 { font-size: 1.85rem; margin-bottom: 25px; }
    .form-group label { font-size: 0.88rem; }
    .form-group input { font-size: 1.1rem; }
    .submit-btn { padding: 18px 30px; font-size: 0.98rem; }
    .form-note { font-size: 0.95rem; }

    .section-title { font-size: 2.4rem; margin-bottom: 28px; }
    .section-lead { font-size: 1.05rem; }

    .keyidea-box { padding: 44px 40px; }
    .keyidea-box p { font-size: 2rem; }
    .keyidea-box .keyidea-sub { font-size: 1.02rem; }

    .testimonial-card p { font-size: 1.3rem; }

    .pain-opener .intro { font-size: 2.2rem; }
    .pain-block p { font-size: 1.1rem; }
    .pain-block .inner-voice p { font-size: 1.45rem; }
    .pain-block .shift p { font-size: 1.15rem; }

    .cta-btn { padding: 18px 40px; font-size: 1rem; }

    .day-grid { grid-template-columns: repeat(3, 1fr); align-items: start; }
    .day-card { padding: 28px 22px; }
    .day-card h3 { font-size: 1.5rem; }
    .day-card p { font-size: 0.95rem; }
    .day-card .day-quote { font-size: 1.1rem; }

    .feature-item { padding: 24px 22px; gap: 20px; }
    .feature-icon { width: 50px; height: 50px; font-size: 1.4rem; }
    .feature-content h3 { font-size: 1.5rem; }
    .feature-content p { font-size: 1.05rem; }

    .persona-card { padding: 26px 24px; }
    .persona-quote { font-size: 1.3rem; }
    .persona-type { font-size: 1rem; }
    .persona-result { font-size: 1rem; }

    .not-item { font-size: 1.1rem; }
    .not-divider { font-size: 1.7rem; }

    .about-box { padding: 40px 38px; flex-direction: row; align-items: flex-start; gap: 36px; }
    .about-box .about-photo { width: 260px; height: 340px; }
    .about-box blockquote { font-size: 1.35rem; }
    .about-box .author { font-size: 1rem; }

    .final-section .question { font-size: 1.8rem; }
    .final-section .answer { font-size: 2.3rem; }
    .final-section p { font-size: 1.15rem; }

    .replay-text { font-size: 1rem; }
    .replay-text strong { font-size: 1.05rem; }

    .verification-box { padding: 44px 38px; }
    .verification-box h2 { font-size: 1.9rem; }
    .verification-box > p { font-size: 1rem; }

    .locked-panel { padding: 46px 40px; }
    .locked-panel h2 { font-size: 1.9rem; }
    .locked-panel p { font-size: 1rem; }

    .day-notes { padding: 32px 30px; }
    .day-notes h3 { font-size: 1.6rem; }
    .day-notes li { font-size: 1rem; }

    .audio-offer-card { padding: 42px 42px 44px; }
    .audio-offer-lead { font-size: 1rem; }
    .audio-offer-list li { font-size: 0.95rem; }

    .info-box { padding: 30px 28px; }
    .info-item { font-size: 1rem; }
}

/* Kapu: a név mező csak akkor látszik, ha kell (nincs a listán) vagy elő van töltve */
.verification-form .gate-name { display: none; }
.verification-form .gate-name.show { display: block; }
