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

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #2c1810;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(44, 24, 16, 0.95);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(44, 24, 16, 0.2);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
    filter: brightness(1.1) contrast(1.1);
}

.nav-logo h2 {
    font-weight: 800;
    font-size: 1.5rem;
    color: #d4a574;
    letter-spacing: 2px;
    font-family: 'Playfair Display', serif;
}

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

.nav-link {
    text-decoration: none;
    color: #d4a574;
    font-weight: 600;
    transition: color 0.3s ease;
    position: relative;
    font-family: 'Montserrat', sans-serif;
}

.nav-link:hover {
    color: #8b4513;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #8b4513;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

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

.bar {
    width: 25px;
    height: 3px;
    background-color: #d4a574;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: url('images/misspilates1.JPG') center center/cover no-repeat;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-image {
    width: 100%;
    height: 100%;
    background: url('images/misspilates1.JPG') center center/cover no-repeat;
    position: relative;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 24, 16, 0.5);
}

.hero-content {
    text-align: center;
    color: #f5f5dc;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}

.hero-badge {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-badge span {
    background: rgba(139, 69, 19, 0.85);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 1px;
    border: 2px solid rgba(212, 165, 116, 0.8);
    color: #f5f5dc;
    text-shadow: 0 1px 2px rgba(44, 24, 16, 0.3);
    box-shadow: 0 4px 12px rgba(44, 24, 16, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    white-space: nowrap;
    text-align: center;
    line-height: 1.2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(44, 24, 16, 0.5);
    font-family: 'Playfair Display', serif;
    text-align: center;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    font-weight: 400;
    opacity: 0.95;
    line-height: 1.6;
    font-family: 'Playfair Display', serif;
}

.hero-cta {
    margin-bottom: 3rem;
}

.hero-guarantee {
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 500;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: #d4a574;
    text-shadow: 2px 2px 4px rgba(44, 24, 16, 0.5);
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0.9;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 18px 36px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-large {
    padding: 20px 40px;
    font-size: 1.1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #8b4513 0%, #a0522d 50%, #cd853f 100%);
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.3), 0 4px 10px rgba(0, 0, 0, 0.1);
    border: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    font-weight: 700;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 35px rgba(139, 69, 19, 0.4), 0 6px 15px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #a0522d 0%, #cd853f 50%, #daa520 100%);
    color: #ffffff;
}

.btn-primary:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #f5f5dc;
    border-color: #d4a574;
}

.btn-secondary:hover {
    background: #d4a574;
    color: #2c1810;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #2c1810;
    border-color: #8b4513;
}

.btn-outline:hover {
    background: #8b4513;
    color: #f5f5dc;
    transform: translateY(-2px);
}

/* Challenge Section */
.challenge {
    padding: 100px 0;
    background: url('images/misspilates2.JPG') center center/cover no-repeat fixed;
    position: relative;
}

.challenge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(245, 245, 220, 0.9);
}

.challenge .container {
    position: relative;
    z-index: 2;
}

.challenge-header {
    text-align: center;
    margin-bottom: 4rem;
}

.challenge-header h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #2c1810;
    font-family: 'Playfair Display', serif;
}

.challenge-header p {
    font-size: 1.2rem;
    color: #5d4037;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    font-family: 'Playfair Display', serif;
}

.challenge-tracks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.track-card {
    background: rgba(245, 245, 220, 0.95);
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 10px 30px rgba(44, 24, 16, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    border: 2px solid transparent;
    overflow: hidden;
}

.track-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(44, 24, 16, 0.15);
}

.track-card.featured {
    border-color: #8b4513;
    transform: scale(1.05);
}

.track-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.track-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.track-card:hover .track-image img {
    transform: scale(1.1);
}

.track-header {
    padding: 2rem 2rem 1rem;
    position: relative;
}

.featured-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(45deg, #8b4513, #a0522d);
    color: #f5f5dc;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.track-header h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #8b4513;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.track-header h4 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #2c1810;
    font-family: 'Playfair Display', serif;
}

.track-content {
    padding: 0 2rem 2rem;
}

.track-content p {
    color: #5d4037;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-family: 'Montserrat', sans-serif;
}

.track-content ul {
    list-style: none;
}

.track-content li {
    margin-bottom: 0.8rem;
    font-weight: 500;
    color: #2c1810;
    font-family: 'Montserrat', sans-serif;
}

.challenge-cta {
    text-align: center;
    background: rgba(245, 245, 220, 0.95);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(44, 24, 16, 0.1);
}

.challenge-cta h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #2c1810;
}

.challenge-cta p {
    font-size: 1.1rem;
    color: #5d4037;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-family: 'Montserrat', sans-serif;
}

/* Products Section */
.products {
    padding: 100px 0;
    background: url('images/misspilates3.JPG') center center/cover no-repeat fixed;
    position: relative;
}

.products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(245, 245, 220, 0.9);
}

.products .container {
    position: relative;
    z-index: 2;
}

.products-header {
    text-align: center;
    margin-bottom: 4rem;
}

.products-header h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #2c1810;
    font-family: 'Playfair Display', serif;
}

.products-header p {
    font-size: 1.2rem;
    color: #5d4037;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    font-family: 'Playfair Display', serif;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.product-card {
    background: rgba(245, 245, 220, 0.95);
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 10px 30px rgba(44, 24, 16, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(44, 24, 16, 0.15);
}

.product-card.featured {
    border-color: #57ce18;
    transform: scale(1.05);
    background: rgba(245, 245, 220, 0.98);
}

.product-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    padding: 2rem 2rem 1rem;
}

.product-header h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #2c1810;
    font-family: 'Playfair Display', serif;
}

.product-badge {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.product-price {
    margin-top: 1rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 900;
    color: #8b4513;
    text-shadow: 2px 2px 4px rgba(139, 69, 19, 0.2);
}

.product-content {
    flex: 1;
    margin-bottom: 2rem;
    padding: 0 2rem;
}

.product-description {
    margin-bottom: 1.5rem;
}

.product-description p {
    color: #5d4037;
    line-height: 1.6;
    font-size: 1.1rem;
    font-family: 'Montserrat', sans-serif;
}

.product-features {
    margin-bottom: 1.5rem;
}

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

.product-features li {
    margin-bottom: 0.8rem;
    font-weight: 500;
    color: #2c1810;
    font-size: 0.95rem;
    line-height: 1.5;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.product-features li i {
    color: #57ce18;
    font-size: 1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.product-bonuses {
    background: linear-gradient(45deg, #d4a574, #deb887);
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 1.5rem;
}

.product-bonuses h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2c1810;
}

.product-bonuses ul {
    list-style: none;
}

.product-bonuses li {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c1810;
    font-size: 0.9rem;
}

.product-savings {
    background: linear-gradient(45deg, #8b4513, #a0522d);
    color: #f5f5dc;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 1.5rem;
    border: 3px solid #57ce18;
    box-shadow: 0 4px 15px rgba(87, 206, 24, 0.2);
}

.product-savings p {
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.product-cta {
    text-align: center;
    margin-top: auto;
    padding: 0 2rem 2rem;
}

/* Results Section */
.results {
    padding: 100px 0;
    background: url('images/misspilates4.JPG') center center/cover no-repeat fixed;
    position: relative;
}

.results::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(245, 245, 220, 0.9);
}

.results .container {
    position: relative;
    z-index: 2;
}

.results h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 4rem;
    color: #2c1810;
    font-family: 'Playfair Display', serif;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.result-card {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    transition: transform 0.3s ease;
    background: rgba(245, 245, 220, 0.95);
    box-shadow: 0 10px 30px rgba(44, 24, 16, 0.1);
}

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

.result-image {
    width: 100%;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.result-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.result-card:hover .result-image img {
    transform: scale(1.05);
}

.result-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #8b4513, #a0522d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.result-icon i {
    font-size: 2rem;
    color: #f5f5dc;
}

.result-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2c1810;
}

.result-card p {
    color: #5d4037;
    line-height: 1.6;
    font-family: 'Montserrat', sans-serif;
}

.results-cta {
    text-align: center;
    background: rgba(245, 245, 220, 0.95);
    padding: 3rem;
    border-radius: 20px;
    color: #2c1810;
}

.results-cta h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: #2c1810;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: url('images/misspilates6.JPG') center center/cover no-repeat fixed;
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(245, 245, 220, 0.9);
}

.testimonials .container {
    position: relative;
    z-index: 2;
}

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

.testimonial-quote {
    margin-bottom: 3rem;
}

.testimonial-quote i {
    font-size: 3rem;
    color: #8b4513;
    margin-bottom: 1rem;
}

.testimonial-quote blockquote {
    font-size: 1.8rem;
    font-style: italic;
    color: #2c1810;
    font-weight: 600;
    line-height: 1.4;
    font-family: 'Playfair Display', serif;
}

.testimonial-vision {
    background: rgba(245, 245, 220, 0.95);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(44, 24, 16, 0.1);
}

.testimonial-vision h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #2c1810;
    font-family: 'Playfair Display', serif;
}

.testimonial-vision p {
    font-size: 1.2rem;
    color: #5d4037;
    line-height: 1.6;
    font-family: 'Montserrat', sans-serif;
}

/* Sign Up Section */
.signup {
    padding: 100px 0;
    background: url('images/misspilates6.JPG') center center/cover no-repeat fixed;
    position: relative;
}

.signup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 24, 16, 0.7);
}

.signup .container {
    position: relative;
    z-index: 2;
}

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

.signup-info h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #f5f5dc;
    font-family: 'Playfair Display', serif;
}

.signup-info p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
    color: #f5f5dc;
    font-family: 'Montserrat', sans-serif;
}

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

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    font-weight: 500;
    color: #f5f5dc;
}

.benefit-item i {
    color: #57ce18;
    font-size: 1.2rem;
}

.signup-form {
    background: rgba(245, 245, 220, 0.95);
    padding: 2.5rem;
    border-radius: 20px;
    color: #2c1810;
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #2c1810;
}

.form-header p {
    color: #5d4037;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #d4a574;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    background: rgba(245, 245, 220, 0.8);
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8b4513;
    background: rgba(245, 245, 220, 1);
}

.form-group textarea {
    min-height: 80px;
    line-height: 1.5;
}

.form-footer {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: #5d4037;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: url('images/misspilates7.JPG') center center/cover no-repeat fixed;
    position: relative;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(245, 245, 220, 0.9);
}

.faq .container {
    position: relative;
    z-index: 2;
}

.faq h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 4rem;
    color: #2c1810;
    font-family: 'Playfair Display', serif;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: rgba(245, 245, 220, 0.95);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(44, 24, 16, 0.1);
}

.faq-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2c1810;
}

.faq-item p {
    color: #5d4037;
    line-height: 1.6;
    font-family: 'Montserrat', sans-serif;
}

/* Products CTA */
.products-cta {
    text-align: center;
    background: rgba(245, 245, 220, 0.95);
    padding: 3rem;
    border-radius: 20px;
    color: #2c1810;
}

.products-cta h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #2c1810;
}

.products-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: #5d4037;
    font-family: 'Montserrat', sans-serif;
}

/* Footer */
.footer {
    background: #2c1810;
    color: #f5f5dc;
    padding: 50px 0 20px;
}

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

.footer-section h3 {
    margin-bottom: 1rem;
    font-weight: 600;
    color: #d4a574;
    font-family: 'Playfair Display', serif;
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-weight: 600;
    color: #d4a574;
    font-family: 'Playfair Display', serif;
}

.footer-section p {
    color: #d4a574;
    font-family: 'Playfair Display', serif;
}

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

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

.footer-section ul li a {
    color: #d4a574;
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.footer-section ul li a:hover {
    color: #f5f5dc;
}

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

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #5d4037;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f5f5dc;
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: #8b4513;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #5d4037;
    color: #d4a574;
}

.footer-disclaimer {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(44, 24, 16, 0.1);
    border-radius: 8px;
}

.footer-disclaimer p {
    font-size: 0.75rem;
    line-height: 1.4;
    color: #d4a574;
    margin: 0;
    text-align: left;
    font-family: 'Montserrat', sans-serif;
}

.footer-disclaimer strong {
    color: #f5f5dc;
}

/* Story Section */
.story {
    padding: 100px 0;
    background: url('images/misspilates3.JPG') center center/cover no-repeat fixed;
    position: relative;
}

.story::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(245, 245, 220, 0.9);
}

.story .container {
    position: relative;
    z-index: 2;
}

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

.story-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: #2c1810;
    font-family: 'Playfair Display', serif;
}

.story-text p {
    font-size: 1.2rem;
    color: #5d4037;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.story-text strong {
    color: #8b4513;
    font-weight: 700;
}

.story-features {
    background: linear-gradient(45deg, #d4a574, #deb887);
    padding: 1.5rem;
    border-radius: 15px;
    margin: 1.5rem 0;
}

.story-features p {
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: #2c1810;
    font-size: 1.1rem;
}

.story-features p:last-child {
    margin-bottom: 0;
}

.story-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(44, 24, 16, 0.2);
}

.story-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.story-image:hover img {
    transform: scale(1.05);
}

/* Problem Section */
.problem {
    padding: 100px 0;
    background: url('images/misspilates4.JPG') center center/cover no-repeat fixed;
    position: relative;
}

.problem::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(245, 245, 220, 0.9);
}

.problem .container {
    position: relative;
    z-index: 2;
}

.problem-content h2 {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c1810;
    font-family: 'Playfair Display', serif;
}

.problem-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.problem-item {
    background: rgba(245, 245, 220, 0.95);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(44, 24, 16, 0.1);
    transition: transform 0.3s ease;
}

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

.problem-item i {
    font-size: 2.5rem;
    color: #8b4513;
    margin-bottom: 1rem;
}

.problem-item p {
    font-size: 1.1rem;
    color: #2c1810;
    font-weight: 500;
}

.problem-solution {
    text-align: center;
    background: rgba(245, 245, 220, 0.95);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(44, 24, 16, 0.1);
}

.problem-solution h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #2c1810;
}

.problem-solution p {
    font-size: 1.2rem;
    color: #5d4037;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.solution-highlight {
    background: linear-gradient(45deg, #d4a574, #deb887);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
}

.solution-highlight h3 {
    color: #2c1810;
    margin-bottom: 1rem;
}

.solution-highlight p {
    color: #2c1810;
    font-weight: 600;
}

/* Offer Section */
.offer {
    padding: 100px 0;
    background: url('images/misspilates5.JPG') center center/cover no-repeat fixed;
    position: relative;
}

.offer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(245, 245, 220, 0.9);
}

.offer .container {
    position: relative;
    z-index: 2;
}

.offer-header {
    text-align: center;
    margin-bottom: 4rem;
}

.offer-header h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #2c1810;
    font-family: 'Playfair Display', serif;
}

.offer-header p {
    font-size: 1.2rem;
    color: #5d4037;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    font-family: 'Playfair Display', serif;
}

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

.offer-item {
    background: rgba(245, 245, 220, 0.95);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(44, 24, 16, 0.1);
    transition: transform 0.3s ease;
}

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

.offer-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #8b4513, #a0522d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.offer-icon i {
    font-size: 2rem;
    color: #f5f5dc;
}

.offer-image {
    width: 50px;
    height: 50px;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: brightness(1.1) contrast(1.1);
}

.offer-item:hover .offer-image {
    transform: scale(1.1);
    filter: brightness(1.2) contrast(1.2);
}

.offer-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2c1810;
}

.offer-item p {
    color: #5d4037;
    line-height: 1.6;
}

/* Final CTA Section */
.final-cta {
    padding: 100px 0;
    background: url('images/misspilates7.JPG') center center/cover no-repeat fixed;
    position: relative;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 24, 16, 0.7);
}

.final-cta .container {
    position: relative;
    z-index: 2;
}

.final-cta-content {
    text-align: center;
    color: #f5f5dc;
}

.final-cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #f5f5dc;
    font-family: 'Playfair Display', serif;
}

.final-cta-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.6;
    color: #f5f5dc;
}

/* Instagram Feed Section */
.instagram-feed {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f5f5dc 0%, #e6d7c3 100%);
    position: relative;
}

.instagram-feed::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/misspilates1.JPG') center center/cover no-repeat;
    opacity: 0.1;
    z-index: 0;
}

.instagram-feed .container {
    position: relative;
    z-index: 1;
}

.instagram-header {
    text-align: center;
    margin-bottom: 3rem;
}

.instagram-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2c1810;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.instagram-header p {
    font-size: 1.1rem;
    color: #5d4037;
    margin-bottom: 2rem;
    font-weight: 500;
}

.instagram-follow-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(45deg, #e91e63, #9c27b0);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.instagram-follow-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.4);
    color: white;
}

.instagram-follow-btn i {
    font-size: 1.2rem;
}

.scrolling-instagram {
    overflow: hidden;
    position: relative;
    margin: 0 -20px;
}

.scrolling-instagram__container {
    display: flex;
    animation: scrollInstagram 60s linear infinite;
    width: max-content;
}

.scrolling-instagram__item {
    flex: 0 0 300px;
    height: 400px;
    margin: 0 10px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(44, 24, 16, 0.15);
    transition: all 0.3s ease;
    aspect-ratio: 3/4;
}

.scrolling-instagram__item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(44, 24, 16, 0.25);
}

.scrolling-instagram__item.even {
    transform: translateY(20px);
}

.scrolling-instagram__item.odd {
    transform: translateY(-20px);
}

.scrolling-instagram__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.scrolling-instagram__item:hover img {
    transform: scale(1.05);
}

.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 24, 16, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.scrolling-instagram__item:hover .instagram-overlay {
    opacity: 1;
}

.instagram-overlay i {
    color: white;
    font-size: 2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

@keyframes scrollInstagram {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pause animation on hover */
.scrolling-instagram:hover .scrolling-instagram__container {
    animation-play-state: paused;
}

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

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(44, 24, 16, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(44, 24, 16, 0.1);
        padding: 2rem 0;
    }

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

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.1;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-badge span {
        padding: 10px 20px;
        font-size: 0.9rem;
        letter-spacing: 0.5px;
    }

    .nav-logo-icon {
        width: 28px;
        height: 28px;
    }

    .hero-stats {
        gap: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .challenge-tracks,
    .products-grid {
        grid-template-columns: 1fr;
    }

    .track-card.featured,
    .product-card.featured {
        transform: none;
    }

    .signup-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .challenge-header h2,
    .products-header h2,
    .results h2,
    .testimonials h2,
    .faq h2 {
        font-size: 2rem;
    }

    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .story-text h2 {
        font-size: 2rem;
    }

    .problem-content h2 {
        font-size: 2rem;
    }

    .problem-list {
        grid-template-columns: 1fr;
    }

    .offer-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .testimonial-quote blockquote {
        font-size: 1.5rem;
    }

    .final-cta-content h2 {
        font-size: 2rem;
    }

    .offer-header h2 {
        font-size: 2rem;
    }

    .instagram-header h2 {
        font-size: 2rem;
    }

    .scrolling-instagram__item {
        flex: 0 0 250px;
        height: 333px;
        aspect-ratio: 3/4;
    }

    .track-image,
    .product-image,
    .testimonial-image {
        height: 200px;
    }

    .result-image {
        height: 150px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
        line-height: 1.1;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-badge {
        margin-bottom: 1.5rem;
    }

    .hero-badge span {
        padding: 8px 16px;
        font-size: 0.85rem;
        letter-spacing: 0.3px;
        border-radius: 25px;
        white-space: normal;
        max-width: 280px;
        line-height: 1.3;
    }

    .nav-logo {
        gap: 8px;
    }

    .nav-logo-icon {
        width: 24px;
        height: 24px;
    }

    .btn {
        padding: 15px 25px;
        font-size: 0.9rem;
    }

    .btn-large {
        padding: 18px 30px;
        font-size: 1rem;
    }

    .container {
        padding: 0 15px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .product-card {
        padding: 0;
    }

    .price {
        font-size: 2rem;
    }

    .track-image,
    .product-image,
    .testimonial-image {
        height: 180px;
    }

    .result-image {
        height: 120px;
    }

    .story-text h2 {
        font-size: 1.8rem;
    }

    .problem-content h2 {
        font-size: 1.8rem;
    }

    .offer-header h2 {
        font-size: 1.8rem;
    }

    .final-cta-content h2 {
        font-size: 1.8rem;
    }

    .testimonial-quote blockquote {
        font-size: 1.3rem;
    }

    .story-image img {
        height: 300px;
    }

    .instagram-header h2 {
        font-size: 1.8rem;
    }

    .scrolling-instagram__item {
        flex: 0 0 200px;
        height: 267px;
        margin: 0 5px;
        aspect-ratio: 3/4;
    }
}

@media (max-width: 320px) {
    .hero-badge span {
        padding: 6px 12px;
        font-size: 0.8rem;
        max-width: 250px;
        border-radius: 20px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

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

.hero-content,
.challenge-tracks,
.products-grid,
.results-grid,
.testimonials-grid,
.signup-content {
    animation: fadeInUp 1s ease-out;
}

/* Urgency Animation */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.hero-badge {
    animation: pulse 2s infinite;
}

/* Modern Button Effects */
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.btn-primary:hover::before {
    opacity: 1;
}

/* Button Focus States for Accessibility */
.btn-primary:focus {
    outline: 2px solid rgba(212, 165, 116, 0.8);
    outline-offset: 2px;
} 