/* ============================================
   GROW MARKETING - PREMIUM DESIGN SYSTEM
   Modern, Professional, Conversion-Focused
   ============================================ */

/* ============================================
   CSS RESET & BASE
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Dark Theme Colors - Afoline Inspired */
    --bg-dark: #0a0a0a;
    --bg-dark-secondary: #121212;
    --bg-dark-tertiary: #1a1a1a;
    --bg-card: #151515;

    /* Brand Colors - Vibrant Gradients */
    --primary-purple: #8B5CF6;
    --primary-pink: #EC4899;
    --primary-orange: #F97316;
    --primary-blue: #3B82F6;

    --secondary-orange: #FF6B35;
    --secondary-yellow: #FFA500;
    --secondary-gold: #FFD700;

    /* Gradients - Afoline Style */
    --gradient-primary: linear-gradient(135deg, #8B5CF6 0%, #EC4899 100%);
    --gradient-secondary: linear-gradient(135deg, #F97316 0%, #EC4899 100%);
    --gradient-hero: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    --gradient-accent: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    --gradient-button: linear-gradient(135deg, #8B5CF6 0%, #EC4899 50%, #F97316 100%);
    --gradient-glow: linear-gradient(135deg, rgba(139, 92, 246, 0.5) 0%, rgba(236, 72, 153, 0.5) 100%);
    --gradient-text: linear-gradient(135deg, #8B5CF6 0%, #EC4899 50%, #F97316 100%);

    /* Glassmorphism - Dark Mode */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-bg-light: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    --glass-blur: blur(20px);

    /* Text Colors */
    --text-primary: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.5);

    /* Legacy mappings for compatibility */
    --white: #FFFFFF;
    --off-white: #1a1a1a;
    --light-gray: #2a2a2a;
    --gray: #888888;
    --dark-gray: rgba(255, 255, 255, 0.7);
    --near-black: #FFFFFF;

    /* Semantic Colors */
    --success: #10B981;
    --warning: #F59E0B;
    --danger: #EF4444;
    --info: #06B6D4;

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    --font-heading: 'Outfit', 'Inter', sans-serif;

    /* Font Sizes (Fluid) */
    --fs-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
    --fs-sm: clamp(0.875rem, 0.8rem + 0.375vw, 1rem);
    --fs-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
    --fs-md: clamp(1.125rem, 1.05rem + 0.375vw, 1.25rem);
    --fs-lg: clamp(1.25rem, 1.15rem + 0.5vw, 1.5rem);
    --fs-xl: clamp(1.5rem, 1.3rem + 1vw, 2rem);
    --fs-2xl: clamp(2rem, 1.6rem + 2vw, 3rem);
    --fs-3xl: clamp(2.5rem, 2rem + 2.5vw, 4rem);
    --fs-4xl: clamp(3rem, 2.5rem + 3vw, 5rem);

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;

    /* Container */
    --container-max: 1200px;
    --container-wide: 1400px;

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-2xl: 2rem;
    --radius-full: 9999px;

    /* Shadows - Dark Mode */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 40px rgba(139, 92, 246, 0.3);
    --shadow-glow-pink: 0 0 40px rgba(236, 72, 153, 0.3);
    --shadow-glow-orange: 0 0 40px rgba(249, 115, 22, 0.3);

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    font-size: var(--fs-base);
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-dark);
    overflow-x: hidden;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-md);
    color: var(--near-black);
}

h1 {
    font-size: var(--fs-3xl);
}

h2 {
    font-size: var(--fs-2xl);
}

h3 {
    font-size: var(--fs-xl);
}

h4 {
    font-size: var(--fs-lg);
}

h5 {
    font-size: var(--fs-md);
}

h6 {
    font-size: var(--fs-base);
}

p {
    margin-bottom: var(--space-md);
    color: var(--dark-gray);
}

a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: color var(--transition-base);
}

a:hover {
    color: var(--primary-blue-dark);
}

/* ============================================
   LAYOUT UTILITIES
   ============================================ */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.container-wide {
    max-width: var(--container-wide);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.section {
    padding: var(--space-3xl) 0;
}

.section-sm {
    padding: var(--space-2xl) 0;
}

.section-lg {
    padding: 5rem 0;
}

/* Grid System */
.grid {
    display: grid;
    gap: var(--space-lg);
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

/* Flex Utilities */
.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.flex-center {
    justify-content: center;
    align-items: center;
}

.flex-between {
    justify-content: space-between;
    align-items: center;
}

.flex-wrap {
    flex-wrap: wrap;
}

.gap-sm {
    gap: var(--space-sm);
}

.gap-md {
    gap: var(--space-md);
}

.gap-lg {
    gap: var(--space-lg);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-family: var(--font-heading);
    font-size: var(--fs-base);
    font-weight: 600;
    text-align: center;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
    line-height: 1;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left var(--transition-base);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-colored);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-secondary {
    background: var(--gradient-secondary);
    color: var(--white);
    box-shadow: var(--shadow-orange);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-outline {
    background: var(--white);
    color: var(--secondary-orange);
    border: 2px solid var(--secondary-orange);
    box-shadow: var(--shadow-sm);
}

.btn-outline:hover {
    background: var(--gradient-secondary);
    color: var(--white);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: var(--shadow-orange);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    box-shadow: none;
}

.btn-outline-light:hover {
    background: #25D366;
    color: var(--white);
    border-color: #25D366;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
}

.btn-lg {
    padding: 1.25rem 2.5rem;
    font-size: var(--fs-md);
}

.btn-sm {
    padding: 0.75rem 1.5rem;
    font-size: var(--fs-sm);
}

/* ============================================
   CARDS
   ============================================ */
.card {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: var(--space-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow);
    border-color: rgba(139, 92, 246, 0.3);
}

.card:hover::before {
    transform: scaleX(1);
}

.card-glass {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
}

.card-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: var(--space-md);
    background: var(--gradient-primary);
    color: var(--white);
}

.card-title {
    font-size: var(--fs-lg);
    font-weight: 700;
    margin-bottom: var(--space-sm);
    color: var(--near-black);
}

.card-text {
    color: var(--dark-gray);
    line-height: 1.6;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header {
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all var(--transition-base);
}

.header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    box-shadow: var(--shadow-lg);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md) 0;
}

.logo {
    height: 70px;
    width: auto;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.logo:hover {
    background: var(--white);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: var(--space-lg);
    align-items: center;
}

.nav-link {
    font-weight: 500;
    color: var(--text-secondary);
    transition: color var(--transition-base);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-secondary);
    transition: width var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition-base);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    background: var(--gradient-hero);
    color: var(--white);
    padding: var(--space-3xl) 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 165, 0, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-30px) rotate(5deg);
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    color: var(--white);
    margin-bottom: var(--space-md);
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.1;
}

.hero-text h1 .highlight {
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--fs-lg);
    margin-bottom: var(--space-xl);
}

.hero-cta {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   SECTIONS
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.section-header h2 {
    font-size: var(--fs-2xl);
    margin-bottom: var(--space-sm);
}

.section-header h2 .gradient-text {
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: var(--fs-lg);
    color: var(--dark-gray);
    max-width: 700px;
    margin: 0 auto;
}

/* ============================================
   PRICING CARDS
   ============================================ */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 2px solid transparent;
    position: relative;
}

.pricing-card.featured {
    border-color: var(--secondary-orange);
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-secondary);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-full);
    font-size: var(--fs-sm);
    font-weight: 600;
}

.pricing-card.premium::before {
    content: 'Best Value';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-full);
    font-size: var(--fs-sm);
    font-weight: 600;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-blue-light);
}

.pricing-card h3 {
    font-size: var(--fs-xl);
    font-weight: 700;
    margin-bottom: var(--space-md);
    text-align: center;
    color: var(--near-black);
}

.pricing-header {
    text-align: center;
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-md);
    border-bottom: 2px solid var(--light-gray);
}

.pricing-title {
    font-size: var(--fs-xl);
    font-weight: 700;
    margin-bottom: var(--space-sm);
}

.pricing-price {
    font-size: var(--fs-3xl);
    font-weight: 800;
    color: var(--primary-blue);
    font-family: var(--font-heading);
    text-align: center;
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-md);
    border-bottom: 2px solid var(--light-gray);
}

.pricing-price span {
    font-size: var(--fs-md);
    font-weight: 400;
    color: var(--dark-gray);
}

.pricing-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.pricing-card ul li {
    padding: var(--space-sm) 0;
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    color: var(--dark-gray);
    line-height: 1.6;
}

.pricing-card ul li::before {
    content: '✓';
    color: var(--success);
    font-weight: bold;
    font-size: var(--fs-lg);
    flex-shrink: 0;
}

.pricing-features {
    list-style: none;
    margin-bottom: var(--space-lg);
}

.pricing-features li {
    padding: var(--space-sm) 0;
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    color: var(--dark-gray);
}

.pricing-features li::before {
    content: '✓';
    color: var(--success);
    font-weight: bold;
    font-size: var(--fs-lg);
    flex-shrink: 0;
}

/* ============================================
   CUSTOM PLAN BUILDER
   ============================================ */
.custom-plan-card {
    grid-column: 1 / -1;
    background: var(--bg-card);
    border: 2px solid var(--glass-border);
}

.custom-plan-builder {
    margin-top: var(--space-md);
}

.services-selection {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
    max-height: none;
}

.services-selection::-webkit-scrollbar {
    width: 6px;
}

.services-selection::-webkit-scrollbar-track {
    background: var(--glass-bg);
    border-radius: var(--radius-full);
}

.services-selection::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-sm);
    margin-bottom: var(--space-sm);
    background: var(--glass-bg);
    border-radius: var(--radius-md);
    border: 1px solid var(--glass-border);
    transition: all var(--transition-base);
}

.service-item:hover {
    background: var(--glass-bg-light);
    border-color: rgba(139, 92, 246, 0.3);
}

.service-label {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    cursor: pointer;
    flex: 1;
    font-size: var(--fs-sm);
    color: var(--text-secondary);
}

.service-checkbox {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--primary-purple);
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.5;
    pointer-events: none;
    transition: opacity var(--transition-base);
}

.service-item:has(.service-checkbox:checked) .quantity-control {
    opacity: 1;
    pointer-events: all;
}

.qty-btn {
    width: 32px;
    height: 32px;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    color: var(--text-primary);
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: var(--fs-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
}

.qty-btn:hover:not(:disabled) {
    background: var(--gradient-primary);
    border-color: transparent;
    transform: scale(1.1);
}

.qty-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.qty-input {
    width: 50px;
    height: 32px;
    text-align: center;
    border: 1px solid var(--glass-border);
    background: var(--bg-card);
    color: var(--text-primary);
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: var(--fs-sm);
}

.duration-selector {
    margin-bottom: var(--space-lg);
    padding: var(--space-md);
    background: var(--glass-bg);
    border-radius: var(--radius-md);
    border: 1px solid var(--glass-border);
}

.duration-select {
    width: 100%;
    padding: var(--space-sm) var(--space-md);
    border: 1px solid var(--glass-border);
    background: var(--bg-card);
    color: var(--text-primary);
    border-radius: var(--radius-md);
    font-size: var(--fs-base);
    cursor: pointer;
    transition: all var(--transition-base);
}

.duration-select:hover,
.duration-select:focus {
    border-color: var(--primary-purple);
    outline: none;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.price-summary {
    padding: var(--space-md);
    background: var(--glass-bg-light);
    border-radius: var(--radius-md);
    border: 2px solid var(--glass-border);
    margin-bottom: var(--space-md);
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-sm) 0;
    color: var(--text-secondary);
    font-size: var(--fs-base);
}

.price-row.total-row {
    border-top: 2px solid var(--glass-border);
    margin-top: var(--space-sm);
    padding-top: var(--space-md);
}

.price-row.total-row span {
    font-size: var(--fs-lg);
    font-weight: 700;
    color: var(--text-primary);
}

.monthly-price,
.total-price {
    font-weight: 700;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: var(--fs-xl);
}

/* Responsive Design for Custom Plan Builder */
@media (max-width: 768px) {
    .custom-plan-card {
        grid-column: span 1;
    }

    .services-selection {
        grid-template-columns: 1fr !important;
        max-height: none;
        gap: var(--space-sm);
    }

    .service-item {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-sm);
        padding: var(--space-md);
    }

    .service-label {
        font-size: var(--fs-sm);
    }

    .quantity-control {
        width: 100%;
        justify-content: flex-end;
    }

    .price-summary {
        padding: var(--space-sm);
    }

    .price-row {
        font-size: var(--fs-sm);
    }

    .monthly-price,
    .total-price {
        font-size: var(--fs-lg);
    }
}

@media (max-width: 480px) {
    .services-selection {
        grid-template-columns: 1fr !important;
    }

    .service-item {
        padding: var(--space-sm);
    }

    .service-label {
        font-size: var(--fs-xs);
    }

    .qty-btn {
        width: 28px;
        height: 28px;
        font-size: var(--fs-base);
    }

    .qty-input {
        width: 40px;
        height: 28px;
    }
}

/* ============================================
   PROCESS STEPS
   ============================================ */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
    position: relative;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--white);
    font-size: var(--fs-2xl);
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
    box-shadow: var(--shadow-colored);
    position: relative;
    z-index: 2;
}

.step-title {
    font-size: var(--fs-lg);
    font-weight: 700;
    margin-bottom: var(--space-sm);
}

.step-description {
    color: var(--dark-gray);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--near-black);
    color: var(--white);
    padding: var(--space-3xl) 0 var(--space-lg);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.footer-section h3 {
    color: var(--white);
    margin-bottom: var(--space-md);
}

.footer-section p,
.footer-section a {
    color: var(--gray);
    line-height: 2;
}

.footer-section a:hover {
    color: var(--secondary-orange);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--space-sm);
}

.social-links {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-md);
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--dark-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
    color: var(--white);
    font-size: var(--fs-lg);
}

.social-link:hover {
    background: var(--gradient-secondary);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-lg);
    border-top: 1px solid var(--dark-gray);
    color: var(--gray);
}

/* ============================================
   STICKY CTA BUTTON
   ============================================ */
.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    opacity: 0;
    transform: translateY(100px);
    transition: all var(--transition-base);
}

.sticky-cta.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   ANIMATIONS & UTILITIES
   ============================================ */
.fade-in {
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.slide-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.slide-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger Animation */
.stagger-animation {
    opacity: 0;
    transform: translateY(20px);
    animation: staggerFadeIn 0.6s ease forwards;
}

@keyframes staggerFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stagger-animation:nth-child(1) {
    animation-delay: 0.1s;
}

.stagger-animation:nth-child(2) {
    animation-delay: 0.2s;
}

.stagger-animation:nth-child(3) {
    animation-delay: 0.3s;
}

.stagger-animation:nth-child(4) {
    animation-delay: 0.4s;
}

.stagger-animation:nth-child(5) {
    animation-delay: 0.5s;
}

.stagger-animation:nth-child(6) {
    animation-delay: 0.6s;
}

/* Parallax Effect */
.parallax {
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Bounce Animation */
@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-20px);
    }

    60% {
        transform: translateY(-10px);
    }
}

.bounce {
    animation: bounce 2s infinite;
}

/* Pulse Animation */
@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

.pulse {
    animation: pulse 2s ease-in-out infinite;
}

/* Shimmer Effect */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }

    100% {
        background-position: 1000px 0;
    }
}

.shimmer {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    background-size: 1000px 100%;
    animation: shimmer 2s infinite;
}

/* Scale on Hover */
.scale-hover {
    transition: transform var(--transition-base);
}

.scale-hover:hover {
    transform: scale(1.05);
}

/* Rotate on Hover */
.rotate-hover {
    transition: transform var(--transition-base);
}

.rotate-hover:hover {
    transform: rotate(5deg);
}

/* Slide In Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-left {
    animation: slideInLeft 0.8s ease forwards;
}

.slide-in-right {
    animation: slideInRight 0.8s ease forwards;
}

/* Text Utilities */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.text-primary {
    color: var(--primary-blue);
}

.text-secondary {
    color: var(--secondary-orange);
}

.text-white {
    color: var(--white);
}

.text-gray {
    color: var(--dark-gray);
}

.bg-light {
    background-color: var(--off-white);
}

.bg-white {
    background-color: var(--white);
}

.bg-primary {
    background: var(--gradient-primary);
}

.bg-secondary {
    background: var(--gradient-secondary);
}

/* Spacing Utilities */
.mt-sm {
    margin-top: var(--space-sm);
}

.mt-md {
    margin-top: var(--space-md);
}

.mt-lg {
    margin-top: var(--space-lg);
}

.mt-xl {
    margin-top: var(--space-xl);
}

.mb-sm {
    margin-bottom: var(--space-sm);
}

.mb-md {
    margin-bottom: var(--space-md);
}

.mb-lg {
    margin-bottom: var(--space-lg);
}

.mb-xl {
    margin-bottom: var(--space-xl);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-cta {
        justify-content: center;
    }

    .pricing-card.featured {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        padding: var(--space-xl);
        box-shadow: var(--shadow-lg);
        transition: left var(--transition-base);
        z-index: 999;
    }

    .nav-links.active {
        left: 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .section {
        padding: var(--space-2xl) 0;
    }

    .sticky-cta {
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .btn {
        width: 100%;
    }

    .hero-cta {
        flex-direction: column;
    }
}

/* ============================================
   TESTIMONIALS CAROUSEL
   ============================================ */
.testimonials-section {
    position: relative;
    overflow: hidden;
}

.testimonials-carousel {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: var(--space-xl) 0;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-item {
    min-width: 100%;
    padding: var(--space-xl);
    text-align: center;
}

.testimonial-content {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-lg);
    position: relative;
}

.testimonial-content::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 120px;
    color: var(--primary-blue-light);
    opacity: 0.1;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-text {
    font-size: var(--fs-lg);
    font-style: italic;
    color: var(--dark-gray);
    margin-bottom: var(--space-lg);
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--fs-xl);
    font-weight: 700;
    color: var(--white);
}

.testimonial-info h4 {
    font-size: var(--fs-md);
    margin-bottom: 0.25rem;
    color: var(--near-black);
}

.testimonial-info p {
    font-size: var(--fs-sm);
    color: var(--gray);
    margin: 0;
}

.testimonial-rating {
    color: #FFD700;
    font-size: var(--fs-lg);
    margin-bottom: var(--space-sm);
}

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    font-size: var(--fs-xl);
    cursor: pointer;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-xl);
}

.carousel-dots {
    display: flex;
    gap: var(--space-sm);
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--light-gray);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    padding: 0;
}

.carousel-dot.active {
    background: var(--gradient-secondary);
    width: 32px;
    border-radius: var(--radius-full);
}

/* ============================================
   NEWSLETTER SECTION
   ============================================ */
.newsletter-section {
    background: var(--gradient-mesh);
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="2" fill="white" opacity="0.1"/></svg>');
    opacity: 0.3;
}

.newsletter-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-content h2 {
    color: var(--white);
    margin-bottom: var(--space-md);
}

.newsletter-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--fs-lg);
    margin-bottom: var(--space-xl);
}

.newsletter-form {
    display: flex;
    gap: var(--space-sm);
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.newsletter-input {
    flex: 1;
    min-width: 250px;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-full);
    font-size: var(--fs-base);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: var(--glass-blur);
    transition: all var(--transition-base);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--white);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.2);
}

.newsletter-input::placeholder {
    color: var(--gray);
}

.newsletter-btn {
    padding: 1rem 2.5rem;
    background: var(--white);
    color: var(--primary-blue);
    border: none;
    border-radius: var(--radius-full);
    font-size: var(--fs-base);
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-lg);
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
    background: var(--secondary-orange);
    color: var(--white);
}

.newsletter-message {
    margin-top: var(--space-md);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    display: none;
}

/* ============================================
   CHATBOT WIDGET
   ============================================ */
.chatbot-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.chatbot-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-secondary);
    color: var(--white);
    border: none;
    font-size: var(--fs-2xl);
    cursor: pointer;
    box-shadow: var(--shadow-xl);
    transition: all var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
}

.chatbot-button:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 48px rgba(255, 107, 53, 0.4);
}

.chatbot-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    height: 500px;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    display: none;
    flex-direction: column;
    overflow: hidden;
    animation: slideUp 0.3s ease;
}

.chatbot-window.active {
    display: flex;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chatbot-header {
    background: var(--gradient-primary);
    color: var(--white);
    padding: var(--space-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chatbot-header h3 {
    margin: 0;
    font-size: var(--fs-md);
    color: var(--white);
}

.chatbot-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: var(--fs-xl);
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background var(--transition-base);
}

.chatbot-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.chatbot-messages {
    flex: 1;
    padding: var(--space-md);
    overflow-y: auto;
    background: var(--off-white);
}

.chatbot-message {
    margin-bottom: var(--space-md);
    display: flex;
    gap: var(--space-sm);
}

.chatbot-message.bot {
    justify-content: flex-start;
}

.chatbot-message.user {
    justify-content: flex-end;
}

.message-bubble {
    max-width: 70%;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    font-size: var(--fs-sm);
    line-height: 1.5;
}

.chatbot-message.bot .message-bubble {
    background: var(--white);
    color: var(--near-black);
    border-bottom-left-radius: 4px;
}

.chatbot-message.user .message-bubble {
    background: var(--gradient-primary);
    color: var(--white);
    border-bottom-right-radius: 4px;
}

.chatbot-input-container {
    padding: var(--space-md);
    background: var(--white);
    border-top: 1px solid var(--light-gray);
    display: flex;
    gap: var(--space-sm);
}

.chatbot-input {
    flex: 1;
    padding: var(--space-sm) var(--space-md);
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-full);
    font-size: var(--fs-sm);
    transition: border-color var(--transition-base);
}

.chatbot-input:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.chatbot-send {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    font-size: var(--fs-base);
    display: flex;
    align-items: center;
    justify-content: center;
}

.chatbot-send:hover {
    transform: scale(1.1);
}

/* ============================================
   BLOG SECTION
   ============================================ */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-xl);
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.blog-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.blog-card:hover .blog-image {
    transform: scale(1.05);
}

.blog-content {
    padding: var(--space-lg);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--gradient-secondary);
    color: var(--white);
    border-radius: var(--radius-full);
    font-size: var(--fs-xs);
    font-weight: 600;
    margin-bottom: var(--space-sm);
    width: fit-content;
}

.blog-title {
    font-size: var(--fs-xl);
    margin-bottom: var(--space-sm);
    color: var(--near-black);
    line-height: 1.3;
}

.blog-title a {
    color: var(--near-black);
    text-decoration: none;
    transition: color var(--transition-base);
}

.blog-title a:hover {
    color: var(--primary-blue);
}

.blog-excerpt {
    color: var(--dark-gray);
    margin-bottom: var(--space-md);
    flex: 1;
    line-height: 1.6;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-md);
    border-top: 1px solid var(--light-gray);
    font-size: var(--fs-sm);
    color: var(--gray);
}

.blog-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-read-time {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-sidebar {
    background: var(--off-white);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
}

.sidebar-widget {
    margin-bottom: var(--space-xl);
}

.sidebar-widget:last-child {
    margin-bottom: 0;
}

.sidebar-widget h3 {
    font-size: var(--fs-lg);
    margin-bottom: var(--space-md);
    color: var(--near-black);
}

.sidebar-list {
    list-style: none;
}

.sidebar-list li {
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--light-gray);
}

.sidebar-list li:last-child {
    border-bottom: none;
}

.sidebar-list a {
    color: var(--dark-gray);
    text-decoration: none;
    transition: color var(--transition-base);
    display: block;
}

.sidebar-list a:hover {
    color: var(--primary-blue);
}

/* Blog Post Detail */
.blog-post-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.blog-post-title {
    font-size: var(--fs-3xl);
    margin-bottom: var(--space-md);
}

.blog-post-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    margin-bottom: var(--space-xl);
}

.blog-post-content {
    font-size: var(--fs-lg);
    line-height: 1.8;
    color: var(--dark-gray);
}

.blog-post-content h2,
.blog-post-content h3 {
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
}

.blog-post-content p {
    margin-bottom: var(--space-lg);
}

.blog-post-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    margin: var(--space-xl) 0;
}

/* Responsive adjustments for new components */
@media (max-width: 768px) {
    .chatbot-window {
        width: calc(100vw - 40px);
        height: 400px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-input {
        min-width: 100%;
    }

    .blog-post-image {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .chatbot-widget {
        bottom: 20px;
        right: 20px;
    }

    .chatbot-button {
        width: 50px;
        height: 50px;
        font-size: var(--fs-xl);
    }
}

/* ============================================
   HERO BADGE STYLES
   ============================================ */
.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-full);
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--white);
    margin-bottom: var(--space-md);
    animation: fadeInDown 0.8s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   TRUST STATS BAR
   ============================================ */
.trust-stats {
    background: var(--white);
    padding: var(--space-xl) 0;
    border-bottom: 1px solid var(--light-gray);
    position: relative;
    overflow: hidden;
}

.trust-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-secondary);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
    text-align: center;
}

.stat-item {
    padding: var(--space-md);
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 50px;
    width: 1px;
    background: var(--light-gray);
}

.stat-number {
    display: block;
    font-size: var(--fs-2xl);
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--primary-blue);
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: var(--fs-sm);
    color: var(--dark-gray);
    margin-top: var(--space-xs);
    font-weight: 500;
}

/* ============================================
   PULSE ANIMATION FOR PRIMARY CTA
   ============================================ */
.btn.pulse {
    position: relative;
    animation: btnPulse 2s ease-in-out infinite;
}

@keyframes btnPulse {

    0%,
    100% {
        box-shadow: var(--shadow-orange), 0 0 0 0 rgba(255, 107, 53, 0.4);
    }

    50% {
        box-shadow: var(--shadow-orange), 0 0 0 15px rgba(255, 107, 53, 0);
    }
}

.btn.pulse:hover {
    animation: none;
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

/* ============================================
   ENHANCED MOBILE RESPONSIVENESS
   ============================================ */
@media (max-width: 968px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item:nth-child(2)::after {
        display: none;
    }

    .stat-item:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-badge {
        font-size: var(--fs-xs);
        padding: 0.4rem 1rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }

    .stat-number {
        font-size: var(--fs-xl);
    }

    .stat-label {
        font-size: var(--fs-xs);
    }

    /* Improved tap targets for mobile */
    .btn {
        min-height: 48px;
        padding: 0.875rem 1.5rem;
    }

    .btn-lg {
        min-height: 52px;
        padding: 1rem 2rem;
    }

    /* Sticky CTA improvements */
    .sticky-cta {
        bottom: 90px;
        right: 15px;
        left: 15px;
        text-align: center;
    }

    .sticky-cta .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: var(--space-md);
    }

    .hero-text h1 {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }

    .hero-text p {
        font-size: var(--fs-base);
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-sm);
    }

    .stat-item {
        padding: var(--space-sm);
    }

    .stat-number {
        font-size: var(--fs-lg);
    }

    /* Full-width buttons on small screens */
    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .hero-cta .btn {
        width: 100%;
        text-align: center;
    }

    /* Better CTA section on mobile */
    .sticky-cta {
        bottom: 75px;
    }
}

/* ============================================
   AFOLINE-STYLE HERO SECTION
   ============================================ */
.hero {
    background: var(--bg-dark);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: var(--space-3xl) 0;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, rgba(236, 72, 153, 0.1) 40%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.8;
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-text {
    max-width: 900px;
    margin: 0 auto;
}

.hero-tagline {
    font-size: var(--fs-sm);
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-muted);
    margin-bottom: var(--space-lg);
}

.hero-title {
    font-size: var(--fs-4xl);
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-primary);
    margin-bottom: var(--space-lg);
}

.gradient-text-animated {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% center;
    }

    50% {
        background-position: 100% center;
    }
}

.hero-subtitle {
    font-size: var(--fs-lg);
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
    letter-spacing: 1px;
}

.hero-cta {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--space-lg);
}

.hero-note {
    font-size: var(--fs-sm);
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Gradient Button */
.btn-gradient {
    background: var(--gradient-button);
    background-size: 200% auto;
    color: var(--white);
    border: none;
    box-shadow: var(--shadow-glow);
    transition: all var(--transition-base);
}

.btn-gradient:hover {
    background-position: right center;
    transform: translateY(-3px);
    box-shadow: 0 0 60px rgba(139, 92, 246, 0.4);
}

/* Glass Button */
.btn-glass {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
    box-shadow: none;
}

.btn-glass:hover {
    background: var(--glass-bg-light);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

/* ============================================
   DARK THEME SECTIONS
   ============================================ */
.section {
    background: var(--bg-dark);
}

.bg-light {
    background: var(--bg-dark-secondary) !important;
}

.bg-white {
    background: var(--bg-dark-tertiary) !important;
}

/* Trust Stats Dark Theme */
.trust-stats {
    background: var(--bg-dark-secondary);
    border-bottom: 1px solid var(--glass-border);
}

.trust-stats::before {
    background: var(--gradient-primary);
}

.stat-number {
    color: var(--text-primary);
}

.stat-label {
    color: var(--text-muted);
}

.stat-item:not(:last-child)::after {
    background: var(--glass-border);
}

/* Section Headers */
.section-header h2 {
    color: var(--text-primary);
}

.section-header p {
    color: var(--text-secondary);
}

.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Card Titles */
.card-title {
    color: var(--text-primary);
}

.card-text {
    color: var(--text-secondary);
}

/* ============================================
   DARK THEME FOOTER
   ============================================ */
.footer {
    background: var(--bg-dark);
    border-top: 1px solid var(--glass-border);
}

/* ============================================
   DARK THEME PRICING CARDS
   ============================================ */
.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
}

.pricing-card h3 {
    color: var(--text-primary);
}

.pricing-price {
    color: var(--primary-purple);
    border-bottom-color: var(--glass-border);
}

.pricing-price span {
    color: var(--text-muted);
}

.pricing-card ul li {
    color: var(--text-secondary);
}

.pricing-card.featured {
    border-color: var(--primary-purple);
    box-shadow: var(--shadow-glow);
}

.pricing-card.featured::before {
    background: var(--gradient-primary);
}

.pricing-card.premium::before {
    background: var(--gradient-secondary);
}

.pricing-card:hover {
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: var(--shadow-glow);
}

/* ============================================
   DARK TESTIMONIALS
   ============================================ */
.testimonials-section {
    background: var(--bg-dark);
}

.testimonial-content {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
}

.testimonial-text {
    color: var(--text-secondary);
}

.testimonial-info h4 {
    color: var(--text-primary);
}

.testimonial-info p {
    color: var(--text-muted);
}

/* Section Tagline */
.section-tagline {
    font-size: var(--fs-sm);
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-purple);
    margin-bottom: var(--space-sm);
    font-weight: 600;
}

/* ============================================
   NEWSLETTER DARK THEME
   ============================================ */
.newsletter-section {
    background: var(--gradient-primary);
}

/* ============================================
   MOBILE DARK THEME FIXES
   ============================================ */
@media (max-width: 768px) {
    .nav-links {
        background: var(--bg-dark);
    }

    .hero-title {
        font-size: var(--fs-3xl);
    }
}

/* ============================================
   AFOLINE-STYLE ANIMATIONS
   ============================================ */

/* Fade In Up Animation */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Fade In Left/Right */
.fade-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-left.visible,
.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Scale In Animation */
.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Staggered Animation Delays */
.stagger-1 {
    transition-delay: 0.1s;
}

.stagger-2 {
    transition-delay: 0.2s;
}

.stagger-3 {
    transition-delay: 0.3s;
}

.stagger-4 {
    transition-delay: 0.4s;
}

.stagger-5 {
    transition-delay: 0.5s;
}

.stagger-6 {
    transition-delay: 0.6s;
}

/* Card Shine Effect on Hover */
.card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.1),
            transparent);
    transition: left 0.6s ease;
}

.card:hover::after {
    left: 100%;
}

/* Floating Animation */
.float {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Pulse Glow Animation */
.pulse-glow {
    animation: pulseGlowEffect 2s ease-in-out infinite;
}

@keyframes pulseGlowEffect {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
    }

    50% {
        box-shadow: 0 0 40px rgba(139, 92, 246, 0.6);
    }
}

/* Text Shimmer Effect */
.text-shimmer {
    background: linear-gradient(90deg,
            var(--text-primary) 0%,
            var(--primary-purple) 50%,
            var(--text-primary) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textShimmer 3s linear infinite;
}

@keyframes textShimmer {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}

/* Button Hover Effects - Enhanced */
.btn {
    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 ease;
}

.btn:hover::before {
    left: 100%;
}

/* Nav Link Hover Glow */
.nav-link:hover {
    text-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
}

/* Service Card Enhanced Hover */
.card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card:hover {
    transform: translateY(-12px) scale(1.02);
}

/* Stat Number Counter Animation */
.stat-number {
    transition: transform 0.3s ease;
}

.stat-item:hover .stat-number {
    transform: scale(1.1);
    color: var(--primary-purple);
}

/* Testimonial Card Tilt Effect */
.testimonial-content {
    transition: all 0.4s ease;
}

.testimonial-content:hover {
    transform: perspective(1000px) rotateX(2deg) rotateY(-2deg);
    box-shadow: var(--shadow-glow);
}

/* Pricing Card Glow */
.pricing-card {
    transition: all 0.4s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 50px rgba(139, 92, 246, 0.3);
}

/* Section Header Animation */
.section-header {
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
}

/* Footer Link Hover */
.footer a {
    transition: all 0.3s ease;
}

.footer a:hover {
    color: var(--primary-purple);
    text-shadow: 0 0 10px rgba(139, 92, 246, 0.3);
}

/* Icon Bounce on Card Hover */
.card-icon {
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.card:hover .card-icon {
    transform: scale(1.2) rotate(5deg);
}

/* ============================================
   BLOG STYLES
   ============================================ */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-xl);
}

.blog-card {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 1px solid var(--glass-border);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(59, 130, 246, 0.5);
}

.blog-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.blog-content {
    padding: var(--space-lg);
}

.blog-category {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: var(--gradient-primary);
    color: var(--white);
    font-size: var(--fs-xs);
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-title {
    font-size: var(--fs-lg);
    font-weight: 700;
    margin-bottom: var(--space-md);
    line-height: 1.3;
}

.blog-title a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: color var(--transition-base);
}

.blog-title a:hover {
    color: #2563eb;
    text-decoration: underline;
}

.blog-excerpt {
    color: var(--primary-blue);
    font-size: var(--fs-sm);
    line-height: 1.7;
    margin-bottom: var(--space-md);
    opacity: 0.9;
}

.blog-meta {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    font-size: var(--fs-xs);
    color: var(--text-secondary);
}

.blog-date,
.blog-read-time {
    color: var(--primary-blue);
    opacity: 0.8;
}

/* Blog Mobile Responsive */
@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .blog-image {
        height: 200px;
    }

    .blog-content {
        padding: var(--space-md);
    }

    .blog-title {
        font-size: var(--fs-base);
    }
}

@media (max-width: 480px) {
    .blog-image {
        height: 180px;
    }

    .blog-content {
        padding: var(--space-sm);
    }
}


/* ============================================
   AFOLINE-STYLE CURSOR FOLLOWER
   ============================================ */
.cursor-follower {
    position: fixed;
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-purple);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background 0.3s, border-color 0.3s;
    mix-blend-mode: difference;
}

.cursor-follower.active {
    width: 50px;
    height: 50px;
    background: rgba(139, 92, 246, 0.2);
    border-color: var(--primary-pink);
}

/* Hide cursor follower on mobile/touch devices */
@media (hover: none) and (pointer: coarse) {
    .cursor-follower {
        display: none;
    }
}

/* ============================================
   AFOLINE-STYLE SCROLL PROGRESS BAR
   ============================================ */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--gradient-primary);
    z-index: 10000;
    width: 0;
    transition: width 0.1s ease-out;
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
}

/* ============================================
   AFOLINE-STYLE TYPEWRITER CURSOR
   ============================================ */
.typewriter {
    visibility: hidden;
}

.typewriter::after {
    content: '|';
    animation: blink 1s step-end infinite;
    color: var(--primary-purple);
}

@keyframes blink {

    0%,
    50% {
        opacity: 1;
    }

    51%,
    100% {
        opacity: 0;
    }
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE
   ============================================ */

/* Tablet and Below (iPad and smaller) */
@media (max-width: 768px) {

    /* Typography Adjustments */
    h1 {
        font-size: var(--fs-2xl);
    }

    h2 {
        font-size: var(--fs-xl);
    }

    h3 {
        font-size: var(--fs-lg);
    }

    /* Spacing Adjustments */
    .section {
        padding: var(--space-2xl) 0;
    }

    .section-lg {
        padding: var(--space-3xl) 0;
    }

    /* Navigation - Mobile Menu */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--bg-dark-secondary);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        align-items: flex-start;
        gap: var(--space-md);
        transition: right 0.3s ease;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.5);
        z-index: 999;
    }

    .nav-links.active {
        right: 0;
    }

    .mobile-menu-toggle {
        display: flex;
        z-index: 1001;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    /* Logo Adjustment */
    .logo {
        height: 50px;
    }

    /* Grid Layouts - Stack on Mobile */
    .grid[style*="grid-template-columns: 1fr 1fr"],
    .hero-content {
        grid-template-columns: 1fr !important;
        gap: var(--space-lg) !important;
    }

    /* Remove order on mobile for alternating layouts */
    .grid [style*="order"] {
        order: 0 !important;
    }

    /* Hero Section */
    .hero {
        padding: var(--space-2xl) 0;
    }

    .hero-text h1 {
        font-size: clamp(1.75rem, 5vw, 2.5rem);
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .hero-cta .btn {
        width: 100%;
    }

    /* Buttons */
    .btn-lg {
        padding: 1rem 2rem;
        font-size: var(--fs-base);
    }

    .btn-sm {
        padding: 0.625rem 1.25rem;
        font-size: var(--fs-xs);
    }

    /* Cards */
    .card {
        padding: var(--space-md);
    }

    /* Pricing Cards - Remove transform on featured */
    .pricing-card.featured {
        transform: scale(1);
    }

    /* Stats/Results Grid - Stack on Mobile */
    .grid.grid-3 {
        grid-template-columns: 1fr !important;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr !important;
        gap: var(--space-xl);
    }

    /* Contact Form Inputs */
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    select,
    textarea {
        font-size: 16px !important;
        /* Prevents zoom on iOS */
    }

    /* Sticky CTA */
    .sticky-cta {
        padding: var(--space-sm);
    }

    .sticky-cta .btn {
        padding: 0.875rem 1.5rem;
        font-size: var(--fs-sm);
    }

    /* Service Detail Grids */
    .grid[style*="grid-template-columns: 1fr 1fr; gap: var(--space-2xl)"] {
        grid-template-columns: 1fr !important;
        gap: var(--space-lg) !important;
    }

    /* Text Center on Mobile */
    .text-center p {
        text-align: center;
    }

    /* Flex Utilities */
    .flex.flex-center {
        flex-direction: column;
    }

    /* Section Header */
    .section-header p {
        font-size: var(--fs-base);
    }

    /* Testimonial/Portfolio Stats */
    .grid.grid-3[style*="margin-top"] {
        grid-template-columns: 1fr !important;
    }

    /* Trust Stats Grid - 2x2 on Mobile */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: var(--space-md);
    }

    .stat-item {
        font-size: var(--fs-sm);
    }

    .stat-number {
        font-size: var(--fs-xl);
    }

    .stat-label {
        font-size: var(--fs-xs);
    }

    /* Pricing Grid - Single Column on Mobile */
    .pricing-grid {
        grid-template-columns: 1fr !important;
        gap: var(--space-md);
    }

    /* Grid-4 to 2 Columns on Tablet */
    .grid.grid-4 {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    /* Newsletter Section */
    .newsletter-form {
        flex-direction: column;
        gap: var(--space-sm);
    }

    .newsletter-input {
        width: 100%;
    }

    .newsletter-btn {
        width: 100%;
    }

    /* Process Steps */
    .process-steps {
        grid-template-columns: 1fr !important;
        gap: var(--space-lg);
    }

    /* Testimonials Carousel */
    .testimonial-content {
        padding: var(--space-md);
    }

    .testimonial-text {
        font-size: var(--fs-sm);
    }
}

/* Mobile Phones (Small Screens) */
@media (max-width: 480px) {

    /* Even smaller typography */
    h1 {
        font-size: var(--fs-xl);
    }

    h2 {
        font-size: var(--fs-lg);
    }

    /* Container Padding */
    .container {
        padding: 0 var(--space-sm);
    }

    /* Tighter Spacing */
    .section {
        padding: var(--space-xl) 0;
    }

    /* Logo */
    .logo {
        height: 40px;
    }

    /* Buttons */
    .btn {
        padding: 0.875rem 1.5rem;
        font-size: var(--fs-sm);
    }

    .btn-lg {
        padding: 0.875rem 1.5rem;
        font-size: var(--fs-sm);
    }

    /* Cards */
    .card {
        padding: var(--space-sm);
    }

    .card-icon {
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
    }

    /* Pricing Features */
    .pricing-card {
        padding: var(--space-md);
    }

    /* Images */
    img[style*="border-radius"] {
        max-width: 100%;
        height: auto;
    }

    /* Custom Plan Builder */
    .service-item {
        padding: var(--space-sm);
    }

    /* Newsletter */
    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input {
        width: 100%;
    }

    /* Social Links */
    .social-links {
        justify-content: center;
        flex-wrap: wrap;
    }

    /* Grid Gap Reduction */
    .grid {
        gap: var(--space-md);
    }

    /* Badge/Tags */
    .badge {
        font-size: var(--fs-xs);
        padding: 0.375rem 0.875rem;
    }
}