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

:root {
    --brown-primary: #9B7653;
    --brown-dark: #6B4E3D;
    --brown-light: #C4A07A;
    --cream: #F5F1ED;
    --white: #FFFFFF;
    --black: #1A1A1A;
    --dark-green: #1C3A2E;
    --border-color: #D4C5B9;
    --text-gray: #666666;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Cormorant Garamond', serif;
}

/* Hero Section */
#hero {
    background: radial-gradient(ellipse at center, #C9A87C 0%, #A8845C 40%, #8B6F47 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    color: var(--white);
    position: relative;
    padding: 2rem 2rem 3rem;
}

.hero-content {
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 5vh;
}

.hero-bottom {
    z-index: 2;
    margin-bottom: 2rem;
}

.hero-title {
    font-family: 'Baskerville', 'Libre Baskerville', 'Cormorant Garamond', serif;
    font-size: 200px;
    font-weight: 400;
    letter-spacing: 0%;
    line-height: 165px;
    margin-bottom: 2rem;
    text-align: center;
    vertical-align: middle;
}

.hero-subtitle {
    font-family: 'Satoshi', 'Montserrat', sans-serif;
    font-size: 40px;
    font-weight: 400;
    letter-spacing: 0%;
    line-height: 38px;
    margin-bottom: 3rem;
    text-align: center;
    vertical-align: middle;
    opacity: 0.95;
}

.btn-primary {
    background-color: #F0ECE2;
    color: var(--black);
    border: 2px solid var(--black);
    padding: 15px 45px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 12px;
}

.hero-bottom .btn-primary {
    width: 253px;
    height: 56px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-primary:hover {
    background-color: var(--cream);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.login-text {
    margin-top: 2rem;
    font-size: 1.1rem;
    color: var(--black);
    text-align: center;
}

.login-link {
    color: var(--black);
    text-decoration: underline;
    font-weight: 500;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* How It Works Section */
#how-it-works {
    background-color: #FFFFFF;
    padding: 6rem 0;
    text-align: center;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: #8B4513;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

#how-it-works .section-title {
    font-family: 'Satoshi', 'Montserrat', sans-serif;
    font-size: 50px;
    font-weight: 500;
    line-height: 40px;
    letter-spacing: 0px;
    text-align: center;
    color: #9B281A;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--black);
    margin-bottom: 5rem;
    font-weight: 400;
}

#how-it-works .section-subtitle {
    font-family: 'Satoshi', 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: 0px;
    text-align: center;
    color: #1A1A1A;
}

.steps-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1400px;
    margin: 0 2rem;
    margin-left: auto;
    margin-right: auto;
    gap: 0;
    flex-wrap: nowrap;
    padding: 0;
}

.step {
    flex: 0 1 auto;
    min-width: 250px;
    max-width: 280px;
    position: relative;
    text-align: left;
    padding: 0 1rem;
}

.step-number {
    font-family: 'Baskerville', 'Libre Baskerville', serif;
    font-size: 70px;
    font-weight: 700;
    line-height: 48px;
    letter-spacing: 0.35px;
    color: #6A0F1D66;
    margin-bottom: 1rem;
    width: 77px;
    height: 48px;
}

.step-title {
    font-family: 'Satoshi', 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 28px;
    letter-spacing: 0px;
    color: #6A0F1D;
    margin-bottom: 1rem;
    opacity: 1;
    white-space: nowrap;
}

.step-description {
    font-family: 'Satoshi', 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: 0px;
    color: #1A1A1A;
    width: 256px;
    height: 90px;
    opacity: 1;
}

.step:not(:first-child)::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 2px;
    background: #C9A5A5;
    top: 24px;
    left: -210px;
    opacity: 0.6;
}

.step:not(:first-child)::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 8px;
    top: 20px;
    left: -210px;
    background: radial-gradient(circle at 4px center, #C9A5A5 4px, transparent 4px),
                radial-gradient(circle at calc(100% - 4px) center, #C9A5A5 4px, transparent 4px);
    background-size: 8px 8px, 8px 8px;
    background-position: left center, right center;
    background-repeat: no-repeat;
    pointer-events: none;
}

.step-connector {
    display: none;
}

@media (max-width: 768px) {
    .step-connector {
        display: none;
    }
}

/* Verification Section */
#verification {
    background-color: #FFFFFF;
    padding: 3rem 4rem;
    text-align: center;
    border: 2px solid #D4C5B9;
    border-radius: 24px;
    margin: 4rem 2rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.verification-title {
    font-family: 'Satoshi', 'Montserrat', sans-serif;
    font-size: 50px;
    font-weight: 500;
    line-height: 40px;
    letter-spacing: 0px;
    text-align: center;
    color: #9B281A;
    margin-bottom: 1rem;
    white-space: nowrap;
}

.verification-text {
    font-family: 'Satoshi', 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    letter-spacing: 0px;
    text-align: center;
    vertical-align: middle;
    color: #1A1A1A;
    max-width: 1100px;
    margin: 0 auto 1.5rem;
}

.btn-secondary {
    font-family: 'Satoshi', 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 1px;
    text-align: center;
    text-transform: uppercase;
    background-color: #F0ECE2;
    color: var(--black);
    border: 2px solid var(--black);
    padding: 15px 45px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 12px;
}

.btn-secondary:hover {
    background-color: var(--brown-dark);
    color: var(--white);
}

/* Pricing Section */
#pricing {
    background-color: #FFFFFF;
    padding: 6rem 2rem;
    text-align: center;
}

#pricing .section-title {
    font-family: 'Satoshi', 'Montserrat', sans-serif;
    font-size: 50px;
    font-weight: 500;
    line-height: 40px;
    letter-spacing: 0px;
    text-align: center;
    color: #9B281A;
    margin-bottom: 0.5rem;
}

#pricing .section-subtitle {
    font-family: 'Satoshi', 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: 0px;
    text-align: center;
    color: #1A1A1A;
    margin-bottom: 3rem;
}

.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 2rem;
    max-width: 1000px;
    margin: 3rem auto 0;
    flex-wrap: wrap;
}

.pricing-card {
    flex: 1;
    min-width: 320px;
    max-width: 450px;
    border: 1.5px solid #D4C5B9;
    padding: 2.5rem 2.5rem;
    text-align: left;
    background-color: var(--white);
    transition: all 0.3s ease;
    border-radius: 16px;
}

.pricing-card.premium {
    border: 2px solid #13664F;
    background-color: #FFFFFF;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.plan-name {
    font-family: 'Satoshi', 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0.07px;
    color: #1A1A1A;
;
    margin-bottom: 0.75rem;
}

.premium .plan-name {
    color: #13664F;
}

.price {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.price-amount {
    font-family: 'Satoshi', 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 48px;
    line-height: 48px;
    letter-spacing: 0px;
    color: #1A1A1A;
}

.price-period {
    font-family: 'Satoshi', 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0px;
    color: #1A1A1A;
}

.plan-description {
    font-family: 'Satoshi', 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0px;
    color: #1A1A1A;
    margin-bottom: 2rem;
}

.btn-outline {
    font-family: 'Satoshi', 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 1px;
    text-align: center;
    text-transform: uppercase;
    background-color: #FFFFFF;
    color: var(--black);
    border: 2px solid var(--black);
    padding: 14px 35px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 10px;
    width: 100%;
    margin-bottom: 2rem;
}

.btn-outline:hover {
    background-color: var(--brown-dark);
    color: var(--white);
}

.premium .btn-primary {
    font-family: 'Satoshi', 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 1px;
    text-align: center;
    text-transform: uppercase;
    background-color: #F5F1ED;
    color: var(--black);
    border: 2px solid var(--black);
    padding: 14px 35px;
    width: 100%;
    margin-bottom: 2rem;
    border-radius: 10px;
}

.premium .btn-primary:hover {
    background-color: var(--brown-primary);
    border-color: var(--brown-primary);
}

.features-list {
    border-top: 1px solid #D4C5B9;
    padding-top: 1.5rem;
}

.features-title {
    font-family: 'Satoshi', 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0;
    text-transform: uppercase;
    color: #1A1A1A;
    margin-bottom: 1.25rem;
}

.features-list ul {
    list-style: none;
}

.features-list li {
    font-family: 'Satoshi', 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
    color: #1A1A1A;
    margin-bottom: 1rem;
    padding-left: 1.75rem;
    position: relative;
}

.features-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    width: 14px;
    height: 10px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231C3A2E' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

/* Mission Section */
#mission {
    background-image: url('mission-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 8rem 2rem;
    text-align: center;
    color: var(--white);
}

.mission-title {
    font-family: 'Baskervville', 'Libre Baskerville', 'Baskerville', serif;
    font-weight: 600;
    font-size: 60px;
    line-height: 70px;
    letter-spacing: 0.07px;
    margin-bottom: 1rem;
}

.mission-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 300;
    opacity: 0.9;
}

/* About Section */
#about {
    background-color: #FFFFFF;
    padding: 6rem 2rem;
}

#about .section-title {
    font-family: 'Satoshi', 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 48px;
    line-height: 48px;
    letter-spacing: 0px;
    text-align: center;
    color: #9B281A;
}

.about-title {
    text-align: center;
    margin-bottom: 3rem;
}

.about-content {
    max-width: 1100px;
    margin: 0 auto;
}

.about-content p {
    font-family: 'Satoshi', 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0px;
    text-align: justify;
    color: #1A1A1A;
    margin-bottom: 1.5rem;
}

/* Cowboy Signature Section */
#cowboy-signature {
    width: 100%;
    padding: 0 4rem 4rem 4rem;
    margin-top: -2rem;
    box-sizing: border-box;
}

.signature-text {
    font-family: 'a Auto Signature', cursive;
    font-weight: 400;
    font-size: 60px;
    line-height: 34px;
    letter-spacing: -13px;
    text-align: center;
    vertical-align: middle;
    color: var(--brown-dark);
    width: 100%;
    white-space: nowrap;
}

/* Feedback Section */
#feedback {
    background-color: var(--white);
    padding: 6rem 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1100px;
    margin: 0 auto;
    box-sizing: border-box;
}

.feedback-left,
.feedback-right {
    flex: 0 1 auto;
}

.feedback-left {
    flex: 0 0 auto;
}

.feedback-heading {
    font-family: 'Satoshi', 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 48px;
    line-height: 48px;
    letter-spacing: 0px;
    color: #CD5C5C;
    margin-bottom: 0;
}

.feedback-thanks {
    font-family: 'Satoshi', 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 69px;
    letter-spacing: 0px;
    vertical-align: middle;
    color: var(--text-gray);
}

.feedback-right {
    flex: 0 0 auto;
    max-width: 350px;
}

.feedback-text {
    font-family: 'Satoshi', 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0px;
    text-align: justify;
    color: var(--black);
    margin-bottom: 1.5rem;
}

.feedback-offer {
    font-family: 'Satoshi', 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0px;
    text-align: justify;
    color: var(--black);
    margin-bottom: 2rem;
}

.feedback-right .btn-outline {
    width: 100%;
    margin-bottom: 0;
}

/* FAQ Section */
#faq {
    background-color: #FFFFFF;
    padding: 2rem 2rem 6rem 2rem;
    text-align: center;
}

#faq .section-title {
    font-family: 'Satoshi', 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 48px;
    line-height: 40px;
    letter-spacing: 0px;
    text-align: center;
    color: #9B281A;
}

.faq-list {
    max-width: 1100px;
    margin: 3rem auto 0;
    text-align: left;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
    padding: 1.5rem 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: 'Satoshi', 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0px;
    color: var(--black);
}

.faq-toggle {
    color: var(--brown-dark);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

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

.faq-answer p {
    font-family: 'Satoshi', 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
    color: var(--black);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-top: 1rem;
}

.faq-answer p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* Footer */
#footer {
    background-color: #F7EDE3;
    border-top: 1px solid var(--border-color);
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-brand {
    flex: 0 0 auto;
    align-self: center;
}

.footer-logo {
    font-family: 'Baskerville', 'Libre Baskerville', serif;
    font-weight: 400;
    font-size: 48px;
    line-height: 20px;
    letter-spacing: -0.15px;
    text-align: center;
    vertical-align: middle;
    color: #1A1A1A;
}

.footer-links {
    display: flex;
    gap: 5rem;
}

.footer-section {
    flex: 0 0 auto;
}

.footer-section h4 {
    font-family: 'Satoshi', 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section a {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.15px;
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--brown-dark);
}

/* Responsive Design */
@media (max-width: 768px) {
    .steps-container {
        flex-direction: column;
        align-items: center;
    }

    .pricing-cards {
        flex-direction: column;
        align-items: center;
    }

    #feedback {
        flex-direction: column;
        text-align: center;
    }

    .feedback-right .btn-outline {
        width: 100%;
    }

    .footer-content {
        flex-direction: column;
    }
}

/* Smooth Animations */
@media (prefers-reduced-motion: no-preference) {
    .step,
    .pricing-card,
    .faq-item {
        opacity: 0;
        animation: fadeInUp 0.6s ease forwards;
    }

    .step:nth-child(1) { animation-delay: 0.1s; }
    .step:nth-child(2) { animation-delay: 0.2s; }
    .step:nth-child(3) { animation-delay: 0.3s; }
    .step:nth-child(4) { animation-delay: 0.4s; }
}

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