/* ==================== VARIABLES & RESET ==================== */
:root {
    /* FitLove App Color Palette - Rose Gold & Navy Blue */
    --primary: #be185d;           /* Rose Gold - Main brand */
    --primary-dark: #9d1248;      /* Darker rose */
    --primary-light: #ec4899;     /* Lighter rose for backgrounds */
    --secondary: #1e3a8a;         /* Navy Blue */
    --secondary-light: #3b82f6;   /* Lighter blue */
    --accent: #8b47c7;            /* Purple accent */

    /* F.I.T. Assessment Colors */
    --fire: #b91c3c;              /* Fire - Dark Red */
    --intimacy: #6d28d9;          /* Intimacy - Purple */
    --trust: #16a34a;             /* Trust - Green */

    /* Gradients matching app design */
    --gradient-primary: linear-gradient(135deg, #be185d 0%, #ec4899 100%);
    --gradient-secondary: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    --gradient-accent: linear-gradient(135deg, #8b47c7 0%, #6d28d9 100%);
    --gradient-warm: linear-gradient(135deg, #be185d 0%, #8b47c7 50%, #ec4899 100%);
    --gradient-card: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(254, 242, 248, 0.9) 100%);

    /* Text & Background */
    --text-dark: #374151;
    --text-light: #ffffff;
    --bg-light: #faf9f8;
    --bg-darker: #f3f4f6;

    /* Shadows */
    --shadow: 0 10px 30px rgba(190, 24, 93, 0.1);
    --shadow-lg: 0 20px 40px rgba(190, 24, 93, 0.15);
    --card-border: rgba(190, 24, 93, 0.1);
    --card-shadow: rgba(190, 24, 93, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    color: var(--text-dark);
    background-color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ==================== NAVIGATION ==================== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    cursor: pointer;
    transition: color 0.3s ease;
}

.logo:hover {
    color: var(--primary-dark);
}

.logo-text {
    color: var(--primary);
}

.logo-icon {
    font-size: 2rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

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

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    margin: 5px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

@media (max-width: 768px) {
    .nav-container {
        position: relative;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        gap: 0;
        padding: 1rem 2rem;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-links.active {
        max-height: 300px;
    }

    .nav-links a {
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-links a:last-child {
        border-bottom: none;
    }
}

/* ==================== HERO SECTION ==================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #faf9f8 0%, #fce7f3 50%, #eff6ff 100%);
    background-size: cover;
    background-position: center;
    overflow: hidden;
    padding: 2rem;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(190, 24, 93, 0.04) 0%, rgba(139, 71, 199, 0.03) 100%);
    z-index: 1;
}

.parallax-element {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    opacity: 0.1;
    top: -100px;
    right: -100px;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.gradient-text {
    background: linear-gradient(135deg, #be185d 0%, #8b47c7 50%, #6d28d9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn {
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(190, 24, 93, 0.3);
}

.btn-primary:active {
    transform: translateY(-1px);
}

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

.btn-secondary:hover {
    background: var(--primary);
    color: white;
    box-shadow: var(--shadow);
}

.btn-small {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
}

.btn-large {
    padding: 1rem 3rem;
    font-size: 1.1rem;
}

.hero-badges {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.badge {
    background: rgba(190, 24, 93, 0.1);
    color: var(--primary);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    animation: slideIn 0.6s ease-out backwards;
    border: 1px solid rgba(190, 24, 93, 0.2);
    backdrop-filter: blur(10px);
}

.badge:nth-child(2) {
    animation-delay: 0.1s;
}

.badge:nth-child(3) {
    animation-delay: 0.2s;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .cta-buttons {
        flex-direction: column;
    }
}

/* ==================== CONTAINER ==================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ==================== SECTIONS ==================== */
section {
    padding: 6rem 2rem;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ==================== F.I.T. FRAMEWORK ==================== */
.fit-framework {
    background: linear-gradient(180deg, #ffffff 0%, #faf9f8 100%);
    padding: 6rem 2rem;
}

@media (max-width: 768px) {
    .fit-framework {
        padding: 4rem 1.5rem;
    }
}

.fit-framework h2 {
    color: var(--text-dark);
}

.framework-intro {
    max-width: 750px;
    margin: 0 auto 3rem;
    text-align: center;
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
}

/* Framework Foundations */
.framework-foundations {
    margin-bottom: 4rem;
}

.framework-foundations > h3 {
    font-size: 1.5rem;
    text-align: center;
    color: var(--primary);
    margin-bottom: 2rem;
}

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

.foundation-card {
    background: var(--gradient-card);
    border-radius: 16px;
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

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

.foundation-header {
    padding: 1.5rem;
    color: white;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.foundation-header.sternberg {
    background: linear-gradient(135deg, #be185d 0%, #a01650 100%);
}

.foundation-header.languages {
    background: linear-gradient(135deg, #8b47c7 0%, #6d28d9 100%);
}

.foundation-header.mbti {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e3a8a 100%);
}

.foundation-header h4 {
    font-size: 1.2rem;
    margin: 0;
    font-weight: 700;
}

.foundation-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.foundation-card p {
    padding: 0 1.5rem;
    color: #555;
    line-height: 1.7;
}

.foundation-card .foundation-subtitle {
    padding-top: 1.5rem !important;
    font-weight: 600;
    color: var(--primary) !important;
    font-size: 0.95rem;
}

.foundation-card > p:last-child {
    padding-bottom: 1.5rem;
}

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

@media (max-width: 768px) {
    .fit-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.fit-card {
    background: var(--gradient-card);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.fit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.fit-card-header {
    padding: 2rem 1.5rem;
    color: white;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.fit-card-header.fire {
    background: linear-gradient(135deg, #b91c3c 0%, #991b1b 100%);
}

.fit-card-header.intimacy {
    background: linear-gradient(135deg, #6d28d9 0%, #5b21b6 100%);
}

.fit-card-header.trust {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
}

.fit-card-header h3 {
    font-size: 1.8rem;
    margin: 0;
    font-weight: 700;
}

.fit-card-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.fit-card p {
    padding: 0 1.5rem;
    color: #555;
    line-height: 1.7;
}

.fit-card p:first-of-type {
    padding-top: 1.5rem;
    font-weight: 600;
    color: var(--primary);
}

.fit-description {
    font-size: 0.95rem;
    color: var(--primary) !important;
}

.fit-range {
    padding-bottom: 1.5rem !important;
    font-size: 0.9rem;
    color: #888 !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* AI Synthesis */
.ai-synthesis {
    margin: 3rem 0;
    padding: 2.5rem;
    background: var(--gradient-card);
    border-radius: 20px;
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
}

.ai-synthesis > h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
    text-align: center;
}

.ai-synthesis > p {
    text-align: center;
    color: #555;
    font-size: 1.05rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.synthesis-flow {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.synthesis-item {
    flex: 0 1 calc(33.333% - 1.5rem);
    min-width: 200px;
    text-align: center;
    padding: 1.5rem;
    background: rgba(190, 24, 93, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(190, 24, 93, 0.1);
}

@media (max-width: 768px) {
    .synthesis-item {
        flex: 0 1 100%;
        min-width: auto;
    }
}

.synthesis-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
    display: block;
}

.synthesis-item p {
    color: #555;
    font-weight: 600;
    margin: 0;
    font-size: 0.95rem;
}

.synthesis-plus,
.synthesis-equals {
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .synthesis-plus,
    .synthesis-equals {
        width: 100%;
        text-align: center;
    }
}

.synthesis-result {
    flex: 0 1 100%;
    text-align: center;
    padding: 3rem 2rem;
    background: var(--gradient-primary);
    border-radius: 16px;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 240px;
}

.synthesis-result-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    display: block;
    color: white;
    animation: float 3s ease-in-out infinite;
    line-height: 1;
}

.synthesis-result p {
    margin: 0;
    font-weight: 700;
    font-size: 1.3rem;
    line-height: 1.6;
}

.fit-info {
    max-width: 900px;
    margin: 3rem auto 0;
    padding: 2rem;
    background: var(--gradient-card);
    border-radius: 20px;
    border: 1px solid var(--card-border);
    backdrop-filter: blur(10px);
}

.fit-info h4 {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.fit-info > p {
    color: #555;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.relationship-types {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.relationship-types li {
    padding: 1rem;
    background: rgba(190, 24, 93, 0.05);
    border-left: 4px solid var(--primary);
    border-radius: 8px;
    color: #333;
}

.relationship-types strong {
    color: var(--primary);
}

/* ==================== HOW IT WORKS ==================== */
.how-it-works {
    background: linear-gradient(180deg, #ffffff 0%, #faf9f8 100%);
    position: relative;
}

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

.step-card {
    background: var(--gradient-card);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--card-border);
    backdrop-filter: blur(10px);
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    box-shadow: 0 8px 25px var(--card-shadow);
}

.step-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.step-card p {
    color: #666;
    line-height: 1.6;
}

/* ==================== FEATURES ==================== */
.features {
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, #faf9f8 100%);
}

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

.feature-item {
    text-align: center;
    padding: 2rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    background: var(--gradient-card);
    border: 1px solid var(--card-border);
    backdrop-filter: blur(10px);
}

.feature-item:hover {
    border-color: var(--primary);
    box-shadow: 0 15px 40px var(--card-shadow);
    transform: translateY(-8px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

.feature-item:nth-child(2) .feature-icon {
    animation-delay: 0.2s;
}

.feature-item:nth-child(3) .feature-icon {
    animation-delay: 0.4s;
}

.feature-item:nth-child(4) .feature-icon {
    animation-delay: 0.6s;
}

.feature-item:nth-child(5) .feature-icon {
    animation-delay: 0.8s;
}

.feature-item:nth-child(6) .feature-icon {
    animation-delay: 1s;
}

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

.feature-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.feature-item p {
    color: #666;
    font-size: 0.95rem;
}

/* ==================== AI SYSTEM SECTION ==================== */
.ai-system {
    background: linear-gradient(180deg, #ffffff 0%, #faf9f8 100%);
    padding: 6rem 2rem;
}

.system-intro {
    max-width: 750px;
    margin: 0 auto 4rem;
    text-align: center;
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
}

.system-flow {
    max-width: 1000px;
    margin: 0 auto;
}

.flow-section {
    margin-bottom: 3rem;
}

.flow-section h3 {
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.flow-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

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

.flow-card {
    background: var(--gradient-card);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    text-align: center;
}

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

.flow-card.full-width {
    grid-column: 1 / -1;
}

.flow-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
    display: block;
}

.flow-card h4 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.flow-card p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.flow-divider {
    text-align: center;
    margin: 2rem 0;
    color: var(--primary);
}

.flow-divider i {
    font-size: 1.5rem;
    opacity: 0.6;
}

.why-it-works {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid rgba(190, 24, 93, 0.1);
}

.why-it-works h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 2.5rem;
}

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

.why-card {
    background: var(--gradient-card);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.why-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
    display: block;
}

.why-card h4 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.why-card p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* ==================== BENEFITS ==================== */
.benefits {
    background: var(--gradient-secondary);
    color: white;
}

.benefits h2 {
    color: white;
    font-size: 2.8rem;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.benefit {
    display: flex;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.12);
    padding: 1.5rem;
    border-radius: 16px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: all 0.3s ease;
}

.benefit:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateX(8px);
    border-color: rgba(255, 255, 255, 0.4);
}

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

.benefit h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    margin: 0;
}

.benefit p {
    font-size: 0.95rem;
    opacity: 1;
}

/* ==================== AFFILIATE PRODUCTS ==================== */
.affiliate {
    background: linear-gradient(180deg, #faf9f8 0%, #ffffff 100%);
    position: relative;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    margin-bottom: 2rem;
}

.product-card {
    background: var(--gradient-card);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--card-border);
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.product-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 100%);
}

.product-card h3 {
    font-size: 1.1rem;
    padding: 1rem 1.5rem 0;
    color: var(--text-dark);
}

.product-card p {
    padding: 0.5rem 1.5rem;
    color: #666;
    font-size: 0.9rem;
    flex-grow: 1;
}

.product-card .btn {
    margin: 0 1.5rem 1.5rem;
    text-align: center;
}

.affiliate-disclaimer {
    text-align: center;
    color: #666;
    font-size: 0.85rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* ==================== COMING SOON SECTION ==================== */
.coming-soon {
    background: linear-gradient(180deg, #ffffff 0%, #faf9f8 100%);
}

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

.coming-soon h2 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.coming-soon-card {
    margin: 3rem 0;
    padding: 3rem 2rem;
    background: var(--gradient-card);
    border-radius: 20px;
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
}

.coming-soon-icon {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    display: block;
    animation: float 3s ease-in-out infinite;
}

.coming-soon-message {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin: 0;
}

.app-stores {
    margin: 2.5rem 0;
}

.app-stores-text {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.store-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.store-button {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 0.95rem;
}

.app-store-btn {
    background: #000;
    color: white;
}

.app-store-btn:hover {
    background: #333;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.play-store-btn {
    background: var(--gradient-primary);
    color: white;
}

.play-store-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(190, 24, 93, 0.3);
}

.store-button i {
    font-size: 1.2rem;
}

.contact-info {
    text-align: center;
    margin-top: 2rem;
    color: #666;
}

.contact-info p {
    margin: 0;
}

.contact-info a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* ==================== FOOTER ==================== */
.footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 3rem 2rem 1rem;
}

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

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

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

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

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

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: #bbb;
    font-size: 0.9rem;
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 768px) {
    section {
        padding: 4rem 1rem;
    }

    h2 {
        font-size: 2rem;
    }

    .steps-grid,
    .features-grid,
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .nav-links a {
        font-size: 0.9rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .btn {
        padding: 0.65rem 1.5rem;
        font-size: 0.95rem;
    }

    .hero-title {
        font-size: 2rem;
    }

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

@media (max-width: 480px) {
    .nav-container {
        padding: 0.75rem 1rem;
    }

    .logo {
        font-size: 1.2rem;
    }

    .logo-icon {
        font-size: 1.5rem;
    }

    .hero-title {
        font-size: 1.6rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .step-card,
    .feature-item {
        padding: 1.5rem;
    }

    .badge {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
}

/* ==================== SCROLL ANIMATIONS ==================== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Smooth scrolling */
@supports (scroll-behavior: smooth) {
    html {
        scroll-behavior: smooth;
    }
}

/* ==================== FONT AWESOME ICONS STYLING ==================== */

/* Logo Icon */
.logo-icon {
    font-size: 1.8rem;
    color: var(--primary);
    margin-right: 0.3rem;
}

/* Feature Icons */
.feature-icon {
    font-size: 2.8rem;
    color: var(--primary);
    display: block;
    margin-bottom: 1rem;
    line-height: 1;
}

/* Product Icons */
.product-icon {
    font-size: 3.2rem;
    color: white;
    display: block;
    margin-bottom: 0.5rem;
    line-height: 1;
}

/* Badge Icons */
.badge-icon {
    font-size: 1rem;
    margin-right: 0.5rem;
    vertical-align: middle;
    display: inline-block;
}

/* Benefit Icons */
.benefit-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
}