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

body {
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--background);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Color Scheme */
:root {
    --primary: hsl(166, 72%, 26%);
    --primary-hover: hsl(166, 72%, 22%);
    --secondary: hsl(166, 52%, 20%);
    --accent: hsl(166, 72%, 26%);
    --primary-glow: hsl(166, 72%, 40%);
    --text-primary: hsl(215, 25%, 15%);
    --text-secondary: hsl(215, 16%, 47%);
    --text-muted: hsl(215, 20%, 65%);
    --border: hsl(220, 13%, 91%);
    --background: hsl(0, 0%, 100%);
    --card: hsl(0, 0%, 100%);
    --card-bg: hsl(0, 0%, 100%);
    --gradient-start: hsl(166, 72%, 26%);
    --gradient-end: hsl(166, 52%, 20%);
    --muted: hsl(210, 20%, 95%);
    --muted-foreground: hsl(215, 16%, 47%);
    --success: hsl(142, 76%, 36%);
    --muted-hover: hsl(210, 20%, 92%);
}

/* Buttons */
.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    box-shadow: 0 4px 20px hsl(166, 72%, 26%, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px hsl(166, 72%, 26%, 0.4);
}

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

.btn-outline:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(229, 231, 235, 0.2);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgb(255 255 255 / 75%);
    border-bottom: 1px solid #2525254a;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary);
}

.logo-icon {
    width: 2rem;
    height: 2rem;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 0.5rem;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.header-buttons {
    display: flex;
    gap: 1rem;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-primary);
}

.mobile-menu {
    display: none;
    padding: 1rem 0;
    border-top: 1px solid var(--border);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
}

.mobile-nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
}

.mobile-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Hero Section */
.hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(55, 110, 92, 0.05), transparent 70%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.badge {
    background: linear-gradient(135deg, rgba(55, 110, 92, 0.1), rgba(99, 102, 241, 0.05));
    color: var(--text-primary);
    padding: 0.6rem 1.25rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    width: fit-content;
    border: 1px solid rgba(55, 110, 92, 0.15);
}

.hero-title {
    font-size: 3.75rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-primary);
    margin: 0;
}

.gradient-text {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 600px;
}

.hero-description strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Buttons */
.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.3s ease;
}

.hero-buttons .btn i {
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.3s ease;
}

.hero-buttons .btn-primary:hover i {
    transform: translateX(3px);
}

/* Info Badge Compact */
.hero-info-compact {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, rgba(55, 110, 92, 0.06), rgba(99, 102, 241, 0.03));
    border: 1px solid rgba(55, 110, 92, 0.15);
    border-radius: 0.75rem;
    width: fit-content;
}

.hero-info-compact i {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--primary);
    flex-shrink: 0;
}

.hero-info-compact p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.hero-info-compact strong {
    color: var(--primary);
    font-weight: 600;
}

/* Feature Pills */
.hero-features-pills {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.feature-pill {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.feature-pill:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(55, 110, 92, 0.1);
}

.feature-pill i {
    width: 1rem;
    height: 1rem;
    color: var(--primary);
}

/* URL Preview Compact */
.url-preview-compact {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 1.25rem;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    width: fit-content;
    transition: all 0.3s ease;
}

.url-preview-compact:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(55, 110, 92, 0.08);
}

.url-text {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
}

.url-code {
    color: var(--primary);
    font-family: 'Monaco', 'Menlo', monospace;
    font-size: 1rem;
    font-weight: 700;
}

/* CIF Validation Styles */
.text-success { 
    color: #10b981 !important; 
}

.text-danger { 
    color: #ef4444 !important; 
}

.text-warning {
    color: #f59e0b !important;
}

#companyCIF { 
    transition: border-color 0.3s ease; 
}

#cif-result { 
    font-size: 0.875rem; 
    font-weight: 500;
    padding: 0.5rem 0;
    animation: slideDown 0.3s ease;
}

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

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

#cif-error-message {
    animation: slideDown 0.3s ease, pulse 2s infinite;
}

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

/* CIF Input Wrapper */
.cif-input-wrapper {
    display: flex;
    gap: 8px;
    align-items: center;
}

.cif-input-wrapper input {
    flex: 1;
}

/* Profile URL Input Wrapper */
.url-input-wrapper-profile {
    display: flex;
    gap: 8px;
    align-items: center;
    position: relative;
}

.url-input-wrapper-profile input {
    flex: 1;
    padding-right: 120px;
}

.url-input-wrapper-profile .url-suffix {
    position: absolute;
    right: 52px;
    color: var(--text-muted);
    font-size: 0.875rem;
    pointer-events: none;
}

.btn-verify-profile {
    width: 42px;
    height: 42px;
    min-width: 42px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border: 2px solid var(--primary);
    color: white;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.btn-verify-profile:hover {
    background: white;
    border-color: #10b981;
    transform: scale(1.05);
}

.btn-verify-profile:hover i,
.btn-verify-profile:hover svg {
    color: #10b981 !important;
    stroke: #10b981 !important;
}

.btn-verify-profile:hover svg * {
    stroke: #10b981 !important;
}

.btn-verify-profile:active {
    transform: scale(0.95);
}

.btn-verify-profile i {
    width: 20px;
    height: 20px;
    transition: all 0.3s ease;
}

.btn-verify-profile:disabled,
.btn-verify-profile.btn-validating {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}

.btn-verify-cif {
    width: 42px;
    height: 42px;
    min-width: 42px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border: 2px solid var(--primary);
    color: white;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.btn-verify-cif:hover {
    background: white;
    border-color: var(--primary);
    transform: scale(1.05);
}

.btn-verify-cif:hover i,
.btn-verify-cif:hover svg {
    color: var(--primary) !important;
    stroke: var(--primary) !important;
}

.btn-verify-cif:hover svg * {
    stroke: var(--primary) !important;
}

.btn-verify-cif:active {
    transform: scale(0.95);
}

.btn-verify-cif i {
    width: 20px;
    height: 20px;
    transition: all 0.3s ease;
}

.btn-verify-cif:disabled,
.btn-verify-cif.btn-validating {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}

.btn-disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.hero-features-pills {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1.25rem;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.hero-feature:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(55, 110, 92, 0.1);
}

.hero-feature .feature-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--primary);
}

.hero-feature span {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* URL Preview */
.url-preview {
    background: linear-gradient(135deg, var(--card-bg), rgba(55, 110, 92, 0.02));
    border: 2px solid var(--border);
    border-radius: 1rem;
    padding: 1.25rem 1.5rem;
    width: fit-content;
    transition: all 0.3s ease;
}

.url-preview:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 24px rgba(55, 110, 92, 0.08);
}

.url-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.url-code {
    color: var(--primary);
    font-family: 'Monaco', 'Menlo', monospace;
    font-size: 1.25rem;
    font-weight: 700;
}
    color: var(--text-secondary);
}

.feature-icon {
    color: var(--primary);
    width: 1.25rem;
    height: 1.25rem;
}

/* Profile Preview */
.hero-preview {
    position: relative;
}

.profile-card {
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    transform: rotate(2deg);
    transition: transform 0.5s ease;
}

.profile-card:hover {
    transform: rotate(0deg);
}

.profile-header {
    height: 4rem;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.5rem;
    transition: background-color 1s ease;
}

.profile-header-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.profile-icon {
    width: 2rem;
    height: 2rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
}

.profile-brand {
    color: white;
    font-weight: 600;
}

.profile-buy-btn {
    background: white;
    color: var(--primary);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.profile-buy-btn:hover {
    background: rgba(255, 255, 255, 0.9);
}

.profile-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.profile-user {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.profile-avatar {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(55, 110, 92, 0.2));
    border-radius: 0.75rem;
}

.profile-info h3 {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.profile-info p {
    color: #6b7280;
    font-size: 0.875rem;
    transition: all 0.5s ease;
}

.profile-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.content-line {
    height: 0.75rem;
    background: #f3f4f6;
    border-radius: 0.375rem;
}

.line-1 { width: 75%; }
.line-2 { width: 50%; }
.line-3 { width: 66%; }

.profile-services {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-top: 1rem;
}

.service-card {
    background: #f9fafb;
    border-radius: 0.5rem;
    padding: 0.75rem;
}

.service-header {
    height: 0.5rem;
    background: #e5e7eb;
    border-radius: 0.25rem;
    margin-bottom: 0.5rem;
}

.service-content {
    height: 1rem;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 0.25rem;
}

/* Floating Elements */
.floating-element {
    position: absolute;
    border-radius: 0.75rem;
    animation: pulse 2s infinite;
}

.floating-1 {
    top: -1.5rem;
    right: -1.5rem;
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, var(--gradient-start), #376e5c);
    opacity: 0.8;
}

.floating-2 {
    bottom: -1rem;
    left: -1rem;
    width: 2rem;
    height: 2rem;
    background: linear-gradient(135deg, var(--gradient-start), #376e5c);
    opacity: 0.6;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header .badge {
    display: inline-block;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Scroll Down Arrow */
.scroll-down-arrow {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.scroll-down-arrow:hover {
    transform: translateX(-50%) translateY(-5px);
}

.scroll-text {
    font-size: 0.95rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.5px;
}

.arrow-animated {
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    animation: bounce 2s infinite;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.arrow-animated i {
    width: 1.5rem;
    height: 1.5rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.scroll-down-arrow:hover .arrow-animated {
    animation: bounce-fast 1s infinite;
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.5);
}

@keyframes bounce-fast {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-15px);
    }
    60% {
        transform: translateY(-8px);
    }
}

/* Responsive for scroll arrow */
@media (max-width: 768px) {
    .scroll-down-arrow {
        bottom: 2rem;
    }

    .scroll-text {
        font-size: 0.85rem;
    }

    .arrow-animated {
        width: 2rem;
        height: 2rem;
    }

    .arrow-animated i {
        width: 1.25rem;
        height: 1.25rem;
    }
}

/* How It Works - Modern with Animations */
.how-it-works {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--background) 0%, rgba(99, 102, 241, 0.02) 50%, var(--background) 100%);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.05), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 2;
}

/* Progress Line - Hidden to prevent overlap issues */
.progress-line {
    display: none;
}

/* Step Card with Animations */
.step-card {
    background: var(--card);
    padding: 2.5rem 2rem;
    border-radius: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 2px solid var(--border);
    z-index: 1;
}

.step-card-animated {
    opacity: 0;
    transform: translateY(30px);
    animation: fade-slide-up 0.6s ease-out forwards;
}

@keyframes fade-slide-up {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: var(--primary);
}

/* Step Number */
.step-number {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.step-card:hover .step-number {
    transform: translateX(-50%) translateY(-3px) scale(1.2);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.6);
}

/* Step Icon with Colors */
.step-icon {
    width: 5rem;
    height: 5rem;
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.5rem auto 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.step-card:hover .step-icon {
    transform: scale(1.1) rotate(-5deg);
}

.step-icon i {
    width: 2.5rem;
    height: 2.5rem;
}

.step-icon-1 {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(99, 102, 241, 0.05));
    color: #6366f1;
}

.step-icon-2 {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(139, 92, 246, 0.05));
    color: #8b5cf6;
}

.step-icon-3 {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(59, 130, 246, 0.05));
    color: #3b82f6;
}

.step-icon-4 {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(16, 185, 129, 0.05));
    color: #10b981;
}

/* Typography */
.step-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.step-card:hover h3 {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.step-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

/* Step Duration Badge */
.step-duration {
    display: inline-block;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(55, 110, 92, 0.1));
    color: var(--primary);
    padding: 0.4rem 1rem;
    border-radius: 2rem;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .steps-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .progress-line {
        display: none;
    }
}

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

    .step-card {
        padding: 2rem 1.5rem;
    }
}

/* Old Styles - Keep for backwards compatibility */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

/* Features Section - Modern */
.features {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--background) 0%, var(--muted) 50%, var(--background) 100%);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(99, 102, 241, 0.05), transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(55, 110, 92, 0.05), transparent 40%);
    pointer-events: none;
}

.features-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.feature-card-modern {
    background: var(--card);
    border: 2px solid var(--border);
    border-radius: 1.5rem;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card-modern:hover::before {
    opacity: 1;
}

.feature-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--primary);
}

/* Icon Styles */
.feature-icon-modern {
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card-modern:hover .feature-icon-modern {
    transform: scale(1.1) rotate(-5deg);
}

.feature-icon-modern i {
    width: 2.5rem;
    height: 2.5rem;
    position: relative;
    z-index: 1;
}

/* Individual Icon Colors */
.feature-icon-payments {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(99, 102, 241, 0.05));
    color: #6366f1;
}

.feature-icon-invoicing {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(139, 92, 246, 0.05));
    color: #8b5cf6;
}

.feature-icon-notifications {
    background: linear-gradient(135deg, rgba(234, 88, 12, 0.2), rgba(234, 88, 12, 0.05));
    color: #ea580c;
}

.feature-icon-responsive {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(16, 185, 129, 0.05));
    color: #10b981;
}

.feature-icon-analytics {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(59, 130, 246, 0.05));
    color: #3b82f6;
}

.feature-icon-security {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.2), rgba(20, 184, 166, 0.05));
    color: #14b8a6;
}

/* Typography */
.feature-card-modern h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.feature-card-modern p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .features-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .feature-card-modern {
        padding: 2rem;
    }
}

/* Old Features Grid - Keep for backwards compatibility */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-card .feature-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(55, 110, 92, 0.1));
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Everything You Need Section */
.everything-you-need {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--background) 0%, rgba(99, 102, 241, 0.02) 50%, var(--background) 100%);
    position: relative;
    overflow: hidden;
}

.everything-you-need::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.08), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.everything-you-need::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(55, 110, 92, 0.08), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.needs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.need-card {
    background: var(--card);
    border: 2px solid var(--border);
    border-radius: 1.5rem;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.need-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.need-card:hover::before {
    opacity: 1;
}

.need-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--primary);
}

.need-card-highlight {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.03), rgba(55, 110, 92, 0.03));
    border: 2px solid var(--primary);
}

.need-card-highlight::before {
    opacity: 1;
}

.need-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.8rem;
    font-weight: 600;
}

.need-badge i {
    width: 1rem;
    height: 1rem;
}

.need-icon {
    width: 4.5rem;
    height: 4.5rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(55, 110, 92, 0.15));
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.need-card:hover .need-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
}

.need-icon i {
    width: 2.25rem;
    height: 2.25rem;
}

.need-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.need-content > p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.need-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.need-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.need-features li:last-child {
    margin-bottom: 0;
}

.need-features i {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--success);
    flex-shrink: 0;
}

.needs-bottom-cta {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(55, 110, 92, 0.05));
    border-radius: 1.5rem;
    border: 2px solid var(--border);
    position: relative;
    z-index: 1;
}

.needs-bottom-cta .cta-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

/* Responsive Design for Everything You Need */
@media (max-width: 768px) {
    .needs-grid {
        grid-template-columns: 1fr;
    }

    .need-badge {
        top: 1rem;
        right: 1rem;
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
    }

    .needs-bottom-cta {
        padding: 2rem 1.5rem;
    }

    .needs-bottom-cta .cta-text {
        font-size: 1.1rem;
    }
}

/* Payment Processors */
.payment-processors {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--background) 0%, var(--muted) 50%, var(--background) 100%);
    position: relative;
    overflow: hidden;
}

.processors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

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

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

.processor-card {
    position: relative;
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    padding-top: 3.5rem;
    border: 2px solid var(--border);
    transition: all 0.3s ease;
    overflow: hidden;
}

.processor-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        transparent 25%, 
        var(--primary) 25%, 
        var(--primary) 50%, 
        transparent 50%, 
        transparent 75%, 
        transparent 100%
    );
    border-radius: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.processor-card::before,
.processor-card::after,
.processor-card.coming-soon:hover::after {
    display: none !important;
}

.processor-card.available,
.processor-card.bank-transfer {
    border-color: rgba(22, 119, 96, 0.28);
}

.processor-card.available:hover,
.processor-card.coming-soon:hover {
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: 0 10px 40px rgba(22, 119, 96, 0.2);
}
.processor-status {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.processor-status.available {
    background: rgba(22, 119, 96, 0.1);
    color: var(--primary);
    border: 1px solid rgba(22, 119, 96, 0.2);
}

.processor-status.coming-soon {
    background: var(--muted);
    color: var(--muted-foreground);
    border: 1px solid var(--border);
}

.processor-status i {
    width: 0.875rem;
    height: 0.875rem;
}

.processor-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.processor-subtitle {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.processor-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    min-height: 60px;
}

.processor-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.processor-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    font-size: 0.875rem;
    color: rgba(0, 0, 0, 0.7);
}

.feature-dot {
    width: 0.375rem;
    height: 0.375rem;
    border-radius: 50%;
    flex-shrink: 0;
}

.processor-card.available .feature-dot,
.processor-card.bank-transfer .feature-dot {
    background: var(--primary);
}

.processor-card.coming-soon .feature-dot {
    background: var(--muted-foreground);
}

.processor-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.processor-gradient.available {
    background: linear-gradient(90deg, var(--primary), rgba(22, 119, 96, 0.5));
}

.processor-gradient.coming-soon {
    background: linear-gradient(90deg, var(--muted-foreground), rgba(0, 0, 0, 0.1));
}

.processor-card:hover .processor-gradient {
    transform: scaleX(1);
}

.processors-footer {
    text-align: center;
    margin-top: 3rem;
    padding: 0 1rem;
}

.processors-footer p {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

.processors-footer strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Payment Toggle Info */
.payment-toggle-info {
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.payment-toggle-card {
    background: linear-gradient(135deg, rgba(22, 119, 96, 0.03), rgba(22, 119, 96, 0.08));
    border: 2px solid rgba(22, 119, 96, 0.15);
    border-radius: 1rem;
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    align-items: start;
    transition: all 0.3s ease;
}

.payment-toggle-card:hover {
    border-color: rgba(22, 119, 96, 0.3);
    box-shadow: 0 8px 24px rgba(22, 119, 96, 0.1);
}

.toggle-icon {
    width: 3rem;
    height: 3rem;
    background: var(--primary);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.toggle-icon i {
    width: 1.5rem;
    height: 1.5rem;
}

.toggle-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.toggle-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

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

.toggle-benefit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-primary);
    font-size: 0.875rem;
    font-weight: 500;
}

.toggle-benefit i {
    width: 1rem;
    height: 1rem;
    color: var(--primary);
    flex-shrink: 0;
}

/* Business Types */
.business-types {
    padding: 5rem 0;
    background: #fafbfc;
}

.business-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

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

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

@media (max-width: 768px) {
    .business-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

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

.business-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: white;
    padding: 2rem;
    border-radius: 1.25rem;
    border: 2px solid transparent;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.business-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(22, 119, 96, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.business-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    border-color: var(--primary);
}

.business-card:hover::before {
    opacity: 1;
}

.business-card:hover .business-icon {
    transform: scale(1.1) rotate(5deg);
}

.business-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.business-icon i {
    width: 2rem;
    height: 2rem;
}

.business-consulting { 
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(59, 130, 246, 0.1));
    color: #3b82f6;
}
.business-design { 
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(139, 92, 246, 0.1));
    color: #8b5cf6;
}
.business-it { 
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(16, 185, 129, 0.1));
    color: #10b981;
}
.business-marketing { 
    background: linear-gradient(135deg, rgba(234, 88, 12, 0.2), rgba(234, 88, 12, 0.1));
    color: #ea580c;
}
.business-photo { 
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(245, 158, 11, 0.1));
    color: #f59e0b;
}
.business-accounting { 
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.2), rgba(20, 184, 166, 0.1));
    color: #14b8a6;
}
.business-repair { 
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(249, 115, 22, 0.1));
    color: #f97316;
}
.business-wellness { 
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.2), rgba(236, 72, 153, 0.1));
    color: #ec4899;
}
.business-education { 
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(99, 102, 241, 0.1));
    color: #6366f1;
}
.business-workshop { 
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(6, 182, 212, 0.1));
    color: #06b6d4;
}
.business-coaching { 
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(168, 85, 247, 0.1));
    color: #a855f7;
}
.business-transport { 
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2), rgba(239, 68, 68, 0.1));
    color: #ef4444;
}

.business-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.business-card p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

.business-footer {
    text-align: center;
    margin-top: 3rem;
}

.business-footer p {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

/* Scale Your Business Section */
.scale-business {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--background) 0%, var(--muted) 50%, var(--background) 100%);
    position: relative;
    overflow: hidden;
}

.scale-business::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.05), transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(55, 110, 92, 0.05), transparent 50%);
    pointer-events: none;
}

.scale-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.scale-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 1.5rem;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.scale-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.scale-card:hover::before {
    opacity: 1;
}

.scale-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary);
}

.scale-card-highlight {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(55, 110, 92, 0.05));
    border: 2px solid var(--primary);
}

.scale-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.scale-badge-coming-soon {
    background: var(--muted);
    color: var(--muted-foreground);
    border: 1px solid var(--border);
}
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.scale-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(55, 110, 92, 0.1));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary);
}

.scale-icon i {
    width: 2rem;
    height: 2rem;
}

.scale-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.scale-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.scale-benefits {
    text-align: left;
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: var(--background);
    border-radius: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

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

.benefit-item i {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--success);
    flex-shrink: 0;
}

.benefit-item span {
    font-size: 0.95rem;
}

/* Partners Section */
.partners-section {
    text-align: center;
    margin: 4rem 0;
    padding: 3rem 0;
    border-top: 1px solid var(--border);
    position: relative;
    z-index: 1;
}

.partners-section h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.partners-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.partner-card {
    background: var(--card);
    border: 2px solid var(--border);
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.partner-card:hover {
    transform: scale(1.05);
    border-color: var(--primary);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.partner-logo {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
}

.partner-logo i {
    width: 2rem;
    height: 2rem;
}

.partner-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.partner-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.coming-soon-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--muted);
    color: var(--muted-foreground);
    padding: 0.6rem 1.25rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid var(--border);
}

.coming-soon-badge i {
    width: 1rem;
    height: 1rem;
}

/* Provider CTA */
.provider-cta {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(55, 110, 92, 0.1));
    border: 2px solid var(--border);
    border-radius: 1.5rem;
    padding: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.provider-cta-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
}

.provider-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.provider-icon i {
    width: 2rem;
    height: 2rem;
}

.provider-cta-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.provider-cta-content p {
    color: var(--text-secondary);
    margin: 0;
}

/* Responsive Design for Scale Section */
@media (max-width: 768px) {
    .scale-options-grid {
        grid-template-columns: 1fr;
    }

    .partners-grid {
        grid-template-columns: 1fr;
    }

    .provider-cta {
        flex-direction: column;
        text-align: center;
    }

    .provider-cta-content {
        flex-direction: column;
        text-align: center;
    }
}

/* CTA Section - Modern Redesign */
.cta-modern {
    padding: 8rem 0;
    background: linear-gradient(180deg, 
        var(--background) 0%, 
        rgba(99, 102, 241, 0.03) 50%, 
        var(--background) 100%
    );
    position: relative;
    overflow: hidden;
}

/* Background Pattern */
.cta-background-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(99, 102, 241, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(55, 110, 92, 0.08) 0%, transparent 50%),
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(99, 102, 241, 0.03) 2px, rgba(99, 102, 241, 0.03) 4px);
    pointer-events: none;
}

/* Floating Orbs */
.cta-floating-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.floating-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
    animation: float-slow 20s ease-in-out infinite;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.3), transparent 70%);
    top: -200px;
    left: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(55, 110, 92, 0.3), transparent 70%);
    bottom: -150px;
    right: -50px;
    animation-delay: 5s;
}

.orb-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3), transparent 70%);
    top: 50%;
    right: 20%;
    animation-delay: 10s;
}

@keyframes float-slow {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.1); }
    50% { transform: translate(-20px, 20px) scale(0.9); }
    75% { transform: translate(20px, 30px) scale(1.05); }
}

/* Main Wrapper */
.cta-modern-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Main Content */
.cta-main-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.cta-badge-wrapper {
    display: flex;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(55, 110, 92, 0.15));
    border: 2px solid var(--primary);
    padding: 0.75rem 1.5rem;
    border-radius: 3rem;
    font-weight: 600;
    color: var(--primary);
    animation: pulse-badge 2s ease-in-out infinite;
}

.cta-badge i {
    width: 1.25rem;
    height: 1.25rem;
}

@keyframes pulse-badge {
    0%, 100% { box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(99, 102, 241, 0); }
}

/* Title */
.cta-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-primary);
    margin: 0;
}

.gradient-text-animated {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end), var(--primary));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.cta-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Stats Grid */
.cta-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.cta-stat-card {
    background: var(--card);
    border: 2px solid var(--border);
    border-radius: 1.25rem;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.cta-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cta-stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.cta-stat-card:hover::before {
    opacity: 1;
}

.stat-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: transform 0.3s ease;
}

.cta-stat-card:hover .stat-icon {
    transform: scale(1.1);
}

.stat-icon i {
    width: 1.5rem;
    height: 1.5rem;
}

.stat-icon-1 {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(99, 102, 241, 0.05));
    color: #6366f1;
}

.stat-icon-2 {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(16, 185, 129, 0.05));
    color: #10b981;
}

.stat-icon-3 {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(59, 130, 246, 0.05));
    color: #3b82f6;
}

.stat-value {
    font-size: 1.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Benefits Modern */
.cta-benefits-modern {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.benefit-modern {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: var(--text-primary);
    font-weight: 500;
}

.benefit-modern i {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--success);
    flex-shrink: 0;
}

/* CTA Actions */
.cta-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-cta-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    border: none;
    padding: 1.25rem 2.5rem;
    border-radius: 3rem;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.4);
}

.btn-cta-primary i {
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.3s ease;
}

.btn-cta-primary:hover i {
    transform: translateX(5px);
}

.btn-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-cta-primary:hover .btn-glow {
    opacity: 1;
}

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--card);
    color: var(--text-primary);
    border: 2px solid var(--border);
    padding: 1.25rem 2.5rem;
    border-radius: 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(55, 110, 92, 0.05));
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.btn-cta-secondary i {
    width: 1.25rem;
    height: 1.25rem;
}

/* Trust Badge */
.cta-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.05));
    border: 2px solid rgba(16, 185, 129, 0.2);
    border-radius: 3rem;
    color: var(--text-primary);
    font-size: 0.95rem;
    position: relative;
}

.trust-pulse {
    width: 0.75rem;
    height: 0.75rem;
    background: #10b981;
    border-radius: 50%;
    position: relative;
}

.trust-pulse::after {
    content: '';
    position: absolute;
    inset: 0;
    background: #10b981;
    border-radius: 50%;
    animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(2); opacity: 0; }
}

.cta-trust-badge i {
    width: 1.25rem;
    height: 1.25rem;
    color: #10b981;
}

/* Visual Side */
.cta-visual {
    position: relative;
}

.visual-card {
    position: relative;
    border-radius: 2rem;
    overflow: hidden;
    width: 100%;
    max-width: 720px;
    aspect-ratio: 13 / 9;
    margin: 0 auto;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
}

.visual-card:hover {
    transform: translateY(-10px) rotate(-2deg);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.2);
}

.visual-glow {
    position: absolute;
    inset: -2rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.3), rgba(55, 110, 92, 0.3));
    filter: blur(40px);
    z-index: -1;
    opacity: 0.6;
}

.visual-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.visual-overlay {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
}

.overlay-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    font-weight: 600;
    color: var(--text-primary);
}

.overlay-badge i {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--success);
    flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .cta-modern-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .cta-title {
        font-size: 2.5rem;
    }

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

@media (max-width: 768px) {
    .cta-modern {
        padding: 5rem 0;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-subtitle {
        font-size: 1.1rem;
    }

    .cta-stats-grid {
        grid-template-columns: 1fr;
    }

    .cta-actions {
        flex-direction: column;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        justify-content: center;
    }

    .cta-benefits-modern {
        flex-direction: column;
        gap: 1rem;
    }

    .visual-overlay {
        width: 85%;
        bottom: 1rem;
    }

    .overlay-badge {
        font-size: 0.9rem;
        padding: 0.75rem 1rem;
    }
}

/* Old CTA - Keep for backwards compatibility */
.cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, hsl(166, 72%, 26%, 0.05) 0%, hsl(0, 0%, 100%) 50%, hsl(166, 52%, 20%, 0.05) 100%);
    color: var(--text-primary);
    position: relative;
    overflow: hidden;
}

/* Footer */
.footer {
    background: var(--card-bg);
    color: var(--text-primary);
    padding: 3rem 0 1rem;
    border-top: 1px solid var(--border);
}

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

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.footer-brand p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.footer-section h4 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: var(--text-secondary);
    margin: 0;
}

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

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
}

/* Footer section navigation links (vertical) */
.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary);
}

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

/* Color Animation Classes */
.header-color-1 { background: #6366f1; }
.header-color-2 { background: #f1f5f9; }
.header-color-3 { background: #10b981; }
.header-color-4 { background: #0d9488; }
.header-color-5 { background: #06b6d4; }
.header-color-6 { background: #3b82f6; }

/* Responsive Design */
@media (max-width: 768px) {
    .desktop-nav,
    .desktop-buttons {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .mobile-menu.show {
        display: block;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .cta-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .business-grid {
        gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }
    
    .hero {
        padding: 6rem 0 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .business-grid {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .business-card {
        min-width: 100px;
    }
    
    .business-card span {
        font-size: 0.75rem;
    }
}

/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
}

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

.modal-header h2 {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #374151;
}

.form-group input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px hsl(var(--primary) / 0.1);
}

.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.2s;
    box-sizing: border-box;
    background: white;
    cursor: pointer;
}

.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.2s;
    box-sizing: border-box;
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
}

.form-group small {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.75rem;
    color: #6b7280;
}

.form-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        margin: 1rem;
        padding: 1.5rem;
    }
}

/* Multi-Step Modal Styles */
.modal-multistep {
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
}

.steps-progress {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
    padding: 0 2rem;
    position: relative;
}

.steps-progress::before {
    content: '';
    position: absolute;
    top: 50%;
    left: calc(16.66% + 20px);
    right: calc(16.66% + 20px);
    height: 2px;
    background: var(--border);
    z-index: 0;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

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

.step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--muted);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
}

.step-number {
    font-weight: 700;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.step-check {
    width: 1rem;
    height: 1rem;
    color: white;
    display: none;
}

.step-item.active .step-circle {
    background: linear-gradient(135deg, var(--primary), var(--primary-glow));
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(55, 110, 92, 0.25);
}

.step-item.active .step-number {
    color: white;
}

.step-item.completed .step-circle {
    background: linear-gradient(135deg, var(--primary), var(--primary-glow));
    border-color: var(--primary);
}

.step-item.completed .step-number {
    display: none;
}

.step-item.completed .step-check {
    display: block;
}

/* Progress Line Active State */
.steps-progress.step-2::before {
    background: linear-gradient(to right, var(--primary) 33%, var(--border) 33%);
}

.steps-progress.step-3::before {
    background: linear-gradient(to right, var(--primary) 66%, var(--border) 66%);
}

.steps-progress.step-4::before {
    background: var(--primary);
}

.step-item[data-step="4"] .step-circle {
    width: 40px;
    height: 40px;
}

.step-item[data-step="4"] .step-check {
    display: none;
    width: 1.5rem;
    height: 1.5rem;
    color: white;
}

.step-item[data-step="4"].active .step-check {
    display: block;
}

/* Success Content Styles */
.success-content {
    text-align: center;
    padding: 2rem 1rem;
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-glow));
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(55, 110, 92, 0.3);
}

.success-icon i {
    width: 3rem;
    height: 3rem;
    color: white;
}

.success-content h3 {
    color: var(--primary);
    margin-bottom: 0.75rem;
    font-size: 1.75rem;
}

.success-content .step-description {
    margin-bottom: 2rem;
}

.success-url {
    background: var(--muted);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.success-url label {
    display: block;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.url-display {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    word-break: break-all;
}

.success-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.success-actions .btn {
    width: 100%;
}

.step-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    text-align: center;
    transition: color 0.3s ease;
    max-width: 100px;
    line-height: 1.3;
}

.step-item.active .step-label,
.step-item.completed .step-label {
    color: var(--text-primary);
}

/* Form Steps */
.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

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

.step-content {
    margin-bottom: 2rem;
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.step-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* Form Navigation */
.form-navigation {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.form-navigation .btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 48px;
}

.form-navigation .btn i {
    width: 1.125rem;
    height: 1.125rem;
    flex-shrink: 0;
}

.form-navigation .btn-outline {
    flex: 0.7;
}

/* URL Input Group */
.url-input-group {
    display: flex;
    align-items: center;
    gap: 0;
}

.url-input-group input {
    border-radius: 6px 0 0 6px;
    border-right: none;
}

.url-suffix {
    padding: 0.75rem 1rem;
    background: var(--muted);
    border: 1px solid #d1d5db;
    border-left: none;
    border-radius: 0 6px 6px 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 500;
    white-space: nowrap;
}

/* Color Picker Group */
.color-picker-group {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.color-picker-group input[type="color"] {
    width: 80px;
    height: 44px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    cursor: pointer;
    padding: 4px;
}

.color-picker-group input[type="text"] {
    flex: 1;
}

/* File Upload Area */
.file-upload-area {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.file-name {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-style: italic;
}

.file-name:empty::after {
    content: 'Niciun fișier selectat';
    opacity: 0.5;
}

/* Input Error State */
.form-group input.error {
    border-color: #ef4444;
}

.form-group input.error:focus {
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

/* Responsive Multi-Step */
@media (max-width: 768px) {
    .modal-multistep {
        max-width: 100%;
        width: 95%;
    }
    
    .steps-progress {
        padding: 0 0.5rem;
    }
    
    .steps-progress::before {
        left: calc(16.66% + 18px);
        right: calc(16.66% + 18px);
    }
    
    .step-label {
        font-size: 0.625rem;
        max-width: 70px;
    }
    
    .step-circle {
        width: 36px;
        height: 36px;
    }
    
    .step-content h3 {
        font-size: 1.25rem;
    }
    
    .step-description {
        font-size: 0.875rem;
    }
    
    .form-navigation {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .form-navigation .btn-outline {
        flex: 1;
    }
    
    .url-input-group {
        flex-direction: column;
        align-items: stretch;
    }
    
    .url-input-group input {
        border-radius: 6px 6px 0 0;
        border-right: 1px solid #d1d5db;
        border-bottom: none;
    }
    
    .url-suffix {
        border-radius: 0 0 6px 6px;
        border-left: 1px solid #d1d5db;
        border-top: none;
        text-align: center;
    }
    
    .color-picker-group {
        flex-direction: column;
        align-items: stretch;
    }
    
    .color-picker-group input[type="color"] {
        width: 100%;
        height: 50px;
    }
    
    .file-upload-area {
        flex-direction: column;
        align-items: stretch;
    }
    
    .file-upload-area .btn {
        width: 100%;
    }
}

/* Trust indicator pulse dot */
.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
    flex-shrink: 0;
}

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

/* Contact list with icons */
.contact-list {
    list-style: none;
    padding: 0;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.contact-list i {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* Page Header Styles */
.page-header {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.page-nav {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.page-nav-link {
    background: var(--card-bg);
    border: 1px solid var(--border);
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: all 0.3s ease;
}

.page-nav-link:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* FAQ Styles */
.faq-section {
    padding: 4rem 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--card-bg);
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: var(--muted);
}

.faq-question h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.faq-icon {
    color: var(--primary);
    transition: transform 0.3s ease;
    width: 1.5rem;
    height: 1.5rem;
}

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

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

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

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.faq-cta {
    text-align: center;
    padding: 4rem 0;
    background: var(--muted);
    border-radius: 1rem;
    margin-top: 4rem;
}

.faq-cta h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.faq-cta p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.faq-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Legal Content Styles */
.legal-section {
    padding: 4rem 0;
}

.legal-section:not(:last-child) {
    border-bottom: 1px solid var(--border);
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.updated-date {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-article {
    margin-bottom: 3rem;
}

.legal-article h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.legal-article p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-article ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-article li {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

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

.back-to-sections {
    background: var(--muted);
    padding: 3rem 0;
    text-align: center;
}

.section-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.section-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s ease;
    min-width: 140px;
}

.section-link:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-2px);
}

.section-link i {
    width: 2rem;
    height: 2rem;
}

.section-link span {
    font-size: 0.875rem;
    font-weight: 500;
    text-align: center;
}

/* Mobile Responsive for new pages */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .page-nav {
        gap: 0.5rem;
    }
    
    .page-nav-link {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
    
    .faq-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .faq-cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .section-links {
        gap: 1rem;
    }
    
    .section-link {
        min-width: 120px;
        padding: 0.75rem;
    }
}

/* Demo Modal Styles */
.modal-video {
    z-index: 1001;
}

.modal-video-content {
    max-width: 800px;
    width: 90%;
}

.video-container {
    margin: 1.5rem 0;
}

.video-placeholder {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 0.75rem;
    border: 2px dashed var(--border);
}

.video-icon {
    margin-bottom: 1rem;
}

.video-icon i {
    width: 4rem;
    height: 4rem;
    color: var(--primary);
}

.video-placeholder h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.video-placeholder p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.video-placeholder .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

#videoFrame {
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

#videoFrame iframe {
    border-radius: 0.75rem;
}

.demo-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.demo-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.demo-feature i {
    color: var(--primary);
    width: 1.25rem;
    height: 1.25rem;
}

.demo-cta {
    text-align: center;
    padding: 2rem 0 0;
    border-top: 1px solid var(--border);
}

.demo-cta p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

/* Mobile responsive for demo modal */
@media (max-width: 768px) {
    .modal-video-content {
        width: 95%;
        margin: 1rem;
    }
    
    .video-placeholder {
        padding: 2rem 1rem;
    }
    
    .video-icon i {
        width: 3rem;
        height: 3rem;
    }
    
    .video-placeholder h3 {
        font-size: 1.25rem;
    }
    
    .demo-features {
        gap: 1rem;
        flex-direction: column;
        align-items: center;
    }
    
    #videoFrame iframe {
        height: 250px;
    }
}

/* ==========================================
   Pricing Page Styles - Modern Design
   ========================================== */

/* Pricing Hero Section */
.pricing-hero {
    position: relative;
    padding: 8rem 0 6rem;
    overflow: hidden;
    background: linear-gradient(180deg, var(--background) 0%, var(--muted) 100%);
}

.pricing-hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float-slow 25s ease-in-out infinite;
}

.hero-gradient-orb.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.4), transparent 70%);
    top: -250px;
    right: -100px;
}

.hero-gradient-orb.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(55, 110, 92, 0.4), transparent 70%);
    bottom: -200px;
    left: -150px;
    animation-delay: 5s;
}

.hero-gradient-orb.orb-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3), transparent 70%);
    top: 40%;
    left: 50%;
    animation-delay: 10s;
}

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

.pricing-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 2px solid var(--primary);
    padding: 0.75rem 1.5rem;
    border-radius: 3rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 2rem;
    box-shadow: 0 4px 12px rgba(55, 110, 92, 0.15);
}

.pricing-badge i {
    width: 1.25rem;
    height: 1.25rem;
}

.pricing-hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--primary-glow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 3rem;
}

/* Billing Toggle Modern */
.billing-toggle-modern {
    display: flex;
    justify-content: center;
}

.billing-options {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 2px solid var(--border);
    border-radius: 3rem;
    padding: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.billing-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border: none;
    background: transparent;
    border-radius: 2.5rem;
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.billing-option.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-glow));
    color: white;
    box-shadow: 0 4px 12px rgba(55, 110, 92, 0.25);
}

.save-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.3);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Pricing Cards Section */
.pricing-cards-section {
    padding: 4rem 0 6rem;
    position: relative;
}

.pricing-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: start;
}

/* Plan Card */
.plan-card {
    background: var(--card);
    border: 2px solid var(--border);
    border-radius: 1.5rem;
    padding: 2.5rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.plan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--primary);
}

/* Featured Plan */
.featured-plan {
    background: linear-gradient(180deg, rgba(55, 110, 92, 0.03) 0%, rgba(99, 102, 241, 0.03) 100%);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(55, 110, 92, 0.15);
    transform: scale(1.05);
}

.featured-plan:hover {
    transform: scale(1.08) translateY(-8px);
    box-shadow: 0 25px 50px rgba(55, 110, 92, 0.2);
}

.featured-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-glow));
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(55, 110, 92, 0.3);
}

.featured-badge i {
    width: 1rem;
    height: 1rem;
}

/* Plan Card Header */
.plan-card-header {
    text-align: center;
    margin-bottom: 2rem;
}

.plan-icon-wrapper {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-glow));
    border-radius: 1.25rem;
    color: white;
    box-shadow: 0 8px 20px rgba(55, 110, 92, 0.2);
}

.plan-icon-wrapper i {
    width: 2rem;
    height: 2rem;
}

.plan-title {
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.plan-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Plan Price */
.plan-price-wrapper {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1.5rem 0;
    border-top: 2px solid var(--border);
    border-bottom: 2px solid var(--border);
}

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

.price-value {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--text-primary);
    line-height: 1;
}

.price-label {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.custom-price .price-value {
    font-size: 2rem;
    font-weight: 800;
}

/* Plan Features List */
.plan-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    flex-grow: 1;
}

.feature-list-item {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    padding: 0.875rem 0;
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.feature-list-item i {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--success);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.featured-item {
    font-weight: 600;
    color: var(--text-primary);
}

.feature-list-item strong {
    color: var(--text-primary);
}

/* Plan CTA Button */
.plan-cta-btn {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.125rem 2rem;
    border-radius: 0.75rem;
    font-size: 1.0625rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    margin-top: auto;
}

.btn-primary-gradient {
    background: linear-gradient(135deg, var(--primary), var(--primary-glow));
    color: white;
    box-shadow: 0 4px 16px rgba(55, 110, 92, 0.3);
}

.btn-primary-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(55, 110, 92, 0.4);
}

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

.btn-secondary:hover {
    background: var(--muted);
    border-color: var(--primary);
    color: var(--primary);
}

.plan-cta-btn i {
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.3s ease;
}

.plan-cta-btn:hover i {
    transform: translateX(4px);
}

/* Responsive Design for Pricing */
@media (max-width: 1200px) {
    .pricing-cards-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
    
    .featured-plan {
        transform: scale(1);
    }
    
    .featured-plan:hover {
        transform: scale(1.02) translateY(-8px);
    }
}

@media (max-width: 768px) {
    .pricing-hero {
        padding: 6rem 0 4rem;
    }
    
    .pricing-hero-title {
        font-size: 2.5rem;
    }
    
    .pricing-hero-description {
        font-size: 1.125rem;
    }
    
    .billing-option {
        padding: 0.75rem 1.25rem;
        font-size: 0.9375rem;
    }
    
    .save-badge {
        font-size: 0.6875rem;
        padding: 0.2rem 0.5rem;
    }
    
    .plan-card {
        padding: 2rem;
    }
    
    .plan-icon-wrapper {
        width: 3.5rem;
        height: 3.5rem;
    }
    
    .plan-icon-wrapper i {
        width: 1.75rem;
        height: 1.75rem;
    }
    
    .plan-title {
        font-size: 1.5rem;
    }
    
    .price-value {
        font-size: 2.5rem;
    }
    
    .pricing-cards-section {
        padding: 3rem 0 4rem;
    }
}
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;

.pricing-faq {
    padding: 4rem 0;
    background: var(--muted);
}

.pricing-cta {
    padding: 4rem 0;
    text-align: center;
}

.pricing-cta .cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.pricing-cta .cta-content p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.trust-item i {
    color: var(--primary);
    width: 1.25rem;
    height: 1.25rem;
}

.nav-link.active {
    color: var(--primary);
    font-weight: 600;
}

.mobile-nav-link.active {
    color: var(--primary);
    font-weight: 600;
}

/* ==========================================
   Compare Plans Section
   ========================================== */

.compare-plans-section {
    padding: 6rem 0;
    background: var(--background);
}

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

.compare-plans-section .section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.compare-plans-section .section-header p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Table Wrapper */
.comparison-table-wrapper {
    overflow-x: auto;
    margin-bottom: 3rem;
    border-radius: 1rem;
    background: var(--card);
    border: 1px solid var(--border);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Table Styles */
.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    min-width: 900px;
}

.comparison-table thead {
    position: sticky;
    top: 0;
    z-index: 10;
    background: var(--muted);
}

.comparison-table th {
    padding: 1.5rem;
    text-align: center;
    font-weight: 600;
    border-bottom: 2px solid var(--border);
    background: var(--muted);
}

.comparison-table th.feature-column {
    text-align: left;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-secondary);
    width: 40%;
}

.comparison-table th.plan-column {
    width: 20%;
}

.comparison-table th.featured-column {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(55, 110, 92, 0.1));
    border-left: 2px solid var(--primary);
    border-right: 2px solid var(--primary);
    position: relative;
}

/* Plan Header in Table */
.plan-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.plan-icon-small {
    width: 2rem;
    height: 2rem;
    color: var(--primary);
}

.plan-header span {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
}

.table-badge {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Table Body */
.comparison-table tbody tr {
    transition: background-color 0.2s ease;
}

.comparison-table tbody tr:hover {
    background: var(--muted-hover);
}

/* Category Rows */
.category-row td {
    padding: 1.5rem 1.5rem 0.75rem 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    font-size: 1.125rem;
    border-top: 2px solid var(--border);
}

.category-row td h4 {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 700;
}

/* Feature Rows */
.comparison-table td {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border);
}

.feature-name {
    text-align: left;
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

.feature-value {
    text-align: center;
    color: var(--text-primary);
    font-size: 0.9375rem;
    font-weight: 500;
}

.featured-cell {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(55, 110, 92, 0.05));
    border-left: 2px solid var(--primary);
    border-right: 2px solid var(--primary);
}

/* Icons in Table */
.check-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--success);
    stroke-width: 2.5;
}

.x-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--muted-foreground);
    stroke-width: 2;
    opacity: 0.5;
}

/* Comparison CTA */
.comparison-cta {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--muted);
    border-radius: 1rem;
    border: 1px solid var(--border);
}

.comparison-cta p {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.comparison-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.comparison-cta .btn i {
    width: 1.25rem;
    height: 1.25rem;
}

/* Responsive for Compare Table */
@media (max-width: 1024px) {
    .compare-plans-section {
        padding: 4rem 0;
    }
    
    .comparison-table-wrapper {
        margin: 0 -1rem 3rem -1rem;
        border-radius: 0;
        border-left: none;
        border-right: none;
    }
}

@media (max-width: 768px) {
    .compare-plans-section .section-header h2 {
        font-size: 2rem;
    }
    
    .comparison-table {
        min-width: 700px;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem;
        font-size: 0.875rem;
    }
    
    .plan-header span {
        font-size: 1rem;
    }
    
    .plan-icon-small {
        width: 1.5rem;
        height: 1.5rem;
    }
    
    .comparison-cta {
        padding: 2rem 1.5rem;
    }
    
    .comparison-cta p {
        font-size: 1.125rem;
    }
}

/* Blog Styles */
.blog-hero {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    padding: 8rem 0 4rem;
    margin-top: 4rem;
    text-align: center;
}

.blog-hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.blog-hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.blog-section {
    padding: 4rem 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.blog-card {
    background: var(--card-bg);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid var(--border);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.blog-card-image {
    display: block;
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-content {
    padding: 1.5rem;
}

.blog-card-tags {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.blog-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--muted);
    color: var(--primary);
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.blog-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.blog-card:hover .blog-card-title {
    color: var(--primary);
}

.blog-card-excerpt {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.85rem;
}

.blog-date,
.blog-read-time {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.blog-date i,
.blog-read-time i {
    width: 16px;
    height: 16px;
}

/* Empty State Card */
.empty-state-card {
    max-width: 600px;
    margin: 4rem auto 0;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, hsl(var(--primary) / 0.05), hsl(var(--primary) / 0.02));
    border: 2px dashed hsl(var(--border));
    border-radius: 1rem;
    text-align: center;
}

.empty-state-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: hsl(var(--primary) / 0.1);
    border-radius: 50%;
    color: hsl(var(--primary));
}

.empty-state-icon svg {
    width: 40px;
    height: 40px;
}

.empty-state-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: hsl(var(--foreground));
    margin-bottom: 1rem;
}

.empty-state-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: hsl(var(--muted-foreground));
    margin-bottom: 2rem;
}

.empty-state-card .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

@media (max-width: 768px) {
    .empty-state-card {
        margin-top: 2rem;
        padding: 2rem 1.5rem;
    }

    .empty-state-icon {
        width: 64px;
        height: 64px;
    }

    .empty-state-icon svg {
        width: 32px;
        height: 32px;
    }

    .empty-state-title {
        font-size: 1.5rem;
    }

    .empty-state-description {
        font-size: 1rem;
    }
}

/* Newsletter Section */
.newsletter-section {
    background: var(--muted);
    padding: 4rem 0;
    margin: 4rem 0;
}

.newsletter-container {
    background: white;
    border-radius: 1.5rem;
    padding: 3rem;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.newsletter-content {
    text-align: center;
    margin-bottom: 2rem;
}

.newsletter-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.newsletter-icon i {
    color: white;
    width: 32px;
    height: 32px;
}

.newsletter-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.newsletter-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.newsletter-form {
    max-width: 600px;
    margin: 0 auto;
}

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

.newsletter-form-group {
    margin-bottom: 1rem;
}

.newsletter-form-group input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--border);
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.newsletter-form-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px hsl(166, 72%, 26%, 0.1);
}

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

.newsletter-submit i {
    width: 20px;
    height: 20px;
}

.newsletter-privacy {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.newsletter-privacy i {
    width: 16px;
    height: 16px;
    color: var(--success);
}

/* Article Styles */
.article-hero {
    background: var(--muted);
    padding: 6rem 0 2rem;
    margin-top: 4rem;
}

.article-container {
    max-width: 1000px;
}

.article-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.article-breadcrumb a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.article-breadcrumb a:hover {
    color: var(--primary);
}

.article-breadcrumb i {
    width: 16px;
    height: 16px;
}

.article-tags {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.article-tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: var(--primary);
    color: white;
    border-radius: 0.375rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.article-title {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border);
    margin-bottom: 2rem;
}

.article-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.article-author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    display: flex;
    align-items: center;
    justify-content: center;
}

.article-author-avatar i {
    width: 28px;
    height: 28px;
    color: white;
}

.article-author-info {
    display: flex;
    flex-direction: column;
}

.article-author-name {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.article-author-role {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.article-info {
    display: flex;
    gap: 1.5rem;
}

.article-date,
.article-read-time {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.article-date i,
.article-read-time i {
    width: 18px;
    height: 18px;
}

.article-featured-image {
    border-radius: 1rem;
    overflow: hidden;
    margin-bottom: 3rem;
}

.article-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.article-content-section {
    padding: 3rem 0;
}

.article-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 3rem;
    align-items: start;
}

.article-sidebar {
    position: sticky;
    top: 6rem;
}

.article-toc {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.article-toc-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.article-toc-list {
    list-style: none;
}

.article-toc-list li {
    margin-bottom: 0.75rem;
}

.article-toc-list a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: block;
    padding-left: 1rem;
    border-left: 2px solid transparent;
}

.article-toc-list a:hover {
    color: var(--primary);
    border-left-color: var(--primary);
    padding-left: 1.25rem;
}

.article-share {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    padding: 1.5rem;
}

.article-share-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.article-share-buttons {
    display: flex;
    gap: 0.5rem;
}

.share-button {
    width: 40px;
    height: 40px;
    border-radius: 0.5rem;
    border: 1px solid var(--border);
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.share-button:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.share-button i {
    width: 20px;
    height: 20px;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.share-button:hover i {
    color: white;
}

.article-main {
    min-width: 0;
}

.article-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-primary);
}

.article-content section {
    margin-bottom: 3rem;
}

.article-content h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin: 2rem 0 1.5rem;
}

.article-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 1.5rem 0 1rem;
}

.article-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 1rem 0 0.75rem;
}

.article-content p {
    margin-bottom: 1.5rem;
}

.article-content ul,
.article-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.article-content li {
    margin-bottom: 0.75rem;
}

.article-lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-secondary);
    line-height: 1.7;
}

.article-highlight {
    background: linear-gradient(135deg, hsl(166, 72%, 26%, 0.05), hsl(166, 52%, 20%, 0.05));
    border-left: 4px solid var(--primary);
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin: 2rem 0;
    display: flex;
    gap: 1rem;
}

.article-highlight-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--primary);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.article-highlight-icon i {
    width: 24px;
    height: 24px;
    color: white;
}

.article-highlight h3 {
    margin: 0 0 0.5rem 0;
    color: var(--primary);
}

.article-highlight p {
    margin: 0;
    font-size: 1rem;
}

.article-quote {
    background: var(--card-bg);
    border-left: 4px solid var(--primary);
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 0.5rem;
}

.article-quote p {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--text-primary);
    margin: 0 0 1rem 0;
}

.article-quote cite {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-style: normal;
}

.article-steps {
    margin: 2rem 0;
}

.article-step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
}

.article-step-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
}

.article-step-content h4 {
    margin: 0 0 0.5rem 0;
}

.article-step-content p {
    margin: 0;
    font-size: 1rem;
}

.article-info-box {
    background: var(--muted);
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin: 2rem 0;
    display: flex;
    gap: 1rem;
}

.article-info-box-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--primary);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.article-info-box-icon i {
    width: 24px;
    height: 24px;
    color: white;
}

.article-info-box h4 {
    margin: 0 0 0.5rem 0;
}

.article-info-box p {
    margin: 0;
    font-size: 1rem;
}

.article-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.article-comparison-item {
    padding: 1.5rem;
    border-radius: 0.75rem;
    text-align: center;
}

.article-comparison-item.bad {
    background: hsl(0, 100%, 97%);
    border: 2px solid hsl(0, 84%, 60%);
}

.article-comparison-item.good {
    background: hsl(142, 100%, 97%);
    border: 2px solid var(--success);
}

.article-comparison-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.article-comparison-item.bad .article-comparison-icon {
    background: hsl(0, 84%, 60%);
}

.article-comparison-item.good .article-comparison-icon {
    background: var(--success);
}

.article-comparison-icon i {
    width: 28px;
    height: 28px;
    color: white;
}

.article-comparison h4 {
    margin: 0 0 1rem 0;
}

.article-comparison p {
    margin: 0.5rem 0;
    font-size: 0.95rem;
}

.article-cta {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    padding: 3rem;
    border-radius: 1rem;
    text-align: center;
    margin: 3rem 0;
}

.article-cta h3 {
    color: white;
    margin: 0 0 1rem 0;
}

.article-cta p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.article-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.article-related {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid var(--border);
}

.article-related-title {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 2rem;
}

.article-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.article-related-card {
    display: block;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.3s ease;
}

.article-related-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.article-related-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.article-related-content {
    padding: 1rem;
}

.article-related-tag {
    display: inline-block;
    padding: 0.25rem 0.625rem;
    background: var(--muted);
    color: var(--primary);
    border-radius: 0.25rem;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.article-related-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
}

.article-related-date {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Responsive Styles for Blog */
@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .article-layout {
        grid-template-columns: 1fr;
    }

    .article-sidebar {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .article-related-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .blog-hero {
        padding: 6rem 0 3rem;
    }

    .blog-hero-title {
        font-size: 2rem;
    }

    .blog-hero-subtitle {
        font-size: 1rem;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-container {
        padding: 2rem;
    }

    .newsletter-title {
        font-size: 1.5rem;
    }

    .newsletter-form-row {
        grid-template-columns: 1fr;
    }

    .article-hero {
        padding: 5rem 0 1.5rem;
    }

    .article-title {
        font-size: 1.75rem;
    }

    .article-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .article-sidebar {
        grid-template-columns: 1fr;
    }

    .article-content h2 {
        font-size: 1.5rem;
    }

    .article-comparison {
        grid-template-columns: 1fr;
    }
}