:root {
    --primary: #FF6600;
    --primary-dark: #cc5200;
    --bg-dark: #0a0a0a;
    --bg-card: #141414;
    --text-light: #ffffff;
    --text-muted: #a0a0a0;
    --orange-glow: rgba(255, 102, 0, 0.2);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', Roboto, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
    font-weight: 800;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.orange-text {
    color: var(--primary);
}

.mt-4 {
    margin-top: 1.5rem;
}

.mt-5 {
    margin-top: 3rem;
}

/* Final Invite Styles */
.final-invite {
    background: linear-gradient(to bottom, #0a0a0a, #000);
    border-top: 2px solid var(--primary);
    position: relative;
    padding: 100px 0;
}

.invite-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 5rem;
    text-align: left;
}

.invite-box h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: white;
}

.invite-box p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--text-light);
}

.invite-box p .highlight {
    color: var(--primary);
    font-weight: 700;
}

@media (max-width: 768px) {
    .invite-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

section {
    padding: 80px 0;
}

/* Proof Section Styles */
.proof {
    background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.95)), url('proof-img.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}

.proof::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 70%;
    height: 70%;
    background: radial-gradient(circle, rgba(255, 102, 0, 0.04) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.strong-men-box {
    max-width: 800px;
    margin: 0 auto 4rem;
    position: relative;
    z-index: 2;
}

.strong-men-box p {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    color: var(--text-light);
}

.professions-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.professions-list span {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.7rem 1.8rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.true-war-box {
    background: linear-gradient(145deg, rgba(255, 102, 0, 0.08), rgba(0, 0, 0, 0.2));
    border: 1px solid rgba(255, 102, 0, 0.4);
    padding: 5rem 2rem;
    border-radius: 30px;
    max-width: 900px;
    margin: 0 auto 5rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.true-war-box h3 {
    font-size: 0.9rem;
    letter-spacing: 0.4em;
    color: var(--primary);
    margin-bottom: 2rem;
    font-weight: 900;
}

.true-war-box p {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 900;
    line-height: 1.2;
    color: white;
    text-transform: uppercase;
}

.proof-footer .highlight {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 900;
    letter-spacing: -0.01em;
    position: relative;
    z-index: 2;
}

.proof-image {
    max-width: 800px;
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
    border-radius: 20px;
    margin: 0 auto 4rem;
    display: block;
    border: 1px solid rgba(255, 102, 0, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
    object-fit: contain;
}

@media (max-width: 768px) {
    .true-war-box {
        padding: 3rem 1.5rem;
    }

    .professions-list span {
        padding: 0.5rem 1.2rem;
        font-size: 0.75rem;
    }
}

/* Hero Section */
.hero {
    position: relative;
    padding: 60px 0 80px;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)), url('hero-bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-content {
    max-width: 900px;
    z-index: 2;
}

.hero-pretitle {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: block;
    font-size: 1rem;
    letter-spacing: 0.1em;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 2rem;
}

.hero-description {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

.hero-video {
    max-width: 850px;
    width: 100%;
    margin: 3rem auto;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #000;
    aspect-ratio: 16 / 9;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    z-index: 2;
}

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

.youtube-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.youtube-placeholder.hidden {
    opacity: 0;
    pointer-events: none;
}

.youtube-play-button {
    background: rgba(255, 102, 0, 0.9);
    border: none;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease;
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.4);
    padding: 0;
}

.youtube-play-button:hover {
    transform: scale(1.1);
    background: rgba(255, 102, 0, 1);
}

.youtube-play-button:active {
    transform: scale(0.95);
}

.youtube-play-button svg {
    margin-left: 4px;
    width: 60px;
    height: 45px;
}

.hero-text-block {
    max-width: 850px;
    margin: 0 auto 3.5rem;
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-light);
    background: rgba(255, 255, 255, 0.03);
    padding: 2.5rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    min-height: 180px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background-color: var(--primary);
    color: white;
    text-decoration: none;
    font-weight: 700;
    border-radius: 8px;
    font-size: 1.1rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    box-shadow: 0 10px 20px rgba(255, 102, 0, 0.3);
}

.btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 102, 0, 0.4);
}

/* Grid Sections */
/* Problem Section Styles */
.problem-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}

.problem-intro p {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.problem-intro .large-text {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.problem-cycle {
    background: rgba(255, 255, 255, 0.02);
    padding: 4rem;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 5rem;
}

.problem-cycle h3 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary);
    font-size: 1.5rem;
}

.cycle-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.cycle-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    text-align: left;
}

.cycle-marker {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 10px var(--primary);
}

.cycle-item p {
    font-size: 1rem;
    line-height: 1.5;
    color: var(--text-light);
}

.two-sides-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 5rem;
}

.side-box {
    padding: 3rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.side-label {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.side-box p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.problem-conclusion {
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
    padding: 3rem;
    background: linear-gradient(rgba(255, 102, 0, 0.1), transparent);
    border-radius: 20px;
}

.problem-conclusion p {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-light);
    line-height: 1.4;
}

@media (max-width: 768px) {
    .two-sides-wrapper {
        grid-template-columns: 1fr;
    }

    .problem-cycle {
        padding: 2.5rem;
    }
}

/* Benefits Grid (for other sections) */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.card {
    background-color: var(--bg-card);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(255, 102, 0, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.card:hover {
    border-color: rgba(255, 102, 0, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 20px rgba(255, 102, 0, 0.05);
}

.card:hover::after {
    opacity: 1;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.card-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 102, 0, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.card-icon svg {
    width: 22px;
    height: 22px;
}

.card h3 {
    margin-bottom: 0;
    font-size: 1.3rem;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    line-height: 1.2;
}

.card p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

/* Experience Journey */
.journey-intro-text {
    max-width: 900px;
    margin: 0 auto 5rem;
    text-align: center;
}

.journey-intro-text p {
    font-size: 1.25rem;
    line-height: 1.8;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 3rem 0;
}

.value-item {
    background: rgba(255, 102, 0, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 102, 0, 0.1);
}

.value-label {
    display: block;
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.value-result {
    display: block;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
}

.highlight-box {
    background: rgba(255, 255, 255, 0.03);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px dashed rgba(255, 102, 0, 0.3);
    margin-top: 3rem;
}

.comparison-wrapper.triple {
    display: grid;
    grid-template-columns: 1fr auto 1.2fr auto 1fr;
    align-items: center;
    gap: 1.5rem;
    margin-top: 5rem;
}

.journey-arrow {
    color: rgba(255, 102, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: translateX(0);
        opacity: 0.3;
    }

    50% {
        transform: translateX(5px);
        opacity: 0.8;
    }

    100% {
        transform: translateX(0);
        opacity: 0.3;
    }
}

.comparison-box {
    padding: 2.2rem;
    border-radius: 20px;
    height: 100%;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.02);
}

.comparison-box:hover {
    transform: translateY(-8px);
}

.comparison-box.before {
    border-color: rgba(255, 68, 68, 0.2);
}

.comparison-box.after {
    background: linear-gradient(145deg, rgba(76, 175, 80, 0.08), rgba(76, 175, 80, 0.02));
    border-color: rgba(76, 175, 80, 0.3);
}

.comparison-box.bridge {
    background: linear-gradient(145deg, rgba(20, 20, 20, 0.9), rgba(10, 10, 10, 0.9));
    border: 1px solid var(--primary);
    box-shadow: 0 0 30px rgba(255, 102, 0, 0.1);
}

.comparison-list.compact li {
    margin-bottom: 1.25rem;
    font-size: 1rem;
    line-height: 1.4;
}

@media (max-width: 1100px) {
    .comparison-wrapper.triple {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .journey-arrow {
        transform: rotate(90deg);
        margin: -1rem 0;
    }

    @keyframes pulse {
        0% {
            transform: rotate(90deg) translateY(0);
            opacity: 0.3;
        }

        50% {
            transform: rotate(90deg) translateY(5px);
            opacity: 0.8;
        }

        100% {
            transform: rotate(90deg) translateY(0);
            opacity: 0.3;
        }
    }
}

.comparison-box.before h4 {
    color: #ff4444;
}

.comparison-box.after h4 {
    color: #4CAF50;
}

.comparison-box.bridge h4 {
    color: white;
}

.bridge-content {
    margin-top: 1rem;
}

.bridge-content p {
    color: var(--text-light);
    line-height: 1.4;
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
}

.bridge-content p.highlight {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
}

.comparison-box h4 {
    font-size: 1.4rem;
    font-weight: 800;
    margin: 0;
    text-transform: uppercase;
}

.comparison-list {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.comparison-list li {
    margin-bottom: 1.5rem;
    padding-left: 3rem;
    position: relative;
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--text-light);
}

.comparison-list li:last-child {
    margin-bottom: 0;
}

.comparison-list li::before {
    position: absolute;
    left: 0;
    top: -2px;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 900;
}

.before .comparison-list li::before {
    content: '✕';
    background: rgba(255, 68, 68, 0.1);
    color: #ff4444;
}

.after .comparison-list li::before {
    content: '✓';
    background: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
    box-shadow: 0 0 15px rgba(76, 175, 80, 0.2);
}

/* FAQ */
.faq-item {
    background: var(--bg-card);
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem 2rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 0 2rem 1.5rem;
    color: var(--text-muted);
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

#inscricao {
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('onca-preta.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.pricing-wrapper {
    max-width: 500px;
    margin: 0 auto;
}

.pricing-card-premium {
    background: rgba(20, 20, 20, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 3.5rem;
    position: relative;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8),
        inset 0 1px 1px rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.pricing-card-premium:hover {
    transform: translateY(-12px);
    box-shadow: 0 50px 120px rgba(0, 0, 0, 0.9),
        0 0 30px rgba(255, 102, 0, 0.05);
}

.pricing-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--primary);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    white-space: nowrap;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(255, 102, 0, 0.4);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.pricing-title {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.pricing-subtitle {
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-value {
    font-size: 3.5rem;
    font-weight: 900;
    margin: 1.5rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.pricing-currency {
    font-size: 1.2rem;
    color: var(--text-muted);
}

.pricing-features {
    list-style: none;
    margin-bottom: 2.5rem;
}

.pricing-features li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.05rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li::before {
    content: '→';
    color: var(--primary);
    font-weight: 900;
}

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

.pricing-footer .btn {
    width: 100%;
}

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

.testimonial-card {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 102, 0, 0.2);
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.testimonial-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 102, 0, 0.1);
    border: 1px solid rgba(255, 102, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.testimonial-meta {
    display: flex;
    flex-direction: column;
}

.testimonial-author {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--text-light);
    text-transform: uppercase;
}

.testimonial-tag {
    font-size: 0.75rem;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Sections headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.hero-highlight-text {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    display: inline-block;
    padding: 1rem 2.5rem;
    background: rgba(255, 102, 0, 0.05);
    border: 1px solid rgba(255, 102, 0, 0.2);
    border-radius: 50px;
    margin-top: 2rem;
    letter-spacing: 0.05em;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .hero-highlight-text {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        letter-spacing: 0.02em;
    }
}

/* Countdown Timer */
.countdown-section {
    padding: 60px 0;
    background: rgba(255, 102, 0, 0.03);
}

.countdown-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.countdown-item {
    background: var(--bg-card);
    min-width: 100px;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 102, 0, 0.1);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.countdown-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.countdown-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 700;
}

/* Global Mobile Adjustments */
@media (max-width: 768px) {
    section {
        padding: 50px 0;
    }

    .hero {
        padding: 40px 0 50px;
    }

    .container {
        padding: 0 1.2rem;
    }

    /* Typography Scaling */
    h1 {
        font-size: 1.55rem !important;
    }

    h2 {
        font-size: 1.8rem !important;
    }

    h3 {
        font-size: 1.4rem !important;
    }

    .hero-pretitle {
        font-size: 0.75rem;
        margin-bottom: 1rem;
        letter-spacing: 0.08em;
    }

    .countdown-container {
        gap: 0.8rem;
    }

    .countdown-item {
        min-width: 75px;
        padding: 1rem;
    }

    .countdown-number {
        font-size: 1.6rem;
    }

    .countdown-label {
        font-size: 0.7rem;
    }

    .hero-description {
        font-size: 1.05rem;
        margin-bottom: 2rem;
    }

    /* Problem Section Mobile */
    .problem-intro .large-text {
        font-size: 1.4rem;
    }

    .problem-intro p {
        font-size: 1rem;
    }

    .problem-cycle {
        padding: 2.5rem 1.2rem;
    }

    .cycle-item p {
        font-size: 0.95rem;
    }

    .side-box {
        padding: 2rem 1.5rem;
    }

    .problem-conclusion p {
        font-size: 1.2rem;
    }

    /* Journey Section Mobile */
    .value-result {
        font-size: 1.2rem;
    }

    .comparison-box {
        padding: 1.8rem !important;
    }

    .comparison-box h4 {
        font-size: 1.2rem;
    }

    /* Proof Section Mobile */
    .true-war-box p {
        font-size: 1.4rem !important;
    }

    .proof-footer .highlight {
        font-size: 1.3rem !important;
    }

    /* Pricing Card Mobile */
    .pricing-card-premium {
        padding: 2.5rem 1.5rem;
    }

    .pricing-title {
        font-size: 1.5rem;
    }

    .comparison-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .countdown-container {
        gap: 0.5rem;
    }

    .countdown-item {
        min-width: 65px;
        padding: 0.7rem;
    }

    .countdown-number {
        font-size: 1.5rem;
    }

    .countdown-label {
        font-size: 0.65rem;
    }

    .container {
        padding: 0 1rem;
    }

    .comparison-box {
        padding: 1.5rem !important;
    }
}