/* ============================================
   LeaseFlow - Professional B2B Real Estate Website
   Modern Design with Animations
   ============================================ */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
    /* Colors - Matching LeaseFlow logo */
    --primary-color: #1a4d7a;
    --primary-dark: #0f3554;
    --primary-medium: #2e5c8a;
    --primary-light: #4a90e2;
    --accent-color: #ff8c42;
    --accent-light: #ffa366;
    --secondary-color: #f5f7fa;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --text-muted: #95a5a6;
    --white: #ffffff;
    --border-color: #e1e8ed;
    --success-color: #27ae60;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #1a4d7a 0%, #2e5c8a 50%, #4a90e2 100%);
    --gradient-accent: linear-gradient(135deg, #ff8c42 0%, #ffa366 100%);
    --gradient-hero: linear-gradient(135deg, rgba(26, 77, 122, 0.95) 0%, rgba(46, 92, 138, 0.9) 50%, rgba(74, 144, 226, 0.85) 100%);
    
    /* Typography */
    --font-primary: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --font-heading: "Helvetica Neue", Arial, sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    
    /* Container */
    --container-width: 1200px;
    --container-padding: 1.5rem;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 16px;
    background-color: var(--white);
    overflow-x: hidden;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.animate-on-scroll {
    opacity: 1;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.animated {
    opacity: 1;
    animation: fadeInUp 0.8s ease-out forwards;
}

.fade-in-left {
    animation: fadeInLeft 0.8s ease-out;
}

.fade-in-right {
    animation: fadeInRight 0.8s ease-out;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: var(--spacing-sm);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

/* Navigation */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(26, 77, 122, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 4px 30px rgba(26, 77, 122, 0.15);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    min-height: 140px;
}

.logo {
    display: inline-flex;
    align-items: center;
    transition: transform 0.3s ease;
    height: 120px;
    line-height: 1;
}

.logo:hover {
    transform: scale(1.05);
}

.logo img {
    height: 120px;
    width: auto;
    display: block;
    object-fit: contain;
    vertical-align: middle;
    max-width: none;
}

.logo-text {
    display: none;
}

@media (max-width: 768px) {
    .logo {
        height: 80px;
    }
    
    .logo img {
        height: 80px;
    }
    
    .nav-wrapper {
        min-height: 100px;
        padding: 1rem 0;
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    background: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    transform: none !important;
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--primary-color);
}

.nav-menu a:hover {
    background: none !important;
    color: var(--primary-color);
    transform: none !important;
}

.nav-menu a.btn-cta,
.nav-menu a.btn-cta:hover {
    background: none !important;
    color: var(--text-dark) !important;
    padding: 0.5rem 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    transform: none !important;
}

.nav-menu a.btn-cta::before {
    display: none !important;
}

/* Login link in navigation */
.nav-menu a.nav-login {
    background: var(--gradient-primary) !important;
    color: white !important;
    padding: 0.5rem 1.25rem !important;
    border-radius: 8px !important;
    margin-left: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(26, 77, 122, 0.2);
}

.nav-menu a.nav-login:hover {
    background: var(--gradient-primary) !important;
    color: white !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(26, 77, 122, 0.3) !important;
}

@media (max-width: 768px) {
    .nav-menu a.nav-login {
        margin-left: 0;
        margin-top: 0.5rem;
        display: block;
        text-align: center;
    }
}

.btn-cta {
    background: var(--gradient-primary);
    color: var(--white) !important;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(26, 77, 122, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-accent);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 77, 122, 0.4);
}

.btn-cta:hover::before {
    left: 0;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero);
    animation: gradientShift 15s ease infinite;
    background-size: 200% 200%;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: var(--spacing-xl) 0;
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

.hero-content h1 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
    max-width: 800px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-subtitle {
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-cta {
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
    max-width: 700px;
}

.hero-cta {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(26, 77, 122, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-accent);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 77, 122, 0.4);
}

.btn-primary:hover::before {
    left: 0;
}

.btn-secondary {
    background-color: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--secondary-color);
}

.btn-large {
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
}

.btn-block {
    display: block;
    width: 100%;
}

/* Intro Section */
.intro {
    padding: var(--spacing-xl) 0;
    background-color: var(--secondary-color);
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
}

.intro-text {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
}

.intro-highlight {
    font-weight: 600;
    font-size: 1.25rem;
    color: var(--primary-color);
}

/* Section Titles */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: var(--spacing-lg);
    color: var(--text-dark);
}

.page-header {
    padding: var(--spacing-xl) 0;
    background-color: var(--secondary-color);
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
}

.page-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
}

.page-intro {
    font-size: 1.125rem;
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-dark);
}

/* What We Do / Features */
.what-we-do,
.how-it-works,
.why-leaseflow {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, rgba(26, 77, 122, 0.02) 0%, rgba(255, 140, 66, 0.02) 100%);
}

.features-grid,
.steps-grid,
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.benefit-item {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(26, 77, 122, 0.08);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    text-align: center;
    border: 2px solid transparent;
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 140, 66, 0.1), transparent);
    transition: left 0.6s ease;
}

.benefit-item:hover::before {
    left: 100%;
}

.benefit-item:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 12px 40px rgba(26, 77, 122, 0.15);
    border-color: var(--accent-color);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-md);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-shape {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: relative;
    animation: pulse 2s ease-in-out infinite;
}

.benefit-icon-1 .icon-shape {
    background: linear-gradient(135deg, #1a4d7a 0%, #2d6ba3 100%);
    box-shadow: 0 8px 24px rgba(26, 77, 122, 0.3);
}

.benefit-icon-1 .icon-shape::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40%;
    height: 40%;
    border: 3px solid white;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1.5s linear infinite;
}

.benefit-icon-2 .icon-shape {
    background: linear-gradient(135deg, #ff8c42 0%, #ff6b1a 100%);
    box-shadow: 0 8px 24px rgba(255, 140, 66, 0.3);
}

.benefit-icon-2 .icon-shape::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
    height: 50%;
    border: 3px solid white;
    border-radius: 8px;
    animation: rotate 3s linear infinite;
}

.benefit-icon-2 .icon-shape::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30%;
    height: 30%;
    background: white;
    border-radius: 50%;
}

.benefit-icon-3 .icon-shape {
    background: linear-gradient(135deg, #1a4d7a 0%, #ff8c42 100%);
    box-shadow: 0 8px 24px rgba(26, 77, 122, 0.3);
}

.benefit-icon-3 .icon-shape::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 30%;
    background: white;
    border-radius: 2px;
    animation: grow 1.5s ease-in-out infinite;
}

.benefit-icon-3 .icon-shape::after {
    content: '';
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 4px;
    background: white;
    border-radius: 2px;
    animation: grow 1.5s ease-in-out infinite 0.3s;
}

.benefit-icon-4 .icon-shape {
    background: linear-gradient(135deg, #2d6ba3 0%, #1a4d7a 100%);
    box-shadow: 0 8px 24px rgba(26, 77, 122, 0.3);
}

.benefit-icon-4 .icon-shape::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 50%;
    height: 50%;
    border: 3px solid white;
    border-right-color: transparent;
    border-bottom-color: transparent;
    border-radius: 8px 0 0 0;
    animation: pulse 2s ease-in-out infinite;
}

.benefit-icon-5 .icon-shape {
    background: linear-gradient(135deg, #ff8c42 0%, #1a4d7a 100%);
    box-shadow: 0 8px 24px rgba(255, 140, 66, 0.3);
}

.benefit-icon-5 .icon-shape::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
    border: 3px solid white;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.benefit-icon-5 .icon-shape::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30%;
    height: 30%;
    background: white;
    border-radius: 50%;
}

.benefit-item h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin: 0;
    font-weight: 600;
    transition: color 0.3s ease;
}

.benefit-item:hover h3 {
    color: var(--accent-color);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.9;
    }
}

@keyframes spin {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes rotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes grow {
    0%, 100% {
        transform: translateX(-50%) scaleY(1);
    }
    50% {
        transform: translateX(-50%) scaleY(1.3);
    }
}

.benefit-item.animated {
    animation: slideUp 0.6s ease-out forwards;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card,
.step-card {
    background-color: var(--white);
    padding: var(--spacing-md);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(26, 77, 122, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-top: 4px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature-card::before,
.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover::before,
.step-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover,
.step-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 8px 30px rgba(26, 77, 122, 0.2);
    border-top-color: var(--accent-color);
}

.feature-icon,
.step-number {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
    display: block;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    box-shadow: 0 4px 15px rgba(26, 77, 122, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.step-card:hover .step-number {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(26, 77, 122, 0.4);
}

.feature-list {
    list-style: none;
    margin-top: var(--spacing-sm);
}

.feature-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

/* Packages */
.packages {
    padding: var(--spacing-xl) 0;
}

.package-card {
    background-color: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.package-card:hover::before {
    transform: scaleX(1);
}

.package-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 12px 40px rgba(26, 77, 122, 0.15);
    transform: translateY(-8px);
}

.package-recommended {
    border-color: var(--accent-color);
    border-width: 3px;
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.05) 0%, rgba(255, 163, 102, 0.05) 100%);
}

.package-recommended::before {
    background: var(--gradient-accent);
    height: 6px;
}

.package-badge {
    position: absolute;
    top: -15px;
    right: var(--spacing-md);
    background: var(--gradient-accent);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 140, 66, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

.package-header {
    margin-bottom: var(--spacing-md);
}

.package-header h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
}

.package-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    font-weight: 500;
}

.package-description {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
}

.package-details,
.package-suitable {
    margin-bottom: var(--spacing-md);
}

.package-details h3,
.package-suitable h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
}

.package-features {
    list-style: none;
}

.package-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.package-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1;
}

.package-pricing {
    background-color: var(--secondary-color);
    padding: var(--spacing-md);
    border-radius: 8px;
    margin-bottom: var(--spacing-md);
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-sm);
}

.price-label {
    font-weight: 500;
    color: var(--text-dark);
}

.price-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price-note {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: var(--spacing-sm);
    padding-top: var(--spacing-sm);
    border-top: 1px solid var(--border-color);
}

/* Additional Services */
.additional-services {
    padding: var(--spacing-xl) 0;
    background-color: var(--secondary-color);
}

.services-list {
    max-width: 800px;
    margin: 0 auto;
}

.service-item {
    background-color: var(--white);
    padding: var(--spacing-md);
    border-radius: 8px;
    margin-bottom: var(--spacing-md);
}

.service-item h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
    color: var(--primary-color);
}

.service-prices {
    list-style: none;
}

.service-prices li {
    display: flex;
    justify-content: space-between;
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid var(--border-color);
}

.service-prices li:last-child {
    border-bottom: none;
}

.service-name {
    flex: 1;
    color: var(--text-dark);
}

.service-price {
    font-weight: 600;
    color: var(--primary-color);
}

/* Who It's For */
.who-its-for {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, rgba(26, 77, 122, 0.03) 0%, rgba(255, 140, 66, 0.03) 100%);
    position: relative;
    overflow: hidden;
}

.who-its-for::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 20%, rgba(26, 77, 122, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255, 140, 66, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.who-its-for .section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.125rem;
    max-width: 700px;
    margin: var(--spacing-md) auto var(--spacing-xl);
}

.target-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.target-item {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(26, 77, 122, 0.08);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.target-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 140, 66, 0.1), transparent);
    transition: left 0.6s ease;
}

.target-item:hover::before {
    left: 100%;
}

.target-item:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 12px 40px rgba(26, 77, 122, 0.15);
    border-color: var(--accent-color);
}

.target-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-md);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.target-icon-shape {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: targetPulse 2s ease-in-out infinite;
}

.target-icon-1 {
    background: linear-gradient(135deg, #1a4d7a 0%, #2d6ba3 100%);
    box-shadow: 0 8px 24px rgba(26, 77, 122, 0.3);
}

.target-icon-1 .icon-inner {
    width: 50%;
    height: 50%;
    background: var(--white);
    border-radius: 8px;
    position: relative;
}

.target-icon-1 .icon-inner::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 20%;
    width: 60%;
    height: 60%;
    background: var(--primary-color);
    border-radius: 4px;
}

.target-icon-2 {
    background: linear-gradient(135deg, #ff8c42 0%, #ff6b1a 100%);
    box-shadow: 0 8px 24px rgba(255, 140, 66, 0.3);
}

.target-icon-2 .icon-inner {
    width: 60%;
    height: 60%;
    border: 4px solid var(--white);
    border-radius: 50%;
    position: relative;
}

.target-icon-2 .icon-inner::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30%;
    height: 30%;
    background: var(--white);
    border-radius: 50%;
}

.target-icon-3 {
    background: linear-gradient(135deg, #1a4d7a 0%, #ff8c42 100%);
    box-shadow: 0 8px 24px rgba(26, 77, 122, 0.3);
}

.target-icon-3 .icon-inner {
    width: 70%;
    height: 70%;
    background: var(--white);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    position: relative;
}

.target-icon-3 .icon-inner::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40%;
    height: 40%;
    background: var(--accent-color);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.target-icon-4 {
    background: linear-gradient(135deg, #2d6ba3 0%, #1a4d7a 100%);
    box-shadow: 0 8px 24px rgba(26, 77, 122, 0.3);
}

.target-icon-4 .icon-inner {
    width: 55%;
    height: 55%;
    background: var(--white);
    border-radius: 12px;
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
    padding: 4px;
}

.target-icon-4 .icon-inner::before,
.target-icon-4 .icon-inner::after {
    content: '';
    background: var(--primary-color);
    border-radius: 4px;
}

.target-item h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: var(--spacing-sm) 0 var(--spacing-md);
    font-weight: 600;
    transition: color 0.3s ease;
}

.target-item:hover h3 {
    color: var(--accent-color);
}

.target-item p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

@keyframes targetPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* CTA Section */
.cta-section {
    padding: var(--spacing-xl) 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
    animation: gradientShift 20s ease infinite;
}

.cta-box {
    text-align: center;
    color: var(--white);
    max-width: 700px;
    margin: 0 auto;
}

.cta-box h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
}

.cta-box p {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-lg);
    color: rgba(255, 255, 255, 0.95);
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-secondary {
    background-color: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
}

.cta-buttons .btn-secondary:hover {
    background-color: var(--secondary-color);
}

/* Footer */
.footer {
    background-color: var(--text-dark);
    color: var(--white);
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-section h3,
.footer-section h4 {
    color: var(--white);
    margin-bottom: var(--spacing-sm);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--spacing-xs);
}

.footer-tagline {
    font-style: italic;
    color: rgba(255, 255, 255, 0.7);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: var(--spacing-xs);
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Contact Forms */
.contact-forms {
    padding: var(--spacing-xl) 0;
}

.forms-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.contact-form-card {
    background-color: var(--white);
    padding: var(--spacing-lg);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.contact-form-card h2 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.form-description {
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    padding: 0.875rem;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-message {
    padding: 1rem 1.25rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-weight: 500;
    font-size: 1rem;
    display: flex;
    align-items: center;
    animation: slideIn 0.3s ease-out;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-message-success {
    background-color: #d4edda;
    color: #155724;
    border: 2px solid #28a745;
    font-weight: 600;
}

.form-message-success::before {
    content: '✓';
    display: inline-block;
    width: 24px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    background-color: #28a745;
    color: white;
    border-radius: 50%;
    margin-right: 0.75rem;
    font-weight: bold;
    font-size: 0.9em;
    flex-shrink: 0;
}

.form-message-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 2px solid #dc3545;
}

.form-message-error::before {
    content: '✗';
    display: inline-block;
    width: 24px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    background-color: #dc3545;
    color: white;
    border-radius: 50%;
    margin-right: 0.75rem;
    font-weight: bold;
    font-size: 0.9em;
    flex-shrink: 0;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    background-color: var(--secondary-color);
    border-radius: 8px;
}

.contact-info-item {
    text-align: center;
}

.contact-info-item h3 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.contact-info-item p {
    margin: 0;
}

.contact-info-item a {
    color: var(--text-dark);
    font-size: 1.125rem;
}

/* Examples - Modern Card Design */
.examples {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--secondary-color) 50%, var(--white) 100%);
}

.example-card {
    background-color: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(26, 77, 122, 0.12);
    margin-bottom: var(--spacing-xl);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
}

.example-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(26, 77, 122, 0.2);
}

.example-card-image {
    position: relative;
    width: 100%;
    min-height: 400px;
    overflow: hidden;
    background-color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.example-card-image img {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    object-position: center;
    transition: transform 0.6s ease;
    display: block;
}

.example-card:hover .example-card-image img {
    transform: scale(1.05);
}

.example-card-badge {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    background: var(--gradient-accent);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 140, 66, 0.4);
}

.example-card-content {
    padding: var(--spacing-lg);
}

.example-card-content h2 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
    font-size: 2rem;
}

.example-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
}

.example-results {
    list-style: none;
    margin: var(--spacing-md) 0;
    padding: 0;
}

.example-results li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-dark);
    font-size: 1rem;
    transition: transform 0.2s ease;
}

.example-results li:hover {
    transform: translateX(5px);
}

.example-results li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.example-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.gallery-thumb {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-thumb:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.gallery-thumb img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

/* Meta Ads Section */
.meta-ads-section {
    background: var(--white);
    border-radius: 16px;
    padding: var(--spacing-xl);
    box-shadow: 0 8px 30px rgba(26, 77, 122, 0.12);
    margin-top: var(--spacing-xl);
}

.meta-ads-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.meta-ads-header h2 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
    font-size: 2.5rem;
}

.meta-ads-header p {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.meta-ads-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.meta-ad-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: var(--white);
}

.meta-ad-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 40px rgba(26, 77, 122, 0.2);
}

.meta-ad-card img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.meta-ad-card:hover img {
    transform: scale(1.05);
}

.meta-ad-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(26, 77, 122, 0.95) 0%, transparent 100%);
    color: var(--white);
    padding: var(--spacing-md);
    font-weight: 600;
    text-align: center;
}

.meta-ads-features {
    text-align: center;
    padding-top: var(--spacing-lg);
    border-top: 2px solid var(--border-color);
}

.meta-ads-features .example-results {
    display: inline-block;
    text-align: left;
    margin-bottom: var(--spacing-md);
}

/* Process Flow Page */
.process-flow-overview {
    padding: var(--spacing-xl) 0;
    background-color: var(--secondary-color);
}

.flow-intro {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.flow-intro h2 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.flow-intro p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.detailed-process {
    padding: var(--spacing-xl) 0;
}

.process-step-detailed {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
    align-items: start;
}

.process-step-detailed.reverse {
    direction: rtl;
}

.process-step-detailed.reverse > * {
    direction: ltr;
}

.step-number-large {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(26, 77, 122, 0.3);
    flex-shrink: 0;
}

.step-content-detailed h2 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.step-content-detailed > p {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
}

.step-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.detail-item {
    background-color: var(--secondary-color);
    padding: var(--spacing-md);
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.detail-item h4 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
    font-size: 1.125rem;
}

.detail-item p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.95rem;
}

.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
}

.meta-ads-showcase {
    margin-top: var(--spacing-lg);
    padding: var(--spacing-md);
    background-color: var(--secondary-color);
    border-radius: 12px;
}

.meta-ads-showcase h3 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
    text-align: center;
}

.meta-ads-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
}

.meta-ad-item {
    background-color: var(--white);
    padding: var(--spacing-sm);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: center;
}

.meta-ad-item img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: var(--spacing-xs);
}

.meta-ad-item p {
    font-size: 0.875rem;
    color: var(--text-light);
    margin: 0;
}

.meta-ad-item.video-item {
    padding: 0;
}

.meta-ad-item.video-item .video-wrapper {
    margin-bottom: 0;
    border-radius: 8px 8px 0 0;
}

.meta-ad-item.video-item p {
    padding: var(--spacing-sm);
}

.meta-ad-card.video-card {
    padding: 0;
}

.meta-ad-card.video-card .video-wrapper {
    margin-bottom: 0;
    border-radius: 12px 12px 0 0;
}

.meta-ad-card.video-card .meta-ad-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    padding: var(--spacing-sm);
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 500;
}

/* Video Showcase */
.video-showcase {
    padding: var(--spacing-xl) 0;
    background-color: var(--secondary-color);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.video-item {
    background-color: var(--white);
    padding: var(--spacing-md);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.video-item h3 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
    text-align: center;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    margin-bottom: var(--spacing-md);
    border-radius: 8px;
    overflow: hidden;
    background-color: #000;
}

.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-item p {
    color: var(--text-light);
    text-align: center;
    margin: 0;
}

/* Reference Customers */
.reference-customers {
    padding: var(--spacing-xl) 0;
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-lg);
}

.references-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.reference-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    aspect-ratio: 4/3;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.reference-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.reference-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.reference-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    padding: var(--spacing-md);
    color: var(--white);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.reference-item:hover .reference-overlay {
    transform: translateY(0);
}

.reference-overlay h3 {
    color: var(--white);
    margin-bottom: var(--spacing-xs);
    font-size: 1.25rem;
}

.reference-overlay p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 0.95rem;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        padding: var(--spacing-md);
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid,
    .steps-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-cta,
    .cta-buttons {
        flex-direction: column;
    }
    
    .hero-cta .btn,
    .cta-buttons .btn {
        width: 100%;
    }
    
    .forms-wrapper {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .example-card {
        margin-bottom: var(--spacing-lg);
    }
    
    .example-card-image {
        min-height: 300px;
    }
    
    .example-card-image img {
        max-height: 400px;
    }
    
    .meta-ads-grid {
        grid-template-columns: 1fr;
    }
    
    .process-step-detailed {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .process-step-detailed.reverse {
        direction: ltr;
    }
    
    .step-number-large {
        width: 60px;
        height: 60px;
        font-size: 2rem;
        margin: 0 auto;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
    }
    
    .meta-ads-grid {
        grid-template-columns: 1fr;
    }
    
    .references-grid {
        grid-template-columns: 1fr;
    }
    
    .example-gallery {
        grid-template-columns: 1fr;
    }
    
    .meta-examples-grid {
        grid-template-columns: 1fr;
    }
}

/* Animated Journey */
.animated-journey {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.animated-journey::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(26, 77, 122, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(255, 140, 66, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.journey-step {
    position: relative;
    margin-bottom: var(--spacing-xl);
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.journey-step.animated {
    opacity: 1;
    transform: translateY(0);
}

.journey-content {
    display: flex;
    gap: var(--spacing-lg);
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}

.step-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    position: relative;
}

.step-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(26, 77, 122, 0.3);
    position: relative;
    z-index: 2;
    animation: pulseCircle 2s ease-in-out infinite;
}

.step-circle-active {
    animation: pulseCircleActive 2s ease-in-out infinite;
    box-shadow: 0 8px 32px rgba(255, 140, 66, 0.5);
}

.step-number {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
}

.step-line {
    width: 3px;
    height: 100px;
    background: linear-gradient(180deg, var(--primary-color) 0%, transparent 100%);
    margin-top: var(--spacing-sm);
    position: relative;
    animation: flowLine 2s ease-in-out infinite;
}

.journey-step:last-child .step-line {
    display: none;
}

.step-card {
    flex: 1;
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(26, 77, 122, 0.1);
    border: 2px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 140, 66, 0.05), transparent);
    transition: left 0.6s ease;
}

.step-card:hover::before {
    left: 100%;
}

.step-card:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 32px rgba(26, 77, 122, 0.15);
    border-color: var(--accent-color);
}

.step-card-featured {
    background: linear-gradient(135deg, rgba(26, 77, 122, 0.02) 0%, rgba(255, 140, 66, 0.02) 100%);
    border: 2px solid var(--accent-color);
}

.step-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-md);
}

.step-header h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin: 0;
}

.step-badge {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.step-badge-featured {
    background: var(--gradient-accent);
    animation: pulseBadge 2s ease-in-out infinite;
}

.step-features {
    list-style: none;
    padding: 0;
    margin: var(--spacing-md) 0;
}

.step-features li {
    padding: var(--spacing-xs) 0;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.check-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--gradient-primary);
    position: relative;
    flex-shrink: 0;
}

.check-icon::before {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
}

.step-image-container {
    margin-top: var(--spacing-md);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.step-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.step-card:hover .step-image {
    transform: scale(1.05);
}

.featured-text {
    font-size: 1.125rem;
    color: var(--primary-color);
    font-weight: 600;
    margin: var(--spacing-md) 0;
    padding: var(--spacing-md);
    background: rgba(255, 140, 66, 0.1);
    border-left: 4px solid var(--accent-color);
    border-radius: 8px;
}

/* Advertising Flow */
.advertising-flow {
    margin: var(--spacing-lg) 0;
    padding: var(--spacing-lg);
    background: var(--white);
    border-radius: 12px;
    border: 2px dashed var(--accent-color);
}

.flow-diagram-animated {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.flow-item {
    text-align: center;
    padding: var(--spacing-md);
}

.flow-icon-animated {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-sm);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--gradient-accent);
    animation: iconPulse 2s ease-in-out infinite;
    opacity: 0.3;
}

.icon-core {
    position: relative;
    z-index: 2;
    font-size: 2rem;
}

.flow-connector {
    display: flex;
    align-items: center;
    min-width: 100px;
}

.connector-line {
    flex: 1;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
    position: relative;
    animation: flowConnector 2s ease-in-out infinite;
}

.connector-arrow {
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 12px solid var(--accent-color);
    animation: arrowPulse 1.5s ease-in-out infinite;
}

.flow-item-dual {
    min-width: 300px;
}

.dual-output {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}

.output-item {
    padding: var(--spacing-md);
    background: linear-gradient(135deg, rgba(26, 77, 122, 0.05) 0%, rgba(255, 140, 66, 0.05) 100%);
    border-radius: 12px;
    border: 2px solid var(--accent-color);
    animation: outputPulse 2s ease-in-out infinite;
}

.output-icon {
    font-size: 2rem;
    margin-bottom: var(--spacing-xs);
}

.output-item h4 {
    color: var(--primary-color);
    margin: var(--spacing-xs) 0;
    font-size: 1rem;
}

.output-item p {
    color: var(--text-light);
    font-size: 0.875rem;
    margin: 0;
}

.meta-ads-preview {
    margin-top: var(--spacing-lg);
}

.meta-ads-preview h3 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
    text-align: center;
}

.ads-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
}

.ad-preview {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    transition: transform 0.4s ease;
}

.ad-preview:hover {
    transform: translateY(-8px) scale(1.02);
}

.ad-preview img {
    width: 100%;
    height: auto;
    display: block;
}

.video-preview {
    width: 100%;
    padding-bottom: 56.25%;
    position: relative;
    background: #000;
}

.video-preview video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ad-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: var(--white);
    padding: var(--spacing-sm);
    font-size: 0.875rem;
    text-align: center;
}

.leads-visualization {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.lead-item {
    padding: var(--spacing-sm) var(--spacing-md);
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    opacity: 0;
    transform: scale(0);
}

.animated-lead {
    animation: leadAppear 0.6s ease-out forwards;
}

/* Key Insight */
.key-insight {
    padding: var(--spacing-xl) 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.key-insight::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: insightGlow 4s ease-in-out infinite;
}

.insight-card {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.insight-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto var(--spacing-md);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.insight-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    animation: insightPulse 2s ease-in-out infinite;
}

.insight-icon::before {
    content: '⚡';
    position: relative;
    z-index: 2;
    font-size: 3rem;
}

.insight-card h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
}

.insight-card p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
    opacity: 0.95;
}

.insight-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.stat-item {
    padding: var(--spacing-md);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--spacing-xs);
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* Animations */
@keyframes pulseCircle {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 24px rgba(26, 77, 122, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 32px rgba(26, 77, 122, 0.4);
    }
}

@keyframes pulseCircleActive {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 32px rgba(255, 140, 66, 0.5);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 16px 48px rgba(255, 140, 66, 0.7);
    }
}

@keyframes flowLine {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.1;
    }
}

@keyframes flowConnector {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}

@keyframes arrowPulse {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(5px);
    }
}

@keyframes outputPulse {
    0%, 100% {
        border-color: var(--accent-color);
        box-shadow: 0 0 0 0 rgba(255, 140, 66, 0.4);
    }
    50% {
        border-color: var(--primary-color);
        box-shadow: 0 0 0 8px rgba(255, 140, 66, 0);
    }
}

@keyframes leadAppear {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulseBadge {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes insightGlow {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(20px, 20px) scale(1.1);
        opacity: 0.5;
    }
}

@keyframes insightPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.1;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .journey-content {
        flex-direction: column;
        gap: var(--spacing-md);
    }
    
    .step-indicator {
        flex-direction: row;
        width: 100%;
    }
    
    .step-line {
        width: 100px;
        height: 3px;
        margin-top: 0;
        margin-left: var(--spacing-sm);
    }
    
    .flow-diagram-animated {
        flex-direction: column;
    }
    
    .flow-connector {
        min-width: auto;
        min-height: 50px;
        flex-direction: column;
    }
    
    .connector-line {
        width: 3px;
        height: 50px;
    }
    
    .connector-arrow {
        border-top: 12px solid var(--accent-color);
        border-left: 8px solid transparent;
        border-right: 8px solid transparent;
        border-bottom: none;
    }
    
    .dual-output {
        grid-template-columns: 1fr;
    }
    
    .insight-stats {
        grid-template-columns: 1fr;
    }
    
    .insight-card h2 {
        font-size: 1.75rem;
    }
}
