/* CSS Variables */
:root {
    --primary-color: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --secondary-color: #8b5cf6;
    --secondary-dark: #7c3aed;
    --accent-color: #f59e0b;
    --accent-light: #fbbf24;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --error-color: #ef4444;
    --text-dark: #111827;
    --text-medium: #374151;
    --text-light: #6b7280;
    --text-muted: #9ca3af;
    --bg-primary: #ffffff;
    --bg-secondary: #f9fafb;
    --bg-tertiary: #f3f4f6;
    --border-light: #e5e7eb;
    --border-medium: #d1d5db;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-primary);
    overflow-x: hidden;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    width: 32px;
    height: 32px;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #2563eb;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #2563eb;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #2563eb;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    overflow: hidden;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out;
}

.gradient-text {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-badges {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.badge-icon {
    color: #4ade80;
    font-weight: bold;
}

.hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.btn {
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: #ffd700;
    color: #333;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover {
    background: #ffed4e;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #333;
    transform: translateY(-2px);
}

/* Hero Visual - Product Stack */
.hero-visual {
    position: relative;
    height: 500px;
    animation: fadeInRight 1s ease-out 0.8s both;
}

.product-stack {
    position: relative;
    width: 100%;
    height: 100%;
}

.stack-item {
    position: absolute;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transition: transform 0.3s ease;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.stack-item:hover {
    transform: translateY(-10px) scale(1.02);
    z-index: 10;
}

.stack-1 {
    top: 0;
    left: 0;
    width: 280px;
    height: 200px;
    z-index: 3;
    animation: float 6s ease-in-out infinite;
}

.stack-2 {
    top: 50px;
    left: 100px;
    width: 280px;
    height: 200px;
    z-index: 2;
    animation: float 6s ease-in-out infinite 2s;
}

.stack-3 {
    top: 100px;
    left: 200px;
    width: 280px;
    height: 200px;
    z-index: 1;
    animation: float 6s ease-in-out infinite 4s;
}

.stack-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.stack-item:hover .stack-image {
    transform: scale(1.1);
}

/* Digital Journey Section */
.digital-journey {
    padding: 100px 0;
    background: #ffffff;
    color: #1f2937;
    position: relative;
    overflow: hidden;
}

.digital-journey::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(59,130,246,0.05)"/><circle cx="75" cy="75" r="1" fill="rgba(59,130,246,0.05)"/><circle cx="50" cy="10" r="0.5" fill="rgba(59,130,246,0.03)"/><circle cx="10" cy="60" r="0.5" fill="rgba(59,130,246,0.03)"/><circle cx="90" cy="40" r="0.5" fill="rgba(59,130,246,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.5;
}

.journey-timeline {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-top: 80px;
    position: relative;
}

.journey-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, rgba(59,130,246,0.3), rgba(59,130,246,0.1));
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.timeline-item:nth-child(1).animate {
    transition-delay: 0.2s;
}

.timeline-item:nth-child(2).animate {
    transition-delay: 0.4s;
}

.timeline-item:nth-child(3).animate {
    transition-delay: 0.6s;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-number {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 60px;
    height: 60px;
    background: #3b82f6;
    border: 3px solid #60a5fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    z-index: 2;
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.timeline-item.animate .timeline-number {
    transform: translate(-50%, -50%) scale(1);
}

.timeline-content {
    flex: 1;
    max-width: 500px;
    padding: 40px;
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border-radius: 20px;
    border: 1px solid #93c5fd;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.1);
    transition: all 0.3s ease;
    transform: translateX(-30px);
    opacity: 0;
}

.timeline-item.animate .timeline-content {
    transform: translateX(0);
    opacity: 1;
}

.timeline-item:nth-child(even) .timeline-content {
    transform: translateX(30px);
}

.timeline-item:nth-child(even).animate .timeline-content {
    transform: translateX(0);
}

.timeline-content:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, #bfdbfe 0%, #93c5fd 100%);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
}

.timeline-icon {
    width: 60px;
    height: 60px;
    background: #3b82f6;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    transform: scale(0) rotate(180deg);
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.timeline-item.animate .timeline-icon {
    transform: scale(1) rotate(0deg);
}

.timeline-content h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1e40af;
}

.timeline-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #374151;
}

.timeline-stats {
    display: flex;
    gap: 30px;
}

.stat {
    text-align: center;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s ease;
}

.timeline-item.animate .stat {
    transform: translateY(0);
    opacity: 1;
}

.timeline-item.animate .stat:nth-child(1) {
    transition-delay: 0.3s;
}

.timeline-item.animate .stat:nth-child(2) {
    transition-delay: 0.5s;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.journey-cta {
    margin-top: 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 60px;
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border-radius: 25px;
    border: 1px solid #93c5fd;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.1);
}

.cta-content h3 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1e40af;
}

.cta-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: white;
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 600;
}

.success-metrics {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.metric {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    border: 1px solid #93c5fd;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.1);
    transition: all 0.3s ease;
}

.metric:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
}

.metric-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #3b82f6;
    border-radius: 12px;
    color: white;
}

.metric-text {
    display: flex;
    flex-direction: column;
}

.metric-number {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 2px;
}

.metric-label {
    font-size: 0.9rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Product Showcase Section */
.product-showcase {
    padding: 80px 0;
    background: white;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.product-visual {
    position: relative;
    height: 150px;
    overflow: hidden;
}

.visual-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
}

/* Visual Backgrounds */
.reels-visual .visual-bg {
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
}

.social-visual .visual-bg {
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
}

.prompts-visual .visual-bg {
    background: linear-gradient(135deg, #a8edea, #fed6e3);
}

.funnels-visual .visual-bg {
    background: linear-gradient(135deg, #ff9a9e, #fecfef);
}

.canva-visual .visual-bg {
    background: linear-gradient(135deg, #ffecd2, #fcb69f);
}

.notion-visual .visual-bg {
    background: linear-gradient(135deg, #a8c0ff, #3f2b96);
}

.video-visual .visual-bg {
    background: linear-gradient(135deg, #ff9a9e, #fad0c4);
}

.website-visual .visual-bg {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

/* 3D Device Mockups */
.device-mockup {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.laptop-device {
    width: 180px;
    height: 120px;
    background: linear-gradient(145deg, #e8e8e8, #d0d0d0);
    border-radius: 12px;
    padding: 8px;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    transform: perspective(1000px) rotateX(5deg) rotateY(-5deg);
}

.laptop-screen {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
}

.tablet-device {
    width: 140px;
    height: 100px;
    background: linear-gradient(145deg, #e8e8e8, #d0d0d0);
    border-radius: 16px;
    padding: 6px;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    transform: perspective(1000px) rotateX(5deg) rotateY(5deg);
}

.tablet-screen {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
}

.phone-device {
    width: 100px;
    height: 160px;
    background: linear-gradient(145deg, #e8e8e8, #d0d0d0);
    border-radius: 20px;
    padding: 8px;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    transform: perspective(1000px) rotateX(5deg) rotateY(-5deg);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
}

.monitor-device {
    width: 200px;
    height: 130px;
    background: linear-gradient(145deg, #e8e8e8, #d0d0d0);
    border-radius: 8px;
    padding: 8px;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    transform: perspective(1000px) rotateX(5deg) rotateY(-5deg);
}

.monitor-screen {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Interface Elements */
.canva-interface {
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 8px;
}

.search-bar {
    background: #f0f0f0;
    height: 24px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    font-size: 0.7rem;
    color: #666;
}

.template-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
    flex: 1;
}

.template-item {
    background: #e0e0e0;
    border-radius: 4px;
    min-height: 20px;
}

.notion-interface {
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 8px;
}

.notion-header {
    background: #f0f0f0;
    height: 20px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    padding: 0 8px;
    font-size: 0.7rem;
    color: #666;
}

.notion-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.content-block {
    background: #f8f9fa;
    height: 16px;
    border-radius: 2px;
    border-left: 3px solid #667eea;
}

.video-editor-interface {
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 8px;
}

.timeline-bar {
    background: #2a2a2a;
    height: 20px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    padding: 0 8px;
    font-size: 0.7rem;
    color: white;
}

.video-preview-area {
    flex: 1;
    background: #f0f0f0;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.play-button {
    width: 30px;
    height: 30px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
}

.website-interface {
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 8px;
}

.website-header {
    background: #667eea;
    height: 20px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    padding: 0 8px;
    font-size: 0.7rem;
    color: white;
}

.nav-bar {
    background: rgba(255, 255, 255, 0.2);
    height: 12px;
    border-radius: 2px;
    flex: 1;
    margin: 0 8px;
}

.website-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.hero-section {
    background: #f0f0f0;
    height: 24px;
    border-radius: 4px;
}

.content-section {
    background: #e8e8e8;
    flex: 1;
    border-radius: 4px;
}

/* Floating Brand Icons */
.floating-brand-icon {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: bold;
    color: white;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    animation: float 3s ease-in-out infinite;
}

.canva-brand {
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
    top: 20px;
    right: 20px;
    animation-delay: 0s;
}

.canva-brand-2 {
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
    bottom: 20px;
    left: 20px;
    animation-delay: 1.5s;
}

.notion-brand {
    background: linear-gradient(135deg, #000000, #333333);
    top: 20px;
    left: 20px;
    animation-delay: 0.5s;
}

.instagram-brand {
    background: linear-gradient(135deg, #e1306c, #fd1d1d);
    top: 20px;
    right: 20px;
    animation-delay: 0s;
}

.instagram-brand-2 {
    background: linear-gradient(135deg, #e1306c, #fd1d1d);
    bottom: 20px;
    left: 20px;
    animation-delay: 1.5s;
}

.facebook-brand {
    background: linear-gradient(135deg, #1877f2, #42a5f5);
    top: 20px;
    right: 20px;
    animation-delay: 0.5s;
}

.instagram-brand-small {
    background: linear-gradient(135deg, #e1306c, #fd1d1d);
    bottom: 20px;
    left: 20px;
    width: 30px;
    height: 30px;
    animation-delay: 1s;
}

.chatgpt-brand {
    background: linear-gradient(135deg, #10a37f, #1a7f64);
    top: 20px;
    right: 20px;
    animation-delay: 0.8s;
}

.target-brand {
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
    top: 20px;
    right: 20px;
    animation-delay: 0.3s;
}

.target-brand-2 {
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
    bottom: 20px;
    left: 20px;
    animation-delay: 1.2s;
}

.floating-camera-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 40px;
    animation: float 3s ease-in-out infinite 1s;
}

.camera-body {
    width: 100%;
    height: 30px;
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
    border-radius: 8px;
    position: relative;
}

.camera-lens {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 12px;
    height: 12px;
    background: #333;
    border-radius: 50%;
}

.play-icon {
    position: absolute;
    top: 8px;
    left: 8px;
    width: 16px;
    height: 16px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    color: #ff6b6b;
}

.floating-browser-window {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 40px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    animation: float 3s ease-in-out infinite 0.8s;
}

.browser-header {
    height: 20px;
    background: #f0f0f0;
    border-radius: 8px 8px 0 0;
    display: flex;
    align-items: center;
    padding: 0 6px;
    gap: 4px;
}

.browser-header .search-bar {
    flex: 1;
    height: 12px;
    background: white;
    border-radius: 6px;
    font-size: 0.5rem;
    padding: 0 4px;
}

.search-icon {
    font-size: 0.6rem;
    color: #666;
}

/* Additional Interface Elements */
.reels-interface {
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-frame {
    width: 60px;
    height: 60px;
    background: #ff6b6b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.social-interface {
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 8px;
}

.post-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
    flex: 1;
}

.post-item {
    background: #f0f0f0;
    border-radius: 4px;
    min-height: 20px;
}

.chatgpt-interface {
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 8px;
}

.chat-message {
    background: #e3f2fd;
    padding: 6px 8px;
    border-radius: 8px;
    font-size: 0.6rem;
    text-align: left;
}

.chat-response {
    background: #f3e5f5;
    padding: 6px 8px;
    border-radius: 8px;
    font-size: 0.6rem;
    text-align: left;
}

.dashboard {
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
    padding: 8px;
}

.dashboard-item {
    background: #f0f0f0;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: #666;
}

/* Product Image Container */
.product-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Floating Icons */
.floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.icon {
    position: absolute;
    font-size: 1.5rem;
    animation: float 3s ease-in-out infinite;
}

.instagram-icon {
    top: 20px;
    right: 20px;
    animation-delay: 0s;
}

.facebook-icon {
    bottom: 20px;
    left: 20px;
    animation-delay: 1.5s;
}

.chatgpt-icon {
    top: 30px;
    left: 20px;
    animation-delay: 0.5s;
}

.target-icon {
    bottom: 30px;
    right: 20px;
    animation-delay: 2s;
}

.canva-icon {
    top: 20px;
    left: 30px;
    animation-delay: 1s;
}

.notion-icon {
    bottom: 20px;
    right: 30px;
    animation-delay: 2.5s;
}

.video-icon {
    top: 40px;
    right: 30px;
    animation-delay: 0.8s;
}

.play-icon {
    bottom: 40px;
    left: 30px;
    animation-delay: 1.8s;
}

.website-icon {
    top: 30px;
    right: 40px;
    animation-delay: 1.2s;
}

.search-icon {
    bottom: 30px;
    left: 40px;
    animation-delay: 2.2s;
}

/* Product Content */
.product-content {
    padding: 25px;
}

.product-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.product-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    flex-shrink: 0;
}

.reels-icon {
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
}

.social-icon {
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
}

.prompts-icon {
    background: linear-gradient(135deg, #a8edea, #fed6e3);
    color: #333;
}

.funnels-icon {
    background: linear-gradient(135deg, #ff9a9e, #fecfef);
}

.canva-icon {
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
}

.notion-icon {
    background: linear-gradient(135deg, #000000, #333333);
}

.video-icon {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.website-icon {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.product-quantity {
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 500;
}

.product-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin-left: 10px;
}

.product-description {
    color: #6b7280;
        font-size: .875rem;
    line-height: 1.25rem;
    margin-bottom: 20px;
}

.product-btn {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    color: white;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-size: 12px!important;
}

.product-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.product-btn:hover::before {
    left: 100%;
}

.reels-btn {
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
}

.social-btn {
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
}

.prompts-btn {
    background: linear-gradient(135deg, #a8edea, #fed6e3);
    color: #333;
}

.funnels-btn {
    background: linear-gradient(135deg, #ff9a9e, #fecfef);
}

.canva-btn {
    background: linear-gradient(135deg, #ffecd2, #fcb69f);
    color: #333;
}

.notion-btn {
    background: linear-gradient(135deg, #a8c0ff, #3f2b96);
}

.video-btn {
    background: linear-gradient(135deg, #ff9a9e, #fad0c4);
}

.website-btn {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.product-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Problem Solution Section */
.problem-solution {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.problem-solution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

.problem-section h2,
.solution-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

.problem-section h2 {
    color: #dc2626;
}

.solution-section h2 {
    color: #059669;
}

.problem-list,
.solution-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.problem-item,
.solution-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.problem-item:hover,
.solution-item:hover {
    transform: translateX(5px);
}

.problem-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.solution-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.problem-item p,
.solution-item p {
    color: #374151;
    font-weight: 500;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background: white;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.step-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.step-card:hover {
    transform: translateY(-10px);
    border-color: #667eea;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1f2937;
}

.step-card p {
    color: #6b7280;
    line-height: 1.6;
}



/* Success Stories Section */
.success-stories {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.success-stories::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23667eea" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
}

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.testimonial-rating {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.star {
    font-size: 1.2rem;
    color: #ffd700;
    filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
}

.testimonial-content {
    margin-bottom: 25px;
    position: relative;
}

.testimonial-content::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: -10px;
    font-size: 4rem;
    color: #667eea;
    opacity: 0.2;
    font-family: serif;
    line-height: 1;
}

.testimonial-content p {
    font-style: italic;
    color: #374151;
    line-height: 1.7;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
    margin-left: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #667eea;
    position: relative;
}

.avatar-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info {
    flex: 1;
}

.author-info h4 {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.author-info span {
    color: #6b7280;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 5px;
}

.author-verification {
    color: #10b981;
    font-size: 0.8rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Testimonials Stats */
.testimonials-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 60px;
    padding: 40px 0;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #667eea;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: #6b7280;
    font-size: 1rem;
    font-weight: 500;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1f2937;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    border-color: #2563eb;
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #2563eb;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-header {
    margin-bottom: 30px;
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1f2937;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    margin-bottom: 10px;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2563eb;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: #2563eb;
}

.pricing-period {
    color: #6b7280;
    font-size: 0.9rem;
}

.pricing-features {
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    text-align: left;
}

.check {
    color: #10b981;
    font-weight: bold;
    font-size: 1.1rem;
}

.pricing-btn {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: #f9fafb;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #f9fafb;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2563eb;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 30px 25px;
    max-height: 200px;
}

.faq-answer p {
    color: #6b7280;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-description {
    color: #9ca3af;
    line-height: 1.6;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-link {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 20px;
    text-align: center;
    color: #9ca3af;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-badges {
        justify-content: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .journey-timeline::before {
        display: none;
    }
    
    .timeline-item {
        flex-direction: column !important;
        text-align: center;
        gap: 20px;
    }
    
    .timeline-number {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        margin-bottom: 20px;
    }
    
    .timeline-content {
        max-width: 100%;
    }
    
    .journey-cta {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .journey-cta .cta-content p{
        color:black!important;
    }
    .success-metrics {
        align-items: center;
    }
    
    .metric {
        justify-content: center;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .stack-1, .stack-2, .stack-3 {
        width: 200px;
        height: 150px;
    }
    
    .stack-2 {
        left: 50px;
    }
    
    .stack-3 {
        left: 100px;
    }
    
    .problem-solution-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-stats {
        flex-direction: column;
        gap: 30px;
        padding: 30px 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .stack-1, .stack-2, .stack-3 {
        width: 150px;
        height: 120px;
    }
    
    .stack-2 {
        left: 30px;
    }
    
    .stack-3 {
        left: 60px;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .product-visual {
        height: 150px;
    }
}