/* --- RESET & CORE STYLES --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
    overflow-x: hidden;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

h1,
h2,
h3,
h4 {
    font-weight: 700;
    line-height: 1.2;
}

p {
    color: #555;
    margin-bottom: 15px;
    font-size: 15px;
}

a {
    text-decoration: none;
    transition: 0.3s;
}

/* --- BACKGROUND ANIMATION (Marketing Themed) --- */
.background-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.bg-shape {
    position: absolute;
    opacity: 0.05;
    animation: floatFullPage linear infinite;
    color: #E91E63;
    font-size: 30px;
}

.bg-shape:nth-child(1) {
    top: 15%;
    left: 8%;
    animation-duration: 25s;
    content: '❤️';
    font-size: 20px;
}

.bg-shape:nth-child(2) {
    top: 25%;
    right: 12%;
    font-size: 60px;
    animation-duration: 35s;
    animation-delay: -5s;
    color: #333;
    opacity: 0.03;
}

.bg-shape:nth-child(3) {
    bottom: 20%;
    left: 20%;
    animation-duration: 28s;
    animation-delay: -10s;
    color: #1E88E5;
}

.bg-shape:nth-child(4) {
    bottom: 35%;
    right: 8%;
    animation-duration: 32s;
    color: #FF6A00;
    opacity: 0.04;
}

@keyframes floatFullPage {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(30px, -50px) rotate(10deg);
    }

    66% {
        transform: translate(-20px, 40px) rotate(-10deg);
    }

    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

/* --- HEADER STYLES (Identical) --- */
.header {
    background: #F8EBD6;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 100;
    min-height: 72px;
    animation: slideDown 0.8s ease forwards;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 55px;
    display: block;
}

.nav {
    display: flex;
    align-items: center;
}

.nav a {
    margin: 0 12px;
    color: #333;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
}

.nav a:hover,
.nav a:hover i {
    color: #FF6A00;
}

.nav a i {
    font-size: 18px;
    color: #444;
}

/* Dropdown Styles */
.nav-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 12px;
    background-color: #ffffff;
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 10px 0;
    z-index: 1000;
    border: 1px solid #eee;
}

.nav-dropdown:hover .nav-dropdown-content {
    display: block;
    animation: fadeInUp 0.3s ease;
}

.nav .nav-dropdown-content a {
    margin: 0;
    padding: 12px 20px;
    display: block;
    width: 100%;
    font-size: 14px;
    color: #555;
    border-bottom: none;
}

.nav .nav-dropdown-content a:hover {
    background-color: #f9f9f9;
    color: #FF6A00;
    transform: translateX(5px);
}

.nav .auth-buttons {
    display: flex;
    margin-left: 15px;
}

.auth-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.auth-buttons .btn-login {
    padding: 8px 24px;
    border: 1px solid #ccc;
    background: transparent;
    border-radius: 30px;
    color: #333;
    font-weight: 500;
}

.auth-buttons .btn-login:hover {
    background: rgba(0, 0, 0, 0.05);
    border-color: #bbb;
}

.auth-buttons .btn-signup {
    background: #FF6A00;
    color: white;
    padding: 8px 24px;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 2px 5px rgba(255, 106, 0, 0.2);
}

.auth-buttons .btn-signup:hover {
    background: #e05c00;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(255, 106, 0, 0.3);
}

.hamburger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 101;
    margin-left: 10px;
}

.hamburger-menu span {
    display: block;
    width: 25px;
    height: 3px;
    background: #333;
    margin: 5px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
}

/* --- MARKETING HERO SECTION --- */
.market-hero {
    position: relative;
    padding: 120px 0;
    background-color: #2c0b4f;
    /* Deep Purple */
    color: white;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.market-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, #4a148c, #2c0b4f);
    z-index: 0;
}

.market-hero-content {
    position: relative;
    z-index: 5;
    max-width: 600px;
}

.market-hero h1 {
    font-size: 52px;
    line-height: 1.15;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.market-hero h1 span {
    color: #FF4081;
    /* Pinkish Highlight */
    position: relative;
}

.market-hero p {
    font-size: 18px;
    color: #d1c4e9;
    max-width: 550px;
    margin-bottom: 35px;
}

.btn-glow {
    background: #E91E63;
    color: white;
    padding: 14px 35px;
    border-radius: 30px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
    border: none;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(233, 30, 99, 0.5);
}

.btn-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(233, 30, 99, 0.7);
    background: #d81b60;
}

/* Funnel Visual */
.funnel-container {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 450px;
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.funnel-layer {
    width: 100%;
    height: 60px;
    margin: 5px 0;
    text-align: center;
    line-height: 60px;
    font-weight: 700;
    color: white;
    clip-path: polygon(0 0, 100% 0, 90% 100%, 10% 100%);
    position: relative;
    animation: glowPulse 3s infinite alternate;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.fl-1 {
    width: 350px;
    background: rgba(255, 64, 129, 0.2);
    animation-delay: 0s;
}

/* Awareness */
.fl-2 {
    width: 280px;
    background: rgba(156, 39, 176, 0.2);
    animation-delay: 0.5s;
}

/* Interest */
.fl-3 {
    width: 210px;
    background: rgba(103, 58, 183, 0.2);
    animation-delay: 1s;
}

/* Desire */
.fl-4 {
    width: 140px;
    background: rgba(63, 81, 181, 0.2);
    animation-delay: 1.5s;
    clip-path: polygon(0 0, 100% 0, 50% 100%, 50% 100%);
    height: 80px;
    align-items: flex-start;
    padding-top: 15px;
}

/* Action */

@keyframes glowPulse {
    0% {
        box-shadow: 0 0 5px rgba(255, 255, 255, 0.1);
    }

    100% {
        box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
    }
}

/* --- MARKETING SERVICES --- */
.market-services {
    padding: 100px 0;
    background: #fff;
}

.ms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.ms-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    border: 1px solid #eee;
    transition: 0.3s;
    text-align: center;
}

.ms-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    border-color: #E91E63;
}

.ms-icon {
    width: 80px;
    height: 80px;
    background: #fce4ec;
    color: #E91E63;
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    transition: 0.3s;
}

.ms-card:hover .ms-icon {
    background: #E91E63;
    color: white;
    transform: rotateY(180deg);
}

.ms-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.ms-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* --- STATS SECTION --- */
.growth-stats {
    padding: 80px 0;
    background: #f3f4f6;
    border-top: 1px solid #e5e7eb;
}

.stats-flex {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
    text-align: center;
}

.stat-item h3 {
    font-size: 48px;
    color: #2c0b4f;
    margin-bottom: 5px;
    font-weight: 800;
}

.stat-item p {
    font-size: 16px;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* --- CAMPAIGN PROCESS --- */
.campaign-section {
    padding: 100px 0;
    background: #fff;
}

.camp-row {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
}

.camp-row.reverse {
    flex-direction: row-reverse;
}

.camp-content {
    flex: 1;
}

.camp-visual {
    flex: 1;
    height: 350px;
    background: #f8f9fa;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Simple Charts using CSS */
.bar-chart {
    display: flex;
    align-items: flex-end;
    gap: 15px;
    height: 200px;
}

.bar {
    width: 30px;
    background: #E91E63;
    border-radius: 5px 5px 0 0;
    animation: growBar 2s ease-out forwards;
    height: 0;
}

.bar:nth-child(1) {
    height: 40%;
    animation-delay: 0.2s;
    opacity: 0.4;
}

.bar:nth-child(2) {
    height: 70%;
    animation-delay: 0.4s;
    opacity: 0.6;
}

.bar:nth-child(3) {
    height: 50%;
    animation-delay: 0.6s;
    opacity: 0.5;
}

.bar:nth-child(4) {
    height: 90%;
    animation-delay: 0.8s;
    opacity: 0.8;
}

.bar:nth-child(5) {
    height: 100%;
    animation-delay: 1s;
}

@keyframes growBar {
    from {
        height: 0;
    }
}

.camp-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c0b4f;
}

.camp-content ul {
    list-style: none;
    margin-top: 20px;
}

.camp-content li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #444;
}

.camp-content li i {
    color: #E91E63;
    font-size: 18px;
}

/* --- FOOTER STYLES (Identical) --- */
.footer {
    background: #f9f9f9;
    padding: 60px 0 30px;
    text-align: center;
    border-top: 1px solid #eee;
    position: relative;
    z-index: 2;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo img {
    height: 80px;
    margin-bottom: 15px;
    animation: bounce 2s infinite;
}

.footer-logo h3 {
    font-size: 24px;
    font-weight: 700;
    color: #333;
}

.footer-logo h3 span {
    display: block;
    font-size: 14px;
    color: #FF6A00;
    font-weight: 500;
}

.footer-logo p {
    color: #777;
    margin: 10px 0;
}

.tagline {
    font-weight: 600;
    color: #FF6A00 !important;
    font-size: 18px;
    margin: 15px 0 30px;
}

.footer-links a {
    margin: 0 15px;
    color: #666;
    font-size: 14px;
}

.footer-links a:hover {
    color: #FF6A00;
}

.footer-copyright {
    margin-top: 30px;
    color: #999;
    font-size: 13px;
}

/* --- ANIMATIONS --- */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-hidden {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.animate-hidden {
    transform: translateY(40px);
}

.fade-right.animate-hidden {
    transform: translateX(-40px);
}

.fade-left.animate-hidden {
    transform: translateX(40px);
}

.animate-active {
    opacity: 1 !important;
    transform: translate(0) scale(1) !important;
}

.stagger-children>* {
    opacity: 0;
    transform: translateY(20px);
    transition: 0.6s ease;
}

.stagger-children.animate-active>* {
    opacity: 1;
    transform: translateY(0);
}

.stagger-children.animate-active>*:nth-child(1) {
    transition-delay: 0.1s;
}

.stagger-children.animate-active>*:nth-child(2) {
    transition-delay: 0.2s;
}

.stagger-children.animate-active>*:nth-child(3) {
    transition-delay: 0.3s;
}

.stagger-children.animate-active>*:nth-child(4) {
    transition-delay: 0.4s;
}

.stagger-children.animate-active>*:nth-child(5) {
    transition-delay: 0.5s;
}

.stagger-children.animate-active>*:nth-child(6) {
    transition-delay: 0.6s;
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 992px) {
    .header-container {
        padding: 0 20px;
    }

    .nav {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-out;
        align-items: stretch;
        border-bottom: 1px solid #eee;
    }

    .nav.active {
        max-height: 600px;
    }

    .nav a {
        justify-content: center;
        padding: 15px;
        border-bottom: 1px solid #f9f9f9;
    }

    .nav .auth-buttons {
        flex-direction: column;
        padding: 20px;
        margin: 0;
    }

    .hamburger-menu {
        display: block;
    }

    .nav-dropdown {
        flex-direction: column;
        width: 100%;
    }

    .nav-dropdown-content {
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        box-shadow: none;
        border: none;
        background: #fafafa;
        display: none;
    }

    .nav-dropdown:hover .nav-dropdown-content {
        display: block;
    }

    .nav .nav-dropdown-content a {
        justify-content: center;
        border-bottom: 1px solid #eee;
    }

    .market-hero {
        flex-direction: column;
        text-align: center;
        justify-content: center;
        padding-top: 100px;
    }

    .funnel-container {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        margin-top: 50px;
        width: 100%;
        max-width: 350px;
        height: 300px;
    }

    .ms-grid,
    .stats-flex {
        grid-template-columns: 1fr;
        flex-direction: column;
        gap: 30px;
    }

    .camp-row,
    .camp-row.reverse {
        flex-direction: column;
        gap: 30px;
    }
}