/* ===========================
   Buffer-Inspired Modern Design
   =========================== */

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

:root {
    /* Buffer-inspired color palette */
    --primary-color: #2c4bff;
    --primary-hover: #1e3acc;
    --text-primary: #1a1a1a;
    --text-secondary: #5c5c5c;
    --text-light: #8c8c8c;
    --background: #ffffff;
    --background-secondary: #f9fafb;
    --border-color: #e5e7eb;
    --success-color: #10b981;
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-max: 1200px;
}

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

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* ===========================
   Navigation
   =========================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
}

.nav-logo .logo {
    height: 48px;
    width: auto;
}

.nav-logo .logo-text {
    font-size: 28px;
    font-weight: 700;
    color: #000000;
    letter-spacing: 0.05em;
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 8px;
}

.nav-link {
    padding: 8px 16px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.nav-link:hover {
    color: var(--text-primary);
    background: var(--background-secondary);
}

.btn-nav-primary {
    padding: 10px 20px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.btn-nav-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
}

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

.hamburger .bar {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: 0.3s;
}

/* ===========================
   Hero Section
   =========================== */

.hero {
    padding: 140px 0 100px;
    background: var(--background);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Social Media Background Icons - Clear & Vibrant Style */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        /* LinkedIn - Clear Vibrant Style */
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='64' height='64' viewBox='0 0 64 64'%3E%3Ccircle cx='32' cy='32' r='28' fill='white' stroke='%23cbd5e1' stroke-width='2'/%3E%3Cpath d='M20 25h6v20h-6V25zm3-8c1.7 0 3 1.3 3 3s-1.3 3-3 3-3-1.3-3-3 1.3-3 3-3zM46 25h-6v3c-.8-1.2-2.5-3-5-3-4 0-7 3-7 7v13h6V33c0-2 1.3-3 3-3s3 1 3 3v12h6V25z' fill='%230077b5'/%3E%3C/svg%3E"),
        /* YouTube - Clear Vibrant Style */
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='64' height='64' viewBox='0 0 64 64'%3E%3Ccircle cx='32' cy='32' r='28' fill='white' stroke='%23cbd5e1' stroke-width='2'/%3E%3Cpath d='M47 21c-.5-2-2-3.5-4-4C40 16 32 16 32 16s-8 0-11 1c-2 .5-3.5 2-4 4-1 3-1 9-1 9s0 6 1 9c.5 2 2 3.5 4 4 3 1 11 1 11 1s8 0 11-1c2-.5 3.5-2 4-4 1-3 1-9 1-9s0-6-1-9z' fill='%23ff0000'/%3E%3Cpolygon points='28,36 28,24 38,30' fill='white'/%3E%3C/svg%3E"),
        /* Facebook - Clear Vibrant Style */
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='64' height='64' viewBox='0 0 64 64'%3E%3Ccircle cx='32' cy='32' r='28' fill='white' stroke='%23cbd5e1' stroke-width='2'/%3E%3Cpath d='M40 18h-6c-3.3 0-6 2.7-6 6v5h-5v7h5v16h7V36h6l1-7h-7v-4c0-1 .8-2 2-2h5v-7z' fill='%231877f2'/%3E%3C/svg%3E"),
        /* Instagram - Clear Vibrant Style with Gradient */
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='64' height='64' viewBox='0 0 64 64'%3E%3Ccircle cx='32' cy='32' r='28' fill='white' stroke='%23cbd5e1' stroke-width='2'/%3E%3Cdefs%3E%3ClinearGradient id='ig2' x1='0%25' y1='100%25' x2='100%25' y2='0%25'%3E%3Cstop offset='0%25' style='stop-color:%23feda75'/%3E%3Cstop offset='50%25' style='stop-color:%23fa7e1e'/%3E%3Cstop offset='100%25' style='stop-color:%23d62976'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect x='16' y='16' width='32' height='32' rx='8' fill='url(%23ig2)'/%3E%3Crect x='19' y='19' width='26' height='26' rx='6' fill='none' stroke='white' stroke-width='3'/%3E%3Ccircle cx='32' cy='32' r='7' fill='none' stroke='white' stroke-width='3'/%3E%3Ccircle cx='40' cy='22' r='2.5' fill='white'/%3E%3C/svg%3E"),
        /* Twitter/X - Clear Vibrant Style */
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='64' height='64' viewBox='0 0 64 64'%3E%3Ccircle cx='32' cy='32' r='28' fill='white' stroke='%23cbd5e1' stroke-width='2'/%3E%3Cpath d='M29 18l8 10 9-10h5l-10 12 12 16h-9l-8-10-9 10h-5l11-12L21 18h9l6 9z' fill='%23000000'/%3E%3C/svg%3E"),
        /* Pinterest - Clear Vibrant Style */
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='64' height='64' viewBox='0 0 64 64'%3E%3Ccircle cx='32' cy='32' r='28' fill='white' stroke='%23cbd5e1' stroke-width='2'/%3E%3Cpath d='M32 14c-10 0-18 8-18 18 0 7.5 4.7 14 11.3 16.5-.2-1.4-.3-3.5 0-5 .3-1.3 2-8.5 2-8.5s-.5-1-.5-2.5c0-2.3 1.3-4 3-4 1.4 0 2 1 2 2.3 0 1.4-.9 3.5-1.3 5.4-.4 1.6.8 2.9 2.3 2.9 2.8 0 4.9-2.9 4.9-7.1 0-3.7-2.7-6.3-6.5-6.3-4.4 0-7 3.3-7 6.7 0 1.3.5 2.7 1.1 3.5.1.1.1.2.1.3-.1.5-.4 1.6-.4 1.8-.1.5-.3.6-.7.4-2.5-1.2-4-4.8-4-7.7 0-6.3 4.6-12.1 13.2-12.1 6.9 0 12.3 4.9 12.3 11.5 0 6.9-4.4 12.4-10.4 12.4-2 0-3.9-1-4.6-2.3 0 0-1 3.8-1.2 4.7-.4 1.8-1.5 4-2.2 5.4 1.7.5 3.5.8 5.4.8 10 0 18-8 18-18s-8-18-18-18z' fill='%23bd081c'/%3E%3C/svg%3E"),
        /* TikTok - Clear Vibrant Style */
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='64' height='64' viewBox='0 0 64 64'%3E%3Ccircle cx='32' cy='32' r='28' fill='white' stroke='%23cbd5e1' stroke-width='2'/%3E%3Cpath d='M45 19c-.6-.2-1.2-.3-1.8-.3-2.8 0-5.2 1.8-6 4.5V13h-7v32c0 2-1.6 3.7-3.7 3.7S22.8 47 22.8 45s1.6-3.7 3.7-3.7c.3 0 .5 0 .8.1V34c-.3 0-.5 0-.8 0-6.7 0-12 5.3-12 12s5.3 12 12 12 12-5.3 12-12V24c2.5 1.8 5.6 2.8 8.9 2.8v-7.3c-1.8 0-3.5-.6-4.7-1.6z' fill='%23000000'/%3E%3C/svg%3E");
    background-size: 64px 64px, 64px 64px, 64px 64px, 64px 64px, 64px 64px, 64px 64px, 64px 64px;
    background-position: 
        8% 15%, 
        88% 10%, 
        12% 85%, 
        85% 80%, 
        45% 5%, 
        22% 55%, 
        78% 40%;
    background-repeat: no-repeat;
    opacity: 0.85;
    z-index: 1;
    animation: floatBubbles 6s ease-in-out infinite;
}

/* Floating animation for bubbles */
@keyframes floatBubbles {
    0%, 100% {
        transform: translateY(0px);
    }
    25% {
        transform: translateY(-10px);
    }
    50% {
        transform: translateY(-5px);
    }
    75% {
        transform: translateY(-15px);
    }
}

/* Additional scattered icons - Clear & Vibrant Style */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        /* Heart - Clear Vibrant Style */
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='52' height='52' viewBox='0 0 52 52'%3E%3Ccircle cx='26' cy='26' r='23' fill='white' stroke='%23cbd5e1' stroke-width='2'/%3E%3Cpath d='M26 44l-2.5-2.3C14.2 33 8 28.3 8 22c0-5.4 4.6-10 10-10 3.4 0 6.6 1.7 8.2 4.5C28 14 31.2 12 34.6 12c5.4 0 10 4.6 10 10 0 6.3-6.2 11-15.4 19.7L26 44z' fill='%23fbbf24'/%3E%3C/svg%3E"),
        /* Rocket - Clear Vibrant Style */
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='52' height='52' viewBox='0 0 52 52'%3E%3Ccircle cx='26' cy='26' r='23' fill='white' stroke='%23cbd5e1' stroke-width='2'/%3E%3Cpath d='M26 6l-6 12-12-6v18l12 6 6-12 6 12 12-6V12l-12 6-6-12z' fill='%238b5cf6'/%3E%3C/svg%3E"),
        /* Star - Clear Vibrant Style */
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='52' height='52' viewBox='0 0 52 52'%3E%3Ccircle cx='26' cy='26' r='23' fill='white' stroke='%23cbd5e1' stroke-width='2'/%3E%3Cpath d='M26 8l4 12h12l-10 8 4 12-10-8-10 8 4-12-10-8h12z' fill='%23f59e0b'/%3E%3C/svg%3E"),
        /* Thumbs Up - Clear Vibrant Style */
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='52' height='52' viewBox='0 0 52 52'%3E%3Ccircle cx='26' cy='26' r='23' fill='white' stroke='%23cbd5e1' stroke-width='2'/%3E%3Cpath d='M20 42h-8v-20h8v20zm4-24c0-2 2-4 4-4h8c2 0 4 2 4 4l-2 10c0 2-2 4-4 4h-10c-2 0-4-2-4-4v-10z' fill='%2310b981'/%3E%3C/svg%3E"),
        /* Message - Clear Vibrant Style */
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='52' height='52' viewBox='0 0 52 52'%3E%3Ccircle cx='26' cy='26' r='23' fill='white' stroke='%23cbd5e1' stroke-width='2'/%3E%3Cpath d='M42 12H10c-2 0-4 2-4 4v20c0 2 2 4 4 4h8l6 6 6-6h12c2 0 4-2 4-4V16c0-2-2-4-4-4zm-4 20H14v-4h24v4zm0-6H14v-4h24v4z' fill='%236366f1'/%3E%3C/svg%3E"),
        /* Globe - Clear Vibrant Style */
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='52' height='52' viewBox='0 0 52 52'%3E%3Ccircle cx='26' cy='26' r='23' fill='white' stroke='%23cbd5e1' stroke-width='2'/%3E%3Ccircle cx='26' cy='26' r='16' fill='none' stroke='%2306b6d4' stroke-width='3'/%3E%3Cpath d='M26 10v32M10 26h32' stroke='%2306b6d4' stroke-width='2'/%3E%3Cellipse cx='26' cy='26' rx='8' ry='16' fill='none' stroke='%2306b6d4' stroke-width='2'/%3E%3C/svg%3E");
    background-size: 52px 52px, 52px 52px, 52px 52px, 52px 52px, 52px 52px, 52px 52px;
    background-position: 
        65% 25%, 
        25% 65%, 
        85% 45%, 
        35% 20%, 
        55% 80%, 
        5% 35%;
    background-repeat: no-repeat;
    opacity: 0.6;
    z-index: 1;
    animation: floatBubbles 8s ease-in-out infinite reverse;
}

.hero-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

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

.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-primary);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    text-align: center;
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 32px;
    font-weight: 400;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 16px;
}

.btn-primary-large {
    padding: 16px 32px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
}

.btn-primary-large:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(44, 75, 255, 0.3);
}

.hero-note {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 400;
    text-align: center;
}

/* ===========================
   Trusted By Section
   =========================== */

.trusted-by {
    padding: 60px 0;
    background: var(--background);
    border-bottom: 1px solid var(--border-color);
}

.trusted-title {
    text-align: center;
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ===========================
   Features Section
   =========================== */

.features {
    padding: var(--section-padding);
    background: linear-gradient(180deg, #ffffff 0%, #faf5ff 50%, #f0f9ff 100%);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: -300px;
    left: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.features::after {
    content: '';
    position: absolute;
    bottom: -300px;
    right: -200px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.section-header-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 64px;
    position: relative;
    z-index: 1;
}

.section-title-large {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    font-weight: 400;
    line-height: 1.6;
}

.features-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
}

.feature-card-modern {
    padding: 48px 36px;
    background: white;
    border-radius: 32px;
    border: 3px solid transparent;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.feature-card-modern::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.feature-card-modern:nth-child(1) {
    background: linear-gradient(135deg, #fef5ff 0%, #faf5ff 100%);
    border-color: rgba(168, 85, 247, 0.2);
}

.feature-card-modern:nth-child(1)::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.feature-card-modern:nth-child(2) {
    background: linear-gradient(135deg, #eff6ff 0%, #e0f2fe 100%);
    border-color: rgba(59, 130, 246, 0.2);
}

.feature-card-modern:nth-child(2)::before {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.feature-card-modern:nth-child(3) {
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
    border-color: rgba(16, 185, 129, 0.2);
}

.feature-card-modern:nth-child(3)::before {
    content: '';
    position: absolute;
    top: -25px;
    left: -25px;
    width: 110px;
    height: 110px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.feature-card-modern:nth-child(4) {
    background: linear-gradient(135deg, #fef3f2 0%, #fee2e2 100%);
    border-color: rgba(239, 68, 68, 0.2);
}

.feature-card-modern:nth-child(4)::before {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.feature-card-modern:nth-child(5) {
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    border-color: rgba(245, 158, 11, 0.2);
}

.feature-card-modern:nth-child(5)::before {
    content: '';
    position: absolute;
    top: -15px;
    right: -15px;
    width: 90px;
    height: 90px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.feature-card-modern:nth-child(6) {
    background: linear-gradient(135deg, #f0fdfa 0%, #ccfbf1 100%);
    border-color: rgba(20, 184, 166, 0.2);
}

.feature-card-modern:nth-child(6)::before {
    content: '';
    position: absolute;
    bottom: -25px;
    left: -25px;
    width: 115px;
    height: 115px;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.feature-card-modern:hover {
    transform: translateY(-16px) scale(1.05);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.feature-card-modern:hover::after {
    opacity: 1;
}

.feature-card-modern:nth-child(1):hover {
    border-color: rgba(168, 85, 247, 0.4);
    box-shadow: 0 25px 60px rgba(168, 85, 247, 0.3);
}

.feature-card-modern:nth-child(2):hover {
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 25px 60px rgba(59, 130, 246, 0.3);
}

.feature-card-modern:nth-child(3):hover {
    border-color: rgba(16, 185, 129, 0.4);
    box-shadow: 0 25px 60px rgba(16, 185, 129, 0.3);
}

.feature-card-modern:nth-child(4):hover {
    border-color: rgba(239, 68, 68, 0.4);
    box-shadow: 0 25px 60px rgba(239, 68, 68, 0.3);
}

.feature-card-modern:nth-child(5):hover {
    border-color: rgba(245, 158, 11, 0.4);
    box-shadow: 0 25px 60px rgba(245, 158, 11, 0.3);
}

.feature-card-modern:nth-child(6):hover {
    border-color: rgba(20, 184, 166, 0.4);
    box-shadow: 0 25px 60px rgba(20, 184, 166, 0.3);
}

.feature-icon-modern {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #a855f7, #ec4899);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 8px 30px rgba(168, 85, 247, 0.35);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.feature-card-modern:nth-child(1) .feature-icon-modern {
    background: linear-gradient(135deg, #a855f7, #c084fc);
    box-shadow: 0 10px 35px rgba(168, 85, 247, 0.4);
}

.feature-card-modern:nth-child(2) .feature-icon-modern {
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    box-shadow: 0 10px 35px rgba(59, 130, 246, 0.4);
}

.feature-card-modern:nth-child(3) .feature-icon-modern {
    background: linear-gradient(135deg, #10b981, #34d399);
    box-shadow: 0 10px 35px rgba(16, 185, 129, 0.4);
}

.feature-card-modern:nth-child(4) .feature-icon-modern {
    background: linear-gradient(135deg, #ef4444, #f87171);
    box-shadow: 0 10px 35px rgba(239, 68, 68, 0.4);
}

.feature-card-modern:nth-child(5) .feature-icon-modern {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    box-shadow: 0 10px 35px rgba(245, 158, 11, 0.4);
}

.feature-card-modern:nth-child(6) .feature-icon-modern {
    background: linear-gradient(135deg, #14b8a6, #2dd4bf);
    box-shadow: 0 10px 35px rgba(20, 184, 166, 0.4);
}

.feature-card-modern:hover .feature-icon-modern {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 15px 45px rgba(168, 85, 247, 0.5);
}

.feature-icon-modern i {
    font-size: 24px;
    color: white;
}

.feature-title-modern {
    font-size: 22px;
    font-weight: 700;
    background: linear-gradient(135deg, #1e293b, #334155);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.feature-description-modern {
    font-size: 16px;
    line-height: 1.8;
    color: #64748b;
    font-weight: 400;
}

/* ===========================
   How It Works Section
   =========================== */

.how-it-works-modern {
    padding: var(--section-padding);
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.how-it-works-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.how-it-works-modern::after {
    content: '';
    position: absolute;
    bottom: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    margin-top: 64px;
    position: relative;
    z-index: 1;
}

.step-modern {
    text-align: center;
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.step-modern:nth-child(1) {
    background: linear-gradient(135deg, #fef2f2 0%, #fef5f5 100%);
    border-color: rgba(255, 107, 107, 0.15);
}

.step-modern:nth-child(2) {
    background: linear-gradient(135deg, #f0fdf4 0%, #f0fdfa 100%);
    border-color: rgba(78, 205, 196, 0.15);
}

.step-modern:nth-child(3) {
    background: linear-gradient(135deg, #f0f9ff 0%, #f5f9ff 100%);
    border-color: rgba(69, 183, 209, 0.15);
}

.step-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #45b7d1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.step-modern:hover::before {
    opacity: 1;
}

.step-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.step-modern:nth-child(1):hover {
    background: linear-gradient(135deg, #fef5f5 0%, #fee2e2 100%);
    border-color: rgba(255, 107, 107, 0.25);
    box-shadow: 0 15px 50px rgba(255, 107, 107, 0.15);
}

.step-modern:nth-child(2):hover {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border-color: rgba(78, 205, 196, 0.25);
    box-shadow: 0 15px 50px rgba(78, 205, 196, 0.15);
}

.step-modern:nth-child(3):hover {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-color: rgba(69, 183, 209, 0.25);
    box-shadow: 0 15px 50px rgba(69, 183, 209, 0.15);
}

.step-modern:nth-child(1)::before {
    background: linear-gradient(90deg, #ff6b6b, #ec4899, #f43f5e);
}

.step-modern:nth-child(2)::before {
    background: linear-gradient(90deg, #14b8a6, #10b981, #22c55e);
}

.step-modern:nth-child(3)::before {
    background: linear-gradient(90deg, #3b82f6, #6366f1, #8b5cf6);
}

.step-number-modern {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 24px;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
}

.step-modern:nth-child(1) .step-number-modern {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e8e 100%);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
}

.step-modern:nth-child(2) .step-number-modern {
    background: linear-gradient(135deg, #4ecdc4 0%, #6ed3d6 100%);
    box-shadow: 0 8px 25px rgba(78, 205, 196, 0.3);
}

.step-modern:nth-child(3) .step-number-modern {
    background: linear-gradient(135deg, #45b7d1 0%, #67c3f3 100%);
    box-shadow: 0 8px 25px rgba(69, 183, 209, 0.3);
}

.step-number-modern:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
}

.step-icon-emoji {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
    line-height: 1;
}

.step-title-modern {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.step-modern:nth-child(1) .step-title-modern {
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.step-modern:nth-child(2) .step-title-modern {
    background: linear-gradient(135deg, #4ecdc4, #6ed3d6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.step-modern:nth-child(3) .step-title-modern {
    background: linear-gradient(135deg, #45b7d1, #67c3f3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.step-description-modern {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* ===========================
   Grow With Us Section
   =========================== */

.grow-with-us {
    padding: var(--section-padding);
    background: #f8fafc;
}

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

.grow-content {
    background: linear-gradient(135deg, #f0f9ff 0%, #fef3f2 100%);
    border-radius: 24px;
    padding: 60px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.grow-content::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.grow-content::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.grow-tabs {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    margin-bottom: 48px;
}

.tab-button {
    padding: 12px 24px;
    border: 2px solid var(--border-color);
    background: white;
    color: var(--text-secondary);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.tab-button.active {
    background: #0f172a;
    color: white;
    border-color: #0f172a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.3);
}

/* Tab-specific active colors */
.tab-button[data-tab="creators"].active {
    background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
    border-color: #a855f7;
    box-shadow: 0 8px 20px rgba(168, 85, 247, 0.3);
}

.tab-button[data-tab="small-business"].active {
    background: linear-gradient(135deg, #3b82f6 0%, #10b981 100%);
    border-color: #3b82f6;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

.tab-button[data-tab="agencies"].active {
    background: linear-gradient(135deg, #f97316 0%, #ef4444 100%);
    border-color: #f97316;
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.3);
}

.tab-button:hover:not(.active) {
    background: var(--background-secondary);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.grow-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.grow-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    background: linear-gradient(135deg, #0f172a 0%, #1e40af 50%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.grow-description {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.grow-features {
    list-style: none;
}

.grow-features li {
    padding: 12px 0;
    font-size: 16px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 16px;
}

.grow-features i {
    color: var(--success-color);
    font-size: 18px;
    width: 20px;
}

.grow-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.profile-card {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.profile-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.95);
}

/* Creators Tab - Purple/Pink Theme */
#creators .profile-card {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.15) 0%, rgba(236, 72, 153, 0.15) 100%);
    border: 2px solid rgba(168, 85, 247, 0.3);
    box-shadow: 0 8px 25px rgba(168, 85, 247, 0.15);
}

#creators .profile-card:hover {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.25) 0%, rgba(236, 72, 153, 0.25) 100%);
    border-color: rgba(168, 85, 247, 0.5);
    box-shadow: 0 15px 40px rgba(168, 85, 247, 0.3);
    transform: translateY(-6px) scale(1.02);
}

#creators .profile-username {
    background: linear-gradient(135deg, #7c3aed, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

#creators .profile-stats {
    color: #a855f7;
    font-weight: 600;
}

/* Small Business Tab - Blue/Green Theme */
#small-business .profile-card {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(16, 185, 129, 0.15) 100%);
    border: 2px solid rgba(59, 130, 246, 0.3);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
}

#small-business .profile-card:hover {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.25) 0%, rgba(16, 185, 129, 0.25) 100%);
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.3);
    transform: translateY(-6px) scale(1.02);
}

#small-business .profile-username {
    background: linear-gradient(135deg, #1e40af, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

#small-business .profile-stats {
    color: #3b82f6;
    font-weight: 600;
}

/* Agencies Tab - Orange/Red Theme */
#agencies .profile-card {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.15) 0%, rgba(239, 68, 68, 0.15) 100%);
    border: 2px solid rgba(249, 115, 22, 0.3);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.15);
}

#agencies .profile-card:hover {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.25) 0%, rgba(239, 68, 68, 0.25) 100%);
    border-color: rgba(249, 115, 22, 0.5);
    box-shadow: 0 15px 40px rgba(249, 115, 22, 0.3);
    transform: translateY(-6px) scale(1.02);
}

#agencies .profile-username {
    background: linear-gradient(135deg, #dc2626, #f97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

#agencies .profile-stats {
    color: #f97316;
    font-weight: 600;
}

.profile-image {
    position: relative;
    width: 60px;
    height: 60px;
}

.profile-image img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

#creators .profile-image img {
    border-color: rgba(168, 85, 247, 0.3);
}

#small-business .profile-image img {
    border-color: rgba(59, 130, 246, 0.3);
}

#agencies .profile-image img {
    border-color: rgba(249, 115, 22, 0.3);
}

.social-badge {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
    font-size: 12px;
}

.social-badge.twitter {
    background: #000000;
    color: white;
}

.social-badge.linkedin {
    background: #007bb6;
    color: white;
}

.social-badge.instagram {
    background: linear-gradient(45deg, #f58529, #dd2a7b, #feda77);
    color: white;
}

.social-badge.facebook {
    background: #1877f2;
    color: white;
}

.profile-username {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.profile-stats {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ===========================
   Testimonials Section
   =========================== */

.testimonials-modern {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-modern::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.testimonials-modern::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -20%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.testimonials-modern .section-title-large {
    color: #0f172a;
}

.testimonials-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 64px;
    position: relative;
    z-index: 1;
    align-items: start;
}

.testimonial-card-modern:nth-child(2) {
    margin-top: 40px;
}

.testimonial-card-modern {
    background: white;
    backdrop-filter: blur(10px);
    padding: 48px 40px;
    border-radius: 32px 8px 32px 8px;
    border: 2px solid rgba(139, 92, 246, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.testimonial-card-modern:nth-child(1) {
    transform: rotate(-1deg);
    border-radius: 40px 8px 40px 8px;
}

.testimonial-card-modern:nth-child(2) {
    transform: rotate(0deg);
    border-radius: 8px 40px 8px 40px;
}

.testimonial-card-modern:nth-child(3) {
    transform: rotate(1deg);
    border-radius: 40px 8px 40px 8px;
}

.testimonial-card-modern:nth-child(1) {
    background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 100%);
    border-color: rgba(168, 85, 247, 0.2);
}

.testimonial-card-modern:nth-child(2) {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-color: rgba(59, 130, 246, 0.2);
}

.testimonial-card-modern:nth-child(3) {
    background: linear-gradient(135deg, #f0fdfa 0%, #ccfbf1 100%);
    border-color: rgba(20, 184, 166, 0.2);
}

.testimonial-card-modern::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 2px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.4), rgba(59, 130, 246, 0.4));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.testimonial-card-modern:hover::before {
    opacity: 1;
}

.testimonial-card-modern:nth-child(1):hover {
    background: linear-gradient(135deg, #f5f0ff 0%, #f3e8ff 100%);
    border-color: rgba(168, 85, 247, 0.3);
    box-shadow: 0 20px 50px rgba(168, 85, 247, 0.15);
    transform: translateY(-12px) rotate(0deg) scale(1.03);
}

.testimonial-card-modern:nth-child(2):hover {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.15);
    transform: translateY(-12px) rotate(0deg) scale(1.03);
}

.testimonial-card-modern:nth-child(3):hover {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border-color: rgba(20, 184, 166, 0.3);
    box-shadow: 0 20px 50px rgba(20, 184, 166, 0.15);
    transform: translateY(-12px) rotate(0deg) scale(1.03);
}

.testimonial-text-modern {
    font-size: 17px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 32px;
    font-style: italic;
    position: relative;
    padding-left: 24px;
}

.testimonial-text-modern::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 48px;
    color: rgba(139, 92, 246, 0.3);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card-modern:nth-child(1) .testimonial-text-modern::before {
    background: linear-gradient(135deg, #a855f7, #c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.testimonial-card-modern:nth-child(2) .testimonial-text-modern::before {
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.testimonial-card-modern:nth-child(3) .testimonial-text-modern::before {
    background: linear-gradient(135deg, #14b8a6, #2dd4bf);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.author-name-modern {
    font-size: 16px;
    font-weight: 700;
    background: linear-gradient(135deg, #8b5cf6, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 6px;
}

.author-title-modern {
    font-size: 14px;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

/* ===========================
   CTA Section
   =========================== */

.cta-modern {
    padding: 100px 0;
    background: var(--background);
}

.cta-content-modern {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title-modern {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.cta-description-modern {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.cta-buttons-modern {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 16px;
}

.cta-note-modern {
    font-size: 14px;
    color: var(--text-light);
}

/* ===========================
   Footer
   =========================== */

.footer-modern {
    padding: 80px 0 40px;
    background: var(--background);
    border-top: 1px solid var(--border-color);
}

.footer-content-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    margin-bottom: 60px;
}

.footer-title-modern {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links-modern {
    list-style: none;
}

.footer-links-modern li {
    margin-bottom: 12px;
}

.footer-links-modern a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s ease;
}

.footer-links-modern a:hover {
    color: var(--text-primary);
}

.footer-bottom-modern {
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo-modern {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 22px;
    font-weight: 700;
    color: #000000;
    letter-spacing: 0.05em;
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    text-transform: uppercase;
}

.footer-logo-img {
    height: 36px;
    width: auto;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.social-link-modern {
    width: 36px;
    height: 36px;
    background: var(--background-secondary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.2s ease;
}

.social-link-modern:hover {
    background: var(--primary-color);
    color: white;
}

.copyright-modern {
    font-size: 14px;
    color: var(--text-light);
}

/* ===========================
   Responsive Design
   =========================== */

@media (max-width: 1024px) {
    .hero-container {
        gap: 60px;
    }
    
    .hero-title {
        font-size: 52px;
    }
    
    .features-grid-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    
    .pricing-grid-modern {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--background);
        width: 100%;
    text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
        align-items: stretch;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        padding: 16px;
        margin: 4px 16px;
    }
    
    .btn-nav-primary {
        margin: 8px 16px;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero {
        padding: 120px 0 80px;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .section-title-large {
        font-size: 36px;
    }
    
    .features-grid-modern,
    .steps-grid,
    .testimonials-grid-modern {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .grow-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .grow-content {
        padding: 40px 24px;
    }
    
    .grow-tabs {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .grow-title {
        font-size: 36px;
    }
    
    .footer-content-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .footer-bottom-modern {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
    
    .cta-title-modern {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }
    
    .section-title-large {
        font-size: 28px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn-primary-large {
        width: 100%;
        justify-content: center;
    }
    
    .footer-content-modern {
        grid-template-columns: 1fr;
    }
}

/* ===========================
   Animations
   =========================== */

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

.hero-content,
.hero-image {
    animation: fadeInUp 0.8s ease-out;
}

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