/* ======================================
   CSS Variables & Reset
====================================== */
:root {
    /* Colors */
    --bg-primary: #0a0a0f;
    --bg-secondary: #12121a;
    --bg-card: #1a1a25;
    --bg-card-hover: #222230;

    /* Accent Colors */
    --primary-400: #818cf8;
    --primary-500: #6366f1;
    --primary-600: #4f46e5;
    --primary-700: #4338ca;

    --emerald-400: #34d399;
    --emerald-500: #10b981;

    --red-400: #f87171;
    --red-500: #ef4444;

    --yellow-400: #fbbf24;
    --orange-400: #fb923c;
    --blue-400: #60a5fa;

    /* Text */
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --text-muted: #71717a;

    /* Borders */
    --border-color: rgba(255, 255, 255, 0.08);
    --border-color-hover: rgba(255, 255, 255, 0.15);

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 60px rgba(99, 102, 241, 0.3);

    /* Spacing */
    --section-padding: 100px 0;

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 24px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ======================================
   Utility Classes
====================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-400), var(--emerald-400));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ======================================
   Buttons
====================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all var(--transition-normal);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
    color: white;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.5);
}

.btn-secondary {
    background: var(--bg-card);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-color-hover);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.btn-outline:hover {
    border-color: var(--primary-500);
    color: var(--primary-400);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
}

.btn-block {
    width: 100%;
}

.btn-nav {
    padding: 10px 20px;
    font-size: 14px;
}

/* ======================================
   Section Styles
====================================== */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(99, 102, 241, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 50px;
    color: var(--primary-400);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-description {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ======================================
   Navbar
====================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-primary);
}

.logo-icon {
    font-size: 28px;
}

.logo-text {
    font-size: 22px;
    font-weight: 700;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color var(--transition-fast);
}

.nav-links a:hover {
    color: var(--text-primary);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition-fast);
}

/* ======================================
   Hero Section
====================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 72px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 150%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(99, 102, 241, 0.15) 0%, transparent 60%);
}

.hero-particles {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(2px 2px at 20% 30%, rgba(255, 255, 255, 0.15), transparent),
        radial-gradient(2px 2px at 40% 70%, rgba(255, 255, 255, 0.1), transparent),
        radial-gradient(2px 2px at 60% 20%, rgba(255, 255, 255, 0.15), transparent),
        radial-gradient(2px 2px at 80% 50%, rgba(255, 255, 255, 0.1), transparent);
}

.hero-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 60px 0;
}

.hero-content {
    max-width: 560px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 50px;
    color: var(--emerald-400);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
}

.hero-title {
    font-size: clamp(40px, 6vw, 60px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-description {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: var(--text-primary);
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-color);
}

/* Hero Mockup */
.hero-image {
    position: relative;
}

.hero-mockup {
    position: relative;
}

.mockup-frame {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color);
    overflow: hidden;
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid var(--border-color);
}

.mockup-dots {
    display: flex;
    gap: 6px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot.red {
    background: #ff5f57;
}

.dot.yellow {
    background: #ffbd2e;
}

.dot.green {
    background: #28ca41;
}

.mockup-title {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}

.mockup-content {
    display: flex;
    padding: 16px;
    gap: 16px;
    min-height: 320px;
}

.mock-sidebar {
    width: 50px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mock-nav-item {
    width: 40px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
}

.mock-nav-item.active {
    background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
}

.mock-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mock-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.mock-card {
    height: 60px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.05);
}

.mock-card.green {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.3), rgba(16, 185, 129, 0.1));
}

.mock-card.red {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.3), rgba(239, 68, 68, 0.1));
}

.mock-card.blue {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.3), rgba(99, 102, 241, 0.1));
}

.mock-card.orange {
    background: linear-gradient(135deg, rgba(251, 146, 60, 0.3), rgba(251, 146, 60, 0.1));
}

.mock-chart {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
}

/* Floating Cards */
.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    animation: float 4s ease-in-out infinite;
}

.floating-card.card-1 {
    top: 20%;
    right: -30px;
    animation-delay: 0s;
}

.floating-card.card-2 {
    bottom: 20%;
    left: -20px;
    animation-delay: 2s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.floating-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border-radius: var(--radius-sm);
}

.floating-icon.green {
    background: rgba(16, 185, 129, 0.2);
}

.floating-icon.blue {
    background: rgba(99, 102, 241, 0.2);
}

.floating-text {
    display: flex;
    flex-direction: column;
}

.floating-label {
    font-size: 12px;
    color: var(--text-muted);
}

.floating-value {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
}

/* Hero Wave */
.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: auto;
}

/* ======================================
   Features Section
====================================== */
.features {
    padding: var(--section-padding);
    background: var(--bg-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-color-hover);
    box-shadow: var(--shadow-lg);
}

.feature-icon-wrapper {
    margin-bottom: 20px;
}

.feature-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(99, 102, 241, 0.05));
    border-radius: var(--radius-md);
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-description {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ======================================
   Benefits Section
====================================== */
.benefits {
    padding: var(--section-padding);
    background: var(--bg-primary);
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.benefits-content {
    max-width: 540px;
}

.benefits-content .section-title {
    text-align: left;
}

.benefits-list {
    list-style: none;
    margin-top: 40px;
}

.benefit-item {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
}

.benefit-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--emerald-500), var(--emerald-400));
    border-radius: 50%;
    color: white;
    font-weight: 700;
    flex-shrink: 0;
}

.benefit-text h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.benefit-text p {
    font-size: 15px;
    color: var(--text-secondary);
}

/* Benefits Mockup */
.benefits-image {
    position: relative;
}

.benefits-mockup {
    position: relative;
}

.glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.25), transparent 60%);
    filter: blur(60px);
}

.stats-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 28px;
    box-shadow: var(--shadow-lg);
}

.stats-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    font-weight: 600;
}

.badge {
    padding: 6px 12px;
    background: rgba(99, 102, 241, 0.2);
    border-radius: 50px;
    font-size: 12px;
    color: var(--primary-400);
}

.stats-body {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 28px;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    padding: 16px;
    border-radius: var(--radius-md);
    font-weight: 500;
}

.stat-row.positive {
    background: rgba(16, 185, 129, 0.1);
    color: var(--emerald-400);
}

.stat-row.negative {
    background: rgba(239, 68, 68, 0.1);
    color: var(--red-400);
}

.stat-row.total {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(16, 185, 129, 0.2));
    font-weight: 700;
    font-size: 18px;
}

.stats-chart {
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-md);
}

.bar-chart {
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    height: 80px;
    gap: 8px;
}

.bar {
    flex: 1;
    background: linear-gradient(to top, var(--primary-600), var(--primary-400));
    border-radius: 4px 4px 0 0;
    animation: barGrow 1s ease-out;
}

@keyframes barGrow {
    from {
        height: 0;
    }
}

/* ======================================
   Screenshots Section
====================================== */
.screenshots {
    padding: var(--section-padding);
    background: var(--bg-secondary);
}

.screenshots-carousel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.screenshot-card {
    text-align: center;
}

.screenshot-image-wrapper {
    position: relative;
    aspect-ratio: 16/10;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 20px;
    transition: all var(--transition-normal);
}

.screenshot-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.5s ease;
}

.screenshot-card:hover .screenshot-image-wrapper {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(99, 102, 241, 0.3);
    border-color: var(--primary-500);
}

.screenshot-card:hover .screenshot-img {
    transform: scale(1.02);
}

.screenshot-image {
    aspect-ratio: 16/10;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 20px;
    transition: all var(--transition-normal);
}

.screenshot-card:hover .screenshot-image {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.preview-header {
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.3);
    font-size: 13px;
    font-weight: 600;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.preview-content {
    padding: 16px;
}

.preview-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 12px;
}

.preview-stat-card {
    height: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.preview-chart {
    height: 60px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px dashed var(--border-color);
}

.preview-table {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.table-row {
    height: 24px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.table-row.header {
    background: rgba(99, 102, 241, 0.2);
}

.preview-columns {
    display: flex;
    gap: 8px;
}

.kanban-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 6px;
}

.kanban-card {
    height: 28px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
}

.screenshot-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.screenshot-card p {
    font-size: 14px;
    color: var(--text-muted);
}

/* ======================================
   Pricing Section
====================================== */
.pricing {
    padding: var(--section-padding);
    background: var(--bg-primary);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    align-items: start;
}

.pricing-card {
    position: relative;
    padding: 40px 32px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    transition: all var(--transition-normal);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    border-color: var(--primary-500);
    box-shadow: 0 0 40px rgba(99, 102, 241, 0.2);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 20px;
    background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.pricing-header {
    text-align: center;
    margin-bottom: 24px;
}

.pricing-header h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.pricing-header p {
    font-size: 14px;
    color: var(--text-muted);
}

.pricing-price {
    text-align: center;
    margin-bottom: 32px;
}

.pricing-price .currency {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-secondary);
    vertical-align: top;
}

.pricing-price .amount {
    font-size: 56px;
    font-weight: 800;
    line-height: 1;
}

.pricing-price .period {
    font-size: 16px;
    color: var(--text-muted);
    margin-left: 4px;
}

.pricing-price.coming-soon {
    padding: 20px 0;
}

.pricing-price .amount-text {
    font-size: 32px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-400), var(--emerald-400));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 15px;
    color: var(--text-secondary);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features .check {
    color: var(--emerald-400);
    font-weight: 700;
}

/* ======================================
   Testimonials Section
====================================== */
.testimonials {
    padding: var(--section-padding);
    background: var(--bg-secondary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.testimonial-card {
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-stars {
    font-size: 18px;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
    border-radius: 50%;
    font-weight: 700;
    font-size: 16px;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    font-size: 15px;
}

.author-title {
    font-size: 13px;
    color: var(--text-muted);
}

/* ======================================
   CTA Section
====================================== */
.cta {
    padding: 80px 0;
    background: var(--bg-primary);
}

.cta-content {
    position: relative;
    text-align: center;
    padding: 80px 40px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(16, 185, 129, 0.05));
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.2), transparent 60%);
    filter: blur(80px);
}

.cta-title {
    position: relative;
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-description {
    position: relative;
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto 32px;
}

.cta-buttons {
    position: relative;
}

/* ======================================
   Contact Section
====================================== */
.contact {
    padding: var(--section-padding);
    background: var(--bg-secondary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-card {
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
}

.contact-icon {
    font-size: 28px;
    margin-bottom: 12px;
}

.contact-card h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-card p {
    font-size: 14px;
    color: var(--text-secondary);
}

.contact-form {
    padding: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 15px;
    font-family: inherit;
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-500);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group select {
    cursor: pointer;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ======================================
   Footer
====================================== */
.footer {
    padding: 60px 0 30px;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand p {
    margin-top: 16px;
    font-size: 14px;
    color: var(--text-secondary);
    max-width: 280px;
    line-height: 1.7;
}

.footer-links h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 14px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: var(--text-muted);
}

/* ======================================
   Responsive Design
====================================== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-image {
        display: none;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .benefits-content .section-title {
        text-align: center;
    }

    .benefits-image {
        order: -1;
    }

    .screenshots-carousel {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-cards {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .navbar {
        padding: 16px 0;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-secondary);
        flex-direction: column;
        padding: 24px;
        border-bottom: 1px solid var(--border-color);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    .nav-links.active {
        display: flex;
        animation: slideDown 0.3s ease forwards;
    }

    .nav-links li {
        margin-left: 0;
        margin-bottom: 16px;
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        display: block;
        padding: 12px;
        font-size: 16px;
    }

    .btn-nav {
        display: none;
        /* Can be moved inside nav-links if desired, but hiding for now to simplify */
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-title {
        font-size: 32px;
        line-height: 1.3;
    }

    .hero-description {
        font-size: 16px;
        padding: 0 16px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 16px;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 24px;
        margin-top: 48px;
    }

    .stat-divider {
        width: 80%;
        height: 1px;
        margin: 0 auto;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .screenshots-carousel {
        grid-template-columns: 1fr;
    }

    .screenshot-image-wrapper {
        margin-bottom: 16px;
    }

    .section-title {
        font-size: 28px;
    }

    .contact-form {
        padding: 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 32px;
    }

    .footer-brand p {
        max-width: 100%;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero {
        padding-top: 80px;
    }

    .hero-title {
        font-size: 28px;
    }

    .feature-card {
        padding: 24px;
    }

    .pricing-card {
        padding: 32px 24px;
    }

    .pricing-price .amount {
        font-size: 48px;
    }
}

/* ======================================
   OFX Highlight Section
====================================== */
.ofx-highlight {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    position: relative;
    overflow: hidden;
}

.ofx-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(ellipse at right, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.ofx-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.ofx-content {
    position: relative;
    z-index: 1;
}

.ofx-badge {
    background: rgba(16, 185, 129, 0.15) !important;
    border-color: rgba(16, 185, 129, 0.3) !important;
    color: var(--emerald-400) !important;
}

.ofx-content .section-title {
    text-align: left;
}

.ofx-content .section-description {
    text-align: left;
    margin-bottom: 32px;
}

.ofx-features-list {
    list-style: none;
}

.ofx-features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    color: var(--text-secondary);
    font-size: 15px;
    border-bottom: 1px solid var(--border-color);
}

.ofx-features-list li:last-child {
    border-bottom: none;
}

.ofx-check {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--emerald-500), var(--emerald-400));
    border-radius: 50%;
    color: white;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

/* OFX Steps Header */
.ofx-steps-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 32px;
    padding: 0 20px;
}

.ofx-step-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    opacity: 0.5;
    transition: all var(--transition-normal);
}

.ofx-step-indicator.active {
    opacity: 1;
}

.ofx-step-indicator.completed {
    opacity: 1;
}

.ofx-step-indicator .step-number {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    color: var(--text-muted);
    font-weight: 700;
    font-size: 18px;
    transition: all var(--transition-normal);
}

.ofx-step-indicator.active .step-number {
    background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
    border-color: var(--primary-500);
    color: white;
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.5);
    transform: scale(1.1);
}

.ofx-step-indicator.completed .step-number {
    background: linear-gradient(135deg, var(--emerald-500), var(--emerald-400));
    border-color: var(--emerald-500);
    color: white;
}

.ofx-step-indicator .step-title {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    transition: color var(--transition-normal);
}

.ofx-step-indicator.active .step-title {
    color: var(--text-primary);
}

.ofx-step-connector {
    position: relative;
    width: 80px;
    height: 4px;
    margin: 0 16px;
    margin-bottom: 28px;
}

.connector-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: var(--border-color);
    border-radius: 2px;
}

.connector-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary-500), var(--emerald-400));
    border-radius: 2px;
    transition: width 0.5s ease;
}

.connector-progress.filled {
    width: 100%;
}

/* OFX Carousel */
.ofx-carousel-wrapper {
    position: relative;
}

.ofx-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
}

.ofx-slides-container {
    flex: 1;
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg), 0 0 80px rgba(99, 102, 241, 0.15);
}

/* Navigation Arrows */
.ofx-nav-arrow {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all var(--transition-normal);
    flex-shrink: 0;
}

.ofx-nav-arrow:hover {
    background: var(--bg-card-hover);
    border-color: var(--primary-500);
    color: var(--primary-400);
    transform: scale(1.1);
}

.ofx-nav-arrow:active {
    transform: scale(0.95);
}

.ofx-slide {
    display: none;
    animation: slideIn 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.ofx-slide.active {
    display: block;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.ofx-slide.slide-left {
    animation: slideInLeft 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.ofx-screenshot {
    width: 100%;
    height: auto;
    display: block;
}

.ofx-slide-caption {
    padding: 24px 28px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8));
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--border-color);
}

.ofx-slide-caption .caption-badge {
    display: inline-block;
    padding: 6px 14px;
    background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.ofx-slide-caption h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.ofx-slide-caption p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.step-number {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
    border-radius: 50%;
    color: white;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.ofx-carousel-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
}

.ofx-nav-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--border-color);
    background: transparent;
    cursor: pointer;
    transition: all var(--transition-normal);
    padding: 0;
}

.ofx-nav-btn:hover {
    border-color: var(--primary-400);
    transform: scale(1.2);
}

.ofx-nav-btn.active {
    background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
    border-color: var(--primary-500);
    width: 32px;
    border-radius: 6px;
}

/* Responsive OFX Section */
@media (max-width: 992px) {
    .ofx-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ofx-content .section-title,
    .ofx-content .section-description {
        text-align: center;
    }

    .ofx-content {
        text-align: center;
    }

    .ofx-benefits .benefit-item {
        justify-content: flex-start;
        text-align: left;
    }

    .ofx-step-connector {
        width: 40px;
        margin: 0 8px;
    }

    .ofx-step-indicator .step-title {
        font-size: 11px;
    }

    .ofx-nav-arrow {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 768px) {
    .ofx-steps-header {
        display: none;
    }

    .ofx-nav-arrow {
        display: none;
    }

    .ofx-slide-caption {
        padding: 20px;
    }

    .ofx-slide-caption h4 {
        font-size: 18px;
    }
}