/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: none;
}

.btn-primary {
    background-color: #ff7a28;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(255, 122, 40, 0.3);
}

.btn-primary:hover {
    background-color: #e6691f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 122, 40, 0.4);
}

.btn-secondary {
    background-color: #f8f9fa;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
}

.btn-secondary:hover {
    background-color: #1a1a1a;
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-large {
    padding: 1.5rem 3rem;
    font-size: 1.3rem;
    border-radius: 12px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(26, 26, 26, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo .logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1a1a1a;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #666666;
}

.nav-link.cta-nav {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.nav-link.cta-nav:hover {
    background-color: #333333;
    transform: translateY(-1px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background-color: #1a1a1a;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 1000px;
    margin: 0 auto;
}

/*.hero-content {*/
/*    display: grid;*/
/*    grid-template-columns: 1fr 1fr;*/
/*    gap: 4rem;*/
/*    align-items: center;*/
/*}*/

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

.hero-title {
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    margin-top: 1.5rem;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #666666;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-cta {
    /*display: flex;*/
    /*flex-direction: column;*/
    /*align-items: flex-start;*/
    /*gap: 1rem;*/
    text-align: center;
}

.cta-subtext {
    font-size: 1rem;
    color: #888888;
    margin: 1rem 0 0 0;
    font-style: italic;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.journal-showcase {
    position: relative;
    width: 400px;
    height: 500px;
}

.journal-cover {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #1a1a1a 0%, #333333 100%);
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(26, 26, 26, 0.3);
    position: relative;
    transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
    transition: transform 0.3s ease;
}

.journal-cover:hover {
    transform: perspective(1000px) rotateY(-10deg) rotateX(2deg);
}

.journal-cover::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    font-weight: 800;
    text-align: center;
    line-height: 0.8;
    width: 80%;
}

.journal-cover::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    font-weight: 800;
    width: 85%;
    height: 70%;
    background-image: 
        linear-gradient(to right, transparent 0%, transparent 100%);
}

.journal-cover {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.journal-cover .cover-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    width: 90%;
    height: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-left: 10%;
}

.journal-cover .cover-text .the {
    font-size: 1.6rem;
    display: block;
    margin-bottom: -0.8rem;
    letter-spacing: 0.15em;
    font-weight: 700;
    align-self: flex-start;
}

.journal-cover .cover-text .twenty {
    font-size: 8.5rem;
    display: block;
    margin: 0;
    letter-spacing: -0.08em;
    font-weight: 900;
    line-height: 0.9;
    align-self: flex-start;
}

.journal-cover .cover-text .coach {
    font-size: 2.4rem;
    display: block;
    margin-top: -1rem;
    letter-spacing: 0.08em;
    font-weight: 800;
    align-self: flex-start;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #666666;
    margin-bottom: 2rem;
}

/* Problem Section */
.problem-section {
    background-color: #f8f9fa;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.problem-item {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.problem-item:hover {
    transform: translateY(-5px);
}

.problem-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.truth-statement {
    background: #1a1a1a;
    color: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    margin-top: 3rem;
}

.truth-statement p {
    font-size: 1.3rem;
    margin: 0;
}

/* Solution Section */
.solution-section {
    text-align: center;
}

.solution-intro {
    max-width: 800px;
    margin: 0 auto;
}

.solution-intro p {
    font-size: 1.2rem;
    color: #666666;
}

/* What's Inside Section */
.whats-inside-section {
    background-color: #f8f9fa;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.feature-title {
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.feature-list li::before {
    content: "•";
    color: #1a1a1a;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Transformation Section */
.transformation-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.transformation-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #1a1a1a;
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-marker {
    background: #1a1a1a;
    color: #ffffff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.timeline-content {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    width: calc(50% - 40px);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: auto;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
}

.timeline-content h4 {
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

/* Perfect For Section */
.perfect-for-section {
    background-color: #f8f9fa;
}

.perfect-for-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.perfect-for-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.check-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* Investment Section */
.investment-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
    color: #ffffff;
}

.investment-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.investment-section .section-title {
    color: #ffffff;
    text-align: left;
    margin-bottom: 1.5rem;
}

.investment-intro {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.value-list {
    margin-bottom: 3rem;
}

.value-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.value-text {
    flex: 1;
}

.value-price {
    font-weight: 700;
    color: #ffd700;
    font-size: 1.1rem;
}

.cta-section h3 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-section p {
    margin-bottom: 2rem;
}

.cta-section .btn-primary {
    background-color: #ff7a28;
    color: #ffffff;
}

.cta-section .btn-primary:hover {
    background-color: #e6691f;
    transform: translateY(-2px);
}

.investment-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.journal-image {
    width: 100%;
    /*max-width: 400px;*/
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.journal-display {
    width: 300px;
    height: 400px;
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    transform: perspective(1000px) rotateY(15deg) rotateX(-5deg);
}

.journal-display::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #1a1a1a;
    font-weight: 800;
    text-align: center;
    line-height: 0.8;
    width: 80%;
}

.journal-display::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #1a1a1a;
    font-weight: 800;
    width: 85%;
    height: 70%;
}

.journal-display {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.journal-display .cover-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #1a1a1a;
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    width: 90%;
    height: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-left: 10%;
}

.journal-display .cover-text .the {
    font-size: 1.2rem;
    display: block;
    margin-bottom: -0.6rem;
    letter-spacing: 0.15em;
    font-weight: 700;
    align-self: flex-start;
}

.journal-display .cover-text .twenty {
    font-size: 6rem;
    display: block;
    margin: 0;
    letter-spacing: -0.08em;
    font-weight: 900;
    line-height: 0.9;
    align-self: flex-start;
}

.journal-display .cover-text .coach {
    font-size: 1.8rem;
    display: block;
    margin-top: -0.8rem;
    letter-spacing: 0.08em;
    font-weight: 800;
    align-self: flex-start;
}

/* How It Works Section */
.how-it-works-section {
    background-color: #f8f9fa;
}

.video-container {
    /*max-width: 800px;*/
    margin: 0 auto;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

/* Meet Dr. Una Section */
.dr-una-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.dr-una-subtitle {
    font-size: 1.3rem;
    color: #666666;
    font-style: italic;
    margin-bottom: 2rem;
}

.dr-una-bio p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.dr-una-image {
    display: flex;
    justify-content: center;
}

.dr-una-photo {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* VIP Community Section */
.vip-community-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    text-align: center;
}

.vip-description {
    max-width: 600px;
    margin: 0 auto 3rem;
    font-size: 1.2rem;
    color: #666666;
}

.email-signup {
    display: flex;
    justify-content: center;
    margin: 0 auto;
}



/* Footer */
.footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.footer-section h4 {
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: #cccccc;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #ffffff;
}

.footer-logo .logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
}

.footer-copyright {
    margin-top: 1rem;
    color: #888888;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: #ffffff;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

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

    .hero-image {
        order: -1;
    }

    .journal-showcase {
        width: 300px;
        height: 375px;
    }

    .investment-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .journal-cover .cover-text .twenty {
        font-size: 6rem;
    }

    .investment-section .section-title {
        text-align: center;
    }

    .dr-una-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .timeline-item {
        flex-direction: column !important;
    }

    .timeline-content {
        width: 100%;
        margin: 2rem 0 0 0 !important;
    }

    .transformation-timeline::before {
        display: none;
    }

    .timeline-marker {
        position: relative;
        left: auto;
        transform: none;
        margin-bottom: 1rem;
    }

    .signup-form {
        flex-direction: column;
        gap: 1rem;
    }

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

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    section {
        padding: 60px 0;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .journal-showcase {
        width: 250px;
        height: 312px;
    }

    .journal-cover::before {
        font-size: 1.8rem;
    }

    .journal-cover .cover-text .twenty {
        font-size: 5rem;
    }

    .features-grid,
    .problem-grid,
    .perfect-for-grid {
        grid-template-columns: 1fr;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.feature-card,
.problem-item,
.timeline-item {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling offset for fixed navbar */
section {
    scroll-margin-top: 80px;
}

