/* ========================================
   VitalFreshVX - Landing Page Styles
   ======================================== */

/* CSS Variables */
:root {
    --color-white: #FFFFFF;
    --color-mint-light: #E8F5F0;
    --color-mint: #A8D5C2;
    --color-mint-dark: #7CB99E;
    --color-gold: #D4AF37;
    --color-gold-light: #F5E6B8;
    --color-gold-dark: #B8960C;
    --color-text: #2C3E50;
    --color-text-light: #5D6D7E;
    --color-text-muted: #95A5A6;
    --color-border: #E0E0E0;
    --font-primary: 'Cormorant Garamond', Georgia, serif;
    --font-secondary: 'Lato', 'Helvetica Neue', sans-serif;
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s ease;
    --border-radius: 8px;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-secondary);
    color: var(--color-text);
    background-color: var(--color-white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--color-gold-dark);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--color-gold);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    line-height: 1.3;
    color: var(--color-text);
}

h1 { font-size: 2.75rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
}

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

.section {
    padding: 80px 0;
}

.section--mint {
    background-color: var(--color-mint-light);
}

.section--white {
    background-color: var(--color-white);
}

/* Header */
.header {
    background: linear-gradient(135deg, var(--color-white) 0%, var(--color-mint-light) 100%);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-soft);
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-primary);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-text);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo__accent {
    color: var(--color-gold);
}

.nav {
    display: flex;
    gap: 30px;
}

.nav__link {
    color: var(--color-text);
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-gold);
    transition: var(--transition);
}

.nav__link:hover::after {
    width: 100%;
}

.nav__link:hover {
    color: var(--color-gold-dark);
}

/* Mobile Navigation */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--color-text);
    margin: 5px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--color-white) 0%, var(--color-mint-light) 50%, var(--color-white) 100%);
    padding: 60px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero__content {
    position: relative;
    z-index: 1;
}

.hero__badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
    color: var(--color-text);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero__title {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero__title span {
    color: var(--color-gold);
}

.hero__description {
    font-size: 1.1rem;
    color: var(--color-text-light);
    margin-bottom: 30px;
    max-width: 500px;
}

.hero__image-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero__image {
    max-width: 400px;
    width: 100%;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.hero__disclaimer {
    margin-top: 25px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.9);
    border-left: 3px solid var(--color-gold);
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    font-size: 0.8rem;
    color: var(--color-text-muted);
    max-width: 350px;
    line-height: 1.5;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 32px;
    font-family: var(--font-secondary);
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn--primary {
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
    color: var(--color-white);
}

.btn--secondary {
    background: transparent;
    color: var(--color-gold-dark);
    border: 2px solid var(--color-gold);
}

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

/* Order Section */
.order {
    background: linear-gradient(180deg, var(--color-mint-light) 0%, var(--color-white) 100%);
    padding: 80px 0;
}

.order__inner {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.order__title {
    margin-bottom: 15px;
}

.order__subtitle {
    color: var(--color-text-light);
    margin-bottom: 40px;
}

.order__price {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-gold-dark);
    margin-bottom: 30px;
}

.order__price span {
    font-size: 1.25rem;
    color: var(--color-text-muted);
}

.order-form {
    background: var(--color-white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-medium);
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--color-text);
}

.form-group input {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font-secondary);
    font-size: 1rem;
    border: 2px solid var(--color-border);
    border-radius: var(--border-radius);
    transition: var(--transition);
    background: var(--color-white);
}

.form-group input:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.form-group input::placeholder {
    color: var(--color-text-muted);
}

.order-form .btn {
    width: 100%;
    margin-top: 10px;
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: var(--color-white);
}

.benefits__header {
    text-align: center;
    margin-bottom: 60px;
}

.benefits__header h2 {
    margin-bottom: 15px;
}

.benefits__header p {
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
}

.benefits__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.benefit-card {
    background: linear-gradient(135deg, var(--color-white) 0%, var(--color-mint-light) 100%);
    padding: 35px;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(168, 213, 194, 0.3);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.benefit-card__icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.75rem;
}

.benefit-card__title {
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.benefit-card__text {
    color: var(--color-text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Content Image Section */
.content-image {
    padding: 60px 0;
}

.content-image__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.content-image__grid--reverse {
    direction: rtl;
}

.content-image__grid--reverse > * {
    direction: ltr;
}

.content-image__img {
    border-radius: 16px;
    box-shadow: var(--shadow-medium);
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.content-image__content h3 {
    margin-bottom: 20px;
    color: var(--color-text);
}

.content-image__content p {
    color: var(--color-text-light);
}

/* Ingredients Section */
.ingredients {
    padding: 80px 0;
    background: var(--color-mint-light);
}

.ingredients__header {
    text-align: center;
    margin-bottom: 50px;
}

.ingredients__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 900px;
    margin: 0 auto;
}

.ingredient-item {
    background: var(--color-white);
    padding: 25px 30px;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: var(--transition);
}

.ingredient-item:hover {
    box-shadow: var(--shadow-soft);
    transform: translateX(5px);
}

.ingredient-item__icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--color-mint) 0%, var(--color-mint-dark) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.25rem;
}

.ingredient-item__content h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.ingredient-item__content p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin: 0;
}

/* Audience Section */
.audience {
    padding: 80px 0;
    background: var(--color-white);
}

.audience__header {
    text-align: center;
    margin-bottom: 50px;
}

.audience__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.audience-card {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(180deg, var(--color-mint-light) 0%, var(--color-white) 100%);
    border-radius: 12px;
    border: 1px solid rgba(168, 213, 194, 0.4);
}

.audience-card__icon {
    width: 60px;
    height: 60px;
    background: var(--color-white);
    border: 2px solid var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
}

.audience-card__title {
    font-size: 1rem;
    margin-bottom: 8px;
}

.audience-card__text {
    font-size: 0.85rem;
    color: var(--color-text-light);
    margin: 0;
}

/* Usage Section */
.usage {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--color-mint-light) 0%, var(--color-white) 100%);
}

.usage__header {
    text-align: center;
    margin-bottom: 50px;
}

.usage__steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.usage-step {
    text-align: center;
    position: relative;
}

.usage-step__number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.usage-step__title {
    margin-bottom: 10px;
    font-size: 1.15rem;
}

.usage-step__text {
    font-size: 0.95rem;
    color: var(--color-text-light);
}

/* Footer */
.footer {
    background: var(--color-text);
    color: var(--color-white);
    padding: 60px 0 30px;
}

.footer__inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer__brand .logo {
    color: var(--color-white);
    margin-bottom: 15px;
}

.footer__brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer__title {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--color-gold);
}

.footer__links {
    list-style: none;
}

.footer__links li {
    margin-bottom: 10px;
}

.footer__links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer__links a:hover {
    color: var(--color-gold);
}

.footer__contact p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer__copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.footer__disclaimer {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    max-width: 600px;
    text-align: right;
    line-height: 1.5;
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-white);
    padding: 25px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-modal.active {
    transform: translateY(0);
}

.cookie-modal__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cookie-modal__text {
    flex: 1;
}

.cookie-modal__text h4 {
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.cookie-modal__text p {
    color: var(--color-text-light);
    font-size: 0.9rem;
    margin: 0;
}

.cookie-modal__text a {
    color: var(--color-gold-dark);
}

.cookie-modal__buttons {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.cookie-modal__buttons .btn {
    padding: 12px 25px;
    font-size: 0.9rem;
}

/* Page Hero (for subpages) */
.page-hero {
    background: linear-gradient(135deg, var(--color-mint-light) 0%, var(--color-white) 100%);
    padding: 80px 0 60px;
    text-align: center;
}

.page-hero h1 {
    margin-bottom: 15px;
}

.page-hero p {
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Page Content */
.page-content {
    padding: 60px 0;
}

.page-content__inner {
    max-width: 800px;
    margin: 0 auto;
}

.page-content h2 {
    margin: 40px 0 20px;
    font-size: 1.75rem;
}

.page-content h3 {
    margin: 30px 0 15px;
    font-size: 1.35rem;
}

.page-content p {
    color: var(--color-text-light);
    margin-bottom: 15px;
}

.page-content ul {
    margin-bottom: 20px;
    padding-left: 25px;
}

.page-content li {
    margin-bottom: 8px;
    color: var(--color-text-light);
}

/* Success Page */
.success {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--color-mint-light) 0%, var(--color-white) 100%);
}

.success__inner {
    max-width: 600px;
    padding: 60px 40px;
    background: var(--color-white);
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
}

.success__icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--color-mint) 0%, var(--color-mint-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 3rem;
}

.success h1 {
    margin-bottom: 20px;
    font-size: 2.25rem;
}

.success p {
    color: var(--color-text-light);
    margin-bottom: 30px;
}

/* Contact Page */
.contact-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.contact-card {
    background: var(--color-mint-light);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
}

.contact-card__icon {
    width: 60px;
    height: 60px;
    background: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
}

.contact-card h4 {
    margin-bottom: 10px;
}

.contact-card p {
    color: var(--color-text-light);
    margin: 0;
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 992px) {
    .hero__inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero__description {
        margin: 0 auto 30px;
    }

    .hero__image-wrapper {
        order: -1;
    }

    .hero__image {
        max-width: 300px;
    }

    .benefits__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .audience__grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .content-image__grid {
        grid-template-columns: 1fr;
    }

    .content-image__grid--reverse {
        direction: ltr;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }

    .nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--color-white);
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        box-shadow: var(--shadow-medium);
        transform: translateY(-150%);
        transition: transform 0.3s ease;
    }

    .nav.active {
        transform: translateY(0);
    }

    .nav-toggle {
        display: block;
    }

    .hero__title {
        font-size: 2.25rem;
    }

    .benefits__grid,
    .audience__grid {
        grid-template-columns: 1fr;
    }

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

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

    .footer__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer__disclaimer {
        text-align: center;
    }

    .cookie-modal__inner {
        flex-direction: column;
        text-align: center;
    }

    .order-form {
        padding: 30px 20px;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }
}

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

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

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

    .hero__image {
        max-width: 250px;
    }

    .btn {
        padding: 14px 24px;
    }
}
