/* =============================================================================
   MODERN ONECLICK WEBSITE STYLES
   Refactored for better maintainability and jaw-dropping design
   ============================================================================= */

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

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #0f172a;
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* =============================================================================
   NAVIGATION HEADER
   ============================================================================= */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.90);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    z-index: 100;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.75rem;
    font-weight: 800;
    color: #0f172a;
    transition: all 0.3s ease;
    text-decoration: none;
}

.logo-icon {
    font-size: 1.5rem;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #d946ef 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-text {
    background: linear-gradient(135deg, #0f172a 0%, #374151 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo:hover {
    transform: scale(1.05);
    text-decoration: none;
    color: #0f172a;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

/* Mobile menu toggle button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    background: none;
    border: none;
    z-index: 101;
    position: relative;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #0f172a;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
    display: block;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.nav-link {
    text-decoration: none;
    color: #64748b;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.75rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #6366f1, #8b5cf6);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
    color: #0f172a;
    transform: translateY(-1px);
}

.nav-link:hover::after {
    width: 100%;
}

/* Language Selector Styles */
.language-selector {
    position: relative;
    margin-left: 1.5rem;
}

.language-button {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    padding: 0.4rem 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
    font-size: 0.875rem;
    color: #64748b;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    min-width: 50px;
    justify-content: center;
}

.language-button:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(99, 102, 241, 0.2);
    color: #374151;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.current-flag {
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
}

.dropdown-arrow {
    font-size: 0.65rem;
    opacity: 0.6;
    transition: transform 0.2s ease;
    margin-left: 0.1rem;
}

.language-selector.open .dropdown-arrow {
    transform: rotate(180deg);
}

.language-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    padding: 0.5rem;
    min-width: 160px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.95);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
}

.language-selector.open .language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.language-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0.75rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.15s ease;
    font-size: 0.875rem;
}

.language-option:hover {
    background: rgba(99, 102, 241, 0.08);
    color: #374151;
}

.language-option.active {
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
    font-weight: 600;
}

.language-option .flag {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.language-option .lang-name {
    flex: 1;
    font-weight: 500;
}

.language-option .lang-code {
    font-size: 0.75rem;
    opacity: 0.7;
    font-weight: 600;
    letter-spacing: 0.05em;
}

/* Responsive language selector */
@media (max-width: 768px) {
    .language-selector {
        margin-left: 1rem;
    }
    
    .language-button {
        padding: 0.35rem 0.5rem;
        font-size: 0.8rem;
        min-width: 45px;
    }
    
    .language-dropdown {
        min-width: 140px;
    }
    
    .language-option {
        padding: 0.5rem 0.6rem;
        font-size: 0.8rem;
    }
}

/* Mobile Navigation */
@media (max-width: 768px) {
    /* Adjust navigation layout */
    .navigation {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }
    
    /* Show mobile menu toggle */
    .mobile-menu-toggle {
        display: flex !important;
        order: 2;
        margin-left: auto;
    }

    /* Hide desktop nav menu by default */
    .nav-menu {
        position: fixed !important;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column !important;
        justify-content: flex-start;
        align-items: flex-start !important;
        padding: 6rem 2rem 2rem;
        gap: 2rem !important;
        transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
        z-index: 100;
        border-left: 1px solid rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        width: 100% !important;
        padding: 1rem 0 !important;
        font-size: 1.1rem !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
        color: #374151 !important;
        text-align: left !important;
        display: block !important;
    }
    
    .nav-link:hover {
        color: #6366f1 !important;
        background: rgba(99, 102, 241, 0.05) !important;
        padding-left: 0.5rem !important;
    }

    /* Mobile language selector in menu */
    .nav-menu .language-selector {
        margin-left: 0;
        margin-top: 1rem;
        width: 100%;
    }

    .nav-menu .language-button {
        width: 100%;
        justify-content: space-between;
        padding: 0.75rem 1rem;
    }

    /* Mobile menu overlay */
    .mobile-menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 99;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .mobile-menu-overlay.active {
        display: block;
        opacity: 1;
    }
}

/* =============================================================================
   HERO SECTION
   ============================================================================= */

.hero {
    padding: 14rem 0 10rem;
    background: 
        radial-gradient(circle at 25% 25%, rgba(99, 102, 241, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
        linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%236366f1' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

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

.hero-header {
    margin-bottom: 4rem;
    margin-top: 2rem;
}

.hero-title {
    font-size: clamp(3.2rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.04em;
    margin-bottom: 2rem;
    color: #0f172a;
}

.title-line-1 {
    display: block;
    color: #0f172a;
    font-weight: 900;
}

.title-line-2 {
    display: block;
    margin-top: 0.5rem;
    font-weight: 900;
}

.highlighted-text {
    position: relative;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #d946ef 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

.highlighted-text::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #6366f1, #8b5cf6, #d946ef);
    border-radius: 3px;
    opacity: 0.8;
    animation: underlineGlow 2s ease-in-out infinite alternate;
}

@keyframes underlineGlow {
    0% { 
        opacity: 0.6; 
        transform: scaleX(0.95);
    }
    100% { 
        opacity: 1; 
        transform: scaleX(1);
        box-shadow: 0 0 20px rgba(99, 102, 241, 0.5);
    }
}

.hero-subtitle {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    color: #64748b;
    line-height: 1.7;
    font-weight: 400;
    max-width: 700px;
    margin: 0 auto;
}

.hero-action {
    margin-bottom: 4rem;
}

/* Step Progress Indicator */
.step-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2.5rem;
    padding: 0 2rem;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    z-index: 2;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    font-size: 0.9rem;
    font-weight: 700;
    background: #e2e8f0;
    color: #64748b;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-item.active .step-number {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
    transform: scale(1.1);
}

.step-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #64748b;
    text-align: center;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.step-item.active .step-label {
    color: #6366f1;
    font-weight: 700;
}

.step-progress .step-connector {
    flex: 1;
    height: 2px;
    background: #e2e8f0;
    margin: 0 1rem;
    position: relative;
    z-index: 1;
}

.step-progress .step-connector::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #6366f1, #8b5cf6);
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 1px;
}

.input-group {
    display: flex;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    padding: 0.75rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 
        0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.input-group:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.15),
        0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.url-input {
    flex: 1;
    padding: 1.25rem 1.5rem;
    border: 2px solid transparent;
    border-radius: 16px;
    font-size: 1rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.8);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
}

.url-input:focus {
    border-color: #6366f1;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
    transform: translateY(-1px);
}

.upgrade-button {
    padding: 1.25rem 2.5rem;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #d946ef 100%);
    color: #ffffff;
    border: none;
    border-radius: 16px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    min-width: 140px;
    box-shadow: 
        0 10px 15px -3px rgba(99, 102, 241, 0.4),
        0 4px 6px -2px rgba(99, 102, 241, 0.1);
}

.button-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.button-icon {
    transition: transform 0.3s ease;
    font-size: 1.2rem;
}

.upgrade-button::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;
}

.upgrade-button:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 20px 25px -5px rgba(99, 102, 241, 0.5),
        0 10px 10px -5px rgba(99, 102, 241, 0.2);
}

.upgrade-button:hover::before {
    left: 100%;
}

.upgrade-button:hover .button-icon {
    transform: translateX(4px);
}

.action-note {
    font-size: 0.9rem;
    color: #64748b;
    text-align: center;
    font-weight: 500;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    font-size: 0.9rem;
    font-weight: 500;
    color: #64748b;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.trust-badge:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.trust-icon {
    font-size: 1.1rem;
}

/* =============================================================================
   CREDIBILITY SECTION
   ============================================================================= */

.credibility {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.credibility-content {
    display: grid;
    gap: 6rem;
    max-width: 1200px;
    margin: 0 auto;
}

.stats-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.primary-stat {
    text-align: left;
}

.stat-visual {
    display: flex;
    align-items: baseline;
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat-number {
    font-size: clamp(4rem, 8vw, 6rem);
    font-weight: 900;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #d946ef 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    position: relative;
}

.stat-number::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6366f1, #8b5cf6, #d946ef);
    border-radius: 2px;
    opacity: 0.3;
}

.stat-trend {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #dcfce7, #bbf7d0);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    border: 1px solid #86efac;
    color: #166534;
    font-size: 0.85rem;
    font-weight: 600;
}

.trend-icon {
    font-size: 1rem;
}

.stat-description h3 {
    font-size: 2rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.stat-description p {
    font-size: 1.125rem;
    color: #64748b;
    line-height: 1.7;
}

.credibility-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.metric {
    text-align: center;
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.metric:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.metric-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.metric-label {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.expertise-showcase {
    text-align: center;
}

.expertise-showcase h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.company-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.company-badge {
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 250, 252, 0.9));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    font-weight: 600;
    color: #374151;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.company-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #6366f1, #8b5cf6, #d946ef);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.company-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.company-badge:hover::before {
    transform: scaleX(1);
}

/* =============================================================================
   PROCESS SECTION
   ============================================================================= */

.process {
    padding: 6rem 0;
    background: #ffffff;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    font-weight: 400;
    line-height: 1.6;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.step-visual {
    margin-bottom: 1.5rem;
    position: relative;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: #ffffff;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 800;
    box-shadow: 
        0 10px 20px -5px rgba(99, 102, 241, 0.4),
        0 8px 8px -5px rgba(99, 102, 241, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

.step-connector {
    position: absolute;
    top: 50%;
    right: -1rem;
    width: 2rem;
    height: 2px;
    background: linear-gradient(to right, #6366f1, transparent);
    opacity: 0.3;
    z-index: 1;
}

.process-step:last-child .step-connector {
    display: none;
}

.step-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.step-content p {
    color: #64748b;
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 1.25rem;
}

.step-features {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.feature-tag {
    padding: 0.4rem 0.75rem;
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    border: 1px solid #cbd5e1;
    border-radius: 16px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* =============================================================================
   PRICING SECTION
   ============================================================================= */

.pricing {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.pricing-layout {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-content {
    max-width: 600px;
}

.pricing-content .section-title {
    text-align: left;
    margin-bottom: 1.5rem;
}

.pricing-content .section-subtitle {
    text-align: left;
    margin-bottom: 2rem;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 2rem;
    border: 2px solid transparent;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 10px 15px -3px rgba(0, 0, 0, 0.1),
        0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.15),
        0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.pricing-card.enhanced-hover:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        0 35px 70px -12px rgba(99, 102, 241, 0.3),
        0 25px 35px -5px rgba(99, 102, 241, 0.2);
    border-color: rgba(99, 102, 241, 0.5);
}

.pricing-card.enhanced-hover:hover .featured-badge {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.6);
}

.pricing-card.enhanced-hover:hover .plan-button.enhanced-button {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 25px 50px -12px rgba(99, 102, 241, 0.6),
        0 15px 25px -5px rgba(99, 102, 241, 0.3);
}

.pricing-card.featured {
    border-color: #6366f1;
    transform: scale(1.05);
    box-shadow: 
        0 20px 25px -5px rgba(99, 102, 241, 0.2),
        0 10px 10px -5px rgba(99, 102, 241, 0.1);
}

.pricing-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
    border-radius: 24px;
    pointer-events: none;
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
}

.card-header {
    margin-bottom: 1.5rem;
}

.card-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
}

.price-display {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    margin-bottom: 1rem;
    justify-content: flex-start;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: #64748b;
}

.amount {
    font-size: 3rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.period {
    font-size: 1rem;
    color: #64748b;
    font-weight: 500;
}

.plan-description {
    color: #64748b;
    line-height: 1.6;
}

.card-features {
    margin-bottom: 1.5rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.25rem;
    height: 1.25rem;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.plan-button {
    width: 100%;
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.plan-button.primary {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    box-shadow: 
        0 10px 15px -3px rgba(99, 102, 241, 0.3),
        0 4px 6px -2px rgba(99, 102, 241, 0.05);
}

.plan-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 20px 25px -5px rgba(99, 102, 241, 0.4),
        0 10px 10px -5px rgba(99, 102, 241, 0.1);
}

.plan-button.secondary {
    background: #ffffff;
    color: #6366f1;
    border: 2px solid #6366f1;
}

.plan-button.secondary:hover {
    background: #6366f1;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(99, 102, 241, 0.3);
}



/* Light switch toggle styles */
.billing-toggle {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.toggle-label {
    font-size: 1rem;
    font-weight: 600;
    color: #374151;
    transition: all 0.3s ease;
}

.toggle-label.active {
    color: #6366f1;
}

.toggle-switch {
    width: 60px;
    height: 30px;
    background: #e2e8f0;
    border-radius: 30px;
    position: relative;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.toggle-switch.active {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.toggle-slider {
    width: 22px;
    height: 22px;
    background: white;
    border-radius: 50%;
    position: absolute;
    top: 2px;
    left: 2px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.toggle-switch.active .toggle-slider {
    transform: translateX(30px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.toggle-switch:hover {
    border-color: #6366f1;
    transform: scale(1.05);
}

.savings-text {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white !important;
    padding: 0.3rem 0.6rem;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-left: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-block;
    vertical-align: middle;
    box-shadow: 0 2px 8px rgba(34, 197, 94, 0.3);
}

.guarantee-section {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.6rem 1rem;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.08), rgba(22, 163, 74, 0.03));
    border-radius: 10px;
    color: #166534;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(34, 197, 94, 0.15);
    max-width: fit-content;
    transition: all 0.3s ease;
}

.guarantee-section:hover {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.12), rgba(22, 163, 74, 0.06));
    transform: translateY(-1px);
}

.guarantee-icon {
    font-size: 1rem;
}

.guarantee-text {
    color: #166534;
}

.enhanced-button {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #d946ef 100%);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.enhanced-button:hover::before {
    left: 100%;
}

/* =============================================================================
   SHOWCASE SECTION
   ============================================================================= */

.showcase {
    padding: 8rem 0;
    background: #ffffff;
}

.showcase-grid {
    display: grid;
    gap: 5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.showcase-item {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 3rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 
        0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.showcase-item:hover {
    transform: translateY(-6px);
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.15),
        0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.before-after {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.label {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    color: #64748b;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-align: center;
}

.website-mockup {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    background: #ffffff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.website-mockup:hover {
    transform: scale(1.05);
    box-shadow: 
        0 10px 15px -3px rgba(0, 0, 0, 0.1),
        0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.mockup-browser {
    height: 2.5rem;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    display: flex;
    align-items: center;
    padding: 0 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.browser-dots {
    display: flex;
    gap: 0.5rem;
}

.browser-dots span {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.browser-dots span:nth-child(1) { background: #ef4444; }
.browser-dots span:nth-child(2) { background: #f59e0b; }
.browser-dots span:nth-child(3) { background: #22c55e; }

.website-mockup:hover .browser-dots span {
    transform: scale(1.2);
}

.browser-url {
    flex: 1;
    background: rgba(0, 0, 0, 0.05);
    margin-left: 1rem;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.75rem;
    color: #64748b;
    font-family: 'Monaco', 'Menlo', monospace;
    text-align: center;
}

.website-link {
    display: block;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.website-link:hover .website-mockup {
    transform: scale(1.02);
    box-shadow: 
        0 15px 25px -5px rgba(0, 0, 0, 0.15),
        0 8px 12px -3px rgba(0, 0, 0, 0.1);
}

.website-url {
    display: block;
    text-align: center;
    margin-top: 0.75rem;
    font-size: 0.8rem;
    color: #6366f1;
    font-weight: 600;
    font-family: 'Monaco', 'Menlo', monospace;
}

/* Screenshot container styles */
.screenshot-container {
    padding: 0;
    height: auto;
    background: transparent;
    overflow: hidden;
}

.website-screenshot {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.screenshot-mockup {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    background: #ffffff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.screenshot-mockup:hover {
    transform: scale(1.02);
    box-shadow: 
        0 10px 15px -3px rgba(0, 0, 0, 0.1),
        0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.screenshot-mockup .mockup-browser {
    height: 2.5rem;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    display: flex;
    align-items: center;
    padding: 0 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.screenshot-mockup .browser-url {
    flex: 1;
    background: rgba(255, 255, 255, 0.8);
    margin-left: 1rem;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.75rem;
    color: #64748b;
    font-family: 'Monaco', 'Menlo', monospace;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.mockup-content {
    padding: 1.5rem;
    height: 10rem;
    position: relative;
}

/* Old Design Styles */
.old-design .mockup-content {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.old-header {
    height: 1.25rem;
    background: linear-gradient(90deg, #cbd5e1, #94a3b8);
    margin-bottom: 1.25rem;
    border-radius: 4px;
    animation: pulse 2s infinite;
}

.old-text {
    height: 0.875rem;
    background: linear-gradient(90deg, #e2e8f0, #cbd5e1);
    margin-bottom: 1rem;
    border-radius: 4px;
    animation: pulse 2s infinite;
}

.old-text.short {
    width: 65%;
}

.old-button {
    height: 2.5rem;
    width: 5rem;
    background: linear-gradient(90deg, #9ca3af, #6b7280);
    border-radius: 6px;
    animation: pulse 2s infinite;
}

.old-sidebar {
    position: absolute;
    left: 1.5rem;
    top: 4rem;
    width: 28%;
    height: 5rem;
    background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
    border-radius: 6px;
    animation: pulse 2s infinite;
}

.old-main {
    margin-left: 35%;
    height: 5rem;
}

/* New Design Styles */
.new-design .mockup-content {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
}

.new-header {
    height: 1rem;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    margin-bottom: 1.25rem;
    border-radius: 6px;
    animation: shimmer 3s infinite;
}

.new-hero {
    height: 2.5rem;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    margin-bottom: 1.25rem;
    border-radius: 8px;
    animation: shimmer 3s infinite 0.5s;
}

.new-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.new-card {
    height: 4rem;
    background: linear-gradient(135deg, #fafafa, #f1f5f9);
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    animation: shimmer 3s infinite;
}

.new-card:nth-child(2) { animation-delay: 0.3s; }
.new-card:nth-child(3) { animation-delay: 0.6s; }

.new-nav {
    height: 1rem;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    margin-bottom: 1.25rem;
    border-radius: 6px;
    animation: shimmer 3s infinite;
}

.new-section {
    height: 8rem;
}

.new-text {
    height: 1.25rem;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    margin-bottom: 1.25rem;
    border-radius: 6px;
    animation: shimmer 3s infinite 0.2s;
}

.new-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    height: 4rem;
}

.grid-item {
    background: linear-gradient(135deg, #fafafa, #f1f5f9);
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    animation: shimmer 3s infinite;
}

.grid-item:nth-child(2) { animation-delay: 0.4s; }

.testimonial {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

.testimonial p {
    font-style: italic;
    color: #374151;
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
    font-weight: 500;
}

.testimonial cite {
    font-size: 0.9rem;
    color: #64748b;
    font-style: normal;
    font-weight: 600;
}

/* =============================================================================
   FOOTER
   ============================================================================= */

.footer {
    padding: 4rem 0 1.5rem;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #ffffff;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%236366f1' fill-opacity='0.02'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.footer-brand {
    max-width: 500px;
}

.footer-brand .logo {
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
    text-decoration: none;
}

.footer-brand .logo .logo-icon {
    color: #ffffff;
    -webkit-text-fill-color: #ffffff;
}

.footer-brand .logo .logo-text {
    color: #ffffff;
    -webkit-text-fill-color: #ffffff;
}

.footer-brand .logo:hover {
    text-decoration: none;
    color: #ffffff;
}

.brand-tagline {
    color: #cbd5e1;
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.company-info {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.company-description {
    color: #e2e8f0;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.company-description strong {
    color: #ffffff;
    font-weight: 700;
}

.company-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #94a3b8;
    font-size: 0.875rem;
}

.detail-icon {
    font-size: 1rem;
    opacity: 0.8;
}

.footer-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.footer-section h4 {
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-section a {
    display: block;
    color: #94a3b8;
    text-decoration: none;
    margin-bottom: 0.4rem;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.15rem 0;
    position: relative;
}

.footer-section a::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background: #6366f1;
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: #ffffff;
    transform: translateX(8px);
}

.footer-section a:hover::before {
    opacity: 1;
}

.footer-bottom {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.copyright p {
    color: #94a3b8;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.legal-note {
    color: #64748b;
    font-size: 0.8rem;
}

.footer-badges {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.trust-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    font-size: 0.8rem;
    color: #cbd5e1;
    font-weight: 500;
}

.trust-indicator:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
}

.indicator-icon {
    font-size: 0.9rem;
}

/* =============================================================================
   MODAL
   ============================================================================= */

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: modalFadeIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal.hidden {
    display: none;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
}

.modal-content {
    background: #ffffff;
    border-radius: 24px;
    padding: 2.5rem;
    max-width: 480px;
    width: 90%;
    position: relative;
    z-index: 1001;
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.25),
        0 20px 25px -5px rgba(0, 0, 0, 0.1);
    animation: modalSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.modal-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
}

.modal-close {
    background: none;
    border: none;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #64748b;
    font-size: 1.5rem;
}

.modal-close:hover {
    background: #f1f5f9;
    color: #1e293b;
}

.modal-website-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-radius: 16px;
    margin-bottom: 1.5rem;
}

.website-icon {
    font-size: 2rem;
}

.website-url {
    font-size: 1.125rem;
    font-weight: 600;
    color: #0f172a;
}

.website-status {
    font-size: 0.875rem;
    color: #22c55e;
    font-weight: 500;
}

.modal-description {
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.email-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.email-input {
    padding: 1.125rem 1.5rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #ffffff;
    font-weight: 500;
}

.email-input:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
    transform: translateY(-1px);
}

.submit-button {
    padding: 1.125rem 2rem;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 10px 15px -3px rgba(99, 102, 241, 0.3),
        0 4px 6px -2px rgba(99, 102, 241, 0.05);
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 20px 25px -5px rgba(99, 102, 241, 0.4),
        0 10px 10px -5px rgba(99, 102, 241, 0.1);
}

.submit-button:hover .button-icon {
    transform: scale(1.2);
}

/* =============================================================================
   ANIMATIONS
   ============================================================================= */

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

@keyframes shimmer {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

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

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

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

/* Scroll animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =============================================================================
   RESPONSIVE DESIGN
   ============================================================================= */

@media (max-width: 1024px) {
    .stats-showcase {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .credibility-metrics {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .process-step {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .step-connector {
        display: none;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .navigation {
        justify-content: space-between;
        padding: 1.75rem 0;
    }
    
    .hero {
        padding: 10rem 0 6rem;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 6vw, 4rem);
    }
    
    .input-group {
        flex-direction: column;
        gap: 1rem;
    }
    
    .upgrade-button {
        width: 100%;
    }
    
    .trust-badges {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .trust-badge {
        min-width: 200px;
        justify-content: center;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    /* Step Progress Responsive */
    .step-progress {
        padding: 0 1rem;
        margin-bottom: 2rem;
    }

    .step-progress .step-connector {
        margin: 0 0.5rem;
    }

    .step-label {
        font-size: 0.75rem;
    }

    .step-number {
        width: 2rem;
        height: 2rem;
        font-size: 0.8rem;
    }
    
    .credibility-metrics {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .metric {
        padding: 2.5rem 2rem;
    }

    .metric-number {
        font-size: 3rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .pricing-content .section-title,
    .pricing-content .section-subtitle {
        text-align: center;
    }

    .billing-toggle {
        justify-content: center;
        margin-top: 1.5rem;
    }
    
    .guarantee-section {
        margin: 1.5rem auto 0;
        justify-content: center;
    }
    
    .before-after {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .showcase-item {
        padding: 2rem;
    }

    .website-mockup {
        max-width: 100%;
    }

    .mockup-content {
        height: 8rem;
        padding: 1rem;
    }

    /* Screenshot mockups mobile responsive */
    .browser-url {
        font-size: 0.65rem;
        padding: 0.2rem 0.5rem;
    }

    .website-url {
        font-size: 0.75rem;
        margin-top: 0.5rem;
    }

    .screenshot-mockup .mockup-browser {
        height: 2rem;
        padding: 0 0.75rem;
    }

    .screenshot-mockup .browser-url {
        font-size: 0.65rem;
        padding: 0.2rem 0.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-navigation {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .company-details {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-badges {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .trust-indicator {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
        flex: 1;
        min-width: 120px;
        justify-content: center;
    }
    
    .guarantee-card {
        flex-direction: column;
        text-align: center;
    }
    
    .modal-content {
        padding: 2rem;
        margin: 1rem;
    }
    
    .company-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .input-group {
        padding: 0.5rem;
    }
    
    .url-input {
        padding: 1rem 1.25rem;
        font-size: 16px; /* Prevent zoom on iOS */
    }
    
    .upgrade-button {
        padding: 1.125rem 2rem;
        font-size: 1rem;
        min-height: 48px; /* Touch-friendly size */
    }
    
    .section-title {
        font-size: 2.25rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .pricing-card {
        padding: 1.5rem;
    }
    
    .process-step {
        padding: 1.5rem;
    }
    
    .step-number {
        width: 3rem;
        height: 3rem;
        font-size: 1.25rem;
    }
    
    .trust-badges {
        gap: 0.75rem;
    }
    
    .trust-badge {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
        min-width: 180px;
        text-align: center;
    }
    
    .company-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-navigation {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .company-info {
        padding: 1rem;
    }
    
    .footer-badges {
        gap: 0.5rem;
    }
    
    .trust-indicator {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
        min-width: 100px;
    }

    /* Better touch targets */
    .nav-link {
        min-height: 48px;
        display: flex;
        align-items: center;
    }

    .plan-button {
        min-height: 48px;
        font-size: 1rem;
    }

    /* Improved spacing for small screens */
    .hero {
        padding: 8rem 0 4rem;
    }

    .hero-header {
        margin-bottom: 3rem;
    }

    .hero-action {
        margin-bottom: 3rem;
    }

    .action-note {
        font-size: 0.875rem;
        line-height: 1.4;
    }

    /* Step Progress Very Small Screens */
    .step-progress {
        padding: 0 0.5rem;
        margin-bottom: 1.5rem;
    }

    .step-progress .step-connector {
        margin: 0 0.25rem;
    }

    .step-label {
        font-size: 0.65rem;
        max-width: 60px;
        line-height: 1.2;
    }

    .step-number {
        width: 1.75rem;
        height: 1.75rem;
        font-size: 0.75rem;
    }
} 