:root {
    --primary: #10b981;
    --primary-dark: #059669;
    --secondary: #ec4899;
    --dark: #1e293b;
    --light: #f8fafc;
    --gray: #64748b;
    --surface: #ffffff;
    --surface-dark: #1e293b;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #10b981, #059669);
    --gradient-dark: linear-gradient(135deg, #1e293b, #0f172a);
    --gradient-light: linear-gradient(135deg, #f8fafc, #e2e8f0);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1);
    --shadow-glow: 0 0 20px rgba(99, 102, 241, 0.2);
}

/* Base Styles */
body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--dark);
    background: var(--light);
    line-height: 1.6;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.75rem 0;
    background: rgba(255, 255, 255, 0.95);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: nowrap;
    min-width: 0;
}

.navbar-brand img {
    height: 4rem;
    flex-shrink: 0;
}

.navbar-brand .brand-content {
    display: flex;
    flex-direction: column;
    line-height: 1;
    align-self: center;
}

.navbar-brand .brand-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #000000 !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    line-height: 1;
    margin-bottom: 2px;
}

.navbar-brand .brand-tagline {
    font-size: 0.6rem;
    font-weight: 500;
    color: #000000 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1;
    opacity: 0.7;
}

.nav-link {
    font-weight: 600;
    color: var(--dark);
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-link:hover::after {
    transform: scaleX(1);
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
    padding: 0.75rem 1.5rem;
    color: white;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

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

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

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

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

/* Hero Section */
.hero-section {
    padding: 180px 0 80px;
    background: var(--gradient-light);
    position: relative;
    overflow: hidden;
}

.hero-content {
    padding-right: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

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

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-badges {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.badge {
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.badge-beta {
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary);
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.badge-soon {
    background: rgba(236, 72, 153, 0.1);
    color: var(--secondary);
    border: 1px solid rgba(236, 72, 153, 0.2);
}

/* Product Hunt Badge Styling */
.product-hunt-badge {
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-hunt-badge a {
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.product-hunt-badge a:hover {
    transform: translateY(-2px);
}

.product-hunt-badge img {
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.product-hunt-badge:hover img {
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

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

/* Hero Background Animation */
.hero-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: var(--gradient-primary);
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Platform Preview */
.platform-preview {
    position: relative;
    text-align: center;
}

.preview-screen {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.preview-screen.active {
    display: block;
}

.preview-screen img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.preview-controls {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.preview-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray);
    cursor: pointer;
    transition: all 0.3s ease;
}

.preview-dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

/* Partners Section */
.partners-section {
    padding: 60px 0;
    background: white;
}

.partners-label {
    text-align: center;
    color: var(--gray);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

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

.partner-logo {
    height: 40px;
    opacity: 0.6;
    transition: all 0.3s ease;
    filter: grayscale(100%);
}

.partner-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.1);
}

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

.section-badge {
    display: inline-block;
    background: rgba(16, 185, 129, 0.1);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark);
}

.section-description {
    font-size: 1.125rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: white;
}

/* Web Automation Features */
.features-section .section-header.coming-soon {
    text-align: center;
    margin-bottom: 1rem;
    margin-top: -2rem;
}

.section-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
    box-shadow: var(--shadow-md);
}

.section-header.coming-soon h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark);
}

.section-header.coming-soon p {
    font-size: 1.125rem;
    color: var(--gray);
    margin-bottom: 2rem;
}

.coming-soon-badge {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    }
    50% {
        box-shadow: 0 4px 25px rgba(16, 185, 129, 0.5);
    }
}

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

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.feature-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark);
}

.feature-content p {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 0;
}

.feature-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    opacity: 0.1;
    border-radius: 50%;
    transform: translate(30px, -30px);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-decoration {
    opacity: 0.2;
    transform: translate(20px, -20px);
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.05);
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.5rem;
}

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

.feature-card p {
    color: var(--gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

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

/* AI Approach Section */
.ai-approach-section {
    padding: 80px 0;
    background: var(--gradient-dark);
    color: white;
}

.ai-approach-section .section-description {
    color: white !important;
}

.ai-card {
    text-align: center;
    padding: 2rem 1rem;
    transition: all 0.3s ease;
}

.ai-card:hover {
    transform: translateY(-8px);
}

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

.ai-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.ai-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* API Features Section */
.api-features-section {
    padding: 120px 0;
    background: #f8f9fa;
}

.api-flow-showcase {
    margin-top: 3rem;
    text-align: center;
}

.api-flow-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0,0,0,0.05);
}

.api-flow-showcase-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.api-flow-showcase-image:hover {
    transform: scale(1.02);
}

.api-features-timeline {
    position: relative;
    max-width: 1000px;
    margin: 3rem auto 0;
}

.api-features-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gradient-primary);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
}

.timeline-item.timeline-left {
    padding-right: 50%;
}

.timeline-item.timeline-right {
    padding-left: 50%;
}

.timeline-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    position: relative;
    transition: all 0.3s ease;
}

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

.timeline-image-card {
    padding: 1.5rem;
}

.timeline-image {
    text-align: center;
    margin-bottom: 1.5rem;
}

.api-flow-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease;
}

.api-flow-image:hover {
    transform: scale(1.02);
}

.timeline-icon {
    position: absolute;
    left: -30px;
    top: 2rem;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    box-shadow: var(--shadow-md);
}

.timeline-item.timeline-right .timeline-icon {
    left: auto;
    right: -30px;
}

.timeline-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark);
}

.timeline-content p {
    color: var(--gray);
    line-height: 1.6;
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background: white;
}

.ud-section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.ud-section-title span {
    display: inline-block;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.ud-section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark);
}

.ud-section-title p {
    font-size: 1.125rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Benefits Timeline */
.benefits-timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.timeline-connector {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-line {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    background: #e2e8f0;
    border-radius: 2px;
}

.timeline-progress {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: height 0.3s ease;
}

.timeline-stage {
    position: relative;
    margin-bottom: 4rem;
    display: flex;
    align-items: center;
}

.timeline-stage:nth-child(odd) {
    flex-direction: row;
}

.timeline-stage:nth-child(even) {
    flex-direction: row-reverse;
}

.stage-marker {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.marker-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: var(--shadow-md);
    border: 4px solid white;
}

.marker-pulse {
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.stage-content {
    flex: 1;
    margin: 0 2rem;
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0,0,0,0.05);
}

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

.stage-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark);
    margin: 0;
}

.stage-badge {
    background: var(--gradient-primary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

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

.metric-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.metric-progress {
    flex-shrink: 0;
}

.progress-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: conic-gradient(var(--primary) 0deg, #e2e8f0 0deg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.progress-circle::before {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    background: white;
    border-radius: 50%;
}

.progress-number {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    z-index: 1;
}

.metric-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.metric-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.metric-info p {
    font-size: 0.875rem;
    color: var(--gray);
    margin: 0;
    line-height: 1.4;
}

/* Comparison Section */
.comparison-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.comparison-categories {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.comparison-category {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.comparison-category:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.category-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(16, 185, 129, 0.1);
}

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

.category-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.category-header p {
    color: var(--gray);
    font-size: 1rem;
    margin: 0;
}

.category-comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: start;
}

.traditional-approach,
.testneo-approach {
    padding: 1.5rem;
    border-radius: 12px;
    position: relative;
}

.traditional-approach {
    background: rgba(220, 53, 69, 0.05);
    border: 1px solid rgba(220, 53, 69, 0.1);
}

.testneo-approach {
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.1);
}

.traditional-approach h4,
.testneo-approach h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.traditional-approach h4 {
    color: #dc3545;
}

.testneo-approach h4 {
    color: var(--primary);
}

.traditional-approach ul,
.testneo-approach ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.traditional-approach li,
.testneo-approach li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    position: relative;
    padding-left: 1.5rem;
}

.traditional-approach li:last-child,
.testneo-approach li:last-child {
    border-bottom: none;
}

.traditional-approach li::before {
    content: '❌';
    position: absolute;
    left: 0;
    color: #dc3545;
}

.testneo-approach li::before {
    content: '✅';
    position: absolute;
    left: 0;
    color: var(--primary);
}

.vs-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray);
    background: var(--light);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    margin: 0 auto;
    box-shadow: var(--shadow-sm);
}

.comparison-table-wrapper {
    margin-top: 3rem;
}

.comparison-table {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 12px;
    margin: 20px 0;
    border-collapse: collapse;
}

.table-header {
    display: flex;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
}

.header-cell {
    flex: 1;
    padding: 20px 15px;
    text-align: center;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.header-cell.feature-header {
    flex: 0.8;
    text-align: left;
}

.header-cell.traditional-header {
    background: rgba(220, 53, 69, 0.1);
}

.header-cell.testneo-header {
    background: rgba(40, 167, 69, 0.1);
}

.header-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.header-text h4 {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
}

.header-text p {
    margin: 5px 0 0 0;
    font-size: 11px;
    opacity: 0.9;
}

.table-body {
    background: white;
}

.table-row {
    display: flex;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.table-row:hover {
    background: rgba(16, 185, 129, 0.05);
    transform: scale(1.01);
}

.table-row:last-child {
    border-bottom: none;
}

.feature-cell {
    flex: 0.8;
    padding: 15px;
    background: rgba(16, 185, 129, 0.05);
    font-weight: 600;
    color: var(--dark);
    display: flex;
    align-items: center;
}

.traditional-cell,
.testneo-cell {
    flex: 1;
    padding: 15px;
    display: flex;
    align-items: center;
}

.traditional-cell {
    background: rgba(220, 53, 69, 0.05);
}

.testneo-cell {
    background: rgba(40, 167, 69, 0.05);
}

.cell-content {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.cell-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
    width: 24px;
    text-align: center;
}

.testneo-cell .cell-icon {
    color: var(--primary);
}

.cell-text {
    font-size: 12px;
    line-height: 1.4;
    color: var(--gray);
}

.testneo-cell .cell-text {
    color: var(--dark);
}

.feature-name {
    font-weight: 600;
    color: var(--dark);
    font-size: 13px;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.about-content {
    padding-right: 2rem;
}

.about-description {
    font-size: 1.125rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.about-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

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

.about-image {
    text-align: center;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background: white;
}

.pricing-card {
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.pricing-card.featured {
    border: 2px solid var(--primary);
    transform: scale(1.05);
}

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

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.pricing-badge {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: var(--gradient-primary);
    color: white;
    text-align: center;
    padding: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-header {
    padding: 2rem;
    text-align: center;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.pricing-card.featured .pricing-header {
    padding-top: 3rem;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark);
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.currency {
    font-size: 1.5rem;
    vertical-align: top;
}

.period {
    font-size: 1rem;
    color: var(--gray);
    font-weight: 400;
}

.pricing-header p {
    color: var(--gray);
    margin: 0;
}

.pricing-features {
    padding: 2rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--gray);
}

.feature-list i {
    color: var(--primary);
    font-size: 0.875rem;
}

.pricing-note {
    text-align: center;
    margin-top: 2rem;
    color: var(--gray);
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-content {
    padding-right: 2rem;
}

.contact-description {
    font-size: 1.125rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-details h5 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.contact-details p {
    color: var(--gray);
    margin: 0;
}

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

.contact-details a:hover {
    text-decoration: underline;
}

.contact-form-wrapper {
    position: relative;
}

.contact-form-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.contact-form-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--dark);
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-display {
    text-align: center;
    padding: 2rem;
}

.contact-method h4 {
    color: var(--dark);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.contact-method p {
    color: var(--gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-note {
    margin-top: 2rem;
    padding: 1rem;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 8px;
    border-left: 4px solid var(--primary);
}

.contact-note p {
    margin: 0;
    color: var(--dark);
    font-size: 0.9rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

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

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Footer */
.footer {
    background: var(--dark);
    color: white;
    padding: 60px 0 20px;
}

.footer-brand {
    margin-bottom: 2rem;
}

.footer-logo {
    height: 2.5rem;
    margin-bottom: 1rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.status-indicators {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.status-ready {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
}

.status-coming {
    background: rgba(251, 191, 36, 0.2);
    color: #fbbf24;
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

/* X Twitter Icon Fallback */
.social-link .fa-x-twitter {
    position: relative;
}

.social-link .fa-x-twitter::before {
    content: "𝕏";
    font-family: "Times New Roman", serif;
    font-weight: bold;
    font-size: 1.1em;
}

/* Footer Product Hunt Badge */
.footer-product-hunt {
    display: flex;
    justify-content: flex-start;
}

.footer-product-hunt a {
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-product-hunt a:hover {
    transform: translateY(-2px);
}

.footer-product-hunt img {
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.footer-product-hunt:hover img {
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: 2rem;
}

.copyright,
.powered-by {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Responsive Design */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .timeline-item.timeline-left,
    .timeline-item.timeline-right {
        padding: 0;
    }
    
    .api-features-timeline::before {
        display: none;
    }
    
    .timeline-icon {
        position: static;
        margin: 0 auto 1rem;
    }
}

@media (max-width: 767px) {
    .navbar-brand {
        gap: 8px;
    }
    
    .navbar-brand img {
        height: 3rem;
    }
    
    .navbar-brand .brand-text {
        font-size: 1.5rem;
        letter-spacing: 1.5px;
        margin-bottom: 1px;
    }
    
    .navbar-brand .brand-tagline {
        font-size: 0.55rem;
        letter-spacing: 0.8px;
    }
    
    .hero-section {
        padding: 100px 0 60px;
    }
    
    .hero-badges {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .product-hunt-badge {
        margin-top: 1rem;
    }
    
    .product-hunt-badge img {
        width: 200px;
        height: auto;
    }
    
    .footer-product-hunt img {
        width: 180px;
        height: auto;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .partner-logo {
        height: 30px;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }
    
    .contact-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .container {
        padding: 0 1rem;
    }
}

/* AOS Custom Styles */
[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}

/* Loading States */
.btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Privacy Policy & Terms of Service Styles */
.privacy-content,
.terms-content {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-section,
.terms-section {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

.privacy-section:hover,
.terms-section:hover {
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.1);
    transform: translateY(-2px);
}

.section-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1rem;
}

.section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 24px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 2px;
}

.section-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 1rem;
}

.section-list {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0;
}

.section-list li {
    position: relative;
    padding: 0.5rem 0 0.5rem 1.5rem;
    color: #4b5563;
    line-height: 1.6;
}

.section-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0.5rem;
    color: #10b981;
    font-weight: bold;
    font-size: 0.9rem;
}

.section-list li strong {
    color: #1f2937;
    font-weight: 600;
}

/* Hero section for legal pages */
.hero-section .hero-title {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-section .hero-subtitle {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustments for legal pages */
@media (max-width: 768px) {
    .privacy-section,
    .terms-section {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
    
    .hero-section .hero-title {
        font-size: 2.5rem !important;
    }
}

/* Footer Styles for Legal Pages */
.ud-footer {
    background: #1a1a1a;
    position: relative;
    z-index: 1;
    padding-top: 120px;
    padding-bottom: 40px;
}

.ud-footer .shape {
    position: absolute;
    z-index: -1;
}

.ud-footer .shape.shape-1 {
    top: 0;
    left: 0;
}

.ud-footer .shape.shape-2 {
    top: 0;
    right: 0;
}

.ud-footer .shape.shape-3 {
    bottom: 0;
    left: 0;
}

.ud-footer-widgets {
    padding-bottom: 40px;
}

.ud-widget {
    margin-bottom: 40px;
}

.ud-footer-logo {
    display: inline-block;
    margin-bottom: 20px;
}

.ud-footer-logo img {
    height: 40px;
}

.ud-widget-desc {
    color: #a0a0a0;
    margin-bottom: 20px;
    line-height: 1.6;
}

.ud-widget-title {
    font-weight: 600;
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 20px;
}

.ud-widget-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ud-widget-links li {
    margin-bottom: 12px;
}

.ud-widget-links li a {
    color: #a0a0a0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ud-widget-links li a:hover {
    color: #10b981;
}

.ud-widget-brands {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.ud-widget-brands li a {
    display: block;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.ud-widget-brands li a:hover {
    opacity: 1;
}

.ud-widget-brands li a img {
    height: 30px;
    width: auto;
}

.ud-footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
}

.ud-footer-bottom-left {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 30px;
}

.ud-footer-bottom-left li a {
    color: #a0a0a0;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.ud-footer-bottom-left li a:hover {
    color: #10b981;
}

.ud-footer-bottom-right {
    color: #a0a0a0;
    font-size: 14px;
    margin: 0;
    text-align: right;
}

.status-indicators {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.status-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-ready {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.status-coming {
    background: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

@media (max-width: 767px) {
    .ud-footer-bottom-left {
        justify-content: center;
        margin-bottom: 15px;
    }
    
    .ud-footer-bottom-right {
        text-align: center;
    }
    
    .ud-widget-brands {
        justify-content: center;
    }
}

/* Blog Section Styles */
.blog-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

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

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

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.15);
}

.blog-card.featured {
    grid-row: span 2;
}

.blog-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.blog-card.featured .blog-image {
    height: 320px;
}

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

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

.blog-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-content {
    padding: 1.5rem;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.blog-category {
    background: rgba(16, 185, 129, 0.1);
    color: var(--primary);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-date {
    color: #64748b;
    font-size: 0.875rem;
}

.blog-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-card.featured .blog-title {
    font-size: 1.5rem;
}

.blog-title a {
    color: var(--dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.blog-excerpt {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
}

.read-more {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: var(--primary-dark);
    transform: translateX(4px);
}

.blog-stats {
    display: flex;
    gap: 1rem;
    font-size: 0.75rem;
    color: #94a3b8;
}

.blog-stats span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.blog-cta {
    margin-top: 3rem;
}

.blog-cta .btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
}

/* Blog Responsive */
@media (max-width: 991px) {
    .blog-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .blog-card.featured {
        grid-column: span 2;
        grid-row: span 1;
    }
}

@media (max-width: 767px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .blog-card.featured {
        grid-column: span 1;
    }
    
    .blog-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .blog-stats {
        justify-content: flex-start;
    }
}

/* Blog Page Specific Styles */
.blog-hero-section {
    position: relative;
    overflow: hidden;
}

.blog-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.blog-search-box {
    max-width: 500px;
    margin: 0 auto;
}

.search-container {
    position: relative;
    background: white;
    border-radius: 50px;
    padding: 0.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.search-input {
    width: 100%;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
    padding-right: 60px;
}

.search-btn {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-btn:hover {
    transform: translateY(-50%) scale(1.1);
}

.blog-content-section {
    background: #f8fafc;
}

.featured-article {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
    transition: all 0.3s ease;
}

.featured-article:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.15);
}

.featured-article-image {
    position: relative;
    height: 400px;
    overflow: hidden;
}

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

.featured-article:hover .featured-article-image img {
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: var(--gradient-primary);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.featured-article-content {
    padding: 2rem;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.article-category {
    background: rgba(16, 185, 129, 0.1);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.article-date, .article-author {
    color: #64748b;
    font-size: 0.875rem;
}

.article-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.article-content h2 {
    font-size: 1.75rem;
    font-weight: 600;
    margin: 2.5rem 0 1rem 0;
    color: #1f2937;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.article-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 2rem 0 1rem 0;
    color: #374151;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.article-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 1.5rem 0 0.75rem 0;
    color: #374151;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.article-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 1rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.article-content ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.article-content li {
    font-size: 1rem;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 0.5rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

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

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

.article-excerpt {
    color: #64748b;
    line-height: 1.7;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.article-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
    flex-wrap: wrap;
    gap: 1rem;
}

.read-more-btn {
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    color: white;
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.3);
}

.article-stats {
    display: flex;
    gap: 1.5rem;
    font-size: 0.875rem;
    color: #94a3b8;
}

.article-stats span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

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

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(16, 185, 129, 0.1);
}

.article-image {
    height: 200px;
    overflow: hidden;
}

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

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

.article-content {
    padding: 1.5rem;
}

.article-content .article-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.article-content .article-excerpt {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.read-more-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.read-more-link:hover {
    color: var(--primary-dark);
}

.pagination-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.pagination .page-link {
    color: var(--primary);
    border: 1px solid #e2e8f0;
    padding: 0.75rem 1rem;
    margin: 0 0.25rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

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

.pagination .page-item.active .page-link {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

/* Sidebar Styles */
.blog-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.widget-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

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

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

.category-list li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #64748b;
    text-decoration: none;
    padding: 0.75rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.category-list li a:hover {
    background: rgba(16, 185, 129, 0.1);
    color: var(--primary);
}

.category-list .count {
    background: #f1f5f9;
    color: #64748b;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.popular-articles {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.popular-article {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.popular-article:hover {
    background: rgba(16, 185, 129, 0.05);
}

.popular-article-image {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
}

.popular-article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.popular-article-content h5 {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.popular-article-content h5 a {
    color: var(--dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.popular-article-content h5 a:hover {
    color: var(--primary);
}

.popular-article-content .views {
    font-size: 0.75rem;
    color: #94a3b8;
}

.newsletter-widget {
    background: var(--gradient-primary);
    color: white;
}

.newsletter-widget .widget-title {
    color: white;
}

.newsletter-widget .widget-title::after {
    background: rgba(255, 255, 255, 0.3);
}

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

.newsletter-form input {
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
}

.newsletter-form .btn {
    background: white;
    color: var(--primary);
    border: none;
    font-weight: 600;
}

.newsletter-form .btn:hover {
    background: #f8fafc;
    transform: translateY(-2px);
}

/* Blog Responsive */
@media (max-width: 991px) {
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-sidebar {
        position: static;
        margin-top: 3rem;
    }
}

@media (max-width: 767px) {
    .blog-hero-title {
        font-size: 2.5rem !important;
    }
    
    .featured-article-image {
        height: 250px;
    }
    
    .article-title {
        font-size: 1.5rem;
    }
    
    .article-footer {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .article-stats {
        justify-content: flex-start;
    }
    
    .search-container {
        margin: 0 1rem;
    }
}

/* FAQ Section Styles */
.faq-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.faq-section .accordion-item {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-section .accordion-item:hover {
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.1);
    transform: translateY(-2px);
}

.faq-section .accordion-button {
    background: white;
    border: none;
    padding: 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    color: #1f2937;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.faq-section .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.1) 100%);
    color: #10b981;
    box-shadow: none;
}

.faq-section .accordion-button:focus {
    box-shadow: 0 0 0 0.2rem rgba(16, 185, 129, 0.25);
    border-color: #10b981;
}

.faq-section .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2310b981'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transition: all 0.3s ease;
}

.faq-section .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2310b981'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: rotate(180deg);
}

.faq-section .accordion-body {
    padding: 1.5rem;
    color: #4b5563;
    line-height: 1.6;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
}

.faq-section .accordion-body br {
    margin-bottom: 0.5rem;
}

/* FAQ Responsive */
@media (max-width: 767px) {
    .faq-section {
        padding: 80px 0;
    }
    
    .faq-section .accordion-button {
        padding: 1.25rem;
        font-size: 0.95rem;
    }
    
    .faq-section .accordion-body {
        padding: 1.25rem;
        font-size: 0.95rem;
    }
}
