* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2563EB;
    --secondary-color: #3B82F6;
    --accent-color: #6366F1;
    --dark-bg: #0F172A;
    --light-bg: #FFFFFF;
    --text-dark: #0F172A;
    --text-medium: #334155;
    --text-light: #64748B;
    --white: #FFFFFF;
    --gradient-1: linear-gradient(135deg, #2563EB 0%, #3B82F6 100%);
    --gradient-2: linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%);
    --gradient-3: linear-gradient(135deg, #EC4899 0%, #F43F5E 100%);
    --gradient-4: linear-gradient(135deg, #06B6D4 0%, #3B82F6 100%);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1), 0 10px 10px rgba(0, 0, 0, 0.04);
    --border-color: #E2E8F0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-medium);
    overflow-x: hidden;
    position: relative;
    background: #FFFFFF;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Animated Background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    animation: float-orb 25s infinite ease-in-out;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.4) 0%, rgba(59, 130, 246, 0.1) 100%);
    top: -300px;
    left: -300px;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.3) 0%, rgba(139, 92, 246, 0.1) 100%);
    top: 40%;
    right: -250px;
    animation-delay: 8s;
}

.orb-3 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.25) 0%, rgba(37, 99, 235, 0.05) 100%);
    bottom: -150px;
    left: 25%;
    animation-delay: 16s;
}

@keyframes float-orb {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(100px, -100px) scale(1.1);
    }
    66% {
        transform: translate(-50px, 100px) scale(0.9);
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.nav-brand:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.cta-btn {
    background: var(--gradient-1);
    color: var(--white) !important;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-btn::after {
    display: none;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Particles */
.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

/* Hero Section */
.hero {
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.badge {
    display: inline-block;
    background: rgba(37, 99, 235, 0.08);
    color: #2563EB;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(37, 99, 235, 0.2);
    animation: slideDown 0.6s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 3.75rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: #0F172A;
    letter-spacing: -0.02em;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.gradient-text {
    color: #2563EB !important;
    display: inline-block;
    font-weight: 700;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: #2563EB !important;
    background-clip: unset !important;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #475569;
    margin-bottom: 2rem;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease 0.4s backwards;
    font-weight: 400;
}

.hero-stats-mini {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease 0.6s backwards;
}

.mini-stat {
    display: flex;
    flex-direction: column;
}

.mini-stat strong {
    font-size: 1.5rem;
    color: #0F172A;
    font-weight: 700;
    display: block;
}

.mini-stat span {
    font-size: 0.875rem;
    color: #64748B;
    font-weight: 500;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    animation: fadeInUp 0.8s ease 0.8s backwards;
}

.btn {
    padding: 0.875rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #2563EB 0%, #3B82F6 100%);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.35);
}

.btn-primary span {
    position: relative;
    z-index: 1;
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid #E2E8F0;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-large {
    padding: 1rem 3rem;
    font-size: 1.1rem;
}

/* Floating Cards */
.hero-visual {
    position: relative;
    height: 500px;
}

.floating-card {
    position: absolute;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    animation: float 4s ease-in-out infinite;
    transition: transform 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.floating-card:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
}

.floating-card.card-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
    width: 220px;
}

.floating-card.card-2 {
    top: 40%;
    right: 5%;
    animation-delay: 1s;
    width: 200px;
}

.floating-card.card-3 {
    bottom: 25%;
    left: 15%;
    animation-delay: 2s;
    width: 190px;
}

.floating-card.card-4 {
    bottom: 5%;
    right: 15%;
    animation-delay: 3s;
    width: 180px;
}

.card-icon {
    font-size: 2.5rem;
}

.card-text {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1rem;
}

.card-sparkline {
    height: 40px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    border-radius: 4px;
    opacity: 0.2;
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.4; }
}

.card-badge {
    background: var(--gradient-1);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    align-self: flex-start;
}

.card-metric {
    font-size: 1.75rem;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card-progress {
    height: 8px;
    background: #E5E7EB;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.card-progress::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 70%;
    background: var(--gradient-1);
    border-radius: 10px;
    animation: progress 2s ease-in-out infinite;
}

@keyframes progress {
    0%, 100% { width: 70%; }
    50% { width: 85%; }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-15px) rotate(1deg);
    }
    50% {
        transform: translateY(-25px) rotate(-1deg);
    }
    75% {
        transform: translateY(-15px) rotate(0.5deg);
    }
}

/* Solutions Section */
.solutions {
    padding: 100px 0;
    background: var(--white);
    position: relative;
}

.section-header {
    margin-bottom: 4rem;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #0F172A;
    position: relative;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.section-subtitle {
    text-align: center;
    font-size: 1.15rem;
    color: #64748B;
    font-weight: 400;
    line-height: 1.7;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.solution-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid #F3F4F6;
    position: relative;
    overflow: hidden;
}

.solution-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.solution-card:hover .solution-glow {
    opacity: 1;
}

.solution-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-xl);
}

.solution-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.4s ease;
}

.solution-card:hover .solution-icon-wrapper {
    transform: rotate(5deg) scale(1.1);
}

.solution-icon {
    font-size: 2.5rem;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.2));
}

.solution-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.solution-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 0.75rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 2rem;
    transition: color 0.3s ease;
}

.feature-list li:hover {
    color: var(--primary-color);
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.card-hover-effect {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.solution-card:hover .card-hover-effect {
    transform: scaleX(1);
}

/* Features Showcase */
.features-showcase {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.feature-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 0.875rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.tab-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.tab-btn.active {
    background: var(--white);
    color: var(--accent-color);
    border-color: var(--white);
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tab-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.tab-visual {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.code-window {
    background: #1E293B;
    border-radius: 12px;
    overflow: hidden;
}

.code-header {
    background: #334155;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.code-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #64748B;
}

.code-dot:nth-child(1) {
    background: #EF4444;
}

.code-dot:nth-child(2) {
    background: #F59E0B;
}

.code-dot:nth-child(3) {
    background: #10B981;
}

.code-title {
    margin-left: auto;
    color: #94A3B8;
    font-size: 0.875rem;
}

.code-content {
    padding: 1.5rem;
    color: #E2E8F0;
    font-family: 'Courier New', monospace;
    font-size: 0.875rem;
    line-height: 1.6;
    min-height: 200px;
}

.security-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.security-item {
    background: rgba(255, 255, 255, 0.2);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    color: var(--white);
    font-weight: 600;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.security-item:hover {
    transform: scale(1.05);
}

.chart-container {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    min-height: 250px;
}

.integration-diagram {
    position: relative;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.center-node {
    position: absolute;
    width: 120px;
    height: 120px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--accent-color);
    z-index: 2;
    box-shadow: var(--shadow-lg);
}

.outer-node {
    position: absolute;
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: pulse-ring 2s infinite ease-in-out;
    font-size: 0.875rem;
}

.outer-node.node-1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.outer-node.node-2 {
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    animation-delay: 0.5s;
}

.outer-node.node-3 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 1s;
}

.outer-node.node-4 {
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    animation-delay: 1.5s;
}

@keyframes pulse-ring {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
    }
}

.tab-info {
    color: var(--white);
}

.tab-info h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.tab-info p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.benefit-list {
    list-style: none;
}

.benefit-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    opacity: 0.9;
}

.benefit-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Products Section */
.products {
    padding: 100px 0;
    background: var(--light-bg);
}

.products-showcase {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.product-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.product-feature.reverse {
    direction: rtl;
}

.product-feature.reverse > * {
    direction: ltr;
}

.product-visual {
    padding: 2rem;
}

.mockup {
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.mockup:hover {
    transform: translateY(-10px);
}

.mockup-header {
    background: #F3F4F6;
    padding: 1rem;
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #D1D5DB;
}

.dot:nth-child(1) {
    background: #EF4444;
}

.dot:nth-child(2) {
    background: #F59E0B;
}

.dot:nth-child(3) {
    background: #10B981;
}

.mockup-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.dashboard-item {
    height: 60px;
    background: linear-gradient(90deg, #E5E7EB 0%, #F3F4F6 100%);
    border-radius: 8px;
    animation: pulse-item 2s ease-in-out infinite;
}

.dashboard-item.short {
    width: 70%;
}

@keyframes pulse-item {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}

.product-info h3 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.product-info p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.product-info ul {
    list-style: none;
    margin-bottom: 2rem;
}

.product-info ul li {
    padding: 0.75rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 2rem;
}

.product-info ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Stats Section */
.stats {
    padding: 100px 0;
    background: var(--gradient-1);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 70%);
    animation: rotate-gradient 20s linear infinite;
}

@keyframes rotate-gradient {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.stats .container {
    position: relative;
    z-index: 2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}

.stat-item {
    text-align: center;
    animation: fadeInUp 0.6s ease backwards;
}

.stat-item:nth-child(1) { animation-delay: 0.1s; }
.stat-item:nth-child(2) { animation-delay: 0.2s; }
.stat-item:nth-child(3) { animation-delay: 0.3s; }
.stat-item:nth-child(4) { animation-delay: 0.4s; }

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.stat-label {
    font-size: 1.125rem;
    opacity: 0.9;
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.about-text p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.125rem;
}

.check-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-1);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.tech-stack {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.tech-item {
    background: var(--gradient-1);
    color: var(--white);
    padding: 1.5rem;
    border-radius: 16px;
    text-align: center;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.tech-item:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: var(--shadow-lg);
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: var(--light-bg);
}

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto 2rem;
    position: relative;
    min-height: 300px;
}

.testimonial-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    position: absolute;
    width: 100%;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.5s ease;
    pointer-events: none;
}

.testimonial-card.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
    position: relative;
}

.stars {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-1);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

.author-info strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.author-info span {
    color: var(--text-light);
    font-size: 0.875rem;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #D1D5DB;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dots .dot.active {
    background: var(--primary-color);
    width: 32px;
    border-radius: 6px;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.info-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    background: var(--gradient-1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-item h4 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.info-item p {
    color: var(--text-light);
}

.contact-form {
    background: var(--light-bg);
    padding: 2.5rem;
    border-radius: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.contact-form .btn {
    width: 100%;
    justify-content: center;
}

/* Footer */
.footer {
    background: var(--dark-bg);
    color: var(--white);
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1), rgba(0, 212, 255, 0.1));
    pointer-events: none;
}

.footer .container {
    position: relative;
    z-index: 2;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.footer-section p {
    color: #9CA3AF;
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: #9CA3AF;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-section ul li a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #9CA3AF;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero .container,
    .product-feature,
    .about-content,
    .tab-inner,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        display: none;
    }

    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-stats-mini {
        flex-direction: column;
        gap: 1rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .product-feature.reverse {
        direction: ltr;
    }

    .hero-cta {
        flex-direction: column;
    }

    .tech-stack {
        grid-template-columns: 1fr;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
    }

    .feature-tabs {
        flex-direction: column;
    }

    .integration-diagram {
        height: 400px;
    }

    .outer-node {
        font-size: 0.75rem;
        width: 70px;
        height: 70px;
    }

    .center-node {
        width: 100px;
        height: 100px;
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 3rem;
    }

    .contact-info {
        gap: 1.5rem;
    }

    .info-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .testimonial-card {
        padding: 2rem;
    }

    .testimonial-text {
        font-size: 1.125rem;
    }
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-1);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}
/* Additional styles for multi-page website with modern fintech colors */

/* Update primary gradient */
.btn-primary,
.nav-menu a.active::after,
.solution-icon-wrapper,
.check-icon,
.tech-item,
.stat-number,
.card-badge,
.card-metric,
.card-progress::after {
    background: linear-gradient(135deg, #2563EB 0%, #3B82F6 100%) !important;
}

/* Page header */
.page-header {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #F8FAFC 0%, #E0E7FF 100%);
    text-align: center;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.25rem;
    color: #64748B;
    max-width: 700px;
    margin: 0 auto;
}

/* Features overview */
.features-overview {
    padding: 100px 0;
    background: #FFFFFF;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-box {
    background: #FFFFFF;
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid #F1F5F9;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
    position: relative;
}

.feature-box:hover {
    transform: translateY(-8px);
    border-color: #E0E7FF;
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.15);
    background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 100%);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.feature-box h3 {
    font-size: 1.5rem;
    color: #0F172A;
    margin-bottom: 1rem;
}

.feature-box p {
    color: #334155;
    line-height: 1.7;
}

/* Solutions preview */
.solutions-preview {
    padding: 100px 0;
    background: #F8FAFC;
}

.solutions-grid-home {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.solution-card-home {
    background: #FFFFFF;
    padding: 3rem;
    border-radius: 24px;
    border: 2px solid #E2E8F0;
    transition: all 0.4s ease;
    position: relative;
}

.solution-card-home:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(79, 70, 229, 0.12);
}

.solution-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.link-arrow {
    color: #4F46E5;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.link-arrow:hover {
    transform: translateX(5px);
}

.cta-center {
    text-align: center;
    margin-top: 3rem;
}

/* CTA section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
    color: #FFFFFF;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Solutions detail */
.solutions-detail {
    padding: 80px 0;
}

.solutions-detail.alt-bg {
    background: #F8FAFC;
}

.solution-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.solution-detail-grid.reverse {
    direction: rtl;
}

.solution-detail-grid.reverse > * {
    direction: ltr;
}

.solution-badge {
    display: inline-block;
    background: rgba(79, 70, 229, 0.1);
    color: #4F46E5;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.lead {
    font-size: 1.25rem;
    color: #334155;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.features-list {
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.feature-check {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.mockup-lg {
    background: #FFFFFF;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.mockup-body {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.metric-card {
    background: #F8FAFC;
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.metric-label {
    color: #64748B;
    font-size: 0.875rem;
}

.metric-value {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.metric-trend {
    color: #10B981;
    font-weight: 600;
}

/* Analytics preview */
.analytics-preview {
    background: #FFFFFF;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.chart-bars {
    display: flex;
    gap: 1.5rem;
    align-items: flex-end;
    height: 300px;
}

.bar {
    flex: 1;
    background: linear-gradient(to top, #4F46E5, #7C3AED);
    border-radius: 8px 8px 0 0;
    transition: all 0.3s ease;
}

/* Code preview */
.code-preview {
    background: #1E293B;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.code-header {
    background: #334155;
    padding: 1rem 1.5rem;
    color: #94A3B8;
    font-size: 0.875rem;
}

.code-block {
    padding: 2rem;
    color: #E2E8F0;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    line-height: 1.8;
    overflow-x: auto;
}

/* Workflow diagram */
.workflow-diagram {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    background: #FFFFFF;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    flex-wrap: wrap;
    gap: 1rem;
}

.workflow-step {
    background: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
    color: #FFFFFF;
    padding: 1.5rem 2.5rem;
    border-radius: 12px;
    font-weight: 600;
}

.workflow-arrow {
    font-size: 2rem;
    color: #4F46E5;
}

/* Products page */
.products-section {
    padding: 80px 0;
}

.products-grid-page {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
}

.product-card-page {
    background: #F8FAFC;
    padding: 3rem;
    border-radius: 24px;
    border: 2px solid #E2E8F0;
    transition: all 0.3s ease;
}

.product-card-page:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(79, 70, 229, 0.15);
    border-color: #4F46E5;
}

.product-icon-lg {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.product-description {
    color: #334155;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.product-features ul {
    list-style: none;
    margin-bottom: 2rem;
}

.product-features li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: #334155;
}

.product-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4F46E5;
    font-weight: 700;
}

.product-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem 0;
    border-top: 2px solid #E2E8F0;
}

.product-stats .stat {
    text-align: center;
}

.product-stats strong {
    display: block;
    font-size: 2rem;
    background: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

/* Pricing */
.comparison-section {
    padding: 100px 0;
    background: #F8FAFC;
}

.pricing-table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 3rem auto 0;
}

.pricing-card {
    background: #FFFFFF;
    padding: 3rem;
    border-radius: 24px;
    border: 2px solid #E2E8F0;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card.featured {
    border-color: #4F46E5;
    box-shadow: 0 20px 50px rgba(79, 70, 229, 0.2);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
    color: #FFFFFF;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
}

.price .amount {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 1rem 0;
    color: #334155;
    border-bottom: 1px solid #E2E8F0;
}

/* Integrations */
.integrations-section {
    padding: 100px 0;
}

.integrations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.integration-item {
    background: #F8FAFC;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    font-weight: 600;
    color: #0F172A;
    border: 2px solid #E2E8F0;
    transition: all 0.3s ease;
}

.integration-item:hover {
    transform: translateY(-5px);
    border-color: #4F46E5;
}

/* About page */
.about-mission,
.values-section,
.team-section,
.timeline-section,
.certifications-section {
    padding: 80px 0;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mission-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mission-stat {
    background: #F8FAFC;
    padding: 2rem;
    border-radius: 16px;
    border-left: 4px solid #4F46E5;
}

.mission-stat .stat-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.values-section {
    background: #F8FAFC;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: #FFFFFF;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid #E2E8F0;
}

.value-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.member-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.member-title {
    color: #4F46E5;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Timeline */
.timeline-section {
    background: #F8FAFC;
}

.timeline {
    max-width: 800px;
    margin: 3rem auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #4F46E5;
}

.timeline-item {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
}

.timeline-year {
    width: 100px;
    font-size: 1.25rem;
    font-weight: 700;
    color: #4F46E5;
}

.timeline-year::after {
    content: '';
    position: absolute;
    right: -1.65rem;
    top: 0.5rem;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #4F46E5;
    border: 4px solid #F8FAFC;
}

.timeline-content {
    flex: 1;
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Certifications */
.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.cert-badge {
    background: #F8FAFC;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid #E2E8F0;
}

.cert-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.cert-badge p {
    color: #4F46E5;
    font-weight: 600;
}

/* Contact page */
.contact-page {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-method {
    display: flex;
    gap: 1.5rem;
}

.method-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
}

.method-details a {
    color: #4F46E5;
    text-decoration: none;
    font-weight: 600;
}

.office-locations {
    background: #F8FAFC;
    padding: 2rem;
    border-radius: 16px;
}

.locations-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Contact form */
.contact-form-section {
    background: #F8FAFC;
    padding: 3rem;
    border-radius: 24px;
}

.contact-form-page select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #E2E8F0;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    background: #FFFFFF;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.form-privacy {
    text-align: center;
    margin-top: 1rem;
    color: #64748B;
    font-size: 0.875rem;
}

.form-privacy a {
    color: #4F46E5;
}

/* FAQ */
.faq-section {
    padding: 100px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background: #F8FAFC;
    padding: 2rem;
    border-radius: 16px;
    border-left: 4px solid #4F46E5;
}

/* Social links */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

/* Enhanced responsive */
@media (max-width: 1024px) {
    .mission-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .products-grid-page {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .solution-detail-grid {
        grid-template-columns: 1fr;
    }

    .solution-detail-grid.reverse {
        direction: ltr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .workflow-diagram {
        flex-direction: column;
    }

    .workflow-arrow {
        transform: rotate(90deg);
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 2rem;
    }

    .solutions-grid-home,
    .features-grid,
    .values-grid,
    .team-grid,
    .integrations-grid,
    .cert-grid {
        grid-template-columns: 1fr;
    }
}

/* ==================== NEW B2B SAAS STYLES ==================== */

/* Trust Badges */
.trust-badges {
    display: flex;
    gap: 20px;
    margin: 25px 0;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--text-dark);
    box-shadow: var(--shadow-sm);
}

.trust-badge svg {
    color: #10B981;
}

/* Product Module Container */
.product-module-container {
    position: relative;
    width: 100%;
    height: 400px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 30px;
    padding: 20px;
}

.product-module {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.95) 100%);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.08);
    border: 1px solid rgba(241, 245, 249, 0.8);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: moduleFloat 6s ease-in-out infinite;
    backdrop-filter: blur(10px);
}

.product-module:nth-child(1) { animation-delay: 0s; }
.product-module:nth-child(2) { animation-delay: 1.5s; }
.product-module:nth-child(3) { animation-delay: 3s; }
.product-module:nth-child(4) { animation-delay: 4.5s; }

@keyframes moduleFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.product-module:hover {
    transform: scale(1.08) translateY(-5px);
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.2);
    border-color: rgba(37, 99, 235, 0.3);
}

.module-icon {
    font-size: 2.5rem;
}

.module-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.module-pulse {
    width: 8px;
    height: 8px;
    background: #10B981;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.5);
    }
}

.connection-lines line {
    animation: dashAnimation 3s linear infinite;
}

@keyframes dashAnimation {
    to {
        stroke-dashoffset: -20;
    }
}

/* Pilot Clients Section */
.pilot-clients {
    padding: 60px 0 40px;
    background: linear-gradient(180deg, transparent 0%, rgba(79, 70, 229, 0.03) 100%);
}

.pilot-label {
    text-align: center;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    margin-bottom: 30px;
    font-weight: 600;
}

.client-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.client-logo {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.client-logo:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* Platform Overview Section */
.platform-overview {
    padding: 80px 0;
    background: linear-gradient(180deg, rgba(79, 70, 229, 0.03) 0%, #FFFFFF 100%);
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.platform-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
    border: 1px solid #F1F5F9;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    overflow: hidden;
}

.platform-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #2563EB 0%, #3B82F6 50%, #6366F1 100%);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: left;
}

.platform-card:hover::after {
    transform: scaleX(1);
}

.platform-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(37, 99, 235, 0.12);
    border-color: #E0E7FF;
}

.platform-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.platform-icon {
    font-size: 2rem;
}

.platform-card h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin: 0;
}

.platform-card > p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.platform-features {
    list-style: none;
    padding: 0;
    margin: 10px 0 0 0;
}

.platform-features li {
    padding: 8px 0;
    color: var(--text-light);
    position: relative;
    padding-left: 25px;
}

.platform-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10B981;
    font-weight: bold;
}

.platform-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: auto;
    transition: all 0.3s ease;
}

.platform-link:hover {
    gap: 10px;
    color: var(--accent-color);
}

/* Use Cases Section */
.use-cases {
    padding: 80px 0;
    background: #FFFFFF;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.use-case-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 35px;
    text-align: center;
    border: 1px solid #F1F5F9;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
    position: relative;
    overflow: hidden;
}

.use-case-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #2563EB 0%, #6366F1 100%);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.use-case-card:hover::before {
    width: 100%;
}

.use-case-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 28px rgba(37, 99, 235, 0.12);
    border-color: #E0E7FF;
}

.use-case-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
}

.use-case-card:hover .use-case-icon {
    transform: scale(1.2) rotate(5deg);
}

.use-case-card h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.use-case-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.use-case-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Note */
.cta-note {
    margin-top: 20px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Add subtle pulse to primary CTA buttons in hero */
@keyframes subtlePulse {
    0%, 100% {
        box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 99, 235, 0.4);
    }
}

.hero-cta .btn-primary {
    animation: subtlePulse 3s ease-in-out infinite;
}

/* Button Large Variant */
.btn-large {
    padding: 16px 36px;
    font-size: 1.05rem;
}

/* Enhanced Responsive for New Sections */
@media (max-width: 1024px) {
    .platform-grid {
        grid-template-columns: 1fr;
    }

    .use-cases-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-module-container {
        height: 350px;
        gap: 20px;
    }

    .product-module {
        padding: 20px;
    }

    .module-icon {
        font-size: 2rem;
    }

    .module-label {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .trust-badges {
        justify-content: center;
    }

    .use-cases-grid {
        grid-template-columns: 1fr;
    }

    .client-logos {
        gap: 20px;
    }

    .product-module-container {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        height: auto;
        gap: 15px;
    }

    .product-module {
        padding: 25px;
    }

    .connection-lines {
        display: none;
    }
}

@media (max-width: 480px) {
    .trust-badge {
        font-size: 0.75rem;
        padding: 6px 12px;
    }

    .platform-card {
        padding: 25px;
    }

    .use-case-card {
        padding: 20px;
    }

    .client-logo {
        font-size: 0.85rem;
        padding: 10px 16px;
    }
}

/* ==================== PRICING PAGE STYLES ==================== */

/* Pricing Toggle */
.pricing-toggle-section {
    padding: 40px 0 20px;
    text-align: center;
}

.pricing-toggle {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: #FFFFFF;
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
}

.toggle-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.save-badge {
    display: inline-block;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: #FFFFFF;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-left: 5px;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #CBD5E1;
    transition: 0.3s;
    border-radius: 26px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

input:checked + .toggle-slider {
    background: var(--gradient-1);
}

input:checked + .toggle-slider:before {
    transform: translateX(24px);
}

/* Pricing Grid */
.pricing-section {
    padding: 60px 0 80px;
}

.pricing-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.pricing-tier {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 2px solid rgba(79, 70, 229, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.pricing-tier:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.featured-tier {
    border-color: var(--primary-color);
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(79, 70, 229, 0.2);
}

.featured-tier:hover {
    transform: scale(1.05) translateY(-5px);
}

.tier-header h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.tier-description {
    color: var(--text-light);
    font-size: 0.95rem;
}

.tier-price {
    margin: 25px 0 10px;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
}

.price-period {
    font-size: 1.1rem;
    color: var(--text-light);
}

.tier-billing {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 30px;
}

.tier-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    flex-grow: 1;
}

.tier-features li {
    padding: 12px 0;
    color: var(--text-dark);
    position: relative;
    padding-left: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.tier-features li:last-child {
    border-bottom: none;
}

.tier-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10B981;
    font-weight: bold;
    font-size: 1.2rem;
}

.tier-features strong {
    color: var(--text-dark);
}

.btn-full {
    width: 100%;
    text-align: center;
    justify-content: center;
}

/* Pricing Calculator */
.pricing-calculator-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #FFFFFF 0%, rgba(79, 70, 229, 0.03) 100%);
}

.calculator-container {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 50px;
    box-shadow: var(--shadow-md);
    margin-top: 40px;
}

.calculator-input {
    margin-bottom: 40px;
}

.calculator-input label {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.calculator-input input[type="range"] {
    width: 100%;
    height: 8px;
    border-radius: 5px;
    background: #E5E7EB;
    outline: none;
    -webkit-appearance: none;
}

.calculator-input input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(79, 70, 229, 0.4);
}

.calculator-input input[type="range"]::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(79, 70, 229, 0.4);
    border: none;
}

.volume-display {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 20px;
}

.calculator-results {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.result-card {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.05) 0%, rgba(99, 102, 241, 0.05) 100%);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(79, 70, 229, 0.1);
}

.result-card h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.result-card p {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

/* Comparison Table */
.comparison-table-section {
    padding: 80px 0;
    background: #FFFFFF;
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-top: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: #FFFFFF;
}

.comparison-table thead {
    background: linear-gradient(135deg, #4F46E5 0%, #6366F1 100%);
    color: #FFFFFF;
}

.comparison-table th {
    padding: 20px;
    text-align: left;
    font-weight: 600;
    font-size: 1.1rem;
}

.comparison-table th:first-child {
    border-radius: 16px 0 0 0;
}

.comparison-table th:last-child {
    border-radius: 0 16px 0 0;
}

.comparison-table tbody tr {
    border-bottom: 1px solid #E5E7EB;
}

.comparison-table tbody tr:last-child {
    border-bottom: none;
}

.comparison-table td {
    padding: 16px 20px;
    color: var(--text-dark);
}

.comparison-table td:first-child {
    font-weight: 500;
}

.comparison-table tbody tr:hover {
    background: rgba(79, 70, 229, 0.02);
}

/* Pricing FAQ */
.pricing-faq {
    padding: 80px 0;
    background: linear-gradient(180deg, #FFFFFF 0%, rgba(79, 70, 229, 0.03) 100%);
}

/* Responsive Pricing */
@media (max-width: 1024px) {
    .pricing-grid-new {
        grid-template-columns: 1fr;
    }

    .featured-tier {
        transform: scale(1);
    }

    .featured-tier:hover {
        transform: translateY(-5px);
    }

    .calculator-results {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .pricing-toggle {
        flex-wrap: wrap;
        justify-content: center;
    }

    .calculator-container {
        padding: 30px;
    }

    .comparison-table {
        font-size: 0.9rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .price-amount {
        font-size: 2.5rem;
    }

    .pricing-tier {
        padding: 30px 20px;
    }

    .calculator-container {
        padding: 20px;
    }

    .volume-display {
        font-size: 1.5rem;
    }

    .result-card p {
        font-size: 1.4rem;
    }
}

/* Dark Logo Styling - No Glow */
.logo-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.logo-text {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 4px;
    color: #0F172A;
}

.logo-subtext {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 6px;
    color: #334155;
}

/* Tagline */
.site-tagline {
    font-size: 11px;
    letter-spacing: 3px;
    color: #64748B;
    text-transform: uppercase;
    margin-top: 5px;
    opacity: 0.9;
}


/* Tagline */
.site-tagline {
    font-size: 11px;
    letter-spacing: 3px;
    color: #00B8D4;
    text-transform: uppercase;
    margin-top: 5px;
    opacity: 0.9;
}
