/* Fisqal® - Modern ERP CSS - Simplified Version */

:root {
    --primary: #2563eb;
    --primary-dark: #1e40af;
    --success: #10b981;
    --danger: #ef4444;
    --warning: #f59e0b;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --gradient-text: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Cookie Consent Banner */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    max-height: 90vh;
    overflow-y: auto;
}

.cookie-consent-banner.show {
    transform: translateY(0);
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-consent-text {
    flex: 1;
    min-width: 300px;
}

.cookie-consent-text h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
}

.cookie-consent-text p {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin: 0;
    line-height: 1.6;
}

.cookie-consent-text a {
    color: var(--primary);
    text-decoration: underline;
}

.cookie-consent-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.cookie-consent-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
    white-space: nowrap;
}

.cookie-consent-btn-accept {
    background: var(--primary);
    color: var(--white);
}

.cookie-consent-btn-accept:hover {
    background: var(--primary-dark);
}

.cookie-consent-btn-reject {
    background: var(--gray-200);
    color: var(--gray-700);
}

.cookie-consent-btn-reject:hover {
    background: var(--gray-300);
}

.cookie-consent-btn-settings {
    background: transparent;
    color: var(--gray-700);
    border: 1px solid var(--gray-300);
}

.cookie-consent-btn-settings:hover {
    background: var(--gray-50);
}

.cookie-consent-settings {
    display: none;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-200);
}

.cookie-consent-settings.show {
    display: block;
}

.cookie-consent-setting-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: 8px;
    margin-bottom: 0.75rem;
}

.cookie-consent-setting-info {
    flex: 1;
}

.cookie-consent-setting-info h4 {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 0.25rem;
}

.cookie-consent-setting-info p {
    font-size: 0.8125rem;
    color: var(--gray-600);
    margin: 0;
}

.cookie-consent-toggle {
    position: relative;
    width: 48px;
    height: 24px;
    background: var(--gray-300);
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.3s;
    margin-left: 1rem;
}

.cookie-consent-toggle.active {
    background: var(--primary);
}

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

.cookie-consent-toggle-slider {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    background: var(--white);
    border-radius: 50%;
    transition: transform 0.3s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cookie-consent-toggle.active .cookie-consent-toggle-slider {
    transform: translateX(24px);
}

.cookie-consent-toggle.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

@media (max-width: 768px) {
    .cookie-consent-content {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cookie-consent-actions {
        width: 100%;
        flex-direction: column;
    }
    
    .cookie-consent-btn {
        width: 100%;
    }
    
    .cookie-consent-text {
        min-width: auto;
    }
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--gray-800);
    background: var(--white);
}

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

/* Typography */
h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
}

h3 {
    font-size: 1.75rem;
    font-weight: 700;
}

p {
    color: var(--gray-600);
    margin-bottom: 1rem;
}

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

.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation */
.navbar-minimal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-200);
    z-index: 1000;
    padding: 1rem 0;
}

.navbar-minimal .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--gray-800);
}

.logo-text {
    color: var(--primary);
}

.logo-r {
    font-size: 1rem;
    vertical-align: super;
    color: var(--gray-400);
    margin-left: 2px;
}

.nav-menu-minimal {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu-minimal a {
    color: var(--gray-600);
    font-weight: 500;
}

.nav-menu-minimal a:hover {
    color: var(--primary);
}

.nav-cta {
    background: var(--primary);
    color: var(--white) !important;
    padding: 0.5rem 1.25rem;
    border-radius: 8px;
    font-weight: 600;
}

.nav-cta:hover {
    background: var(--primary-dark);
}

.mobile-menu-toggle {
    display: none;
}

/* Hero */
.hero-disruptive {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    text-align: center;
}

.hero-badge {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-title {
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
    max-width: 800px;
    margin: 0 auto 2rem;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
}

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

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

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

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

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

.btn-block {
    width: 100%;
}

/* Trust Indicators */
.hero-trust-indicators {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-600);
    font-weight: 500;
}

.trust-item i {
    color: var(--success);
}

/* Sections */
section {
    padding: 80px 0;
}

.problem-section,
.why-section,
.comparison-highlight,
.demo-section {
    background: var(--gray-50);
}

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

.section-badge {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 0.375rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Cards */
.problem-grid,
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.problem-card,
.benefit-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--gray-200);
    transition: all 0.3s;
}

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

.problem-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    border-radius: 12px;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* Competitor Logos */
.competitor-logos {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-200);
}

.logo-row {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.competitor-name {
    padding: 0.5rem 1rem;
    background: var(--gray-100);
    color: var(--gray-600);
    border-radius: 8px;
    font-weight: 600;
}

/* Solution Card */
.solution-card {
    background: var(--white);
    border: 2px solid var(--primary);
    border-radius: 16px;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: var(--shadow-xl);
}

.card-header {
    padding: 2rem;
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-tag {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.price-tag .currency {
    font-size: 1.5rem;
    color: var(--gray-400);
}

.price-tag .amount {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary);
}

.included-badge {
    background: var(--success);
    color: var(--white);
    padding: 0.75rem;
    text-align: center;
    font-weight: 600;
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-item i {
    color: var(--success);
}

/* Feature Categories */
.feature-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-category {
    background: var(--gray-50);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid var(--gray-200);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.category-header i {
    font-size: 1.5rem;
    color: var(--primary);
}

.feature-list {
    list-style: none;
}

.feature-list li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    color: var(--gray-600);
    position: relative;
}

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

/* Comparison Table */
.comparison-table-simple {
    overflow-x: auto;
    margin-top: 3rem;
}

.comparison-table-simple table {
    width: 100%;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--gray-200);
}

.comparison-table-simple th,
.comparison-table-simple td {
    padding: 1rem 1.5rem;
    text-align: left;
}

.comparison-table-simple thead {
    background: var(--gray-100);
}

.fisqal-column {
    background: rgba(37, 99, 235, 0.05);
    font-weight: 600;
}

.comparison-table-simple tbody tr {
    border-top: 1px solid var(--gray-200);
}

.comparison-table-simple i {
    font-size: 1.125rem;
    margin-right: 0.5rem;
    cursor: help;
    position: relative;
    display: inline-block;
}

.comparison-table-simple td {
    position: relative;
}

.yes { color: var(--success); }
.no { color: var(--danger); }
.maybe { color: var(--warning); }
.extra { color: var(--gray-500); }

/* Tooltip styles for comparison icons */
.comparison-table-simple i[title] {
    position: relative;
    z-index: 1;
}

.comparison-table-simple td:hover i[title] {
    z-index: 1002;
}

.comparison-table-simple td:hover i[title]::after {
    content: attr(title);
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 12px;
    background: var(--gray-900);
    color: var(--white);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    text-transform: none !important;
    letter-spacing: normal;
    white-space: normal;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 1003;
    pointer-events: none;
    max-width: 250px;
    min-width: 150px;
    text-align: left;
    line-height: 1.5;
    word-wrap: break-word;
    opacity: 0;
    animation: tooltipFadeIn 0.2s ease-out forwards;
}

@keyframes tooltipFadeIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(4px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.comparison-table-simple td:hover i[title]::before {
    content: '';
    position: absolute;
    bottom: calc(100% + 2px);
    left: 50%;
    transform: translateX(-50%);
    border: 4px solid transparent;
    border-top-color: var(--gray-900);
    z-index: 1004;
    pointer-events: none;
}

/* Pricing */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
}

.pricing-card.featured {
    border-color: var(--primary);
    box-shadow: var(--shadow-xl);
    transform: scale(1.05);
}

.card-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    padding: 0.375rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin: 1.5rem 0;
}

.price .amount {
    font-size: 3.5rem;
    font-weight: 900;
}

.price .currency {
    font-size: 1.5rem;
    color: var(--gray-400);
}

/* Demo Form */
.demo-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.demo-form-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-200);
}

.demo-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Footer */
.footer-modern {
    background: var(--gray-900);
    color: var(--gray-400);
    padding: 3rem 0 1.5rem;
}

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

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

.link-column h4 {
    color: var(--white);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.link-column ul {
    list-style: none;
}

.link-column a {
    color: var(--gray-400);
    font-size: 0.9375rem;
}

.link-column a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid var(--gray-800);
    padding-top: 1.5rem;
}

.footer-legal {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.footer-note {
    text-align: center;
    margin-top: 1rem;
}

.footer-note p {
    color: var(--gray-600);
    font-size: 0.8125rem;
    font-style: italic;
}

/* Lists */
.what-included ul,
.simple-list,
.demo-benefits {
    list-style: none;
    padding: 0;
}

.what-included li,
.simple-list li,
.demo-benefits li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.what-included i,
.demo-benefits i {
    color: var(--success);
}

/* Utilities */
.vendor-header {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.vendor-name {
    font-size: 1.125rem;
    font-weight: 700;
}

.vendor-tag {
    font-size: 0.75rem;
    color: var(--gray-500);
    font-weight: 400;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-800);
    border-radius: 8px;
    color: var(--gray-400);
}

.social-links a:hover {
    background: var(--primary);
    color: var(--white);
}

.card-footer {
    padding: 2rem;
    background: var(--gray-50);
    text-align: center;
    border-top: 1px solid var(--gray-200);
}

.price-note,
.guarantee,
.form-note {
    color: var(--gray-500);
    font-size: 0.875rem;
    text-align: center;
}

.trademark {
    font-size: 0.875rem;
    vertical-align: super;
}

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

.extra-item {
    background: var(--gray-50);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--gray-200);
}

.extra-item i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.extra-price {
    display: block;
    margin-top: 1rem;
    font-weight: 700;
    color: var(--primary);
    font-size: 1.125rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .demo-content,
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Comparison Page Styles */
.header {
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand h2 {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--gray-800);
    margin: 0;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    color: var(--gray-600);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary);
}

.comparison-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    padding: 120px 0 80px;
    text-align: center;
}

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

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.comparison-hero h1 {
    color: var(--white);
    margin-bottom: 1rem;
}

.comparison-hero .highlight {
    color: rgba(255, 255, 255, 0.9);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.comparison-overview {
    padding: 80px 0;
    background: var(--white);
}

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

.section-header h2 {
    margin-bottom: 0.5rem;
}

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

.comparison-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

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

.comparison-card.featured {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.competitor-logo {
    width: 60px;
    height: 60px;
    background: var(--gray-100);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: var(--primary);
}

.competitor-info h3 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.competitor-info p {
    color: var(--gray-600);
    margin-bottom: 1rem;
}

.comparison-highlights {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.highlight-tag {
    display: inline-block;
    background: var(--gray-50);
    color: var(--gray-700);
    padding: 0.375rem 0.75rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
}

.comparison-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--primary);
    color: var(--white);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    margin-top: auto;
}

.comparison-btn:hover {
    background: var(--primary-dark);
    transform: translateX(5px);
}

.why-compare {
    padding: 80px 0;
    background: var(--gray-50);
}

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

.principle-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--gray-200);
    transition: all 0.3s;
}

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

.principle-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
}

.comparison-cta {
    padding: 80px 0;
    background: var(--white);
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    margin-bottom: 1rem;
}

.cta-content p {
    margin-bottom: 2rem;
    color: var(--gray-600);
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.btn-secondary {
    background: var(--gray-800);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--gray-900);
}

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

.footer {
    background: var(--gray-900);
    color: var(--gray-400);
    padding: 3rem 0 1.5rem;
}

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

.footer-brand h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.footer-links h4,
.footer-contact h4,
.footer-social h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1rem;
}

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

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

.footer-links a {
    color: var(--gray-400);
    text-decoration: none;
    transition: color 0.3s;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.contact-item i {
    color: var(--primary);
    width: 20px;
}

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

.footer-social .social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-800);
    color: var(--gray-400);
    border-radius: 8px;
    transition: all 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-800);
}

@media (max-width: 768px) {
    .nav-menu-minimal {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        cursor: pointer;
    }
    
    .mobile-menu-toggle span {
        display: block;
        width: 25px;
        height: 3px;
        background: var(--gray-800);
        margin: 3px 0;
        border-radius: 3px;
    }
    
    .hero-cta-group {
        flex-direction: column;
        max-width: 300px;
        margin: 0 auto 2rem;
    }
    
    .problem-grid,
    .benefits-grid,
    .pricing-cards,
    .comparison-grid,
    .principles-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .cta-actions {
        flex-direction: column;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-trust-indicators {
        flex-direction: column;
        align-items: center;
    }
    
    .logo-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .price .amount {
        font-size: 2.5rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
}

/* Compatibility with existing elements */
.navbar {
    display: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: var(--gray-600);
    font-weight: 500;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.theme-toggle {
    display: none;
}

.comparison-cta {
    text-align: center;
    margin-top: 2rem;
}

.pricing-extras {
    max-width: 900px;
    margin: 3rem auto 0;
    text-align: center;
}

.pricing-extras h3 {
    margin-bottom: 2rem;
}

/* Print */
@media print {
    .navbar-minimal,
    .footer-modern,
    .demo-section,
    .hero-cta-group {
        display: none;
    }
}
