/* === STORY SECTION === */
.story {
    background: var(--white);
    position: relative;
}

.story::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--sage) 50%, transparent 100%);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
    margin-bottom: var(--space-xl);
}

.story-text {
    max-width: none;
}

.story-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: var(--space-md);
}

.story-text p:first-of-type::first-letter {
    font-size: 3.5rem;
    font-family: var(--font-accent);
    color: var(--sage);
    float: left;
    line-height: 1;
    margin-right: 0.5rem;
    margin-top: 0.1rem;
}

.story-highlight {
    background: linear-gradient(135deg, var(--sage) 0%, var(--sage-dark) 100%);
    color: var(--white);
    padding: var(--space-lg);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.story-highlight::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.story-highlight p {
    font-size: 1.5rem;
    font-family: var(--font-accent);
    font-style: italic;
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 1;
}

.story-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.story-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.story-video {
    width: 100%;
    height: 500px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* Stats Cards */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.stat-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 157, 131, 0.2);
    border-radius: 20px;
    padding: var(--space-lg);
    text-align: center;
    transition: all 0.4s var(--ease-smooth);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--sage) 0%, var(--terracotta) 100%);
    transform: scaleX(0);
    transition: transform 0.6s var(--ease-smooth);
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(139, 157, 131, 0.2);
    border-color: var(--sage);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--sage);
    line-height: 1;
    margin-bottom: var(--space-sm);
    display: block;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--charcoal);
    font-weight: 600;
}

.stat-description {
    font-size: 0.95rem;
    color: #666;
    margin-top: var(--space-xs);
}

/* === PRODUCTS SECTION === */
.products {
    background: linear-gradient(180deg, var(--light-gray) 0%, var(--white) 100%);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-lg);
}

.product-card {
    background: var(--white);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s var(--ease-smooth);
    position: relative;
    cursor: pointer;
}

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

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--terracotta);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(196, 121, 107, 0.4);
}

.product-image-wrapper {
    position: relative;
    height: 300px;
    overflow: hidden;
    background: var(--light-gray);
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-smooth);
}

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

.product-content {
    padding: var(--space-lg);
}

.product-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: var(--space-sm);
}

.product-benefit {
    font-size: 1.1rem;
    color: var(--sage);
    font-style: italic;
    margin-bottom: var(--space-lg);
}

.product-features {
    list-style: none;
    margin-bottom: var(--space-md);
}

.product-features li {
    padding: 0.4rem 0;
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-features li::before {
    content: '✓';
    color: var(--sage);
    font-weight: 700;
    font-size: 1.2rem;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-md);
    border-top: 1px solid #eee;
}

.product-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--sage);
}

.product-price-currency {
    font-size: 1.1rem;
    margin-left: 0.25rem;
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--sage);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s var(--ease-smooth);
}

.product-link:hover {
    gap: 1rem;
    color: var(--sage-dark);
}

/* Official Website Product Styles */
.product-badge-stock {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(44, 44, 44, 0.85);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    z-index: 2;
}

.product-price-strike {
    font-size: 1rem;
    color: #666;
    text-decoration: line-through;
    margin: 0.5rem 0 1rem 0;
}

.product-link-button {
    display: block;
    width: 100%;
    padding: 0.875rem 1.5rem;
    background: transparent;
    border: 1.5px solid var(--charcoal);
    color: var(--charcoal);
    font-weight: 600;
    font-size: 0.875rem;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
    transition: all 0.3s ease;
    margin-top: auto;
}

.product-link-button:hover {
    background: var(--charcoal);
    color: white;
}

.product-link-notify {
    border-color: #999;
    color: #666;
}

.product-link-notify:hover {
    background: #666;
    border-color: #666;
    color: white;
}

.product-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--charcoal);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.product-benefit {
    font-size: 0.9rem;
    color: #666;
    font-style: normal;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.product-content {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    min-height: 140px;
}

/* === OPPORTUNITY SECTION === */
.opportunity {
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.opportunity::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 150%;
    background: radial-gradient(circle, rgba(139, 157, 131, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.opportunity-intro {
    max-width: 800px;
    margin: 0 auto var(--space-xl);
    text-align: center;
}

.opportunity-intro p {
    font-size: 1.25rem;
    color: #555;
    margin: 0 auto;
}

.opportunity-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.opportunity-image-wrapper {
    position: relative;
}

.opportunity-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.opportunity-features {
    display: grid;
    gap: var(--space-lg);
}

.feature-card {
    background: var(--white);
    padding: var(--space-lg);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s var(--ease-smooth);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--sage);
    transform: scaleY(0);
    transition: transform 0.4s var(--ease-smooth);
}

.feature-card:hover::before {
    transform: scaleY(1);
}

.feature-card:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--sage) 0%, var(--sage-dark) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
    color: var(--white);
    font-size: 1.75rem;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: var(--space-sm);
}

.feature-description {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.7;
}

/* === TESTIMONIALS SECTION === */
.testimonials {
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-lg);
}

.testimonial-card {
    background: var(--light-gray);
    padding: var(--space-lg);
    border-radius: 20px;
    position: relative;
    transition: all 0.4s var(--ease-smooth);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 6rem;
    font-family: var(--font-accent);
    color: var(--sage);
    opacity: 0.1;
    line-height: 1;
}

.testimonial-card:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    position: relative;
    z-index: 1;
    margin-bottom: var(--space-md);
}

.testimonial-text {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--sage);
}

.author-info {
    flex: 1;
}

.author-name {
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 0.25rem;
}

.author-details {
    font-size: 0.9rem;
    color: #666;
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-top: 0.5rem;
}

.star {
    color: #FFB800;
    font-size: 1.1rem;
}

/* Instagram Feed */
.instagram-section {
    margin-top: var(--space-xl);
    text-align: center;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.instagram-post {
    position: relative;
    aspect-ratio: 1;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s var(--ease-smooth);
}

.instagram-post:hover {
    transform: scale(1.05);
}

.instagram-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.instagram-cta {
    margin-top: var(--space-lg);
}

/* === CONTACT SECTION === */
.contact {
    background: linear-gradient(135deg, var(--sage) 0%, var(--sage-dark) 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.contact .section-title,
.contact .section-subtitle {
    color: var(--white);
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-text {
    font-size: 1.25rem;
    margin-bottom: var(--space-xl);
    opacity: 0.95;
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.contact-option {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: var(--space-lg);
    transition: all 0.4s var(--ease-smooth);
}

.contact-option:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-5px);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
    font-size: 2rem;
}

.contact-option h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
}

.contact-option p {
    font-size: 0.95rem;
    opacity: 0.9;
    margin: 0 auto;
}

.contact-main-cta {
    margin-top: var(--space-xl);
}

/* === FOOTER === */
.footer {
    background: var(--charcoal);
    color: var(--white);
    padding: var(--space-xl) 2rem var(--space-lg);
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--sage);
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.footer-social {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    margin-bottom: var(--space-lg);
}

.footer-social-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s var(--ease-smooth);
    text-decoration: none;
}

.footer-social-icon:hover {
    background: var(--sage);
    transform: translateY(-5px);
}

.footer-info {
    margin-bottom: var(--space-md);
    opacity: 0.8;
}

.footer-legal {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
    padding-top: var(--space-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.6;
    font-size: 0.9rem;
}

.footer-legal a {
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.3s var(--ease-smooth);
}

.footer-legal a:hover {
    opacity: 1;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .story-content,
    .opportunity-content {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .story-image,
    .story-video,
    .opportunity-image {
        height: 400px;
    }
    
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-md);
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-options {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
}
