/**
 * One Page Site Styles for GraphBit Theme
 * Modern, gradient-based design matching graphbit.ai
 * Version: 2.0
 */

/* ========================================================================
   Color Variables & Modern Design System
   ======================================================================== */

:root {
    /* Primary Colors */
    --primary-color: #3b82f6;
    --primary-dark: #2563eb;
    --primary-light: #60a5fa;

    /* Gradients */
    --gradient-primary: linear-gradient(90deg, rgba(46, 41, 89, 1) 0%, rgba(88, 81, 158, 1) 50%, rgba(133, 124, 234, 1) 100%);
    --gradient-blue: linear-gradient(135deg, #667eea 0%, #4facfe 100%);
    --gradient-purple: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    --gradient-accent: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);

    /* Text Colors */
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-light: #64748b;
    --text-white: #ffffff;

    /* Background Colors */
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-dark: #0f172a;
    --bg-darker: #020617;

    /* Border & Effects */
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);

    /* Code Colors */
    --code-bg: #1e293b;
    --code-text: #e2e8f0;
    --code-comment: #64748b;
    --code-keyword: #60a5fa;
    --code-string: #34d399;
    --code-number: #f87171;
}

/* ========================================================================
   Global One-Page Styles
   ======================================================================== */

.one-page-site {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    scroll-behavior: smooth;
}

.one-page-content {
    padding: 0;
}

.one-page-site section {
    padding: 100px 0;
    position: relative;
}

/* ========================================================================
   Header - One Page Navigation
   ======================================================================== */

.one-page-header {
    background: #0a0a0f;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.one-page-header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0rem 2rem;
}

.site-branding {
    display: flex;
    align-items: center;
    height: 100%;
    align-content: center;
}

.site-logo-link {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.625rem;
    transition: opacity 0.3s ease;
    height: 100%;
}

.site-logo-link:hover {
    opacity: 0.8;
}

.logo-image {
    height: 45px;
    width: 45px;
    flex-shrink: 0;
}

.site-title-text {
    font-size: 1.65rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.02em;
    margin: 0;
    padding: 0;
    line-height: 1;
    display: flex;
    align-items: center;
}

/* ===== Section Badge Common ===== */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, rgba(52, 211, 153, 0.1), rgba(59, 130, 246, 0.1));
    border: 2px solid transparent;
    border-radius: 50px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.section-badge::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    padding: 2px;
    background: linear-gradient(135deg, var(--primary-color), #3b82f6);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
}

.section-badge:hover {
    transform: translateY(-2px);
    color: var(--primary-color);
}

.section-badge svg {
    width: 20px;
    height: 20px;
}

.main-navigation {
    display: flex;
    align-items: center;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-documentation,
.btn-meeting {
    color: #fff !important;
    font-weight: 500;
    font-size: 1rem;
    padding: 8px 28px;
    border-radius: 8px;
    box-shadow: 0 2px 16px 0 rgba(123, 108, 255, 0.18);
    border: none;
    outline: none;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s;
    text-align: center;
    text-decoration: none;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.btn-documentation {
    background: none;
    border: none;
    box-shadow: none;
    color: white;
    border: none;
}

.btn-documentation svg {
    width: 18px;
    height: 18px;
    opacity: 0.8;
    margin-top: 5px;
}

.btn-meeting {
    background: var(--gradient-primary);
    color: #ffffff;
    font-weight: 600;
}

.btn-meeting:hover,
.btn-documentation:hover {
    transform: translateY(-1px);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    position: relative;
}

.menu-icon {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 24px;
}

.menu-icon .bar {
    display: block;
    width: 100%;
    height: 2px;
    background: #ffffff;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.menu-toggle[aria-expanded="true"] .menu-icon .bar:nth-child(1) {
    transform: rotate(45deg) translateY(7px);
}

.menu-toggle[aria-expanded="true"] .menu-icon .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-icon .bar:nth-child(3) {
    transform: rotate(-45deg) translateY(-7px);
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* ========================================================================
   Hero Section
   ======================================================================== */

.hero-section {
    background: #151427;
    background: linear-gradient(90deg, rgba(21, 20, 39, 1) 0%, rgba(22, 21, 40, 1) 50%, rgba(23, 21, 39, 1) 100%);
    padding: 150px 0 100px !important;
    overflow: hidden;
    position: relative;
}

/* Product Hunt Badges */
.product-hunt-badges {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
    flex-wrap: nowrap;
    align-items: center;
}

.ph-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.625rem 1.25rem;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
    flex-shrink: 0;
}

.ph-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.ph-icon {
    display: flex;
    align-items: center;
}

.ph-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.ph-label {
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #666;
}

.ph-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: #DA552F;
}

.ph-product .ph-title {
    color: #FF6154;
}

.ph-rank {
    font-size: 1.25rem;
    font-weight: 800;
    color: #DA552F;
    padding-left: 0.75rem;
    border-left: 2px solid #f0f0f0;
}

/* Hero Content */
.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.gradient-text {
    display: block;
    background: linear-gradient(90deg, #22d3ee 0%, #60a5fa 50%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 2rem;
}

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

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #ffffff;
    transition: all 0.3s ease;
}

.badge:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
}

.badge-cyan {
    border-color: rgba(6, 182, 212, 0.5);
    background: rgba(6, 182, 212, 0.1);
}

.badge-orange {
    border-color: rgba(251, 146, 60, 0.5);
    background: rgba(251, 146, 60, 0.1);
}

.badge-blue {
    border-color: rgba(59, 130, 246, 0.5);
    background: rgba(59, 130, 246, 0.1);
}

.badge-icon {
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 20px;
    max-width: 560px;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    width: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(91, 77, 181, 0.4);
    font-weight: 600;
    letter-spacing: 0.3px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    color: #fff !important;
}

.btn-primary svg {
    width: 20px;
    height: 20px;
    order: -1;
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.25);
    font-weight: 600;
    letter-spacing: 0.3px;
}

.btn-secondary:hover {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.github-stats {
    margin-top: 0;
}

.github-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.5);
    padding: 1rem 2rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.github-link:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: translateY(-2px);
    color: #fff !important;
}

.github-link svg {
    color: #fbbf24;
    width: 18px;
    height: 18px;
}

.github-link strong {
    color: #ffffff;
    font-weight: 600;
}

.hero-code {
    position: relative;
}

.code-window {
    background: #1e1e2e;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.code-header {
    background: #181825;
    padding: 0.875rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.window-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot-red {
    background: #ff5f56;
}

.dot-yellow {
    background: #ffbd2e;
}

.dot-green {
    background: #27c93f;
}

.code-filename {
    font-size: 0.875rem;
    color: #cdd6f4;
    font-family: 'Courier New', monospace;
    flex: 1;
    font-weight: 500;
}

.code-label {
    font-size: 0.75rem;
    color: #b4befe;
    background: rgba(137, 180, 250, 0.15);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-weight: 600;
}

.code-content {
    padding: 1.5rem;
    margin: 0;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    font-size: 0.875rem;
    line-height: 1.8;
    color: #cdd6f4;
    overflow-x: auto;
    background: #1e1e2e;
}

.code-content>div {
    min-height: 1.4em;
}

.code-indent {
    padding-left: 2rem;
}

/* Syntax Highlighting Colors */
.text-code-comment {
    color: #6c7086;
    font-style: italic;
}

.text-code-keyword {
    color: #cba6f7;
    font-weight: 600;
}

.text-code-string {
    color: #a6e3a1;
}

.text-code-number {
    color: #fab387;
}

.text-code-text {
    color: #cdd6f4;
}

.text-code-function {
    color: #89b4fa;
}

.code-visual-circle {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Old Video Placeholder - Remove or Update */
.video-placeholder {
    color: var(--text-light);
    font-size: 0.75rem;
}

.code-status {
    background: #10b981;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
}

.video-placeholder {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    cursor: pointer;
}

.video-placeholder img {
    padding-bottom: 3rem;
    width: 100%;
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.video-placeholder:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
}

/* ========================================================================
   Video Section
   ======================================================================== */

.video-section {
    background: #0a0a0f;
    padding: 80px 0;
    

.video-wrapper {
    margin: 0 auto;
    width: 100%;
    max-width: 900px;
}
}

.video-thumbnail {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-thumbnail:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.7);
}

.video-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-thumbnail:hover img {
    transform: scale(1.05);
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.video-thumbnail:hover .video-overlay {
    background: rgba(0, 0, 0, 0.4);
}

.play-button-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(52, 211, 153, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-thumbnail:hover .play-button-circle {
    transform: scale(1.1);
    background: rgb(52, 211, 153);
}

.play-button-circle svg {
    width: 32px;
    height: 32px;
}

.video-thumbnail iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.video-thumbnail.playing img,
.video-thumbnail.playing .video-overlay {
    opacity: 0;
    pointer-events: none;
}

.video-thumbnail.playing iframe {
    opacity: 1;
    pointer-events: all;
}

/* ========================================================================
   Why Choose GraphBit Section
   ======================================================================== */

.why-choose-section {
    background: linear-gradient(180deg, #0a0a0f 0%, #12121a 50%, #0a0a0f 100%);
    padding: 6rem 0;
    position: relative;
}

.why-choose-section .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.why-choose-section .section-header h2 {
    font-size: 2.25rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.why-choose-section .section-header p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: rgba(26, 26, 38, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg,
            var(--primary-color) 0%,
            #3b82f6 50%,
            var(--primary-color) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-8px);
    background: rgba(26, 26, 38, 0.8);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: rgba(52, 211, 153, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(52, 211, 153, 0.2);
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.feature-card p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    margin: 0;
}

/* Why Choose Section - Responsive */
@media (max-width: 768px) {
    .why-choose-section {
        padding: 4rem 0;
    }

    .why-choose-section .section-header h2 {
        font-size: 2rem;
    }

    .why-choose-section .section-header p {
        font-size: 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card {
        padding: 2rem 1.5rem;
    }

    .feature-icon {
        width: 64px;
        height: 64px;
        font-size: 2.5rem;
    }

    .feature-card h3 {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .why-choose-section {
        padding: 3rem 0;
    }

    .why-choose-section .section-header {
        margin-bottom: 2.5rem;
    }

    .feature-card {
        padding: 1.5rem 1.25rem;
    }
}

/* ========================================================================
   Performance Section
   ======================================================================== */

.performance-section {
    background: #0f0f11;
    padding: 6rem 0;
    position: relative;
}

.performance-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
}

.section-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 1rem;
    width: 100%;
}

.section-header h2 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #ffffff;
    line-height: 1.2;
}

.section-header p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.8;
    margin-bottom: 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.benchmark-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    margin-top: 1rem;
    display: inline-block;
}

.benchmark-link:hover {
    text-decoration: underline;
}

.performance-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    width: 100%;
}

@media (max-width: 1200px) {
    .performance-grid {
        grid-template-columns: 1fr;
    }
}

/* PEFFORMANCE CARD */
.performance-card {
    background: #0a0a0b;
    border: 1.5px solid #3a3a3d;
    border-radius: .75rem;
    padding: 2rem 1.5rem 2rem 1.5rem;
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.45);
    min-width: 320px;
    min-height: 340px;
    transition: border 0.2s, background 0.2s;
}

.performance-card:hover {
    border-color: #3b82f6;
    background: #232336;
}

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

.perf-card-header .perf-cpu-icon {
    padding: 12px;
    border-radius: 12px;
    background: #151427;
    display: flex;
    align-items: center;
    justify-content: center;
}

.perf-title-subtitle-section {
    line-height: 20px;
}

.perf-card-header .perf-cpu-icon svg,
.perf-card-header .perf-mem-icon svg,
.perf-card-header .perf-throughput-icon svg {
    width: 22px;
    height: 22px;
    color: #fff;
}

.perf-title-subtitle-section h3,
.perf-mem-icon,
.perf-throughput-icon {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fafafa;
    margin-bottom: 0.15rem;
}

.metric-label {
    color: #b8bcc8;
    font-size: .875rem;
    margin-bottom: 0;
}

.metric-bars {
    margin-top: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.metric-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
    padding: 0.75rem 0 0.25rem 0;
    min-height: 54px;
    position: relative;
}

.metric-item-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.metric-item-title {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.metric-item-header img {
    height: 32px;
    width: 32px;
    border-radius: 8px;
}

.metric-item-row {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 0.75rem;
}

.metric-logo {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
    background: linear-gradient(135deg, #232336 60%, #64748b 100%);
    letter-spacing: 1px;
    flex-shrink: 0;
}

.metric-item .metric-name {
    min-width: 90px;
    font-size: 17px;
    color: #fff;
    font-weight: 500;
    flex: 1;
}

.metric-item .metric-value {
    min-width: 48px;
    text-align: right;
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.5px;
}

.metric-bar-wrapper {
    width: 100%;
    margin: 0.25rem 0 0.1rem 0;
    flex: none;
}

.metric-bar-container {
    background: #404052;
    border-radius: 8px;
    width: 100%;
    height: 12px;
    overflow: hidden;
}

.metric-bar {
    height: 12px;
    border-radius: 8px;
    background: var(--gradient-accent);
    transition: width 1s;
    min-width: 4%;
}

.metric-item:not(.winner) .metric-bar {
    background: var(--gradient-blue);
}

.metric-item.winner .metric-bar {
    background: linear-gradient(90deg, #a78bfa 0%, #8b5cf6 100%);
}

.metric-slower-text {
    font-size: 0.875rem;
    color: #b8bcc8;
}

/* Responsive tweaks */
@media (max-width: 900px) {
    .metric-item .metric-name {
        min-width: 70px;
    }

    .metric-slower-text {
        padding-left: 60px;
    }
}

/* ========================================================================
   Code Examples Section
   ======================================================================== */

.code-examples-section {
    background: linear-gradient(180deg, #0a0a0f 0%, #12121a 100%);
    padding: 6rem 0;
}

.code-examples-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.code-examples-section .section-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 1rem;
    padding-bottom: 2rem;
    width: 100%;
}

.code-examples-section .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(52, 211, 153, 0.1);
    border: 1px solid rgba(52, 211, 153, 0.3);
    border-radius: 50px;
    color: var(--primary-color);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.code-examples-section .section-badge svg {
    width: 16px;
    height: 16px;
}

.code-examples-section .section-header h2 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #ffffff;
    line-height: 1.2;
}

.code-examples-section .section-header p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.8;
    margin-bottom: 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.code-tabs-container {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .code-tabs-container {
        grid-template-columns: 1fr;
    }
}

.tab-buttons {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.tab-button {
    background: rgba(26, 26, 38, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: none;
    padding: 1.5rem;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
}

.tab-button:first-child {
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}

.tab-button:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
}

.tab-button:hover {
    background: rgba(26, 26, 38, 0.8);
    border-color: rgba(255, 255, 255, 0.12);
}

.tab-button.active {
    background: rgba(45, 55, 88, 0.8);
    border-color: rgba(139, 92, 246, 0.5);
    border-left: 3px solid #8b5cf6;
}

.tab-button .tab-title {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.tab-button .tab-description {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.4;
}

.tab-contents {
    position: relative;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.code-window {
    background: rgba(26, 26, 38, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.code-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.code-dots {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.code-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.code-dots .dot-red {
    background: #ff5f56;
}

.code-dots .dot-yellow {
    background: #ffbd2e;
}

.code-dots .dot-green {
    background: #27c93f;
}

.code-filename {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    font-weight: 500;
    flex: 1;
}

.code-status {
    color: #fff;
    font-size: 10px;
    background: #10b981;
    font-weight: 600;
}

.code-content {
    padding: 2rem;
    background: rgba(0, 0, 0, 0.3);
    overflow-x: auto;
}

.code-content pre {
    margin: 0;
    font-family: 'Courier New', monospace;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #e0e0e0;
}

.code-content code {
    display: block;
    white-space: pre;
}

.code-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.copy-code-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    padding: 0.625rem 1.25rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.copy-code-button:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.copy-code-button svg {
    width: 16px;
    height: 16px;
}

.code-language {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

.docs-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 0 2rem;
}

.docs-cta p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

.btn-docs {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--gradient-primary);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
}

.btn-docs:hover {
    transform: translateY(-2px);
    color: #fff !important;
}

/* ========================================================================
   Integrations Section
   ======================================================================== */

.integrations-section {
    background: #101010;
}

.integrations-visual {
    margin-top: 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.integrations-gif {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.integrations-grid {
    display: grid;
    gap: 3rem;
}

.integration-category h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.integration-logos {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 2rem;
}

.integration-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.integration-logo:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.integration-logo img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.integration-logo span {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-align: center;
}

/* Integrations Section Responsive */
@media (max-width: 768px) {
    .integrations-visual {
        margin-top: 3rem;
        padding: 0 1rem;
    }

    .integrations-gif {
        max-width: 100%;
        border-radius: 12px;
    }

    .integrations-section .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .integrations-visual {
        margin-top: 2rem;
    }

    .integrations-gif {
        border-radius: 8px;
    }

    .integrations-section .section-header h2 {
        font-size: 1.75rem;
    }
}

/* ========================================================================
   Contact Section
   ======================================================================== */

.contact-section {
    background: #11111c;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem;
}

.contact-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 1.5rem 0 1rem;
}

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

.features-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.features-list li:last-child {
    border-bottom: none;
}

.email-link {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: 1rem;
}

.email-link a {
    color: var(--primary-color);
    font-weight: 600;
}

/* ========================================================================
   Footer - One Page
   ======================================================================== */

.one-page-footer {
    background: var(--bg-dark);
    color: var(--text-white);
    padding: 4rem 0 2rem;
}

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

.footer-description {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 2rem;
}

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

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

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

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

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

.footer-column h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.footer-column li {
    margin-bottom: 0.75rem;
}

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

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    margin: 0;
}

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

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

/* Footer bottom menu styling */
.footer-bottom-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

.footer-bottom-menu li {
    margin: 0;
}

.footer-bottom-menu a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.footer-bottom-menu a:hover {
    color: white;
}

/* Responsive footer bottom */
@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-menu {
        flex-direction: column;
        gap: 0.75rem;
    }
}


/* Footer bottom menu styling */
.footer-bottom-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

.footer-bottom-menu li {
    margin: 0;
}

.footer-bottom-menu a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.footer-bottom-menu a:hover {
    color: white;
}

/* Responsive footer bottom */
@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-menu {
        flex-direction: column;
        gap: 0.75rem;
    }
}

/* ========================================================================
   Responsive Design
   ======================================================================== */

@media (max-width: 1024px) {

    .hero-content,
    .footer-content {
        grid-template-columns: 1fr;
    }

    .header-container {
        padding: 0.75rem 1.5rem;
    }

    .header-right {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #0a0a0f;
        padding: 1.5rem;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        gap: 1rem;
        z-index: 999;
    }

    .header-right.toggled {
        display: flex;
    }

    .btn-documentation,
    .btn-meeting {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    .menu-toggle {
        display: block;
    }

    body.menu-open {
        overflow: hidden;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .performance-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .tab-buttons {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .metric-item {
        grid-template-columns: 30px 80px 1fr;
        font-size: 0.875rem;
    }

    .metric-slower {
        grid-column: 2 / -1;
    }
}


/* Newsletter Form Styles */
.newsletter-form {
    max-width: 700px;
    margin: 3rem auto 0;
}

/* Form layout - horizontal line */
.newsletter-form .wpcf7-form {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: flex-start;
}

.newsletter-form .wpcf7-form p {
    margin: 0;
    flex: 1;
}

.newsletter-form .wpcf7-form p:last-child {
    flex: 0 0 auto;
}

.newsletter-form .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}

/* Input field styling */
.newsletter-form input[type="text"],
.newsletter-form input[type="email"] {
    width: 100%;
    padding: 14px 16px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.newsletter-form input[type="text"]::placeholder,
.newsletter-form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-form input[type="text"]:focus,
.newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: rgba(139, 92, 246, 0.5);
    background: rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

/* Submit button */
.newsletter-form input[type="submit"],
.newsletter-form .wpcf7-submit {
    width: auto;
    min-width: 160px;
    padding: 14px 32px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 8px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0;
    white-space: nowrap;
}

.newsletter-form input[type="submit"]:hover,
.newsletter-form .wpcf7-submit:hover {
    transform: translateY(-2px);
}

.newsletter-form input[type="submit"]:active,
.newsletter-form .wpcf7-submit:active {
    transform: translateY(0);
}

/* Validation and error messages */
/* Hide individual field error tooltips */
.newsletter-form .wpcf7-not-valid-tip {
    display: none !important;
}

/* Hide the screen reader response */
.newsletter-form .screen-reader-response {
    display: none !important;
}

/* Style for invalid input fields */
.newsletter-form input.wpcf7-not-valid {
    border-color: rgba(255, 107, 107, 0.5) !important;
    background: rgba(255, 107, 107, 0.05) !important;
}

.newsletter-form input.wpcf7-not-valid:focus {
    border-color: rgba(255, 107, 107, 0.7) !important;
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.15) !important;
}

/* Hide all response output messages (both error and success) initially */
.newsletter-form .wpcf7-response-output {
    display: none !important;
}

/* Only show success message */
.newsletter-form .wpcf7-mail-sent-ok {
    display: block !important;
    margin-top: 16px;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    background: rgba(76, 209, 76, 0.15);
    border: 1px solid rgba(76, 209, 76, 0.3);
    color: #4cd14c;
}

/* Keep validation errors hidden */
.newsletter-form .wpcf7-validation-errors,
.newsletter-form .wpcf7-mail-sent-ng {
    display: none !important;
}

/* Loading spinner */
.newsletter-form .wpcf7-spinner {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
}

/* Responsive design */
@media (max-width: 640px) {
    .newsletter-form {
        margin-top: 2rem;
    }

    .newsletter-form .form-fields {
        padding: 24px;
    }

    .newsletter-form .form-fields h3 {
        font-size: 20px;
    }

    .newsletter-form .wpcf7-form {
        flex-direction: column;
    }

    .newsletter-form .wpcf7-form p {
        width: 100%;
    }

    .newsletter-form input[type="submit"],
    .newsletter-form .wpcf7-submit {
        width: 100%;
    }
}

/* ========================================================================
   Performance Highlights Section
   ======================================================================== */

.performance-highlights {
    display: flex;
    gap: 2.5rem;
    margin: 0 auto;
    justify-content: center;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.highlight-card {
    background: radial-gradient(ellipse at top left, #23234a 0%, #181825 100%);
    border-radius: 14px;
    padding: 2.2rem 2rem 1.7rem 2rem;
    min-width: 340px;
    text-align: center;
    box-shadow: 0 2px 24px 0 rgba(0, 0, 0, 0.18);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.highlight-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.2rem;
    letter-spacing: -1px;
    line-height: 1.1;
}

.highlight-text {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.35rem;
    line-height: 1.2;
}

.highlight-desc {
    font-size: 0.97rem;
    color: #b3b6d0;
    font-weight: 400;
    margin-top: 0.1rem;
    letter-spacing: 0.01em;
    line-height: 1.2;
}

@media (max-width: 1100px) {
    .performance-highlights {
        flex-direction: column;
        gap: 1.5rem;
        align-items: stretch;
    }

    .highlight-card {
        min-width: 0;
        width: 100%;
    }
}

/* ===================================
   Why Choose & CTA Combined Section
   =================================== */
.why-choose-cta-section {
    background: linear-gradient(180deg, #0a0a0f 0%, #12121a 50%, #0a0a0f 100%);
    padding: 6rem 0;
    position: relative;
}

/* CTA Header */
.cta-header {
    text-align: center;
    margin-bottom: 4rem;
}

.cta-button-top {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(52, 211, 153, 0.1);
    border: 1px solid rgba(52, 211, 153, 0.3);
    border-radius: 50px;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.cta-button-top:hover {
    background: rgba(52, 211, 153, 0.15);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.cta-button-top svg {
    width: 20px;
    height: 20px;
}

.cta-main-title {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.cta-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Two Column Grid */
.why-cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Left Column: Why Choose Features */
.why-choose-column {
    padding: 0 1rem;
}

.why-choose-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2rem;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.feature-icon-box {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.5);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.feature-content h4 {
    font-size: inherit;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0;
}

.feature-content p {
    font-size: 0.875rem;
    color: #b8bcc8;
}

/* Right Column: Contact Form */
.contact-form-column {
    display: flex;
    align-items: flex-start;
}

.contact-card {
    background: radial-gradient(ellipse at top left, #23234a 0%, #181825 100%);
    border: 0.5px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2.5rem;
    width: 100%;
}

.contact-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.contact-subtitle {
    font-size: .875rem !important;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.contact-email {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.contact-email:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 1024px) {
    .why-cta-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .why-choose-column {
        padding: 0;
    }
}

@media (max-width: 768px) {
    .why-choose-cta-section {
        padding: 4rem 1.5rem;
    }

    .cta-header {
        margin-bottom: 3rem;
    }

    .cta-main-title {
        font-size: 2rem;
    }

    .cta-description {
        font-size: 1rem;
    }

    .contact-card {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .why-choose-cta-section {
        padding: 3rem 1rem;
    }

    .cta-main-title {
        font-size: 1.75rem;
    }

    .cta-description {
        font-size: 0.9375rem;
    }

    .why-choose-title {
        font-size: 1.5rem;
    }

    .feature-item {
        gap: 1rem;
    }

    .feature-icon-box {
        width: 48px;
        height: 48px;
    }

    .contact-card {
        padding: 1.5rem;
    }

    .contact-card h3 {
        font-size: 1.25rem;
    }
}

/* ===================================
   Privacy Policy Page
   =================================== */
.privacy-page {
    background: linear-gradient(180deg, #0a0a0f 0%, #12121a 50%, #0a0a0f 100%);
    min-height: 100vh;
    padding: 0;
}

/* Ensure header is visible on privacy page */
.privacy-policy-page .site-header {
    position: relative;
    z-index: 100;
}

.privacy-policy-page .logo-image {
    height: 32px;
    width: auto;
    display: block;
    opacity: 1;
    visibility: visible;
}

.privacy-section {
    padding: 8rem 0 6rem;
    position: relative;
}

.privacy-section .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.privacy-header {
    text-align: center;
    margin-bottom: 0 rem;
    padding-bottom: 0 rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.privacy-title {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 01rem;
    line-height: 1.2;
}

.privacy-content {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    line-height: 1.8;
}

.privacy-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0.5rem 0 1.5rem;
    line-height: 1.3;
}

.privacy-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    margin: 2rem 0 1rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.privacy-content h2:first-of-type {
    border-top: none;
    padding-top: 0;
}

.privacy-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin: 1.5rem 0 0.75rem;
}

.privacy-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin: 1.25rem 0 0.5rem;
}

.privacy-content p {
    margin-bottom: 1.25rem;
    color: rgba(255, 255, 255, 0.75);
}

.privacy-content strong {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
}

.privacy-content ul,
.privacy-content ol {
    margin: 1rem 0 1.5rem 2rem;
    padding-left: 0;
}

.privacy-content li {
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.75);
    position: relative;
}

.privacy-content ul li {
    padding-left: 0;
}

.privacy-content ul li::before {
    content: "→";
    color: var(--primary-color);
    font-weight: bold;
    display: inline-block;
    width: 1.5rem;
    margin-left: -1.5rem;
}

.privacy-content a {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1px solid rgba(52, 211, 153, 0.3);
    transition: all 0.3s ease;
}

.privacy-content a:hover {
    border-bottom-color: var(--primary-color);
    color: #ffffff;
}

.privacy-content hr {
    border: none;
    height: 1px;
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.1) 50%,
            rgba(255, 255, 255, 0) 100%);
    margin: 3rem 0;
}

/* Privacy Page Responsive */
@media (max-width: 768px) {
    .privacy-section {
        padding: 6rem 0 4rem;
    }

    .privacy-section .container {
        padding: 0 1.5rem;
    }

    .privacy-title {
        font-size: 2rem;
    }

    .privacy-content h1 {
        font-size: 1.75rem;
    }

    .privacy-content h2 {
        font-size: 1.5rem;
    }

    .privacy-content h3 {
        font-size: 1.15rem;
    }

    .privacy-content ul,
    .privacy-content ol {
        margin-left: 1.5rem;
    }
}

@media (max-width: 480px) {
    .privacy-section {
        padding: 5rem 0 3rem;
    }

    .privacy-section .container {
        padding: 0 1rem;
    }

    .privacy-title {
        font-size: 1.75rem;
    }

    .privacy-content {
        font-size: 0.9375rem;
    }

    .privacy-content h1 {
        font-size: 1.5rem;
    }

    .privacy-content h2 {
        font-size: 1.25rem;
    }
}