@import 'variables.css';

/* Reset & Base Styles */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-main);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateX(-20px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

.animate-fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.section {
    padding: var(--spacing-lg) 0;
}

.text-center {
    text-align: center;
}

.text-primary {
    color: var(--primary-color);
}

.text-secondary {
    color: var(--secondary-color);
}

.text-light {
    color: var(--text-light);
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.gap-sm {
    gap: var(--spacing-sm);
}

.gap-md {
    gap: var(--spacing-md);
}

.gap-lg {
    gap: var(--spacing-lg);
}

.grid {
    display: grid;
}

.grid-cols-1 {
    grid-template-columns: repeat(1, 1fr);
}

.grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-cols-4 {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 900px) {
    .grid-cols-2 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {

    .grid-cols-3,
    .grid-cols-4 {
        grid-template-columns: 1fr;
    }

    .screenshot-card-modern:hover {
        transform: none;
    }
}

/* Page Hero */
.page-hero {
    padding: var(--spacing-lg) 0;
    background: linear-gradient(135deg, #e0f2fe 0%, #f0f9ff 50%, #ffffff 100%);
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-hero p {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-light);
    font-size: 1.125rem;
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-light);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #cbd5e1;
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-normal);
    background: var(--bg-white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Screenshots/UI Preview Section */
.screenshots-section {
    background: var(--bg-light);
    padding: var(--spacing-xl) 0;
}

.screenshot-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

/* Modern Screenshot Cards */
.screenshot-card-modern {
    background: var(--bg-white);
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(76, 186, 73, 0.1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.screenshot-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 1;
}

.screenshot-card-modern:hover::before {
    transform: scaleX(1);
}

.screenshot-card-modern:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(76, 186, 73, 0.15);
    border-color: var(--primary-color);
}

.screenshot-card-modern.featured-screenshot {
    border-color: var(--primary-color);
    border-width: 2px;
    transform: scale(1.05);
}

.screenshot-card-modern.featured-screenshot:hover {
    transform: scale(1.05) translateY(-12px);
}

.featured-badge-screenshot {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--gradient-primary);
    color: white;
    padding: 0.375rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(76, 186, 73, 0.3);
}

/* CSS Device Mockups Global */
.screenshot-image-wrapper {
    position: relative;
    height: 280px;
    background: linear-gradient(135deg, rgba(76, 186, 73, 0.05) 0%, rgba(76, 186, 73, 0.02) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all 0.5s ease;
}

.screenshot-card-modern:hover .screenshot-image-wrapper {
    background: linear-gradient(135deg, rgba(76, 186, 73, 0.15) 0%, rgba(76, 186, 73, 0.05) 100%);
}

/* 1. Phone Mockup */
.css-device-phone {
    width: 100px;
    height: 190px;
    background: #fff;
    border: 6px solid #333;
    border-radius: 16px;
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    transition: transform 0.4s ease;
}

.screenshot-card-modern:hover .css-device-phone {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 20px 45px rgba(76, 186, 73, 0.25);
    border-color: #222;
}

.phone-notch {
    width: 40%;
    height: 12px;
    background: #333;
    position: absolute;
    top: 0;
    left: 30%;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    z-index: 2;
}

.phone-screen {
    background: #f4f6f8;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.app-header {
    height: 35px;
    background: var(--primary-color);
    margin-bottom: 8px;
}

.app-body {
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.app-item {
    height: 20px;
    background: white;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.app-fab {
    width: 28px;
    height: 28px;
    background: var(--secondary-color);
    border-radius: 50%;
    position: absolute;
    bottom: 12px;
    right: 12px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

/* 2. Monitor Mockup */
.css-device-monitor {
    width: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.4s ease;
}

.screenshot-card-modern:hover .css-device-monitor {
    transform: scale(1.05) translateY(-5px);
}

.monitor-screen {
    width: 100%;
    height: 110px;
    background: #fff;
    border: 4px solid #333;
    border-radius: 6px;
    display: flex;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.monitor-sidebar {
    width: 25px;
    background: #f0f2f5;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px;
    gap: 6px;
    border-right: 1px solid #eee;
}

.monitor-icon {
    width: 12px;
    height: 12px;
    background: #ccc;
    border-radius: 3px;
}

.monitor-icon.active {
    background: var(--primary-color);
}

.monitor-content {
    flex: 1;
    padding: 8px;
    display: flex;
    flex-direction: column;
    background: #fff;
    gap: 6px;
}

.monitor-header {
    height: 10px;
    width: 60%;
    background: #eee;
    border-radius: 3px;
    margin-bottom: 4px;
}

.monitor-grid {
    display: flex;
    gap: 5px;
}

.monitor-card {
    flex: 1;
    height: 30px;
    background: #f8f9fa;
    border: 1px solid #eee;
    border-radius: 4px;
}

.monitor-table {
    flex: 1;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 4px;
    padding: 4px;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.table-row {
    height: 4px;
    background: #eee;
    border-radius: 2px;
    width: 100%;
}

.monitor-stand {
    width: 40px;
    height: 15px;
    background: #e0e0e0;
    /* lighter stand */
    margin-top: -2px;
    /* Pull up to touch monitor, but CSS flow usually handles this. Adjust if needed */
    clip-path: polygon(20% 0%, 80% 0%, 100% 100%, 0% 100%);
    background: linear-gradient(180deg, #999 0%, #333 100%);
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}


/* 3. Laptop Mockup */
.css-device-laptop {
    width: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.4s ease;
}

.screenshot-card-modern:hover .css-device-laptop {
    transform: scale(1.05) translateY(-5px);
}

.laptop-screen {
    width: 100%;
    height: 95px;
    background: #333;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    padding: 3px 3px 0 3px;
    /* bezel */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.laptop-header {
    height: 8px;
    background: #444;
    display: flex;
    align-items: center;
    gap: 3px;
    padding-left: 5px;
}

.laptop-header .dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #777;
}

.laptop-body {
    background: #fff;
    height: calc(100% - 8px);
    width: 100%;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.web-chart-area {
    height: 35px;
    background: #eefbf0;
    border-radius: 3px;
    border-bottom: 2px solid var(--primary-color);
}

.web-stats-row {
    display: flex;
    gap: 5px;
}

.web-stat {
    flex: 1;
    height: 20px;
    background: #f5f5f5;
    border-radius: 3px;
}

.laptop-base {
    width: 180px;
    /* wider than screen */
    height: 8px;
    background: #ccc;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: linear-gradient(180deg, #ddd 0%, #bbb 100%);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.screenshot-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.1), transparent);
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.screenshot-card-modern:hover .screenshot-overlay {
    transform: translateY(0);
}

.screenshot-label {
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.screenshot-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.screenshot-content h4 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-main);
    font-weight: 700;
}

.screenshot-content p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

/* Steps / How It Works */
.steps-container {
    position: relative;
    padding-top: 2rem;
}

.steps-line {
    position: absolute;
    top: 55px;
    /* Aligns with the middle of the icon */
    left: 15%;
    right: 15%;
    height: 3px;
    background-image: linear-gradient(to right, #e2e8f0 50%, transparent 50%);
    background-size: 20px 100%;
    z-index: 0;
}

.steps-grid {
    position: relative;
    z-index: 1;
}

.step-card {
    text-align: center;
    padding: var(--spacing-md);
    background: transparent;
}

.step-icon-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid white;
    box-shadow: 0 0 0 4px var(--bg-light), 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.step-card:hover .step-icon-wrapper {
    transform: scale(1.1);
    box-shadow: 0 0 0 6px var(--primary-color), 0 20px 40px rgba(76, 186, 73, 0.3);
    border-color: white;
}

.step-number {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 36px;
    height: 36px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    border: 3px solid white;
    z-index: 3;
}

.step-icon {
    font-size: 2.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
}

.step-card:hover .step-icon {
    transform: rotateY(180deg);
}

.step-card h3 {
    margin-bottom: var(--spacing-sm);
    color: var(--text-main);
    font-size: 1.35rem;
}

.step-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Steps Responsive */
@media (max-width: 768px) {
    .steps-line {
        display: none;
    }

    .steps-container {
        padding-top: 0;
    }

    .step-card {
        margin-bottom: var(--spacing-lg);
    }
}

/* Comparison Table */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.comparison-table thead {
    background: var(--bg-dark);
    color: white;
}

.comparison-table th {
    padding: 1.25rem;
    text-align: left;
    font-weight: 600;
}

.comparison-table th:first-child {
    text-align: left;
}

.comparison-table th:not(:first-child) {
    text-align: center;
}

.comparison-table td {
    padding: 1.25rem;
    border-bottom: 1px solid #e2e8f0;
}

.comparison-table tbody tr:hover {
    background: var(--bg-light);
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table td:not(:first-child) {
    text-align: center;
}

.comparison-table .check-icon {
    color: var(--secondary-color);
    font-size: 1.25rem;
}

.comparison-table .warning-icon {
    color: #f59e0b;
    font-size: 1.25rem;
}

/* Pricing Cards */
.pricing-card {
    background: var(--bg-white);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 2px solid #e2e8f0;
    transition: var(--transition-normal);
    position: relative;
    text-align: center;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.pricing-card .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: var(--spacing-sm) 0;
}

.pricing-card .price-subtitle {
    color: var(--text-light);
    font-size: 0.875rem;
    margin-bottom: var(--spacing-md);
}

.pricing-features {
    text-align: left;
    margin: var(--spacing-md) 0;
    padding-left: 1rem;
}

.pricing-features li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
}

.pricing-features li i {
    color: var(--primary-color);
}

/* Platform Pricing Cards */
.pricing-platforms {
    margin-bottom: var(--spacing-xl);
}

.platform-card {
    position: relative;
    text-align: center;
}

.platform-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto var(--spacing-md);
    background: linear-gradient(135deg, rgba(76, 186, 73, 0.1) 0%, rgba(76, 186, 73, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.platform-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.platform-card:hover .platform-icon {
    background: var(--gradient-primary);
    transform: scale(1.1) rotate(5deg);
}

.platform-card:hover .platform-icon i {
    color: white;
}

.pricing-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.one-time-badge {
    background: rgba(76, 186, 73, 0.1);
    color: var(--primary-color);
}

.subscription-badge {
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
}

.pricing-note {
    font-size: 0.875rem;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: var(--spacing-md);
}

/* Pricing Info Section */
.pricing-info-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
    padding-top: var(--spacing-xl);
    border-top: 2px solid rgba(76, 186, 73, 0.1);
}

.pricing-info-card {
    display: flex;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary-color);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.info-content h4 {
    margin-bottom: var(--spacing-xs);
    color: var(--text-main);
    font-size: 1.125rem;
}

.info-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* FAQ Section */
.faq-item {
    margin-bottom: 1.5rem;
    padding: var(--spacing-md);
    background: var(--bg-white);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--primary-color);
    transition: var(--transition-normal);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-item h4 {
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.faq-item p {
    color: var(--text-light);
    margin: 0;
}

/* Contact Info Cards */
.contact-info-card {
    background: var(--bg-white);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    margin-bottom: var(--spacing-md);
    transition: var(--transition-normal);
}

.contact-info-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.contact-info-card h4 {
    margin-bottom: var(--spacing-sm);
    color: var(--text-main);
}

.contact-info-card p {
    color: var(--text-light);
    margin: 0.25rem 0;
}

/* Common Inline Style Replacements */
.margin-bottom-sm {
    margin-bottom: var(--spacing-sm);
}

.margin-bottom-md {
    margin-bottom: var(--spacing-md);
}

.margin-bottom-lg {
    margin-bottom: var(--spacing-lg);
}

.margin-top-sm {
    margin-top: var(--spacing-sm);
}

.margin-top-md {
    margin-top: var(--spacing-md);
}

.width-full {
    width: 100%;
}

.section-alt {
    background-color: var(--bg-light);
}

/* Hero Badge */
/* Hero Badge */
.hero-badge {
    display: inline-block;
    background: rgba(76, 186, 73, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-full);
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    border: 1px solid rgba(76, 186, 73, 0.2);
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

.hero-badge i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.25rem;
    font-family: var(--font-heading);
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Section Headers */
.section-header {
    margin-bottom: var(--spacing-lg);
}

.section-badge {
    display: inline-block;
    background: rgba(76, 186, 73, 0.1);
    color: var(--primary-color);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-main);
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Solution Cards */
.solutions-section {
    background: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.solution-card {
    background: white;
    padding: 0;
    /* Reset padding for internal spacing */
    border-radius: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.card-bg-shape {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: var(--gradient-primary);
    opacity: 0.05;
    border-radius: 50%;
    z-index: 0;
    transition: all 0.5s ease;
}

.solution-card:hover .card-bg-shape {
    transform: scale(1.5);
    opacity: 0.1;
}

/* Platform Variants */
.solution-mobile {
    border-top: 5px solid #9333ea;
}

.solution-mobile .solution-icon {
    background: #f3e8ff;
    color: #9333ea;
}

.solution-mobile .check-icon {
    color: #9333ea;
    background: #f3e8ff;
}

.solution-mobile .card-bg-shape {
    background: #9333ea;
}

.solution-mobile:hover {
    border-color: #9333ea;
}

.solution-desktop {
    border-top: 5px solid #0284c7;
}

.solution-desktop .solution-icon {
    background: #e0f2fe;
    color: #0284c7;
}

.solution-desktop .check-icon {
    color: #0284c7;
    background: #e0f2fe;
}

.solution-desktop .card-bg-shape {
    background: #0284c7;
}

.solution-desktop:hover {
    border-color: #0284c7;
}

.solution-web {
    border-top: 5px solid #ea580c;
}

.solution-web .solution-icon {
    background: #ffedd5;
    color: #ea580c;
}

.solution-web .check-icon {
    color: #ea580c;
    background: #ffedd5;
}

.solution-web .card-bg-shape {
    background: #ea580c;
}

.solution-web:hover {
    border-color: #ea580c;
}

.solution-card.featured-solution {
    transform: scale(1.05);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    z-index: 2;
}

.solution-card.featured-solution:hover {
    transform: scale(1.05) translateY(-10px);
}

.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient-primary);
    color: white;
    padding: 0.35rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 5;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.solution-icon-wrapper {
    padding: 2.5rem 2rem 0;
    position: relative;
    z-index: 1;
}

.solution-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.75rem;
}

.solution-card:hover .solution-icon {
    transform: scale(1.1) rotate(5deg);
}

.solution-card h3 {
    padding: 1.5rem 2rem 0.5rem;
    font-size: 1.5rem;
    color: var(--text-main);
    margin: 0;
    position: relative;
    z-index: 1;
}

.solution-description {
    padding: 0 2rem 1.5rem;
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1;
}

.solution-features {
    list-style: none;
    padding: 1.5rem 2rem;
    margin: 0;
    flex-grow: 1;
    position: relative;
    z-index: 1;
}

.solution-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.check-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    flex-shrink: 0;
}

.solution-btn {
    display: block;
    margin: 0 2rem 2rem;
    padding: 0.875rem;
    text-align: center;
    border-radius: var(--radius-md);
    background: #f8fafc;
    color: var(--text-main);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.solution-btn:hover {
    background: var(--text-main);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.solution-btn.btn-primary {
    background: var(--gradient-primary);
    color: white;
    border: none;
}

.solution-btn.btn-primary:hover {
    filter: brightness(1.1);
}

.solution-btn i {
    font-size: 0.85em;
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.solution-btn:hover i {
    transform: translateX(4px);
}

.solution-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: var(--spacing-md);
    transition: all 0.3s ease;
    text-decoration: none;
}

.solution-link:hover {
    gap: 1rem;
    color: var(--primary-dark);
}

.solution-link i {
    transition: transform 0.3s ease;
}

.solution-link:hover i {
    transform: translateX(5px);
}


/* Testimonial Rating */
.testimonial-rating {
    color: #ffd700;
    margin-bottom: var(--spacing-sm);
    font-size: 0.875rem;
}

.testimonial-rating i {
    margin-right: 0.25rem;
}

/* CTA Section */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    margin-top: var(--spacing-md);
}

.cta-btn-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

.cta-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.nav-btn {
    color: white !important;
    padding: 0.625rem 1.75rem !important;
    border-radius: var(--radius-full) !important;
    font-weight: 600 !important;
    font-size: 0.9375rem !important;
    background: var(--gradient-primary) !important;
    box-shadow: 0 4px 12px rgba(76, 186, 73, 0.3) !important;
    transition: all 0.3s ease !important;
    margin-left: 0.5rem !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    border: none !important;
}

.nav-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(76, 186, 73, 0.4) !important;
    background: var(--gradient-hover) !important;
    opacity: 1 !important;
}

.nav-btn:active {
    transform: translateY(0) !important;
}

.section-alt {
    background-color: var(--bg-white);
}

.cta-section {
    background: var(--gradient-primary);
    color: white;
    padding: var(--spacing-xl) 0;
    text-align: center;
}

.cta-section h2 {
    color: white;
    margin-bottom: var(--spacing-sm);
    font-size: 2.5rem;
}

.cta-section p {
    margin-bottom: var(--spacing-md);
    opacity: 0.95;
    font-size: 1.125rem;
}

.cta-btn {
    background: white;
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

.feature-list {
    margin: 1rem 0;
    color: var(--text-light);
}

.feature-list li {
    margin-bottom: 0.5rem;
}

.link-arrow {
    font-weight: 600;
    color: var(--primary-color);
}

.link-arrow:hover {
    text-decoration: underline;
}

.footer-logo {
    color: white;
}

.footer-logo img {
    filter: brightness(0) invert(1);
}

.mockup-placeholder {
    background: #e2e8f0;
    height: 300px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
}

/* Login Page Styles */
.login-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md);
    background: var(--bg-light);
    min-height: calc(100vh - 80px);
}

.login-card {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    max-width: 500px;
    width: 100%;
    text-align: center;
}

.login-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: var(--transition-normal);
    border: 1px solid #e2e8f0;
    text-decoration: none;
    font-size: 1rem;
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.client-login {
    background: var(--gradient-primary);
    color: white;
    border: none;
}

.client-login:hover {
    background: var(--gradient-hover);
}

.admin-login {
    background: white;
    color: var(--text-main);
}

.admin-login:hover {
    background: #f8fafc;
    border-color: var(--primary-color);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-normal);
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--gradient-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: white;
}

.btn-secondary:hover {
    background-color: var(--secondary-dark);
}

/* Header & Navigation */
header {
    background-color: rgba(255, 255, 255, 0.7);
    /* Start fairly transparent */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: none;
    /* No shadow initially */
    padding: 1rem 0;
    min-height: 80px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    padding: 0.5rem 0;
    /* Shrink on scroll */
    min-height: 70px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--text-main);
    letter-spacing: -0.5px;
    text-decoration: none;
}

.logo img {
    height: 48px;
    /* Slightly larger logo */
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-links a {
    font-weight: 600;
    color: var(--text-main);
    display: flex;
    align-items: center;
    padding: 0.6rem 1rem;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
    background: rgba(76, 186, 73, 0.08);
    /* Subtle pill background on hover */
}

.nav-links a:not(.btn):not(.nav-btn):not(.nav-login-link) {
    position: relative;
}

/* Login Link Specifics */
.nav-login-link {
    font-weight: 600 !important;
    margin-left: 0.5rem;
    padding: 0.6rem 1.25rem !important;
}

.nav-login-link:hover {
    background: rgba(0, 0, 0, 0.03);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-main);
    padding: 0.5rem;
    border-radius: var(--radius-md);
    transition: background 0.3s ease;
}

.mobile-menu-btn:hover {
    background: rgba(0, 0, 0, 0.05);
}

.hero-floating {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    /* Increased opacity for visibility */
    animation: floatShape 15s ease-in-out infinite;
}

.floating-shape:nth-child(1) {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.floating-shape:nth-child(2) {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.floating-shape:nth-child(3) {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes floatShape {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }

    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

/* Hero Section - Modern & Creative */
.hero {
    padding: 6rem 0;
    /* Reduced padding slightly */
    background: linear-gradient(135deg, #f0fdf4 0%, #e0f2fe 100%);
    position: relative;
    overflow: hidden;
    min-height: 85vh;
    /* Standard height */
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    top: -200px;
    right: -100px;
    background: radial-gradient(circle, rgba(76, 186, 73, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    filter: blur(40px);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text-content {
    text-align: left;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-main);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.text-highlight {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.text-highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(76, 186, 73, 0.2);
    z-index: -1;
    border-radius: 2px;
}

.hero p.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    justify-content: flex-start;
}

/* Stats Row */
.hero-stats-row {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.stat-mini {
    display: flex;
    flex-direction: column;
}

.stat-mini strong {
    font-size: 1.75rem;
    color: var(--text-main);
    line-height: 1;
    font-weight: 700;
}

.stat-mini span {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: 0.25rem;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: #cbd5e1;
}

/* Hero Visual - Mockup */
.hero-visual {
    position: relative;
    perspective: 1000px;
}

.dashboard-mockup {
    background: white;
    border-radius: 12px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.5);
    overflow: hidden;
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transition: transform 0.5s ease;
    width: 100%;
    position: relative;
}

.hero-visual:hover .dashboard-mockup {
    transform: perspective(1000px) rotateY(0) rotateX(0);
}

.mockup-header {
    background: #f8fafc;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #e2e8f0;
}

.browser-dots {
    display: flex;
    gap: 6px;
    margin-right: 16px;
}

.browser-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.browser-dots span:nth-child(1) {
    background: #ef4444;
}

.browser-dots span:nth-child(2) {
    background: #f59e0b;
}

.browser-dots span:nth-child(3) {
    background: #22c55e;
}

.browser-bar {
    flex: 1;
    background: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 11px;
    color: #94a3b8;
    text-align: center;
    border: 1px solid #e2e8f0;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
}

.mockup-body {
    display: flex;
    height: 350px;
    background: #f1f5f9;
}

.ui-sidebar {
    width: 70px;
    background: #1e293b;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.ui-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
}

.ui-icon.active {
    background: var(--primary-color);
}

.ui-content {
    flex: 1;
    padding: 24px;
    overflow: hidden;
}

.ui-header-line {
    height: 12px;
    width: 150px;
    background: #cbd5e1;
    border-radius: 6px;
    margin-bottom: 24px;
}

.ui-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.ui-card {
    height: 80px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.ui-chart-space {
    height: 150px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.chart-line {
    width: 120%;
    height: 3px;
    background: var(--primary-color);
    transform: rotate(-5deg);
    box-shadow: 0 10px 30px rgba(76, 186, 73, 0.3);
}

/* Floating Stats in Visual */
.float-card {
    position: absolute;
    background: white;
    padding: 12px 16px;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10;
    animation: float 6s ease-in-out infinite;
    min-width: 160px;
}

.float-1 {
    top: 60px;
    right: -40px;
    animation-delay: 0s;
}

.float-2 {
    bottom: 60px;
    left: -40px;
    animation-delay: 2.5s;
}

.float-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e0f2fe;
    color: #0284c7;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.float-icon.success {
    background: #dcfce7;
    color: #16a34a;
}

.float-text {
    display: flex;
    flex-direction: column;
}

.float-text span {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 500;
}

.float-text strong {
    font-size: 1rem;
    color: var(--text-main);
    font-weight: 700;
}

@media (max-width: 968px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-text-content {
        max-width: 600px;
        margin: 0 auto;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats-row {
        justify-content: center;
    }

    .text-highlight::after {
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
    }

    .dashboard-mockup {
        transform: none !important;
        margin-top: 2rem;
    }

    .float-card {
        display: none;
    }
}

/* Cards - Modern Design */
.card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(76, 186, 73, 0.1);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.card:hover::before {
    transform: scaleX(1);
}

.card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(76, 186, 73, 0.15);
    border-color: var(--primary-color);
}

.card-icon {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
    display: inline-block;
    transition: transform 0.3s ease;
}

.card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

.card h3 {
    margin-bottom: var(--spacing-sm);
    font-size: 1.5rem;
    color: var(--text-main);
}

.card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Features Section */
.feature-row {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.feature-row.reverse {
    flex-direction: row-reverse;
}

.feature-content {
    flex: 1;
}

.feature-image {
    flex: 1;
}

.feature-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* Footer */
/* =========================================
   Footer - Premium Redesign
   ========================================= */

.footer-premium {
    background-color: var(--bg-dark);
    color: white;
    padding-top: 5rem;
    padding-bottom: 2rem;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-blob {
    position: absolute;
    top: -50%;
    left: 20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(76, 186, 73, 0.1) 0%, transparent 70%);
    opacity: 0.5;
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 4rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.footer-brand {
    max-width: 350px;
}

.footer-brand p {
    color: #94a3b8;
    margin: 1.5rem 0 2rem;
    line-height: 1.7;
    font-size: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(76, 186, 73, 0.3);
}

.footer-nav-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-col h4 {
    color: white;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul li a {
    color: #94a3b8;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.copyright p {
    color: #64748b;
    font-size: 0.9rem;
}

.legal-links {
    display: flex;
    gap: 2rem;
}

.legal-links a {
    color: #64748b;
    font-size: 0.9rem;
}

.legal-links a:hover {
    color: white;
    text-decoration: underline;
}

/* Footer Responsive */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-brand {
        max-width: 100%;
        text-align: center;
    }

    .footer-brand p {
        margin: 1.5rem auto 2rem;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer-nav-group {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .legal-links {
        gap: 1.5rem;
        justify-content: center;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .pricing-card.featured {
        transform: scale(1);
    }

    .hero h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 1.5rem;
        box-shadow: var(--shadow-md);
        text-align: center;
        z-index: 999;
        gap: 1rem;
        align-items: stretch;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        padding: 0.75rem 1rem;
        justify-content: center;
    }

    .nav-btn {
        width: 100%;
        margin-left: 0 !important;
    }

    .nav-login-link {
        margin-left: 0 !important;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero {
        min-height: auto;
        padding: 4rem 0 3rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero .hero-subtitle {
        font-size: 1.125rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: var(--spacing-md);
    }

    .stat-number {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .feature-row,
    .feature-row.reverse {
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .login-card {
        padding: 2rem 1.5rem;
    }

    .comparison-table {
        font-size: 0.875rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem;
    }

    .solution-card.featured-solution {
        transform: scale(1);
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    .pricing-info-section {
        grid-template-columns: 1fr;
    }

    .screenshot-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .screenshot-card-modern.featured-screenshot {
        transform: scale(1);
    }

    .screenshot-card-modern.featured-screenshot:hover {
        transform: translateY(-12px);
    }

    .screenshot-image-wrapper {
        height: 240px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .container {
        padding: 0 1rem;
    }
}

/* =========================================
   Testimonials Section - Premium Dark Theme
   ========================================= */

:root {
    --bg-dark: #0f172a;
    /* Slate 900 */
}

.testimonials-section.dark-mode {
    background-color: var(--bg-dark);
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
    z-index: 1;
}

/* Background Blobs */
.background-blobs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.blob {
    position: absolute;
    filter: blur(80px);
    opacity: 0.4;
    border-radius: 50%;
}

.blob-1 {
    top: -10%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(76, 186, 73, 0.4) 0%, transparent 70%);
    animation: blobMove 10s infinite alternate;
}

.blob-2 {
    bottom: -10%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.3) 0%, transparent 70%);
    animation: blobMove 15s infinite alternate-reverse;
}

@keyframes blobMove {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(20px, 40px) scale(1.1);
    }
}

/* Layout Split */
.testimonials-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: flex-start;
}

/* Left Side Header */
.testimonials-header-side {
    position: sticky;
    top: 100px;
}

.testimonials-header-side h2.text-white {
    color: white;
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.text-light-alpha {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.badge-dark {
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary-color);
    border: 1px solid rgba(76, 186, 73, 0.3);
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.indicator-item h3 {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 5px 0;
}

.indicator-item p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin: 0;
}

.indicator-divider {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
}

.stars {
    color: #ffd700;
    font-size: 0.8rem;
    margin-bottom: 5px;
}

/* Right Side Grid - Staggered */
.testimonials-grid-staggered {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial-card.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.testimonial-card.glass-card:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.card-gradient-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0.7;
}

.quote-icon-float {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 3rem;
    color: white;
    opacity: 0.05;
}

/* Testimonial Header */
.testimonial-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-size: 1.1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.avatar-1 {
    background: linear-gradient(135deg, #ff9966, #ff5e62);
}

.avatar-2 {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.avatar-3 {
    background: linear-gradient(135deg, #43e97b, #38f9d7);
}

.rating-mini {
    color: #ffd700;
    font-size: 0.8rem;
}

.testimonial-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.testimonial-author-info h5 {
    color: white;
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

.testimonial-author-info span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

/* Featured Card Accent */
.card-featured {
    border-color: rgba(76, 186, 73, 0.3) !important;
}

/* Mobile Adjustments for Testimonials */
@media (max-width: 992px) {
    .testimonials-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .testimonials-header-side {
        position: static;
        text-align: center;
        margin-bottom: 1rem;
    }

    .trust-indicators {
        justify-content: center;
    }
}

/* =========================================
   CTA Section - Premium Redesign
   ========================================= */

.cta-section-premium {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    background-color: var(--bg-white);
}

.cta-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 2rem;
    padding: 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(76, 186, 73, 0.3);
}

/* Background Circles */
.floating-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    z-index: 0;
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: -50px;
    right: -50px;
    animation: float var(--animation-slower) infinite ease-in-out;
}

.circle-2 {
    width: 200px;
    height: 200px;
    bottom: -30px;
    left: 20%;
    animation: float var(--animation-normal) infinite ease-in-out reverse;
}

/* Content Side */
.cta-content {
    flex: 1;
    position: relative;
    z-index: 1;
    color: white;
}

.cta-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(5px);
}

.cta-content h2 {
    color: white;
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn-white {
    background: white;
    color: var(--primary-color);
    border: 2px solid white;
    font-weight: 700;
}

.btn-white:hover {
    background: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
    font-weight: 600;
}

.btn-outline-white:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.cta-benefits {
    display: flex;
    gap: 1.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.cta-benefits span i {
    margin-right: 0.5rem;
    color: #fff;
}

/* Visual Side */
.cta-visual {
    flex: 0.8;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
}

.css-mini-dashboard {
    width: 320px;
    height: 220px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.cta-card:hover .css-mini-dashboard {
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg) scale(1.05);
}

.mini-header {
    height: 10px;
    background: #f1f5f9;
    border-bottom: 1px solid #e2e8f0;
}

.mini-body {
    flex: 1;
    display: flex;
    padding: 10px;
    gap: 10px;
}

.mini-sidebar {
    width: 40px;
    background: #f8fafc;
    border-radius: 6px;
}

.mini-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mini-row {
    height: 30px;
    background: #f1f5f9;
    border-radius: 6px;
}

.mini-chart {
    flex: 1;
    background: #e0f2fe;
    border-radius: 6px;
    position: relative;
    overflow: hidden;
}

.mini-chart::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: var(--primary-color);
    opacity: 0.2;
    clip-path: polygon(0 100%, 100% 100%, 100% 40%, 75% 60%, 50% 30%, 25% 70%, 0 50%);
}

.pulse-hover {
    animation: pulse-light 2s infinite;
}

@keyframes pulse-light {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .cta-card {
        flex-direction: column;
        padding: 3rem 2rem;
        text-align: center;
    }

    .cta-content p {
        margin: 0 auto 2rem;
    }

    .cta-actions {
        justify-content: center;
        flex-direction: column;
    }

    .cta-benefits {
        justify-content: center;
        flex-wrap: wrap;
    }

    .cta-visual {
        margin-top: 2rem;
        width: 100%;
    }

    .css-mini-dashboard {
        transform: none;
        width: 100%;
        max-width: 320px;
    }

    .cta-card:hover .css-mini-dashboard {
        transform: scale(1.05);
    }
}

/* Solutions Page Feature Rows */
.feature-row {
    display: flex;
    align-items: center;
    gap: 4rem;
    padding: 2rem 0;
}

.feature-row.reverse {
    flex-direction: row-reverse;
}

.feature-content,
.feature-image {
    flex: 1;
}

.feature-image {
    display: flex;
    justify-content: center;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
}

.btn-outline-white:hover {
    background: white;
    color: var(--primary-color);
    border-color: white;
}

@media (max-width: 992px) {

    .feature-row,
    .feature-row.reverse {
        flex-direction: column;
        gap: 3rem;
        text-align: center;
    }

    .feature-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .card-icon {
        margin: 0 auto 1.5rem;
    }
}

/* --- Premium Dark Theme Utilities for Solutions Page --- */
.bg-dark-section {
    background-color: var(--bg-dark);
    color: white;
}

.bg-dark-lighter {
    background-color: #1f2937;
    /* Gray 800 */
    color: white;
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    border-radius: var(--radius-lg);
}

.glow-blob {
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--primary-color);
    filter: blur(80px);
    opacity: 0.15;
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.relative {
    position: relative;
}

.z-10 {
    position: relative;
    z-index: 10;
}

/* Dark Table Styles */
.table-dark-container {
    background: #1f2937;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.table-dark {
    width: 100%;
    border-collapse: collapse;
    color: #e5e7eb;
}

.table-dark th {
    background: #111827;
    padding: 1.5rem;
    text-align: left;
    font-weight: 600;
    color: #9ca3af;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.table-dark td {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.table-dark tr:last-child td {
    border-bottom: none;
}

.table-dark tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

.table-dark .check-icon {
    color: var(--primary-color);
    /* Make check icons pop in dark mode */
    text-shadow: 0 0 10px rgba(76, 186, 73, 0.4);
}

/* Feature Icons in Dark Mode */
.card-icon-dark {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
}