/* ===== GLO GUIDE SPECIFIC STYLES ===== */

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
    background: var(--espresso);
    color: var(--champagne);
    text-align: center;
    padding: 10px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.announcement-bar strong {
    color: var(--gold-light);
}

/* ===== HERO ===== */
.guide-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}

.guide-hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 120%;
    background: radial-gradient(ellipse at center, rgba(232, 196, 184, 0.3) 0%, transparent 70%);
    pointer-events: none;
}

.guide-hero::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 40%;
    height: 60%;
    background: radial-gradient(ellipse at center, rgba(168, 181, 160, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero-badge {
    display: inline-block;
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--rose);
    border: 1.5px solid var(--blush);
    padding: 8px 20px;
    border-radius: 60px;
    margin-bottom: 28px;
    animation: fadeSlideUp 0.8s ease forwards;
    opacity: 0;
}

.guide-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 6vw, 4.8rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--espresso);
    margin-bottom: 24px;
    animation: fadeSlideUp 0.8s ease 0.15s forwards;
    opacity: 0;
}

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

.guide-hero h1 strong {
    font-weight: 600;
}

.hero-sub {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--espresso-soft);
    max-width: 520px;
    margin-bottom: 36px;
    animation: fadeSlideUp 0.8s ease 0.3s forwards;
    opacity: 0;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    animation: fadeSlideUp 0.8s ease 0.45s forwards;
    opacity: 0;
}

.hero-proof {
    display: flex;
    align-items: center;
    gap: 12px;
    animation: fadeSlideUp 0.8s ease 0.6s forwards;
    opacity: 0;
}

.hero-proof-text {
    font-size: 0.92rem;
    color: var(--espresso-soft);
}

.hero-proof-text strong {
    color: var(--espresso);
}

.hero-visual {
    position: relative;
    animation: fadeSlideLeft 1s ease 0.3s forwards;
    opacity: 0;
}

.hero-card {
    background: var(--white);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 80px rgba(44, 24, 16, 0.08), 0 4px 20px rgba(44, 24, 16, 0.04);
    position: relative;
    overflow: hidden;
}

.hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--rose), var(--gold), var(--sage));
}

.hero-card-label {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--rose);
    margin-bottom: 16px;
}

.hero-card h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.hero-card-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(44, 24, 16, 0.06);
}

.hero-card-item:last-child {
    border-bottom: none;
}

.hero-card-check {
    width: 22px;
    height: 22px;
    min-width: 22px;
    background: var(--sage);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.95rem;
    margin-top: 2px;
}

.hero-card-item p {
    font-size: 0.92rem;
    line-height: 1.5;
    margin: 0;
}

.floating-tag {
    position: absolute;
    background: var(--white);
    border-radius: 16px;
    padding: 12px 20px;
    box-shadow: 0 8px 32px rgba(44, 24, 16, 0.1);
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: float 4s ease-in-out infinite;
}

.floating-tag-1 {
    top: -10px;
    right: -20px;
    animation-delay: 0s;
}

.floating-tag-2 {
    bottom: -20px;
    left: -30px;
    animation-delay: 1.5s;
}

/* ===== SOCIAL PROOF BAR ===== */
.social-proof-bar {
    padding: 48px 0;
    border-top: 1px solid rgba(44, 24, 16, 0.06);
    border-bottom: 1px solid rgba(44, 24, 16, 0.06);
}

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

.proof-stat-number {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--espresso);
    line-height: 1;
}

.proof-stat-label {
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--espresso-soft);
    margin-top: 6px;
}

/* ===== PROBLEM SECTION ===== */
.problem-section {
    padding: 100px 0;
    background: var(--espresso);
    color: var(--champagne);
    position: relative;
    overflow: hidden;
}

.problem-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(194, 123, 107, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.problem-label {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--blush);
    margin-bottom: 20px;
}

.problem-section h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    line-height: 1.2;
    color: var(--cream);
    margin-bottom: 48px;
}

.problem-section h2 em {
    font-style: italic;
    color: var(--blush);
}

.pain-point {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(253, 246, 240, 0.08);
}

.pain-icon {
    font-size: 1.4rem;
    min-width: 28px;
    text-align: center;
}

.pain-point h4 {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 4px;
}

.pain-point p {
    font-size: 0.9rem;
    color: var(--champagne);
    opacity: 0.75;
    line-height: 1.6;
    margin: 0;
}

/* ===== SOLUTION / WHAT'S INSIDE ===== */
.solution-section {
    padding: 100px 0;
    position: relative;
}

.module-card {
    background: var(--white);
    border-radius: 20px;
    padding: 36px;
    height: 100%;
    border: 1px solid rgba(44, 24, 16, 0.06);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.module-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(44, 24, 16, 0.1);
    border-color: var(--blush);
}

.module-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--blush);
    line-height: 1;
    margin-bottom: 16px;
}

.module-card h4 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.module-card p {
    font-size: 0.9rem;
    line-height: 1.65;
    color: var(--espresso-soft);
}

.module-tag {
    display: inline-block;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 20px;
    margin-top: 16px;
}

.tag-guide {
    background: rgba(168, 181, 160, 0.2);
    color: var(--sage);
}

.tag-template {
    background: rgba(194, 123, 107, 0.15);
    color: var(--rose);
}

.tag-video {
    background: rgba(201, 169, 110, 0.2);
    color: var(--gold);
}

.tag-toolkit {
    background: rgba(184, 135, 155, 0.2);
    color: var(--mauve);
}

/* ===== SPEED / EFFORT SECTION ===== */
.speed-section {
    padding: 100px 0;
    background: var(--cream-dark);
}

.speed-card {
    text-align: center;
    padding: 40px 28px;
}

.speed-icon {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.6rem;
}

.speed-card h4 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.speed-card p {
    font-size: 0.9rem;
    color: var(--espresso-soft);
    line-height: 1.6;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
    padding: 100px 0;
}

.testimonial-card {
    background: var(--white);
    border-radius: 20px;
    padding: 36px;
    height: 100%;
    border: 1px solid rgba(44, 24, 16, 0.06);
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: 0 12px 40px rgba(44, 24, 16, 0.08);
}

.testimonial-card blockquote {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 400;
    font-style: italic;
    line-height: 1.6;
    color: var(--espresso);
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--blush);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--espresso);
}

.testimonial-name {
    font-weight: 600;
    font-size: 0.92rem;
}

.testimonial-role {
    font-size: 0.95rem;
    color: var(--espresso-soft);
}

.testimonial-highlight {
    background: linear-gradient(135deg, var(--rose), var(--rose-dark));
    color: var(--white);
    border: none;
}

.testimonial-highlight blockquote {
    color: var(--white);
}

.testimonial-highlight .testimonial-role {
    color: rgba(255, 255, 255, 0.7);
}

.testimonial-highlight .testimonial-name {
    color: var(--white);
}

.testimonial-highlight .testimonial-avatar {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

/* ===== VALUE STACK ===== */
.value-section {
    padding: 100px 0;
    background: var(--cream-dark);
}

.value-stack-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(44, 24, 16, 0.06);
}

.value-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 36px;
    border-bottom: 1px solid rgba(44, 24, 16, 0.06);
    transition: background 0.3s ease;
}

.value-item:hover {
    background: rgba(253, 246, 240, 0.5);
}

.value-item:last-child {
    border-bottom: none;
}

.value-item-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.value-item-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.value-item-name {
    font-weight: 600;
    font-size: 1rem;
}

.value-item-desc {
    font-size: 0.9rem;
    color: var(--espresso-soft);
    margin-top: 2px;
}

.value-item-price {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--espresso);
    text-align: right;
    min-width: 80px;
}

.value-total-row {
    background: var(--espresso);
    color: var(--cream);
    padding: 28px 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.value-total-label {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.value-total-price {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 600;
}

/* ===== GUARANTEE ===== */
.guarantee-section {
    padding: 80px 0;
    background: var(--cream-dark);
}

.guarantee-card {
    background: var(--white);
    border-radius: 24px;
    padding: 60px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    border: 2px solid var(--gold-light);
    position: relative;
}

.guarantee-badge {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 2rem;
}

.guarantee-card h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 16px;
}

.guarantee-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--espresso-soft);
    max-width: 480px;
    margin: 0 auto;
}

/* ===== FAQ ===== */
.faq-section {
    padding: 100px 0;
}

.faq-item {
    border-bottom: 1px solid rgba(44, 24, 16, 0.08);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 24px 0;
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--espresso);
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--rose);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
    min-width: 24px;
    text-align: center;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-answer.open {
    max-height: 300px;
    padding-bottom: 24px;
}

.faq-answer p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--espresso-soft);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* ===== URGENCY STRIP ===== */
.urgency-strip {
    background: linear-gradient(90deg, var(--rose), var(--rose-dark));
    color: var(--white);
    text-align: center;
    padding: 16px;
    font-size: 0.95rem;
    font-weight: 600;
}

/* ===== FINAL CTA ===== */
.final-cta {
    padding: 120px 0;
    background: var(--espresso);
    color: var(--cream);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(194, 123, 107, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(201, 169, 110, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.final-cta h2 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 300;
    line-height: 1.15;
    margin-bottom: 20px;
}

.final-cta h2 em {
    font-style: italic;
    color: var(--blush);
}

.final-cta-sub {
    font-size: 1.1rem;
    color: var(--champagne);
    opacity: 0.8;
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.final-price {
    margin-bottom: 32px;
}

.final-price .old-price {
    font-family: var(--font-display);
    font-size: 1.8rem;
    text-decoration: line-through;
    opacity: 0.4;
    margin-right: 16px;
}

.final-price .new-price {
    font-family: var(--font-display);
    font-size: 3.2rem;
    font-weight: 600;
    color: var(--white);
}

.final-cta .btn-glo-rose {
    font-size: 1.1rem;
    padding: 20px 56px;
}

.final-urgency {
    margin-top: 20px;
    font-size: 0.92rem;
    color: var(--champagne);
    opacity: 0.6;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .guide-hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero-visual {
        margin-top: 48px;
    }

    .floating-tag-1,
    .floating-tag-2 {
        display: none;
    }

    .value-item {
        padding: 20px 24px;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .value-total-row {
        padding: 24px;
    }

    .guarantee-card {
        padding: 40px 24px;
    }
}

@media (max-width: 767px) {
    .guide-hero h1 {
        font-size: 2.4rem;
    }

    .hero-cta-group {
        flex-direction: column;
        align-items: flex-start;
    }

    .proof-stat {
        margin-bottom: 24px;
    }
}
