/* ===================================
   WebPino Softwares - B2B Website Styles
   Modern, Clean, Professional Design
   Purple Gradient Theme
   =================================== */

/* ===================================
   CSS Variables - Brand Colors
   =================================== */
:root {
    /* Purple Gradient Theme */
    --primary-purple: #7C3AED;
    --primary-purple-dark: #6D28D9;
    --secondary-purple: #A78BFA;
    --gradient-primary: linear-gradient(135deg, #7C3AED 0%, #A78BFA 100%);
    --gradient-dark: linear-gradient(135deg, #6D28D9 0%, #7C3AED 100%);
    
    /* Neutral Colors */
    --white: #FFFFFF;
    --light-bg: #F9FAFB;
    --light-gray: #F3F4F6;
    --medium-gray: #6B7280;
    --dark-gray: #374151;
    --text-primary: #1F2937;
    --text-secondary: #4B5563; /* Improved contrast from #6B7280 */
    
    /* Accent Colors */
    --success: #10B981;
    --warning: #F59E0B;
    --error: #EF4444;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-max: 1400px;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.15);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===================================
   Accessibility Utilities
   =================================== */
.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* Skip to main content link for keyboard users */
.skip-link {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-purple);
    color: white;
    padding: 12px 24px;
    z-index: 10000;
    transition: top 0.3s ease;
    border-radius: 0 0 8px 8px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.skip-link:focus {
    top: 0;
    outline: 2px solid var(--white);
    outline-offset: 2px;
}

/* ===================================
   Global Resets & Base Styles
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Poppins', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-primary);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===================================
   Typography
   =================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

h1 { font-size: 3.5rem; font-weight: 800; }
h2 { font-size: 2.5rem; font-weight: 700; }
h3 { font-size: 2rem; font-weight: 600; }
h4 { font-size: 1.5rem; font-weight: 600; }
h5 { font-size: 1.25rem; font-weight: 600; }
h6 { font-size: 1rem; font-weight: 600; }

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
}

a {
    color: var(--primary-purple);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-purple-dark);
}

/* ===================================
   Container & Layout
   =================================== */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: var(--section-padding);
}

.section-light {
    background: var(--light-bg);
}

.section-white {
    background: var(--white);
}

/* ===================================
   Buttons
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
    gap: 10px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--primary-purple);
    border: 2px solid var(--primary-purple);
}

.btn-outline:hover {
    background: var(--primary-purple);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-white {
    background: var(--white) !important;
    color: var(--primary-purple) !important;
    box-shadow: var(--shadow-md);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: var(--white) !important;
    color: var(--primary-purple) !important;
}

.btn-large {
    padding: 20px 40px;
    font-size: 1.2rem;
}

/* ===================================
   Header & Navigation - Apple Glass Design
   =================================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.5) inset,
                0 1px 2px 0 rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 0.6) 0%, 
        rgba(255, 255, 255, 0.2) 100%);
    pointer-events: none;
    z-index: -1;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-logo {
    width: 140px;
    height: auto;
}

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

.nav-link {
    color: var(--text-primary);
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-purple);
}

.navbar-cta {
    display: flex;
    gap: 15px;
}

/* ===================================
   AI Calculator Button Effects
   =================================== */
.btn-ai-calc {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #7C3AED 0%, #9333EA 50%, #7C3AED 100%);
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 
        0 4px 15px rgba(124, 58, 237, 0.4),
        0 0 30px rgba(124, 58, 237, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.btn-ai-calc:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 8px 25px rgba(124, 58, 237, 0.5),
        0 0 50px rgba(124, 58, 237, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    color: white;
}

.btn-ai-calc .btn-content {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 2;
}

.btn-ai-calc .btn-content i {
    font-size: 1.1rem;
    animation: robotBounce 2s ease-in-out infinite;
}

@keyframes robotBounce {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-2px) rotate(-5deg); }
    50% { transform: translateY(0) rotate(0deg); }
    75% { transform: translateY(-2px) rotate(5deg); }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Sparkle Stars */
.btn-ai-calc .btn-sparkle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    animation: sparkle 2s ease-in-out infinite;
}

.btn-ai-calc .btn-sparkle:nth-child(1) {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.btn-ai-calc .btn-sparkle:nth-child(2) {
    top: 60%;
    right: 20%;
    animation-delay: 0.5s;
}

.btn-ai-calc .btn-sparkle:nth-child(3) {
    bottom: 25%;
    left: 40%;
    animation-delay: 1s;
}

@keyframes sparkle {
    0%, 100% {
        opacity: 0;
        transform: scale(0) rotate(0deg);
    }
    50% {
        opacity: 1;
        transform: scale(1) rotate(180deg);
        box-shadow: 
            0 0 10px white,
            0 0 20px rgba(255, 255, 255, 0.5),
            0 0 30px rgba(167, 139, 250, 0.3);
    }
}

/* Shine Effect */
.btn-ai-calc .btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transform: skewX(-25deg);
    animation: shine 3s ease-in-out infinite;
}

@keyframes shine {
    0% { left: -100%; }
    50%, 100% { left: 150%; }
}

/* Pulse ring effect */
.btn-ai-calc::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(124, 58, 237, 0.5);
    border-radius: 50px;
    transform: translate(-50%, -50%);
    animation: pulseRing 2s ease-out infinite;
    pointer-events: none;
}

@keyframes pulseRing {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0;
    }
}

/* Star burst on hover */
.btn-ai-calc::after {
    content: '✨';
    position: absolute;
    right: -5px;
    top: -5px;
    font-size: 14px;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}

.btn-ai-calc:hover::after {
    opacity: 1;
    transform: scale(1) rotate(15deg);
    animation: starTwinkle 0.5s ease;
}

@keyframes starTwinkle {
    0% { transform: scale(0) rotate(0deg); }
    50% { transform: scale(1.3) rotate(180deg); }
    100% { transform: scale(1) rotate(15deg); }
}

/* Hide mobile CTA on desktop */
.mobile-cta-item {
    display: none;
}

.mobile-menu-toggle {
    display: none;
    background: linear-gradient(135deg, #7C3AED 0%, #6D28D9 100%);
    border: none;
    font-size: 1.3rem;
    cursor: pointer;
    color: white;
    padding: 10px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    z-index: 1001;
}

.mobile-menu-toggle:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

.mobile-menu-toggle i {
    transition: transform 0.3s ease;
}

.mobile-menu-toggle.active i {
    transform: rotate(90deg);
}

/* ===================================
   Hero Section
   =================================== */
.hero-section {
    padding: 180px 0 120px;
    position: relative;
    overflow: hidden;
    transition: background 0.5s ease;
}

.hero-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;
}

.webpino-logo-container {
    margin-bottom: 30px;
}

.hero-logo {
    max-width: 200px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(255, 255, 255, 0.3));
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 10px 24px;
    border-radius: 50px;
    color: var(--white);
    font-weight: 600;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-title {
    font-size: 4rem;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
}

.hero-feature-icon {
    width: 24px;
    height: 24px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-feature-text {
    font-size: 1.1rem;
    font-weight: 500;
}

/* ===================================
   Section Header
   =================================== */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #7C3AED 0%, #A78BFA 100%);
    color: #ffffff;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.4), 0 2px 8px rgba(124, 58, 237, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.section-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.section-badge:hover::before {
    left: 100%;
}

.section-badge:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.5), 0 4px 12px rgba(124, 58, 237, 0.3);
}

.section-badge i {
    font-size: 14px;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-primary);
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ===================================
   Offer Section (Why Partner)
   =================================== */
.industries-section {
    margin-bottom: 60px;
    padding: 60px 40px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.02) 0%, rgba(167, 139, 250, 0.05) 100%);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(124, 58, 237, 0.08);
}

.industries-header {
    text-align: center;
    margin-bottom: 50px;
}

.industries-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #6D28D9 0%, #7C3AED 50%, #8B5CF6 100%);
    color: #ffffff;
    padding: 13px 32px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    margin-bottom: 25px;
    box-shadow: 0 8px 28px rgba(109, 40, 217, 0.45), 0 3px 12px rgba(124, 58, 237, 0.3);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.25);
}

.industries-badge::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.industries-badge:hover::before {
    width: 300px;
    height: 300px;
}

.industries-badge:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 35px rgba(109, 40, 217, 0.6), 0 5px 15px rgba(124, 58, 237, 0.4);
    border-color: rgba(255, 255, 255, 0.4);
}

.industries-badge i {
    font-size: 16px;
    position: relative;
    z-index: 1;
    animation: pulse 2s ease-in-out infinite;
}

.industries-badge span {
    position: relative;
    z-index: 1;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.industries-header h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-dark);
    line-height: 1.2;
}

.industries-header p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 0 30px;
}

.industry-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    cursor: pointer;
}

.industry-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.industry-icon-wrapper {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px auto 20px;
    font-size: 2.5rem;
    color: var(--white);
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    position: relative;
}

.industry-icon-wrapper::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    filter: blur(10px);
}

.industry-card:hover .industry-icon-wrapper {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.5);
}

.industry-card:hover .industry-icon-wrapper::before {
    opacity: 0.8;
}

.industry-icon-wrapper i {
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

@keyframes iconBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.industry-content {
    padding: 25px;
    text-align: center;
}

.industry-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.industry-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 0;
}

.industries-showcase {
    margin-bottom: 60px;
}

.industries-showcase h3 {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 40px;
}

.industry-item {
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
}

.industry-item:hover {
    transform: translateY(-10px);
}

.industry-item img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    margin-bottom: 15px;
    transition: var(--transition);
}

.industry-item:hover img {
    box-shadow: var(--shadow-xl);
}

.industry-item p {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.offer-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 2px solid transparent;
}

.offer-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-purple);
}

.offer-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.offer-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.offer-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.offer-description {
    color: var(--text-secondary);
    line-height: 1.8;
}

.offer-highlight {
    background: linear-gradient(135deg, #7C3AED 0%, #6D28D9 100%);
    color: var(--white);
    padding: 50px;
    border-radius: var(--radius-lg);
    text-align: center;
    margin-top: 50px;
}

.offer-highlight h3 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.offer-highlight .price {
    font-size: 4rem;
    font-weight: 800;
    margin: 20px 0;
}

.offer-highlight .guarantee {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    opacity: 1;
    line-height: 1.6;
    margin-top: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* ===================================
   Partnership Section
   =================================== */
.partnership-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.partnership-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.partnership-features {
    list-style: none;
    margin-top: 30px;
}

.partnership-features li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.partnership-features i {
    color: var(--primary-purple);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.partnership-visual {
    background: var(--gradient-primary);
    padding: 60px;
    border-radius: var(--radius-xl);
    color: var(--white);
    box-shadow: var(--shadow-xl);
}

.partnership-image-container {
    margin-bottom: 30px;
    text-align: center;
}

.partnership-image {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.partnership-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    display: block;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* ===================================
   Process Section
   =================================== */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
    position: relative;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.step-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.step-description {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ===================================
   Pricing Section
   =================================== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.pricing-grid-5 {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 1200px) {
    .pricing-grid-5 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pricing-grid-5 {
        grid-template-columns: 1fr;
    }
}

.pricing-card {
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-purple);
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    transform: scale(1.05);
}

.pricing-card.featured * {
    color: var(--white);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--success);
    color: var(--white);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-plan-name {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.pricing-amount {
    font-size: 3rem;
    font-weight: 800;
    margin: 20px 0;
}

.pricing-plus {
    font-size: 1.5rem;
    font-weight: 600;
    vertical-align: super;
}

.pricing-period {
    font-size: 1rem;
    opacity: 0.8;
}

.pricing-note {
    color: var(--text-gray);
    font-size: 0.95rem;
    padding: 20px;
    background: rgba(124, 58, 237, 0.05);
    border-radius: var(--radius-md);
    margin-top: 30px;
}

.pricing-note i {
    color: var(--primary-purple);
    margin-right: 8px;
}

.pricing-features {
    list-style: none;
    margin: 30px 0;
    text-align: left;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 1rem;
}

.pricing-features i {
    color: var(--success);
    font-size: 1.2rem;
}

.pricing-card.featured .pricing-features i {
    color: rgba(255, 255, 255, 0.9);
}

/* Pricing Enhancements */
.pricing-highlights {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--text-dark);
}

.highlight-item i {
    color: var(--primary-purple);
    font-size: 1.3rem;
}

.pricing-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(167, 139, 250, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.pricing-icon i {
    font-size: 1.5rem;
    color: var(--primary-purple);
}

.pricing-card.featured .pricing-icon {
    background: rgba(255, 255, 255, 0.2);
}

.pricing-card.featured .pricing-icon i {
    color: var(--white);
}

.pricing-highlight-tag {
    display: inline-block;
    background: linear-gradient(135deg, #FEF3C7, #FDE68A);
    color: #92400E;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin: 10px 0 15px;
}

.pricing-highlight-tag i {
    margin-right: 5px;
}

.pricing-highlight-tag.featured-tag {
    background: rgba(255, 255, 255, 0.25);
    color: var(--white);
}

.feature-bonus {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(5, 150, 105, 0.1));
    padding: 8px 10px;
    border-radius: 8px;
    margin-top: 5px;
}

.feature-bonus i {
    color: #F59E0B !important;
}

.pricing-card.featured .feature-bonus {
    background: rgba(255, 255, 255, 0.15);
}

.pricing-delivery {
    background: var(--light-gray);
    padding: 10px 15px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    margin: 15px 0;
    color: var(--primary-purple);
}

.pricing-delivery i {
    margin-right: 8px;
    color: var(--success);
}

.pricing-card.featured .pricing-delivery {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.pricing-card.featured .pricing-delivery i {
    color: #FDE68A;
}

.pricing-includes {
    margin-top: 60px;
    padding: 40px;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    text-align: center;
}

.pricing-includes h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.pricing-includes h3 i {
    color: var(--success);
    margin-right: 10px;
}

.includes-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

@media (max-width: 1200px) {
    .includes-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 576px) {
    .includes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.include-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 15px;
}

.include-item i {
    font-size: 2rem;
    color: var(--primary-purple);
}

.include-item span {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.pricing-urgency {
    margin-top: 40px;
    background: linear-gradient(135deg, #EF4444, #DC2626);
    border-radius: var(--radius-lg);
    padding: 25px 30px;
    animation: pulse-urgency 2s infinite;
}

@keyframes pulse-urgency {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.01); }
}

.urgency-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    color: var(--white);
}

.urgency-content i {
    font-size: 1.8rem;
    animation: flame 0.5s ease-in-out infinite alternate;
}

@keyframes flame {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

.urgency-content span {
    font-size: 1.1rem;
}

.btn-small {
    padding: 10px 25px;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .pricing-highlights {
        gap: 20px;
    }
    
    .highlight-item {
        font-size: 0.9rem;
    }
    
    .urgency-content {
        text-align: center;
    }
}

/* ===================================
   Refund Policy Section
   =================================== */
.refund-hero {
    text-align: center;
    margin-bottom: 50px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.05) 0%, rgba(167, 139, 250, 0.05) 100%);
    border-radius: var(--radius-xl);
}

.refund-shield {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-lg);
}

.refund-shield i {
    font-size: 2.5rem;
    color: var(--white);
}

.refund-hero h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.refund-hero p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.refund-options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.refund-option-card {
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-xl);
    padding: 40px;
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.refund-option-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-purple);
}

.refund-option-card.featured {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    transform: scale(1.03);
}

.refund-option-card.featured * {
    color: var(--white);
}

.refund-option-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.refund-option-icon {
    width: 70px;
    height: 70px;
    background: rgba(124, 58, 237, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.refund-option-card.featured .refund-option-icon {
    background: rgba(255, 255, 255, 0.2);
}

.refund-option-icon i {
    font-size: 2rem;
    color: var(--primary-purple);
}

.refund-option-card.featured .refund-option-icon i {
    color: var(--white);
}

.refund-option-badge {
    display: inline-block;
    background: var(--primary-purple);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.refund-option-badge.popular {
    background: var(--warning);
}

.refund-option-card.featured .refund-option-badge {
    background: rgba(255, 255, 255, 0.25);
}

.refund-option-card h4 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.refund-percentage {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-purple);
    margin: 20px 0;
}

.refund-option-card.featured .refund-percentage {
    color: var(--white);
}

.refund-option-card p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.refund-features {
    list-style: none;
    text-align: left;
    margin: 0;
}

.refund-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.refund-features i {
    color: var(--success);
    font-size: 1.1rem;
}

.refund-option-card.featured .refund-features i {
    color: var(--white);
}

.refund-disclaimer-box {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1) 0%, rgba(245, 158, 11, 0.1) 100%);
    border-left: 4px solid var(--warning);
    padding: 30px;
    border-radius: var(--radius-lg);
}

.disclaimer-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--warning);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.disclaimer-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.disclaimer-content {
    text-align: left;
}

.disclaimer-content h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.disclaimer-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* ===================================
   Testimonials Section
   =================================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border-left: 4px solid var(--primary-purple);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
}

.testimonial-info h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.testimonial-company {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.testimonial-rating {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: #F59E0B;
    font-size: 1.1rem;
}

.testimonial-text {
    color: var(--text-secondary);
    line-height: 1.8;
    font-style: italic;
}

/* ===================================
   Technologies Section
   =================================== */
.tech-categories {
    margin-top: 60px;
}

.tech-category {
    margin-bottom: 70px;
}

.tech-category:last-child {
    margin-bottom: 50px;
}

.tech-category-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 35px;
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--primary-purple);
}

.tech-category-title i {
    color: var(--primary-purple);
    font-size: 1.6rem;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 25px;
}

.tech-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.tech-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.05), transparent);
    transition: left 0.5s ease;
}

.tech-card:hover::before {
    left: 100%;
}

.tech-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-purple);
}

.tech-icon {
    font-size: 3.5rem;
    margin-bottom: 15px;
    display: block;
    transition: transform 0.3s ease;
}

.tech-card:hover .tech-icon {
    transform: scale(1.15) rotateY(360deg);
}

.tech-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.tech-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

.tech-cta {
    background: linear-gradient(135deg, #7C3AED 0%, #6D28D9 100%);
    color: var(--white);
    padding: 50px;
    border-radius: var(--radius-lg);
    text-align: center;
    margin-top: 70px;
}

.tech-cta h3 {
    color: var(--white);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.tech-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* ===================================
   Portfolio / Case Studies Section
   =================================== */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.portfolio-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.portfolio-image {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: var(--transition);
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(124, 58, 237, 0.95), rgba(109, 40, 217, 0.95));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-info {
    text-align: center;
    color: var(--white);
    padding: 20px;
}

.portfolio-info h4 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.portfolio-info p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.portfolio-tags {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.portfolio-tags .tag {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.portfolio-details {
    padding: 25px;
}

.portfolio-details h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.portfolio-details p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
}

/* ===================================
   Contact Section
   =================================== */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon-box {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon-box i {
    color: var(--white);
    font-size: 1.3rem;
}

.contact-details h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.contact-details p {
    color: var(--text-secondary);
    margin: 0;
}

.contact-form {
    background: var(--white);
    padding: 50px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: var(--transition);
    font-family: inherit;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

.btn-submit {
    width: 100%;
    margin-top: 10px;
}

.contact-cta-box {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    padding: 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    margin-top: 30px;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.contact-cta-box h4 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.contact-cta-box p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.btn-whatsapp {
    background: white !important;
    color: #25D366 !important;
    border: none;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    color: #128C7E !important;
}

.btn-whatsapp i {
    margin-right: 8px;
    font-size: 1.2rem;
}

/* ===================================
   Footer
   =================================== */
.footer-section {
    background: linear-gradient(135deg, #1F2937 0%, #111827 100%);
    color: rgba(255, 255, 255, 0.8);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-brand h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-contact-info {
    margin: 20px 0 25px;
}

.footer-contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.footer-contact-info i {
    color: var(--primary-purple);
    font-size: 1rem;
    width: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary-purple);
    transform: translateY(-3px);
}

.social-link i {
    color: var(--white);
}

.footer-column h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.85);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

/* Trust Badges Section */
.footer-trust-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin: 40px 0;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.trust-badge:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(124, 58, 237, 0.5);
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.3);
    transform: translateY(-3px);
}

.trust-badge i {
    font-size: 32px;
    color: #7C3AED;
    background: rgba(124, 58, 237, 0.1);
    padding: 15px;
    border-radius: 10px;
    min-width: 60px;
    text-align: center;
}

.badge-content {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.badge-title {
    color: var(--white);
    font-weight: 600;
    font-size: 15px;
    line-height: 1.2;
}

.badge-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    line-height: 1.2;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.visitor-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.visitor-counter {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    padding: 12px 25px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.visitor-counter:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(124, 58, 237, 0.5);
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.2);
}

.visitor-counter i {
    color: #7C3AED;
    font-size: 18px;
}

.visitor-counter.active i {
    color: #10b981;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.visitor-counter #visitorCount,
.visitor-counter #activeUsers {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, #7C3AED 0%, #A855F7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
}

.visitor-counter.active #activeUsers {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.visitor-counter .counter-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .footer-trust-badges {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
        padding: 30px 0;
        margin: 30px 0;
    }
    
    .trust-badge {
        flex-direction: column;
        text-align: center;
        padding: 15px;
        gap: 10px;
    }
    
    .trust-badge i {
        font-size: 28px;
        padding: 12px;
        min-width: 50px;
    }
    
    .badge-title {
        font-size: 14px;
    }
    
    .badge-subtitle {
        font-size: 11px;
    }
    
    .visitor-stats {
        gap: 15px;
    }
    
    .visitor-counter {
        padding: 10px 20px;
    }
    
    .visitor-counter #visitorCount,
    .visitor-counter #activeUsers {
        font-size: 18px;
    }
}

/* ===================================
   Scroll to Top Button
   =================================== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
}

.scroll-to-top i {
    color: var(--white);
    font-size: 1.3rem;
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

.animate-fade-in {
    animation: fadeIn 0.6s ease-out;
}

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

/* Tablets */
@media (max-width: 992px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    
    .hero-title { font-size: 3rem; }
    
    .navbar-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        max-width: 85%;
        height: 100vh;
        height: 100dvh; /* Dynamic viewport height for mobile browsers */
        background: linear-gradient(180deg, #ffffff 0%, #f8f9ff 100%);
        flex-direction: column;
        padding: 100px 30px 120px; /* Increased bottom padding */
        gap: 0;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
    }
    
    .navbar-nav.active {
        right: 0;
    }
    
    .navbar-nav::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 80px;
        background: linear-gradient(135deg, #7C3AED 0%, #6D28D9 100%);
        z-index: -1;
    }
    
    .navbar-nav li {
        width: 100%;
        margin: 0;
        border-bottom: 1px solid rgba(124, 58, 237, 0.1);
        animation: slideInRight 0.3s ease forwards;
        opacity: 0;
        flex-shrink: 0; /* Prevent items from shrinking */
    }
    
    .navbar-nav.active li:nth-child(1) { animation-delay: 0.1s; }
    .navbar-nav.active li:nth-child(2) { animation-delay: 0.15s; }
    .navbar-nav.active li:nth-child(3) { animation-delay: 0.2s; }
    .navbar-nav.active li:nth-child(4) { animation-delay: 0.25s; }
    .navbar-nav.active li:nth-child(5) { animation-delay: 0.3s; }
    .navbar-nav.active li:nth-child(6) { animation-delay: 0.35s; }
    .navbar-nav.active li:nth-child(7) { animation-delay: 0.4s; }
    .navbar-nav.active li:nth-child(8) { animation-delay: 0.45s; }
    .navbar-nav.active li:nth-child(9) { animation-delay: 0.5s; }
    .navbar-nav.active li:nth-child(10) { animation-delay: 0.55s; }
    .navbar-nav.active li:nth-child(11) { animation-delay: 0.6s; }
    .navbar-nav.active li:nth-child(12) { animation-delay: 0.65s; }
    
    @keyframes slideInRight {
        from {
            opacity: 0;
            transform: translateX(30px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    .navbar-nav .nav-link {
        display: flex;
        align-items: center;
        padding: 18px 0;
        font-size: 16px;
        font-weight: 600;
        color: #1a1a2e;
        border-radius: 0;
        transition: all 0.3s ease;
        position: relative;
    }
    
    .navbar-nav .nav-link::before {
        content: '';
        position: absolute;
        left: 0;
        width: 0;
        height: 100%;
        background: linear-gradient(90deg, #7C3AED 0%, transparent 100%);
        transition: width 0.3s ease;
        opacity: 0.1;
    }
    
    .navbar-nav .nav-link:hover::before {
        width: 100%;
    }
    
    .navbar-nav .nav-link::after {
        content: '\f105';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        margin-left: auto;
        color: #7C3AED;
        opacity: 0;
        transform: translateX(-10px);
        transition: all 0.3s ease;
    }
    
    .navbar-nav .nav-link:hover::after {
        opacity: 1;
        transform: translateX(0);
    }
    
    .navbar-nav .nav-link:hover {
        color: #7C3AED;
        padding-left: 10px;
    }
    
    /* Mobile CTA Button inside menu */
    .mobile-cta-item {
        display: block !important;
        border-bottom: none !important;
    }
    
    .navbar-cta.mobile-cta {
        display: block !important;
        width: 100%;
        padding: 20px 0;
        margin-top: 15px;
        flex-shrink: 0;
    }
    
    .navbar-cta.mobile-cta .btn {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
        font-size: 15px;
    }
    
    /* Mobile Menu Overlay */
    .mobile-menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(2px);
        z-index: 999;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .mobile-menu-overlay.active {
        display: block;
        opacity: 1;
    }
    
    .navbar-cta.desktop-cta {
        display: none;
    }
    
    /* Mobile CTA Item in nav list */
    .mobile-cta-item {
        border-bottom: none !important;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .partnership-container {
        grid-template-columns: 1fr;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .refund-options {
        grid-template-columns: 1fr;
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.8rem; }
    
    .hero-section {
        padding: 140px 0 80px;
    }
    
    .hero-logo {
        max-width: 150px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 20px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 0 15px;
    }
    
    .industry-card {
        border-radius: var(--radius-md);
    }
    
    .industry-icon-wrapper {
        width: 80px;
        height: 80px;
        font-size: 2rem;
        margin: 25px auto 15px;
    }
    
    .industry-content {
        padding: 20px 15px;
    }
    
    .industry-content h4 {
        font-size: 1.1rem;
    }
    
    .industry-content p {
        font-size: 0.85rem;
    }
    
    .industries-section {
        padding: 40px 0;
    }
    
    .industries-header h3 {
        font-size: 1.8rem;
    }
    
    .industries-header p {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    .industry-item img {
        width: 100px;
        height: 100px;
    }
    
    .offer-grid,
    .pricing-grid,
    .testimonials-grid,
    .portfolio-grid,
    .tech-grid {
        grid-template-columns: 1fr;
    }
    
    .tech-category-title {
        font-size: 1.5rem;
    }
    
    .tech-cta {
        padding: 40px 25px;
    }
    
    .tech-cta h3 {
        font-size: 1.8rem;
    }
    
    .tech-cta p {
        font-size: 1rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .partnership-stats {
        grid-template-columns: 1fr;
    }
    
    .partnership-visual {
        padding: 40px 30px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .portfolio-image {
        height: 220px;
    }
    
    .refund-options-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .refund-option-card.featured {
        transform: scale(1);
    }
    
    .refund-hero {
        padding: 30px 20px;
    }
    
    .refund-disclaimer-box {
        flex-direction: column;
        text-align: center;
    }
    
    .disclaimer-content {
        text-align: center;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 14px 24px;
        font-size: 1rem;
    }
    
    .offer-card,
    .pricing-card {
        padding: 30px 20px;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .refund-option-card {
        padding: 30px 20px;
    }
    
    .refund-percentage {
        font-size: 2.5rem;
    }
    
    .refund-hero h3 {
        font-size: 1.5rem;
    }
    
    .industries-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .industry-icon-wrapper {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
        margin: 20px auto 15px;
    }
    
    .industries-header h3 {
        font-size: 1.5rem;
    }
    
    .industry-overlay i {
        font-size: 2.5rem;
    }
}

/* ===================================
   Utility Classes
   =================================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mt-4 { margin-top: 40px; }
.mt-5 { margin-top: 50px; }

.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.mb-4 { margin-bottom: 40px; }
.mb-5 { margin-bottom: 50px; }

.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-1 { gap: 10px; }
.gap-2 { gap: 20px; }
.gap-3 { gap: 30px; }

/* ===================================
   Legal Pages (Terms, Privacy, FAQ)
   =================================== */
.page-header {
    background: linear-gradient(135deg, #7C3AED 0%, #6D28D9 100%);
    color: var(--white);
    padding: 120px 0 80px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--white);
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.legal-content {
    padding: 80px 0;
}

.legal-document {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 60px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.legal-document h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 40px 0 20px;
    padding-top: 30px;
    border-top: 2px solid var(--gray-200);
}

.legal-document h2:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.legal-document h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 25px 0 15px;
}

.legal-document p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-document ul,
.legal-document ol {
    margin: 15px 0 20px 25px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.legal-document li {
    margin-bottom: 10px;
}

.legal-document strong {
    color: var(--text-dark);
    font-weight: 600;
}

.legal-footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid var(--primary-purple);
    text-align: center;
}

.legal-footer p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: var(--text-dark);
}

/* Contact Info Box in Legal Pages */
.contact-info-box {
    background: linear-gradient(135deg, #f8f7ff 0%, #ede9fe 100%);
    border: 2px solid var(--primary-purple);
    border-radius: var(--radius-lg);
    padding: 40px;
    margin-top: 30px;
}

.contact-info-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-purple);
    margin-bottom: 25px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.contact-info-box h3 i {
    font-size: 1.6rem;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.contact-method {
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: flex-start;
    gap: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.contact-method:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.contact-method i {
    font-size: 1.8rem;
    color: var(--primary-purple);
    margin-top: 5px;
}

.contact-method strong {
    display: block;
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-method p {
    margin: 0;
    font-size: 0.95rem;
}

.contact-method a {
    color: var(--primary-purple);
    text-decoration: none;
    font-weight: 500;
}

.contact-method a:hover {
    text-decoration: underline;
}

/* Contact Methods for FAQ (White on Purple) */
.contact-methods-white {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.contact-method-white {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: flex-start;
    gap: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.contact-method-white:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

.contact-method-white i {
    font-size: 1.8rem;
    color: var(--white);
    margin-top: 5px;
}

.contact-method-white strong {
    display: block;
    font-size: 0.95rem;
    color: var(--white);
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-method-white p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--white);
}

.contact-method-white a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
}

.contact-method-white a:hover {
    text-decoration: underline;
}

/* FAQ Page Styles */
.faq-content {
    padding: 80px 0;
}

.faq-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.faq-intro a {
    color: var(--primary-purple);
    font-weight: 600;
    text-decoration: none;
}

.faq-intro a:hover {
    text-decoration: underline;
}

.faq-category {
    margin-bottom: 60px;
}

.faq-category h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.faq-category h2 i {
    color: var(--primary-purple);
    font-size: 1.8rem;
}

.faq-accordion {
    max-width: 900px;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    margin-bottom: 15px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 25px 30px;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary-purple);
}

.faq-question i {
    color: var(--primary-purple);
    transition: transform 0.3s ease;
    font-size: 0.9rem;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 30px 25px;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 15px;
}

.faq-answer ul,
.faq-answer ol {
    margin: 15px 0 20px 20px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.faq-answer li {
    margin-bottom: 10px;
}

.faq-answer strong {
    color: var(--text-dark);
    font-weight: 600;
}

.faq-cta {
    background: linear-gradient(135deg, #7C3AED 0%, #6D28D9 100%);
    color: var(--white);
    padding: 60px;
    border-radius: var(--radius-lg);
    text-align: center;
    margin-top: 80px;
}

.faq-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.faq-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* ===================================
   Onboarding Form Page
   =================================== */
.onboarding-content {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f7ff 0%, #ffffff 100%);
}

.onboarding-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    background: var(--white);
    padding: 50px 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.intro-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #7C3AED 0%, #6D28D9 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.intro-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.onboarding-intro h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.onboarding-intro p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 25px;
}

.time-estimate {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #f3e8ff 0%, #ede9fe 100%);
    padding: 12px 25px;
    border-radius: var(--radius-md);
    color: var(--primary-purple);
    font-weight: 600;
}

.time-estimate i {
    font-size: 1.2rem;
}

/* Form Sections */
.onboarding-form {
    max-width: 1000px;
    margin: 0 auto;
}

.form-section {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-md);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.form-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.form-section .section-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 2px solid var(--gray-200);
}

.form-section .section-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #7C3AED 0%, #6D28D9 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.form-section .section-title h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.form-section .section-title p {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* Form Grid */
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.required {
    color: #ef4444;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="url"],
.form-group input[type="date"],
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    color: var(--text-dark);
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group small {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 5px;
}

/* Checkbox and Radio Groups */
.checkbox-group,
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checkbox-item,
.radio-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
}

.checkbox-item:hover,
.radio-item:hover {
    border-color: var(--primary-purple);
    background: rgba(124, 58, 237, 0.05);
}

.checkbox-item input[type="checkbox"],
.radio-item input[type="radio"] {
    margin-top: 3px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary-purple);
}

.checkbox-item span,
.radio-item span {
    flex: 1;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.checkbox-item input:checked + span,
.radio-item input:checked + span {
    font-weight: 600;
    color: var(--primary-purple);
}

/* Agreement Checkboxes */
.agreement-check {
    background: linear-gradient(135deg, #f3e8ff 0%, #ede9fe 100%);
    border-color: var(--primary-purple);
}

.agreement-check a {
    color: var(--primary-purple);
    text-decoration: underline;
}

/* Form Submit */
.form-submit {
    text-align: center;
    margin-top: 40px;
    padding: 40px;
    background: linear-gradient(135deg, #7C3AED 0%, #6D28D9 100%);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.form-submit .btn {
    font-size: 1.1rem;
    padding: 18px 50px;
    background: var(--white);
    color: var(--primary-purple);
    border: none;
}

.form-submit .btn-secondary {
    background: #6B7280;
    color: var(--white);
}

.form-submit .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.form-submit .btn-secondary:hover {
    background: #4B5563;
}

.submit-note {
    color: var(--white);
    opacity: 0.9;
    font-size: 0.95rem;
    margin: 0;
}

/* Onboarding Footer CTA */
.onboarding-footer-cta {
    background: linear-gradient(135deg, #7C3AED 0%, #6D28D9 100%);
    color: var(--white);
    padding: 60px;
    border-radius: var(--radius-lg);
    text-align: center;
    margin-top: 60px;
}

.onboarding-footer-cta h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.onboarding-footer-cta p {
    font-size: 1.1rem;
    margin-bottom: 35px;
    opacity: 0.95;
}

/* Responsive for Onboarding Form */
@media (max-width: 768px) {
    .onboarding-intro {
        padding: 40px 25px;
    }
    
    .onboarding-intro h2 {
        font-size: 1.8rem;
    }
    
    .form-section {
        padding: 30px 20px;
    }
    
    .section-header {
        flex-direction: column;
        gap: 15px;
    }
    
    .section-number {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .section-title h3 {
        font-size: 1.5rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .checkbox-item,
    .radio-item {
        padding: 12px;
    }
    
    .form-submit {
        padding: 30px 20px;
        flex-direction: column;
    }
    
    .form-submit .btn {
        width: 100%;
        padding: 15px 30px;
        margin: 0 0 10px 0 !important;
    }
    
    .onboarding-footer-cta {
        padding: 40px 25px;
    }
    
    .onboarding-footer-cta h3 {
        font-size: 1.6rem;
    }
}

/* Responsive for Legal Pages */
@media (max-width: 768px) {
    .page-header {
        padding: 100px 0 60px;
    }
    
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    .legal-document {
        padding: 40px 25px;
    }
    
    .legal-document h2 {
        font-size: 1.5rem;
    }
    
    .faq-category h2 {
        font-size: 1.6rem;
    }
    
    .faq-question {
        padding: 20px;
        font-size: 1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 20px;
    }
    
    .faq-cta {
        padding: 40px 25px;
    }
    
    .faq-cta h2 {
        font-size: 2rem;
    }
}

/* ===================================
   FAQ Section Styles
   =================================== */
.faq-container {
    max-width: 1200px;
    margin: 0 auto;
}

.faq-tabs {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.faq-tab {
    background: white;
    border: 2px solid #e5e7eb;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-tab i {
    font-size: 1.1rem;
}

.faq-tab:hover {
    border-color: #7C3AED;
    color: #7C3AED;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.15);
}

.faq-tab.active {
    background: linear-gradient(135deg, #7C3AED 0%, #A78BFA 100%);
    color: white;
    border-color: #7C3AED;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

.faq-content {
    display: none;
}

.faq-content.active {
    display: block;
    animation: fadeIn 0.4s ease-in;
}

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

.faq-grid {
    display: grid;
    gap: 20px;
}

.faq-item {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-item:hover {
    border-color: #7C3AED;
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.15);
}

.faq-item.active {
    border-color: #7C3AED;
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.2);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    user-select: none;
    background: white;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f9fafb;
}

.faq-item.active .faq-question {
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
}

.faq-question h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    line-height: 1.5;
}

.faq-question i {
    font-size: 1.2rem;
    color: #7C3AED;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: white;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 25px 30px;
}

.faq-answer p {
    margin: 0;
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.7;
}

.faq-cta {
    margin-top: 60px;
    text-align: center;
    background: linear-gradient(135deg, #7C3AED 0%, #A78BFA 100%);
    padding: 50px 40px;
    border-radius: 20px;
    color: white;
}

.faq-cta h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.faq-cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.faq-cta .btn {
    background: white;
    color: #7C3AED;
    font-weight: 600;
    padding: 15px 35px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.faq-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: #f9fafb;
}

/* Responsive FAQ Styles */
@media (max-width: 768px) {
    .faq-tabs {
        flex-direction: column;
        gap: 10px;
    }
    
    .faq-tab {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-question h4 {
        font-size: 1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 20px 20px;
    }
    
    .faq-cta {
        padding: 40px 25px;
    }
    
    .faq-cta h3 {
        font-size: 1.6rem;
    }
    
    .faq-cta p {
        font-size: 1rem;
    }
}

/* ===================================
   Print Styles
   =================================== */
@media print {
    .main-header,
    .footer-section,
    .scroll-to-top {
        display: none;
    }
}

/* ===================================
   Pricing Calculator Modal
   =================================== */
.calc-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    padding: 20px;
    overflow-y: auto;
}

.calc-modal-content {
    background: white;
    border-radius: 20px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    animation: calcModalSlideIn 0.3s ease;
}

@keyframes calcModalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.calc-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    border: none;
    background: #f3f4f6;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #6b7280;
    transition: all 0.2s ease;
    z-index: 10;
}

.calc-close-btn:hover {
    background: #ef4444;
    color: white;
}

.calc-header {
    text-align: center;
    padding: 30px 30px 20px;
    background: linear-gradient(135deg, #7C3AED 0%, #5B21B6 100%);
    color: white;
    border-radius: 20px 20px 0 0;
}

.calc-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 30px;
}

.calc-header h2 {
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.calc-header p {
    opacity: 0.9;
    font-size: 1rem;
}

/* Step Indicators */
.calc-steps-indicator {
    display: flex;
    justify-content: center;
    padding: 25px 20px;
    background: #f9fafb;
    gap: 10px;
    flex-wrap: wrap;
}

.calc-step-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background: white;
    border-radius: 30px;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.calc-step-indicator .step-number {
    width: 28px;
    height: 28px;
    background: #e5e7eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    color: #6b7280;
}

.calc-step-indicator span {
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
}

.calc-step-indicator.active {
    border-color: #7C3AED;
    background: #f5f3ff;
}

.calc-step-indicator.active .step-number {
    background: #7C3AED;
    color: white;
}

.calc-step-indicator.active span {
    color: #7C3AED;
}

.calc-step-indicator.completed {
    border-color: #10b981;
    background: #ecfdf5;
}

.calc-step-indicator.completed .step-number {
    background: #10b981;
    color: white;
}

.calc-step-indicator.completed .step-number::after {
    content: '✓';
}

.calc-step-indicator.completed span {
    color: #10b981;
}

/* Steps Content */
.calc-step {
    display: none;
    padding: 30px;
}

.calc-step.active {
    display: block;
}

.calc-step h3 {
    font-size: 1.4rem;
    color: #1f2937;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.calc-step h3 i {
    color: #7C3AED;
}

.calc-step-subtitle {
    color: #6b7280;
    margin-bottom: 25px;
}

/* Project Type Select */
.calc-select {
    width: 100%;
    padding: 15px 20px;
    font-size: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    background: white;
    cursor: pointer;
    transition: all 0.2s ease;
}

.calc-select:focus {
    outline: none;
    border-color: #7C3AED;
    box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.1);
}

/* Features Grid */
.calc-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    max-height: 400px;
    overflow-y: auto;
    padding-right: 10px;
}

.calc-features-grid::-webkit-scrollbar {
    width: 6px;
}

.calc-features-grid::-webkit-scrollbar-track {
    background: #f3f4f6;
    border-radius: 10px;
}

.calc-features-grid::-webkit-scrollbar-thumb {
    background: #7C3AED;
    border-radius: 10px;
}

.calc-feature-category {
    background: #f9fafb;
    border-radius: 12px;
    padding: 15px;
    border: 1px solid #e5e7eb;
}

.calc-feature-category .category-header {
    font-weight: 600;
    color: #374151;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 2px solid #7C3AED;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.calc-feature-category .category-header i {
    color: #7C3AED;
}

.calc-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: white;
    border-radius: 8px;
    margin-bottom: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.calc-feature-item:hover {
    border-color: #7C3AED;
}

.calc-feature-item:last-child {
    margin-bottom: 0;
}

.calc-feature-checkbox {
    width: 18px;
    height: 18px;
    accent-color: #7C3AED;
    cursor: pointer;
}

.calc-feature-item span:first-of-type {
    flex: 1;
    font-size: 13px;
    color: #374151;
}

.calc-feature-item .feature-price {
    font-size: 12px;
    font-weight: 600;
    color: #7C3AED;
    background: #f5f3ff;
    padding: 3px 8px;
    border-radius: 15px;
}

/* Options Grid */
.calc-options-grid {
    display: grid;
    gap: 25px;
}

.calc-option-group {
    background: #f9fafb;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.calc-option-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 12px;
}

.calc-option-group label i {
    color: #7C3AED;
}

.calc-option-group small {
    display: block;
    margin-top: 10px;
    color: #6b7280;
    font-size: 13px;
}

/* Quote Card */
.calc-quote-card {
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    border-radius: 16px;
    padding: 25px;
    border: 2px solid #e5e7eb;
}

.quote-breakdown {
    background: white;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
}

.quote-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f3f4f6;
}

.quote-row:last-of-type {
    border-bottom: none;
}

.quote-row span:first-child {
    color: #6b7280;
}

.quote-row span:last-child {
    font-weight: 600;
    color: #374151;
}

.quote-divider {
    height: 2px;
    background: linear-gradient(90deg, #7C3AED, #A78BFA);
    margin: 15px 0;
    border-radius: 2px;
}

.quote-row.quote-total {
    padding: 15px 0 5px;
}

.quote-row.quote-total span:first-child {
    font-size: 1.1rem;
    font-weight: 600;
    color: #374151;
}

.quote-row.quote-total span:last-child {
    font-size: 1.8rem;
    font-weight: 700;
    color: #7C3AED;
}

.quote-range {
    text-align: center;
    padding: 12px;
    background: #fef3c7;
    border-radius: 8px;
    color: #92400e;
    font-size: 14px;
    margin-top: 10px;
}

.quote-range i {
    margin-right: 5px;
}

.quote-includes {
    background: white;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
}

.quote-includes h4 {
    color: #10b981;
    margin-bottom: 15px;
    font-size: 1rem;
}

.quote-includes ul {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.quote-includes li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #374151;
}

.quote-includes li i {
    color: #10b981;
}

.quote-disclaimer {
    display: flex;
    gap: 10px;
    padding: 15px;
    background: #fef2f2;
    border-radius: 10px;
    align-items: flex-start;
}

.quote-disclaimer i {
    color: #ef4444;
    margin-top: 2px;
}

.quote-disclaimer p {
    margin: 0;
    font-size: 13px;
    color: #991b1b;
    line-height: 1.5;
}

/* Step Actions */
.calc-step-actions {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.calc-step-actions .btn {
    padding: 12px 25px;
    font-size: 15px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.calc-step-actions .btn-primary {
    background: linear-gradient(135deg, #7C3AED, #5B21B6);
    color: white;
    border: none;
}

.calc-step-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(124, 58, 237, 0.4);
}

.calc-step-actions .btn-secondary {
    background: #f3f4f6;
    color: #374151;
    border: none;
}

.calc-step-actions .btn-secondary:hover {
    background: #e5e7eb;
}

.calc-step-actions .btn-success {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border: none;
}

.calc-step-actions .btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(16, 185, 129, 0.4);
}

.calc-final-actions {
    flex-direction: column;
    align-items: stretch;
}

.calc-final-actions .btn-success {
    justify-content: center;
    padding: 15px 30px;
    font-size: 1.1rem;
}

.calc-reset {
    text-align: center;
    margin-top: 15px;
}

.calc-reset .btn-link {
    background: none;
    border: none;
    color: #6b7280;
    cursor: pointer;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.calc-reset .btn-link:hover {
    color: #7C3AED;
}

/* Custom Features Category */
.calc-custom-category {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-color: #f59e0b;
}

.calc-custom-category .category-header {
    border-bottom-color: #f59e0b;
    color: #92400e;
}

.calc-custom-category .category-header i {
    color: #f59e0b;
}

.calc-custom-info {
    background: white;
    padding: 12px 15px;
    border-radius: 8px;
    margin-bottom: 12px;
    text-align: center;
}

.calc-custom-info p {
    margin: 0;
    font-weight: 600;
    color: #92400e;
    font-size: 14px;
}

.calc-custom-info p i {
    color: #f59e0b;
    margin-right: 5px;
}

.calc-custom-info small {
    display: block;
    margin-top: 5px;
    color: #b45309;
    font-size: 12px;
}

.calc-custom-inputs {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.calc-custom-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    background: white;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    transition: all 0.2s ease;
}

.calc-custom-item:focus-within {
    border-color: #f59e0b;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.15);
}

.calc-custom-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 13px;
    background: transparent;
    color: #374151;
}

.calc-custom-input::placeholder {
    color: #9ca3af;
    font-style: italic;
}

.calc-custom-item .feature-price {
    font-size: 12px;
    font-weight: 600;
    color: #f59e0b;
    background: #fef3c7;
    padding: 3px 8px;
    border-radius: 15px;
    white-space: nowrap;
}

.calc-custom-note {
    margin: 12px 0 0;
    font-size: 11px;
    color: #92400e;
    display: flex;
    align-items: flex-start;
    gap: 5px;
    background: rgba(255, 255, 255, 0.7);
    padding: 10px;
    border-radius: 6px;
}

.calc-custom-note i {
    color: #f59e0b;
    margin-top: 1px;
}

/* Calculator Responsive */
@media (max-width: 768px) {
    .calc-modal-content {
        max-height: 95vh;
        border-radius: 15px;
    }
    
    .calc-header {
        padding: 25px 20px 15px;
    }
    
    .calc-header h2 {
        font-size: 1.4rem;
    }
    
    .calc-steps-indicator {
        padding: 15px;
        gap: 8px;
    }
    
    .calc-step-indicator {
        padding: 6px 10px;
    }
    
    .calc-step-indicator span {
        display: none;
    }
    
    .calc-step {
        padding: 20px;
    }
    
    .calc-features-grid {
        grid-template-columns: 1fr;
        max-height: 350px;
    }
    
    .quote-row.quote-total span:last-child {
        font-size: 1.5rem;
    }
    
    .quote-includes ul {
        grid-template-columns: 1fr;
    }
    
    .calc-step-actions {
        flex-direction: column;
    }
    
    .calc-step-actions .btn {
        justify-content: center;
    }
}

/* ===================================
   30% Discount Offer Modal
   =================================== */
.discount-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 10001;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.discount-modal-content {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 24px;
    max-width: 420px;
    width: 100%;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    animation: discountBounce 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    overflow: hidden;
}

@keyframes discountBounce {
    0% {
        opacity: 0;
        transform: scale(0.3) translateY(-100px);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.discount-confetti {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 20%, #f59e0b 2px, transparent 2px),
        radial-gradient(circle at 90% 30%, #10b981 2px, transparent 2px),
        radial-gradient(circle at 30% 80%, #7C3AED 2px, transparent 2px),
        radial-gradient(circle at 70% 10%, #ef4444 2px, transparent 2px),
        radial-gradient(circle at 50% 50%, #3b82f6 2px, transparent 2px);
    background-size: 100px 100px;
    animation: confettiFloat 3s ease-in-out infinite;
    opacity: 0.5;
    pointer-events: none;
}

@keyframes confettiFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.discount-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(239, 68, 68, 0.5);
    animation: badgePulse 1.5s ease-in-out infinite;
    z-index: 2;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

.discount-percent {
    font-size: 32px;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.discount-off {
    font-size: 14px;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
}

.discount-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
    color: white;
    animation: iconShake 0.5s ease-in-out 0.3s;
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.4);
}

@keyframes iconShake {
    0%, 100% { transform: rotate(0); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
}

.discount-title {
    font-size: 1.8rem;
    color: #1f2937;
    margin-bottom: 5px;
}

.discount-subtitle {
    color: #6b7280;
    font-size: 1rem;
    margin-bottom: 15px;
}

.discount-highlight {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 10px;
    animation: highlightGlow 2s ease-in-out infinite;
}

@keyframes highlightGlow {
    0%, 100% { box-shadow: 0 5px 20px rgba(16, 185, 129, 0.4); }
    50% { box-shadow: 0 5px 40px rgba(16, 185, 129, 0.7); }
}

.discount-highlight span {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.discount-desc {
    color: #374151;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.discount-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.discount-benefits li {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: #374151;
    background: #f3f4f6;
    padding: 6px 12px;
    border-radius: 20px;
}

.discount-benefits li i {
    color: #10b981;
}

.discount-timer {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #92400e;
    padding: 10px 20px;
    border-radius: 10px;
    margin-bottom: 25px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
    animation: timerBlink 1s ease-in-out infinite;
}

@keyframes timerBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.discount-timer i {
    animation: clockTick 1s linear infinite;
}

@keyframes clockTick {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.discount-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-discount-whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    border: none;
    padding: 16px 30px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    animation: ctaPulse 2s ease-in-out infinite;
}

@keyframes ctaPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.btn-discount-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
}

.btn-discount-whatsapp i {
    font-size: 1.3rem;
}

.btn-discount-close {
    background: transparent;
    border: none;
    color: #9ca3af;
    font-size: 14px;
    cursor: pointer;
    padding: 10px;
    transition: color 0.2s ease;
}

.btn-discount-close:hover {
    color: #6b7280;
}

/* Discount Modal Responsive */
@media (max-width: 480px) {
    .discount-modal-content {
        padding: 30px 20px;
    }
    
    .discount-badge {
        width: 80px;
        height: 80px;
    }
    
    .discount-percent {
        font-size: 26px;
    }
    
    .discount-off {
        font-size: 12px;
    }
    
    .discount-title {
        font-size: 1.5rem;
    }
    
    .discount-highlight span {
        font-size: 1.2rem;
    }
    
    .discount-benefits {
        gap: 8px;
    }
    
    .discount-benefits li {
        font-size: 11px;
        padding: 5px 10px;
    }
}
