@charset "utf-8";

/* Enhanced Logo and CTA styles - optimized version */
.logo-enhanced {
    font-size: 1.8rem;
    font-weight: 800;
}

.cta-enhanced {
    padding: 0.75rem 2rem;
    border-radius: 0.75rem;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

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

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

.cta-enhanced:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.6);
    border-color: rgba(255, 255, 255, 0.2);
}

/* === Floating Language Switcher === */
.language-switcher {
    position: fixed;
    left: 2rem;
    bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    padding: 0.65rem 1rem;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--brand-blue);
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 999;
    transition: all 0.2s ease;
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.language-switcher:hover {
    background: var(--brand-blue);
    color: white;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
    border-color: var(--brand-blue);
}

.language-switcher:active {
    transform: scale(0.98);
}

/* Hide SVG icon for cleaner look */
.language-switcher svg {
    display: none;
}

/* Mobile floating language switcher */
@media (max-width: 768px) {
    .language-switcher {
        left: 1rem;
        bottom: 1.5rem;
        padding: 0.6rem 0.9rem;
        font-size: 0.85rem;
        min-width: 50px;
    }
}

/* Small mobile screens */
@media (max-width: 480px) {
    .language-switcher {
        left: 1rem;
        bottom: 1.5rem;
        padding: 0.55rem 0.85rem;
        font-size: 0.8rem;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Skip Navigation for Accessibility */
.skip-nav {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--brand-blue);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 600;
    z-index: 10001;
    transition: top 0.3s ease;
    border-radius: 0 0 0.5rem 0;
}

.skip-nav:focus {
    top: 0;
    outline: 3px solid var(--brand-green);
    outline-offset: 2px;
}

:root {
    --brand-blue: #6366f1;
    --brand-blue-dark: #4f46e5;
    --brand-green: #10b981;
    --bg-dark: #0f172a;
    --surface-dark: #1e293b;
    --text-light: #e2e8f0;
    --text-muted: #cbd5e1; /* Improved contrast from #94a3b8 to #cbd5e1 for better accessibility */
    --accent-pink: #f472b6;
    --gradient-main: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

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

nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.25rem 2rem;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.8;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1rem;
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--text-light);
}

.cta-button {
    background: var(--brand-blue);
    color: white;
    padding: 0.65rem 1.75rem;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: 600;
}

.cta-button:hover {
    background: var(--brand-blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.3);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text-light);
    transition: all 0.3s ease;
    transform-origin: center;
}

.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(5px, -5px);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-top: 1px solid rgba(99, 102, 241, 0.2);
    animation: slideDown 0.3s ease;
}

.mobile-nav.active {
    display: block;
}

.mobile-nav a {
    display: block;
    color: var(--text-light);
    text-decoration: none;
    padding: 1rem 0;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(99, 102, 241, 0.1);
    transition: all 0.3s ease;
}

.mobile-nav a:hover {
    color: var(--brand-blue);
    transform: translateX(10px);
}

.mobile-nav .cta-button {
    display: inline-block;
    margin-top: 1rem;
    width: 100%;
    text-align: center;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero {
    padding: 8rem 2rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
    /* Removed continuous pulse animation for better performance */
}

.hero-backgrounds {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: opacity 2s ease-in-out;
}

.hero-bg.active {
    opacity: 1;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.9));
}

.hero-bg:nth-child(1) {
    background-image: url('images/tooplate-cloud-sync-bg01-1.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-bg:nth-child(2) {
    background-image: url('images/tooplate-cloud-sync-bg02.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-bg:nth-child(3) {
    background-image: url('images/tooplate-cloud-sync-bg03.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Lazy loading optimization */
.hero-bg {
    will-change: opacity;
    transform: translateZ(0);
}

/* Performance optimizations */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    text-rendering: optimizeLegibility;
}

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

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding-top: 3rem;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #ffffff, #94a3b8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 0.6s ease-out; /* Reduced from 0.8s for snappier feel */
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: rgba(30, 41, 59, 0.4);
    border: 1px solid rgba(99, 102, 241, 0.15);
    border-radius: 1rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hero-feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-feature-item:hover::before {
    opacity: 1;
}

.hero-feature-item:hover {
    transform: translateY(-1px);
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 5px 20px rgba(99, 102, 241, 0.1);
    background: rgba(30, 41, 59, 0.5);
}

.hero-feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-green) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.hero-feature-icon svg {
    width: 24px;
    height: 24px;
}

.hero-feature-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    position: relative;
    z-index: 1;
}

.hero-feature-main {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light);
    line-height: 1.3;
}

.hero-feature-price {
    font-size: 1.25rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-green) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-feature-sub {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    animation: fadeInUp 0.6s ease-out 0.1s both; /* Faster animation, shorter delay */
    line-height: 1.8;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    margin-bottom: 2rem;
    color: var(--brand-blue);
    font-size: 0.9rem;
    font-weight: 600;
    animation: fadeInUp 0.8s ease-out;
}

.hero-badge svg {
    color: var(--brand-green);
}

/* Hero Highlight in Title */
.hero-highlight {
    display: block;
    background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-green) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-top: 0.5rem;
}

/* Hero Features Grid */
.hero-features-grid {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 2.5rem 0;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease-out 0.2s both; /* Faster animation, shorter delay */
}

.hero-feature-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(99, 102, 241, 0.2);
    padding: 0.75rem 1.25rem;
    border-radius: 0.75rem;
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.hero-feature-badge:hover {
    background: rgba(30, 41, 59, 0.8);
    border-color: rgba(99, 102, 241, 0.4);
    transform: translateY(-2px);
}

.hero-feature-badge svg {
    color: var(--brand-green);
    flex-shrink: 0;
}

/* Hero Pricing */
.hero-pricing {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin: 2.5rem 0;
    padding: 2rem;
    background: rgba(30, 41, 59, 0.4);
    border: 2px solid rgba(99, 102, 241, 0.3);
    border-radius: 1.25rem;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-price-label {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-price {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-green) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.hero-price span {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-muted);
}

.hero-price-note {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Hero CTA Group */
.hero-cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 2.5rem 0;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease-out 0.3s both; /* Faster animation, shorter delay */
}

.cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--brand-blue);
    color: white;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

.cta-primary:hover {
    background: var(--brand-blue-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.6);
}

.cta-primary svg {
    flex-shrink: 0;
}

.cta-secondary {
    background: transparent;
    color: var(--text-light);
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid rgba(99, 102, 241, 0.3);
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: rgba(99, 102, 241, 0.1);
    border-color: var(--brand-blue);
    transform: translateY(-3px);
}

/* Hero Trust Indicators */
.hero-trust {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(99, 102, 241, 0.2);
    animation: fadeInUp 0.6s ease-out 0.4s both; /* Faster animation, shorter delay */
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.trust-number {
    font-size: 1.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-green) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    white-space: nowrap;
}

.trust-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 30px, 0); /* Use translate3d for GPU acceleration */
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.features {
    padding: 4rem 2rem;
    background: var(--surface-dark);
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.features-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.features-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.features-layout {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.features-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.feature-card-large {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(99, 102, 241, 0.2);
    padding: 2.5rem;
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.feature-card-large:hover {
    transform: translateY(-5px);
    border-color: var(--brand-blue);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-main);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.feature-card-large h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-checklist {
    list-style: none;
    margin-top: 1.5rem;
}

.feature-checklist li {
    padding: 0.5rem 0;
    color: var(--text-muted);
    position: relative;
    padding-left: 1.5rem;
}

.feature-checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--brand-green);
    font-weight: bold;
}

.features-four-col {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.feature-card-small {
    background: rgba(30, 41, 59, 0.3);
    border: 1px solid rgba(99, 102, 241, 0.1);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card-small:hover {
    background: rgba(99, 102, 241, 0.1);
    border-color: var(--brand-blue);
    transform: translateY(-3px);
}

.feature-icon-small {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.feature-card-small h4 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.feature-card-small p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.pricing {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-header {
    text-align: center;
    margin-bottom: 3rem;
}

.pricing-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.pricing-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.trust-badge-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 1rem;
}

.badge-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(118, 75, 162, 0.2));
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 0.75rem;
    flex-shrink: 0;
}

.badge-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--brand-blue);
}

.badge-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.badge-content strong {
    color: var(--text-light);
    font-size: 1.05rem;
    font-weight: 600;
    display: block;
}

.badge-content span {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.4;
}

.pricing-calculator {
    background: var(--surface-dark);
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 3rem;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.slider-container {
    margin-bottom: 2rem;
}

.slider-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.slider {
    width: 100%;
    height: 6px;
    background: rgba(99, 102, 241, 0.2);
    border-radius: 3px;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    position: relative;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: var(--brand-blue);
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.5);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.pricing-card {
    background: rgba(30, 41, 59, 0.5);
    border: 2px solid transparent;
    padding: 2rem;
    border-radius: 1rem;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.pricing-card.popular {
    border-color: var(--brand-blue);
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.3);
}

.popular-ribbon {
    position: absolute;
    top: 2.3rem;
    right: -3.5rem;
    background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-green) 100%);
    color: white;
    padding: 0.6rem 3.5rem;
    transform: rotate(45deg);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.5);
    z-index: 2;
    text-align: center;
    line-height: 1;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: var(--brand-blue);
    box-shadow: 0 10px 40px rgba(99, 102, 241, 0.2);
}

.plan-badge {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    background: rgba(99, 102, 241, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 2rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--brand-blue);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    align-self: flex-start;
}

.plan-badge.best-value {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(99, 102, 241, 0.2));
    border-color: var(--brand-green);
    color: var(--brand-green);
}

.plan-badge.premium {
    background: linear-gradient(135deg, rgba(244, 114, 182, 0.2), rgba(99, 102, 241, 0.2));
    border-color: var(--accent-pink);
    color: var(--accent-pink);
}

.plan-name {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-light), var(--text-muted));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.plan-pricing {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(99, 102, 241, 0.2);
}

.plan-price {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-green));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.plan-price span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
}

.plan-commitment {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 0.5rem;
    font-style: italic;
}

.plan-features {
    list-style: none;
    margin-bottom: 1.5rem;
    flex: 1;
}

.plan-features li {
    padding: 0.6rem 0;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
    position: relative;
    padding-left: 1.75rem;
}

.plan-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--brand-green);
    font-weight: bold;
    font-size: 1.1rem;
}

.plan-features li strong {
    color: var(--text-light);
    font-weight: 600;
}

.plan-ideal {
    background: rgba(99, 102, 241, 0.1);
    border-left: 3px solid var(--brand-blue);
    padding: 0.75rem 1rem;
    margin-bottom: 1.5rem;
    border-radius: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.plan-ideal strong {
    color: var(--text-light);
    display: block;
    margin-bottom: 0.25rem;
}

.plan-social-proof {
    text-align: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(99, 102, 241, 0.15);
    color: var(--text-muted);
    font-size: 0.85rem;
}

.pricing-card .cta-button {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 600;
    margin-top: 0.5rem;
    transition: all 0.3s ease;
    text-align: center;
    display: block;
}

.pricing-card.popular .cta-button {
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-green));
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
}

.pricing-card.popular .cta-button:hover {
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.6);
    transform: translateY(-3px);
}

.pricing-addons {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(30, 41, 59, 0.3);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 1rem;
}

.pricing-addons h3 {
    text-align: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

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

.addon-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(99, 102, 241, 0.15);
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.addon-item:hover {
    background: rgba(99, 102, 241, 0.1);
    border-color: var(--brand-blue);
    transform: translateX(5px);
}

.addon-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(99, 102, 241, 0.15);
    border-radius: 0.5rem;
}

.addon-info {
    flex: 1;
}

.addon-info strong {
    display: block;
    color: var(--text-light);
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.addon-price {
    color: var(--brand-green);
    font-weight: 600;
    font-size: 1.1rem;
}

.pricing-guarantee {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(99, 102, 241, 0.1));
    border: 2px solid rgba(16, 185, 129, 0.3);
    border-radius: 1.25rem;
    padding: 2.5rem;
    margin-top: 3rem;
}

.guarantee-content {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    text-align: left;
}

.guarantee-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(99, 102, 241, 0.15));
    border: 2px solid rgba(16, 185, 129, 0.3);
    border-radius: 1rem;
    flex-shrink: 0;
}

.guarantee-icon svg {
    width: 48px;
    height: 48px;
    stroke: var(--brand-green);
}

.guarantee-text h3 {
    color: var(--brand-green);
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
}

.guarantee-text p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
}

.guarantee-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(16, 185, 129, 0.2);
}

.guarantee-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(15, 23, 42, 0.3);
    border-radius: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.gf-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 0.5rem;
    flex-shrink: 0;
}

.gf-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--brand-blue);
}

.pricing-card.basic {
    cursor: pointer;
}

.floating-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.shape {
    position: absolute;
    background: rgba(99, 102, 241, 0.1);
    filter: blur(20px); /* Reduced from 40px for better performance */
    border-radius: 50%;
    animation: float 20s infinite ease-in-out;
    will-change: transform;
}

.shape:nth-child(1) {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape:nth-child(2) {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 10%;
    animation-delay: 5s;
}

.shape:nth-child(3) {
    width: 250px;
    height: 250px;
    bottom: 10%;
    left: 30%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    .nav-links { display: none; }
    .pricing-cards { grid-template-columns: 1fr; }
}

.about {
    padding: 4rem 2rem;
    background: var(--surface-dark);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    right: -20%;
    width: 40%;
    height: 100%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-content {
    text-align: center;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.about-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-card {
    background: rgba(99, 102, 241, 0.1);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(99, 102, 241, 0.2);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(99, 102, 241, 0.15);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.about-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.about-text p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Templates gallery */
.templates-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 2rem 0 2.5rem;
}

.template-card {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 1rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.template-card:hover {
    transform: translateY(-4px);
    border-color: var(--brand-blue);
    box-shadow: 0 16px 32px rgba(99, 102, 241, 0.12);
}

.template-thumb {
    aspect-ratio: 16 / 10;
    background: rgba(15, 23, 42, 0.6);
    overflow: hidden;
}

.template-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.template-body {
    padding: 1rem 1rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: left;
}

.template-body h3 {
    font-size: 1.1rem;
}

.template-body p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.template-body .cta-button {
    align-self: flex-start;
}

/* Modal */
.template-modal {
    position: fixed;
    inset: 0;
    z-index: 1001;
}

.template-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(2px);
}

.template-modal-content {
    position: relative;
    width: min(1100px, 92vw);
    height: min(80vh, 800px);
    margin: 6vh auto 0;
    background: var(--surface-dark);
    border: 1px solid rgba(99, 102, 241, 0.25);
    border-radius: 0.75rem;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.template-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(99, 102, 241, 0.15);
}

.template-modal-header h3 {
    font-size: 1.1rem;
}

.template-modal-close {
    background: transparent;
    border: 1px solid rgba(99, 102, 241, 0.35);
    color: var(--text-light);
    border-radius: 0.5rem;
    padding: 0.35rem 0.6rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.template-modal-close:hover {
    background: rgba(99, 102, 241, 0.15);
    transform: scale(1.1);
}

.template-modal-body {
    flex: 1;
    display: grid;
}

/* Process Modal Specific Styles */
.process-modal-content {
    position: relative;
    width: min(560px, 94vw);
    height: auto;
    max-height: 85vh;
    margin: 5vh auto 0;
    border-radius: 1.25rem;
    background: linear-gradient(180deg, rgba(30,41,59,0.98), rgba(15,23,42,0.98));
    border: 1px solid rgba(99, 102, 241, 0.35);
    box-shadow: 0 25px 70px rgba(0,0,0,0.5);
    animation: modalSlideIn 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

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

.process-modal-header {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(99, 102, 241, 0.08));
    border-bottom: 1px solid rgba(99, 102, 241, 0.25);
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 1.25rem 1.25rem 0 0;
}

.process-modal-header h3 {
    font-size: 1.2rem;
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-green));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.process-modal-close {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: rgba(99, 102, 241, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.35);
    border-radius: 0.5rem;
    color: var(--text-light);
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.process-modal-close:hover {
    background: rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.4);
    transform: rotate(90deg);
}

.process-steps-list {
    display: grid;
    gap: 1rem;
    padding: 1.5rem;
}

.process-step-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(99, 102, 241, 0.25);
    border-radius: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.process-step-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--brand-blue), var(--brand-green));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.process-step-item:hover {
    background: rgba(99, 102, 241, 0.1);
    border-color: var(--brand-blue);
    transform: translateX(5px);
}

.process-step-item:hover::before {
    opacity: 1;
}

.step-icon-wrapper {
    flex-shrink: 0;
}

.step-icon-circle {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(16, 185, 129, 0.2));
    border: 2px solid rgba(99, 102, 241, 0.4);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.process-step-item:hover .step-icon-circle {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 16px rgba(99, 102, 241, 0.3);
}

.step-text {
    flex: 1;
}

.step-text strong {
    display: block;
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.step-text p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

.template-modal-body iframe {
    width: 100%;
    height: 100%;
    border: 0;
    background: #0b1220;
}

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

@media (max-width: 640px) {
    .templates-grid {
        grid-template-columns: 1fr;
    }
}

.contact {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-form-wrapper {
    background: var(--surface-dark);
    padding: 2.5rem;
    border-radius: 1rem;
    border: 1px solid rgba(99, 102, 241, 0.2);
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.form-header {
    margin-bottom: 2rem;
}

.form-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 0.5rem;
    color: var(--text-light);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--brand-blue);
    background: rgba(15, 23, 42, 0.8);
}

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

#contactForm {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.submit-button {
    width: 100%;
    padding: 1rem;
    background: var(--brand-blue);
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
}

.submit-button:hover {
    background: var(--brand-blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.3);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    height: 100%;
}

.quick-contact {
    background: var(--surface-dark);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(99, 102, 241, 0.2);
    flex: 1;
}

.quick-contact h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(15, 23, 42, 0.5);
    border-radius: 0.75rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.contact-method:hover {
    background: rgba(99, 102, 241, 0.1);
    border-color: var(--brand-blue);
    transform: translateX(5px);
}

.method-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 0.5rem;
}

.method-details {
    display: flex;
    flex-direction: column;
}

.method-details strong {
    color: var(--text-light);
    font-size: 0.95rem;
}

.method-details span {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.office-locations {
    background: var(--surface-dark);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.office-locations h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.location {
    padding: 1rem;
    background: rgba(15, 23, 42, 0.5);
    border-radius: 0.75rem;
    border-left: 3px solid var(--brand-blue);
    transition: all 0.3s ease;
}

.location:hover {
    background: rgba(15, 23, 42, 0.7);
    transform: translateX(5px);
}

.location strong {
    color: var(--text-light);
    display: block;
    margin-bottom: 0.5rem;
}

.location p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.5;
}

.footer {
    background: var(--bg-dark);
    border-top: 1px solid rgba(99, 102, 241, 0.2);
    padding: 3rem 2rem 1rem;
    margin-top: 4rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 4rem;
    margin-bottom: 2rem;
}

.footer-brand p {
    color: var(--text-muted);
    margin-top: 0.5rem;
}

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

.footer-column h4 {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.footer-column a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--brand-blue);
}

/* FAQ styles - Professional redesign */
.faq-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.faq-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-blue), var(--brand-green));
    border-radius: 2px;
}

.faq-list {
    display: grid;
    gap: 1rem;
}

.faq-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(15, 23, 42, 0.5);
    border-radius: 0.75rem;
    border: 1px solid rgba(99, 102, 241, 0.15);
}

.faq-icon {
    font-size: 1.75rem;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(99, 102, 241, 0.15);
    border-radius: 0.5rem;
    flex-shrink: 0;
}

.faq-content {
    flex: 1;
}

.faq-content strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 600;
}

.faq-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(99, 102, 241, 0.1);
    color: var(--text-muted);
}

.social-links {
    display: flex;
    gap: 2rem;
}

.social-links a, .footer a, p a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-links a:hover, .footer a:hover, p a:hover {
    color: var(--brand-blue);
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    .nav-links { display: none; }
    .mobile-menu-toggle { display: flex; }
    .pricing-cards { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-content { grid-template-columns: 1fr; gap: 2rem; }
    .form-row { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr; gap: 2rem; }
    .footer-links { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 1rem; }
    
    /* Pricing mobile adjustments */
    .pricing-badges { grid-template-columns: 1fr; gap: 1rem; }
    .trust-badge-item { padding: 1.25rem; }
    .badge-icon { width: 50px; height: 50px; font-size: 2rem; }
    .addons-grid { grid-template-columns: 1fr; }
    .guarantee-content { flex-direction: column; text-align: center; }
    .guarantee-features { grid-template-columns: 1fr; }
    
    /* Center guarantee icon on mobile */
    .guarantee-icon {
        margin: 0 auto;
    }
    .plan-price { font-size: 2.25rem; }
    .pricing-card { text-align: center; }
    .plan-features li { text-align: left; }
    .plan-ideal { text-align: left; }
    
    .feature-hero { 
        grid-template-columns: 1fr; 
        padding: 2rem;
        text-align: center;
    }
    .feature-hero-visual { display: none; }
    .features-two-col { grid-template-columns: 1fr; }
    .features-four-col { 
        grid-template-columns: 1fr; 
    }
    .feature-stats { justify-content: center; }
    
    /* Center feature icons on mobile */
    .feature-icon {
        margin: 0 auto 1.5rem auto;
    }
    
    /* Mobile hero features */
    .hero-features {
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-feature-item {
        padding: 1rem 1.25rem;
        gap: 0.75rem;
    }
    
    .hero-feature-icon {
        width: 40px;
        height: 40px;
    }
    
    .hero-feature-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .hero-feature-main {
        font-size: 1rem;
    }
    
    .hero-feature-price {
        font-size: 1.1rem;
    }
    
    .hero-feature-sub {
        font-size: 0.9rem;
    }
    
    /* Hero Badge Mobile */
    .hero-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.75rem;
        margin-bottom: 1.5rem;
    }
    
    /* Hero Features Grid Mobile */
    .hero-features-grid {
        flex-direction: column;
        gap: 0.75rem;
        margin: 1.5rem 0;
        text-align: center;
    }
    
    .hero-feature-badge {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
        justify-content: center;
    }
    
    /* Hero Pricing Mobile */
    .hero-pricing {
        margin: 1.5rem 0;
        padding: 1.5rem;
    }
    
    .hero-price {
        font-size: 2.5rem;
    }
    
    .hero-price span {
        font-size: 1.2rem;
    }
    
    .hero-price-label {
        font-size: 0.85rem;
    }
    
    .hero-price-note {
        font-size: 0.8rem;
        text-align: center;
    }
    
    /* Hero CTA Group Mobile */
    .hero-cta-group {
        flex-direction: column;
        margin: 1.5rem 0;
        gap: 0.75rem;
    }
    
    .cta-primary,
    .cta-secondary {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    /* Hero Trust Mobile */
    .hero-trust {
        gap: 1.5rem;
        margin-top: 2rem;
        padding-top: 1.5rem;
    }
    
    .trust-number {
        font-size: 1.25rem;
    }
    
    .trust-label {
        font-size: 0.8rem;
    }
    
    /* Hero Content Mobile */
    .hero {
        padding: 6rem 1.5rem 3rem;
    }
    
    .hero-content {
        padding-top: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
}

/* ===== TEMPLATES PAGE STYLES ===== */

/* Filter Buttons */
.filter-btn {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(99, 102, 241, 0.2);
    color: var(--text-light);
    padding: 0.6rem 1.25rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
}

.filter-btn:hover {
    background: rgba(99, 102, 241, 0.1);
    border-color: var(--brand-blue);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-green));
    border-color: transparent;
    color: white;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

.template-card:hover .template-thumb img {
    transform: scale(1.05);
}

.template-card:hover .template-overlay {
    opacity: 1;
}

.template-card.hidden {
    display: none;
}

/* Professional Modal Styles */
.template-modal-content {
    width: 95vw !important;
    max-width: 1600px !important;
    height: 92vh !important;
    max-height: none !important;
    margin: 4vh auto !important;
    display: flex !important;
    flex-direction: column !important;
}

.template-modal-header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 1rem 1.5rem !important;
    background: linear-gradient(135deg, rgba(30,41,59,0.98), rgba(15,23,42,0.98)) !important;
    border-bottom: 1px solid rgba(99, 102, 241, 0.2) !important;
}

.modal-header-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.modal-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-green));
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.modal-title-group h3 {
    font-size: 1.1rem;
    margin: 0 0 0.25rem 0;
    color: var(--text-light);
}

.modal-subtitle {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0;
}

.modal-header-right {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.modal-action-btn {
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    color: var(--text-light);
    padding: 0.5rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-action-btn:hover {
    background: rgba(99, 102, 241, 0.2);
    border-color: var(--brand-blue);
    transform: translateY(-1px);
}

.modal-toolbar {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background: rgba(15, 23, 42, 0.95);
    border-bottom: 1px solid rgba(99, 102, 241, 0.1);
}

.device-switcher {
    display: flex;
    gap: 0.5rem;
    background: rgba(30, 41, 59, 0.5);
    padding: 0.35rem;
    border-radius: 0.5rem;
}

.device-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: none;
    color: var(--text-muted);
    padding: 0.5rem 0.75rem;
    border-radius: 0.35rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.85rem;
}

.device-btn.active {
    background: var(--brand-blue);
    color: white;
}

.device-btn:not(.active):hover {
    background: rgba(99, 102, 241, 0.1);
    color: var(--text-light);
}

.template-modal-close {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: var(--text-light);
    padding: 0.5rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.template-modal-close:hover {
    background: rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.5);
    transform: scale(1.1);
}

.template-modal-body {
    flex: 1 !important;
    position: relative !important;
    background: #0b1220 !important;
    overflow: hidden !important;
}

.iframe-loader {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(15, 23, 42, 0.95);
    z-index: 10;
    transition: opacity 0.3s ease;
}

.iframe-loader.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(99, 102, 241, 0.2);
    border-top-color: var(--brand-blue);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.iframe-loader p {
    margin-top: 1rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.template-modal-body iframe {
    transition: all 0.3s ease;
}

.template-modal-body iframe.tablet-view {
    width: 768px !important;
    max-width: 100% !important;
    margin: 0 auto !important;
}

.template-modal-body iframe.mobile-view {
    width: 375px !important;
    max-width: 100% !important;
    margin: 0 auto !important;
}

.modal-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: rgba(15, 23, 42, 0.95);
    border-top: 1px solid rgba(99, 102, 241, 0.2);
}

.modal-footer-left {
    display: flex;
    gap: 1rem;
}

.footer-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-badge svg {
    color: var(--brand-green);
}

.modal-cta-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-green));
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

.modal-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.6);
}

/* Templates Page Mobile Responsive */
@media (max-width: 768px) {
    .templates-grid {
        grid-template-columns: 1fr !important;
    }
    
    .template-modal-content {
        width: 100vw !important;
        height: 100vh !important;
        margin: 0 !important;
        border-radius: 0 !important;
    }
    
    .modal-toolbar {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .device-btn span {
        display: none;
    }
    
    .modal-footer {
        flex-direction: column;
        gap: 1rem;
    }
    
    .modal-footer-left {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* ===== PERFORMANCE OPTIMIZATIONS ===== */

/* GPU Acceleration for animations - Optimized */
/* Removed will-change from static elements to reduce GPU memory usage */
/* Only apply GPU acceleration when elements are actually being interacted with */

.cta-button:hover,
.modal-content {
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Optimize off-screen content */
.pricing-card,
.feature-card-large,
.feature-card-small,
.template-card {
    content-visibility: auto;
    contain-intrinsic-size: 0 500px;
}

/* Optimize animations */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Force hardware acceleration */
.template-modal-content,
.template-modal-body iframe {
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
}

/* ===== COOKIE CONSENT STYLES ===== */

/* Cookie Banner */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(30, 41, 59, 0.98));
    backdrop-filter: blur(10px);
    border-top: 2px solid rgba(99, 102, 241, 0.3);
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
}

.cookie-consent-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.cookie-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-green));
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cookie-icon svg {
    color: white;
}

.cookie-consent-banner h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
}

.cookie-consent-banner p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin: 0 0 1.25rem 0;
    font-size: 0.95rem;
}

.cookie-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.cookie-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.cookie-btn svg {
    width: 16px;
    height: 16px;
}

.cookie-btn-accept {
    background: white;
    color: #0f172a;
    border: 2px solid rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.cookie-btn-accept:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: white;
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.2);
    color: #0f172a;
}

.cookie-btn-accept svg {
    color: #10b981;
}

.cookie-btn-reject {
    background: transparent;
    color: rgba(255, 255, 255, 0.85);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn-reject:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    color: white;
}

.cookie-btn-customize {
    background: transparent;
    color: rgba(255, 255, 255, 0.85);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn-customize:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    color: white;
}

.cookie-btn-secondary {
    background: white;
    color: #0f172a;
    border: 2px solid #e2e8f0;
    font-weight: 600;
}

.cookie-btn-secondary:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    inset: 0;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.cookie-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.cookie-modal-content {
    position: relative;
    background: white;
    border-radius: 1rem;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalZoomIn 0.3s ease-out;
}

@keyframes modalZoomIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 2px solid rgba(99, 102, 241, 0.1);
}

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

.cookie-modal-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: #94a3b8;
    border-radius: 0.5rem;
    transition: all 0.2s;
}

.cookie-modal-close:hover {
    background: rgba(99, 102, 241, 0.1);
    color: var(--brand-blue);
}

.cookie-modal-body {
    padding: 1.5rem;
    overflow-y: auto;
    flex: 1;
}

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

.cookie-category {
    margin-bottom: 1.5rem;
    padding: 1.25rem;
    background: rgba(99, 102, 241, 0.05);
    border-radius: 0.75rem;
    border: 2px solid rgba(99, 102, 241, 0.1);
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.cookie-category-info {
    flex: 1;
}

.cookie-category-info h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #0f172a;
}

.cookie-category-info p {
    margin: 0;
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
}

.cookie-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
    flex-shrink: 0;
}

.cookie-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #cbd5e1;
    transition: 0.3s;
    border-radius: 34px;
}

.cookie-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

.cookie-switch input:checked + .cookie-slider {
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-green));
}

.cookie-switch input:checked + .cookie-slider:before {
    transform: translateX(24px);
}

.cookie-switch input:disabled + .cookie-slider {
    opacity: 0.5;
    cursor: not-allowed;
}

.cookie-modal-footer {
    padding: 1.5rem;
    border-top: 2px solid rgba(99, 102, 241, 0.1);
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.cookie-modal-footer .cookie-btn {
    flex: 1;
    justify-content: center;
    min-width: 150px;
}

.cookie-modal-footer .cookie-btn-accept {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border: 2px solid #10b981;
}

.cookie-modal-footer .cookie-btn-accept:hover {
    background: linear-gradient(135deg, #059669, #047857);
    border-color: #059669;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.cookie-modal-footer .cookie-btn-accept svg {
    color: white;
}

/* Cookie Consent Responsive */
@media (max-width: 768px) {
    .cookie-consent-content {
        padding: 1.25rem 1rem;
    }

    .cookie-buttons {
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
        justify-content: center;
    }

    .cookie-modal-footer {
        flex-direction: column;
    }

    .cookie-modal-footer .cookie-btn {
        width: 100%;
    }
}