:root {
    --primary: #2D6FAA;
    --primary-dark: #1E4F7A;
    --secondary: #64748b;
    --accent: #B45309;
    --success: #10b981;
    --background: #ffffff;
    --surface: #f8fafc;
    --text: #1e293b;
    --text-muted: #475569;
    --border: #e2e8f0;
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

[data-theme="dark"] {
    --background: #0f172a;
    --surface: #1e293b;
    --text: #f8fafc;
    --text-muted: #94a3b8;
    --border: #334155;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--background);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: all 0.3s ease;
}

[data-theme="dark"] .header {
    background: rgba(15, 23, 42, 0.95);
}

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

[data-theme="dark"] .header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 800;
    font-size: 1.25rem;
    text-decoration: none;
    color: var(--text);
    position: relative;
    z-index: 1001;
}

/* Logo styles */
.logo-image {
    height: 70px;
    width: auto;
    margin-left: 20px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo:hover .logo-image {
    transform: scale(1.05);
}



/* Footer logo */
.footer-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--text);
}

/* Dark Mode Toggle */
.theme-toggle {
    background: none;
    border: 2px solid var(--border);
    border-radius: 50px;
    padding: 0.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    margin-left: 1rem;
}

.theme-toggle:hover {
    border-color: var(--primary);
    background: rgba(70, 172, 215, 0.1);
}

/* Mobile Navigation */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    margin-right: 20px;
    z-index: 1001;
    position: relative;
}

.hamburger {
    width: 24px;
    height: 24px;
    position: relative;
    transform: rotate(0deg);
    transition: .5s ease-in-out;
    cursor: pointer;
}

.hamburger span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: var(--text);
    border-radius: 9px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

.hamburger span:nth-child(1) {
    top: 0px;
}

.hamburger span:nth-child(2),
.hamburger span:nth-child(3) {
    top: 10px;
}

.hamburger span:nth-child(4) {
    top: 20px;
}

.hamburger.open span:nth-child(1) {
    top: 10px;
    width: 0%;
    left: 50%;
}

.hamburger.open span:nth-child(2) {
    transform: rotate(45deg);
}

.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg);
}

.hamburger.open span:nth-child(4) {
    top: 10px;
    width: 0%;
    left: 50%;
}

.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--background);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.mobile-nav.open {
    transform: translateX(0);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    text-align: center;
    align-items: center;
    width: 100%;
    padding: 0 2rem;
}

.mobile-nav-links a {
    color: var(--text);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.75rem;
    padding: 0.5rem 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 350px;
}

.mobile-nav-links a:hover {
    background: var(--surface);
    color: var(--primary);
    transform: scale(1.05);
}

.mobile-nav-links .btn {
    margin-top: 1.5rem;
    font-size: 1.15rem;
    padding: 1rem 2rem;
    color: white !important;
}

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

.btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: 0 4px 15px rgba(70, 172, 215, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(70, 172, 215, 0.4);
}

.btn-outline {
    border: 2px solid var(--border);
    color: var(--text);
    background: transparent;
}

.btn-outline:hover {
    border-color: var(--primary);
    background: rgba(70, 172, 215, 0.1);
}

/* Hero Section */
.hero {
    padding: 8rem 0 6rem;
    background:
        radial-gradient(circle at 20% 80%, rgba(70, 172, 215, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(118, 75, 162, 0.1) 0%, transparent 50%),
        var(--background);
    position: relative;
    overflow: hidden;
}

.hero::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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(148,163,184,0.2)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    pointer-events: none;
}

[data-theme="dark"] .hero::before {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(148,163,184,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text) 0%, var(--text-muted) 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-weight: 400;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.trust-indicators {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.checkmark {
    color: var(--success);
    font-weight: bold;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 500px;
    border-radius: 20px;
    background: var(--surface);
    border: 1px solid var(--border);
    overflow: hidden;
}

.code-window {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.window-header {
    background: #2d2d2d;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid #444;
}

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

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

.dot.red {
    background: #ff5f57;
}

.dot.yellow {
    background: #ffbd2e;
}

.dot.green {
    background: #28ca42;
}

.window-title {
    margin-left: 1rem;
    color: #8b8b8b;
    font-size: 0.9rem;
}

.code-content {
    padding: 1.5rem;
    font-family: 'Monaco', 'Menlo', monospace;
    font-size: 0.85rem;
    line-height: 1.6;
    color: #e6e6e6;
    height: calc(100% - 60px);
    overflow: hidden;
}

.code-line {
    opacity: 0;
    animation: typeIn 0.8s ease forwards;
}

.code-line:nth-child(1) {
    animation-delay: 0.5s;
}

.code-line:nth-child(2) {
    animation-delay: 1s;
}

.code-line:nth-child(3) {
    animation-delay: 1.5s;
}

.code-line:nth-child(4) {
    animation-delay: 2s;
}

.code-line:nth-child(5) {
    animation-delay: 2.5s;
}

@keyframes typeIn {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }

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

.syntax-keyword {
    color: #ff79c6;
}

.syntax-string {
    color: #f1fa8c;
}

.syntax-function {
    color: #8be9fd;
}

.syntax-comment {
    color: #6272a4;
}

/* Pricing Section */
.pricing {
    padding: 6rem 0;
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

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

.pricing-card {
    background: var(--background);
    border: 2px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card.featured {
    border-color: var(--primary);
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(70, 172, 215, 0.15);
}

.pricing-card.featured::before {
    content: 'MOST POPULAR';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(70, 172, 215, 0.15);
}

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

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text);
}

.plan-description {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.price-section {
    margin-bottom: 2rem;
}

.original-price {
    font-size: 1.1rem;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-bottom: 0.5rem;
}

.current-price {
    font-size: 3rem;
    font-weight: 900;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: block;
    margin-bottom: 0.5rem;
}

.price-note {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.features-list {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-muted);
}

.features-list li::before {
    content: '✓';
    color: var(--success);
    font-weight: bold;
    font-size: 1.1rem;
}

.limited-offer {
    background: rgba(245, 158, 11, 0.05);
    border: 1px solid var(--accent);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 2rem;
    text-align: center;
}

.limited-offer-title {
    color: #B45309;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.limited-offer-text {
    color: var(--text);
    font-size: 0.85rem;
}

/* Services Section */
.services {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: clamp(2rem, 6vw, 4rem);
}

.section-title {
    font-size: clamp(1.75rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.section-subtitle {
    font-size: clamp(1rem, 3vw, 1.25rem);
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

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

.service-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(70, 172, 215, 0.15);
}

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

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

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

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0;
}

.service-description {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-muted);
}

.service-features li::before {
    content: '✓';
    color: var(--success);
    font-weight: bold;
    font-size: 1.1rem;
}

/* Process Section */
/* ========================================
   PROCESS TIMELINE - PROPER SPACING FIX
   ======================================== */

.process {
    padding: 8rem 0;
    background: linear-gradient(180deg, var(--background) 0%, var(--surface) 50%, var(--background) 100%);
    position: relative;
    overflow: hidden;
}

.process::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 25% 25%, rgba(70, 172, 215, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(118, 75, 162, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.process-container {
    position: relative;
    z-index: 1;
}

/* ========================================
   TIMELINE STRUCTURE - BETTER SPACING
   ======================================== */

.process-timeline-modern {
    position: relative;
    max-width: 1100px;
    margin: 4rem auto 0;
}

/* Central Timeline Line */
.timeline-line {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 120px;
    bottom: 120px;
    width: 3px;
    background: linear-gradient(180deg,
            transparent 0%,
            var(--primary) 10%,
            var(--primary) 90%,
            transparent 100%);
    z-index: -1;
}

.timeline-line::before {
    content: '';
    position: absolute;
    left: 50%;
    top: -10px;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: var(--primary);
    border: 3px solid var(--background);
    border-radius: 50%;
    box-shadow: 0 0 0 3px var(--primary);
    z-index: -1;
}

.timeline-line::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: var(--primary);
    border: 3px solid var(--background);
    border-radius: 50%;
    box-shadow: 0 0 0 3px var(--primary);
    z-index: -1;
}

/* ========================================
   PROCESS BLOCKS - CONSISTENT SPACING
   ======================================== */

.process-block {
    position: relative;
    margin-bottom: 8rem;
    /* Increased spacing between blocks */
    opacity: 0;
    transform: translateY(50px) translateZ(0);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 10;
    isolation: isolate;
    min-height: 200px;
    /* Consistent minimum height */
    display: flex;
    align-items: center;
    /* Center content vertically */
}

.process-block.animate-in {
    opacity: 1;
    transform: translateY(0) translateZ(0);
}

.process-block:nth-child(1) {
    transition-delay: 0.1s;
}

.process-block:nth-child(2) {
    transition-delay: 0.3s;
}

.process-block:nth-child(3) {
    transition-delay: 0.5s;
}

.process-block:nth-child(4) {
    transition-delay: 0.7s;
}

.process-block:last-child {
    margin-bottom: 0;
}

/* ========================================
   DESKTOP LAYOUT (992px+) - FIXED SPACING
   ======================================== */

@media (min-width: 992px) {
    .process-content {
        display: grid;
        grid-template-columns: 1fr 120px 1fr;
        align-items: center;
        gap: 0;
        min-height: 200px;
        position: relative;
        z-index: 15;
        transform: translateZ(0);
        width: 100%;
    }

    /* Left-side content (first, third, ...) — adjust because timeline-line is first child */
    .process-block:nth-child(even) .process-text {
        grid-column: 1;
        text-align: right;
        padding-right: 3rem;
        max-width: 450px;
        margin-left: auto;
        position: relative;
        z-index: 20;
    }

    .process-block:nth-child(even) .process-icon-wrapper {
        grid-column: 2;
        justify-self: center;
        position: relative;
        z-index: 1000;
        transform: translateZ(0);
    }

    .process-block:nth-child(even) .empty-space {
        grid-column: 3;
    }

    /* Right-side content (second, fourth, ...) */
    .process-block:nth-child(odd) .process-text {
        grid-column: 3;
        text-align: left;
        padding-left: 3rem;
        max-width: 450px;
        margin-right: auto;
        position: relative;
        z-index: 20;
    }

    .process-block:nth-child(odd) .process-icon-wrapper {
        grid-column: 2;
        justify-self: center;
        position: relative;
        z-index: 1000;
        transform: translateZ(0);
    }

    .process-block:nth-child(odd) .empty-space {
        grid-column: 1;
    }

    /* Adjust detail alignment */
    .process-block:nth-child(even) .process-details {
        align-items: flex-end;
        text-align: right;
    }

    .process-block:nth-child(even) .detail-item {
        flex-direction: row-reverse;
        text-align: right;
    }

    .process-block:nth-child(even) .process-timeline-info {
        justify-content: flex-end;
        text-align: right;
    }

    /* Hover effects for desktop */
    .process-block:hover .process-text {
        transform: translateX(0) translateZ(0);
    }

    .process-block:nth-child(even):hover .process-text {
        transform: translateX(-10px) translateZ(0);
    }

    .process-block:nth-child(odd):hover .process-text {
        transform: translateX(10px) translateZ(0);
    }
}

/* ========================================
   TABLET LAYOUT (768px - 991px) - PROPER SPACING
   ======================================== */

@media (min-width: 768px) and (max-width: 991px) {
    .timeline-line {
        display: none;
    }

    .process-block {
        margin-bottom: 4rem;
        /* Reduced but still adequate spacing for tablet */
        min-height: auto;
        display: block;
    }

    .process-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.5rem;
        padding: 2.5rem;
        background: var(--background);
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        border: 1px solid var(--border);
        position: relative;
        z-index: 15;
        isolation: isolate;
    }

    [data-theme="dark"] .process-content {
        background: var(--surface);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

    .process-icon-wrapper {
        position: relative;
        z-index: 1000;
        transform: translateZ(0);
        order: 1;
    }

    .process-text {
        max-width: 500px;
        text-align: center !important;
        padding: 0 !important;
        position: relative;
        z-index: 20;
        order: 2;
    }

    .process-details,
    .process-timeline-info {
        align-items: center !important;
        justify-content: center !important;
        text-align: center;
    }

    .detail-item {
        flex-direction: row !important;
        justify-content: center !important;
    }

    .empty-space {
        display: none;
    }
}

/* ========================================
   MOBILE LAYOUT (up to 767px) - OPTIMIZED SPACING
   ======================================== */

@media (max-width: 767px) {
    .process {
        padding: 4rem 0;
    }

    .timeline-line {
        display: none;
    }

    .process-block {
        margin-bottom: 2.5rem;
        /* Perfect spacing for mobile */
        min-height: auto;
        display: block;
    }

    .process-content {
        background: var(--background);
        border-radius: 16px;
        padding: 2rem;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
        border: 1px solid var(--border);
        transition: all 0.3s ease;
        position: relative;
        z-index: 15;
        isolation: isolate;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .process-content:hover {
        transform: translateY(-5px) translateZ(0);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    }

    [data-theme="dark"] .process-content {
        background: var(--surface);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    }

    [data-theme="dark"] .process-content:hover {
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    }

    .process-header {
        display: flex;
        align-items: center;
        gap: 1.5rem;
        margin-bottom: 2rem;
        position: relative;
        z-index: 20;
    }

    .process-icon-wrapper {
        position: relative;
        z-index: 1000;
        transform: translateZ(0);
        flex-shrink: 0;
        order: 1;
        margin-bottom: 1rem;
        align-self: center;
    }

    .process-text {
        text-align: left !important;
        padding: 0 !important;
        position: relative;
        z-index: 20;
        flex: 1;
        order: 2;
        width: 100%;
    }

    .process-details,
    .process-timeline-info {
        align-items: flex-start !important;
        justify-content: flex-start !important;
        text-align: left;
    }

    .detail-item {
        flex-direction: row !important;
        justify-content: flex-start !important;
    }

    .empty-space {
        display: none;
    }

    /* Mobile-specific title adjustments */
    .process-title {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
        line-height: 1.4;
    }

    .process-description {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
    }

    .detail-item {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }

    .process-timeline-info {
        gap: 1rem;
        margin-top: 1rem;
    }

    .timeline-duration,
    .timeline-output {
        font-size: 0.8rem;
        padding: 0.4rem 0.6rem;
    }
}

/* ========================================
   EXTRA SMALL MOBILE (up to 480px)
   ======================================== */

@media (max-width: 480px) {
    .process-block {
        margin-bottom: 2rem;
    }

    .process-content {
        padding: 1.5rem;
    }

    .process-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .process-icon-wrapper {
        align-self: center;
    }

    .process-text {
        text-align: center !important;
    }

    .process-details,
    .process-timeline-info {
        align-items: center !important;
        justify-content: center !important;
        text-align: center;
    }

    .detail-item {
        justify-content: center !important;
    }

    .process-timeline-info {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* ========================================
   PROCESS ICON STYLES - UNCHANGED
   ======================================== */

.process-icon-wrapper {
    position: relative;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateZ(0);
    isolation: isolate;
}

.process-icon {
    width: 80px;
    height: 80px;
    background: var(--background);
    border: 4px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    box-shadow:
        0 0 0 8px var(--background),
        0 15px 35px rgba(70, 172, 215, 0.2);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    z-index: 1001;
    transform: translateZ(0);
}

[data-theme="dark"] .process-icon {
    background: var(--surface);
    box-shadow:
        0 0 0 8px var(--surface),
        0 15px 35px rgba(70, 172, 215, 0.3);
}

.process-icon::before {
    content: '';
    position: absolute;
    inset: -12px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, var(--primary), var(--accent), var(--primary));
    opacity: 0;
    animation: rotate 3s linear infinite;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.process-block:hover .process-icon::before {
    opacity: 0.2;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.process-icon svg {
    width: 28px;
    height: 28px;
    transition: all 0.3s ease;
    z-index: 1002;
    position: relative;
}

.process-block:hover .process-icon {
    transform: scale(1.1) translateZ(0);
    border-color: var(--accent);
    color: var(--accent);
    box-shadow:
        0 0 0 8px var(--background),
        0 20px 40px rgba(70, 172, 215, 0.3);
}

[data-theme="dark"] .process-block:hover .process-icon {
    box-shadow:
        0 0 0 8px var(--surface),
        0 20px 40px rgba(70, 172, 215, 0.4);
}

.process-number {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--gradient);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 1003;
    border: 2px solid var(--background);
    transform: translateZ(0);
}

[data-theme="dark"] .process-number {
    border-color: var(--surface);
}

/* Mobile icon adjustments */
@media (max-width: 767px) {
    .process-icon {
        width: 60px;
        height: 60px;
        border-width: 3px;
        box-shadow: 0 8px 20px rgba(70, 172, 215, 0.2);
        z-index: 1001;
    }

    .process-icon svg {
        width: 20px;
        height: 20px;
    }

    .process-number {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
        top: -6px;
        right: -6px;
    }
}

/* ========================================
   REST OF THE STYLES (UNCHANGED)
   ======================================== */

.process-title {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text);
    line-height: 1.3;
}

.process-description {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    line-height: 1.6;
}

.process-details {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    margin-bottom: 1.5rem;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
    transition: all 0.3s ease;
    padding: 0.25rem 0;
}

.detail-item:hover {
    color: var(--text);
    transform: translateX(5px);
}

@media (min-width: 992px) {
    .process-block:nth-child(even) .detail-item:hover {
        transform: translateX(-5px);
    }
}

.detail-icon {
    color: var(--primary);
    font-weight: bold;
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.process-timeline-info {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
}

.timeline-duration,
.timeline-output {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
    background: var(--surface);
    padding: 0.5rem 0.75rem;
    border-radius: 20px;
    border: 1px solid var(--border);
}

/* Process Metrics (unchanged) */
/* Process Metrics - Fixed for Animation */
.process-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 6rem;
    padding: 3rem;
    background: var(--background);
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    z-index: 5;
}

.process-metrics::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient);
    opacity: 0.02;
    pointer-events: none;
}

[data-theme="dark"] .process-metrics {
    background: var(--surface);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.metric-card {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 1rem;
    transition: transform 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-5px);
}

/* FIXED: Metric number styling for animation compatibility */
.metric-number {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    margin-bottom: 0.5rem;
    display: block;
    position: relative;

    /* Apply gradient as background */
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;

    /* IMPORTANT: Use transparent but with fallback */
    color: transparent;

    /* Ensure text is selectable and animatable */
    -webkit-text-fill-color: transparent;

    /* Force hardware acceleration for better rendering */
    transform: translateZ(0);
    will-change: contents;
}

/* Fix for Safari and older browsers */
@supports not (background-clip: text) {
    .metric-number {
        color: var(--primary);
        background: none;
    }
}

/* Ensure gradient applies during animation */
.metric-number.animating {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* Percentage symbol styling */
.metric-number::after {
    content: '%';
    font-size: 0.7em;
    margin-left: 0.1em;
    /* Inherit the same gradient styling */
    background: inherit;
    -webkit-background-clip: inherit;
    background-clip: inherit;
    -webkit-text-fill-color: inherit;
}

/* Remove percentage for specific cards */
.metric-card:nth-child(3) .metric-number::after,
.metric-card:nth-child(4) .metric-number::after {
    content: '';
}

.metric-label {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    .process-block {
        animation: none;
        opacity: 1;
        transform: none;
        transition: none;
    }

    .process-icon::before {
        animation: none;
    }

    .process-icon,
    .detail-item,
    .metric-card {
        transition: none;
    }

    .metric-number {
        will-change: auto;
    }
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: var(--background);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.contact-info p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--surface);
    border-radius: 12px;
    border: 1px solid var(--border);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.contact-details h4 {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-details p {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.9rem;
}

.contact-form {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    color: var(--text);
    font-size: 0.95rem;
    transition: border-color 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(70, 172, 215, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

/* Footer */
.footer {
    background: var(--surface);
    padding: 3rem 0 2rem;
    border-top: 1px solid var(--border);
}

[data-theme="dark"] .footer {
    background: #0a0f1a;
}

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

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-description {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.footer-title {
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--text);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
}

/* Chatbot Styles */
.chatbot-container {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
}

.chatbot-toggle {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 8px 25px rgba(70, 172, 215, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.chatbot-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(70, 172, 215, 0.4);
}

.chatbot-pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--gradient);
    animation: pulse 2s infinite;
    z-index: -1;
}

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

    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

.chatbot-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 380px;
    height: 500px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    display: none;
    flex-direction: column;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.chatbot-header {
    background: var(--gradient);
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chatbot-header h3 {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
}

.chatbot-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.8rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.close-chat {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 4px;
    transition: background 0.2s ease;
}

.close-chat:hover {
    background: rgba(255, 255, 255, 0.2);
}

.chatbot-messages {
    flex: 1;
    padding: 1.5rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    scroll-behavior: smooth;
}

.message {
    padding: 0.75rem 1rem;
    border-radius: 15px;
    max-width: 85%;
    word-wrap: break-word;
    font-size: 0.9rem;
    line-height: 1.4;
    animation: slideIn 0.3s ease;
}

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

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

.bot-message {
    background: rgba(70, 172, 215, 0.1);
    border: 1px solid rgba(70, 172, 215, 0.2);
    align-self: flex-start;
    color: var(--text);
}

.user-message {
    background: var(--gradient);
    color: white;
    align-self: flex-end;
}

.typing-indicator {
    display: flex;
    gap: 0.25rem;
    padding: 0.75rem 1rem;
    background: rgba(70, 172, 215, 0.1);
    border: 1px solid rgba(70, 172, 215, 0.2);
    border-radius: 15px;
    align-self: flex-start;
    max-width: 85%;
}

.typing-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: typing 1.4s infinite ease-in-out;
}

.typing-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {

    0%,
    60%,
    100% {
        transform: translateY(0);
    }

    30% {
        transform: translateY(-10px);
    }
}

.chatbot-input {
    padding: 1rem 1.5rem;
    display: flex;
    gap: 0.75rem;
    border-top: 1px solid var(--border);
    background: var(--background);
}

.chatbot-input input {
    flex: 1;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 25px;
    padding: 0.75rem 1rem;
    color: var(--text);
    font-size: 0.9rem;
    transition: border-color 0.3s ease;
}

.chatbot-input input:focus {
    outline: none;
    border-color: var(--primary);
}

.chatbot-input input::placeholder {
    color: var(--text-muted);
}

.send-btn {
    background: var(--gradient);
    border: none;
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 600;
    min-width: 60px;
}

.send-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(70, 172, 215, 0.3);
}

.send-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: var(--gradient);
    text-align: center;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="80" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="60" cy="30" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
}

.cta-description {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.btn-white {
    background: white;
    color: var(--primary);
    font-weight: 700;
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-nav-toggle {
        display: block;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero {
        padding: 6rem 0 4rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .services {
        padding: 4rem 0;
    }

    .section-title {
        font-size: 1.75rem;
        word-break: break-word;
        hyphens: auto;
    }

    .section-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .trust-indicators {
        justify-content: center;
        text-align: center;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .chatbot-window {
        width: calc(100vw - 2rem);
        right: 1rem;
        bottom: 80px;
    }

    .chatbot-container {
        bottom: 1rem;
        right: 1rem;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }
}

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

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

.animate-in {
    animation: fadeInUp 0.8s ease forwards;
}

.floating {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

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

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }

    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* Privacy Policy Styles */
.privacy-policy {
    padding: 120px 0 80px;
    background: var(--background);
}

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

.privacy-section {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.privacy-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.privacy-section:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(70, 172, 215, 0.1);
}

.privacy-section:hover::before {
    transform: scaleX(1);
}

.privacy-section h2 {
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--border);
    padding-bottom: 0.5rem;
}

.privacy-section h3 {
    color: var(--text);
    font-size: 1.25rem;
    font-weight: 600;
    margin: 2rem 0 1rem 0;
}

.privacy-section p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--text);
}

.privacy-section ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.privacy-section li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
    color: var(--text-muted);
}

.privacy-section li strong {
    color: var(--text);
}

.privacy-contact-box {
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
}

.privacy-contact-box p {
    margin: 0.5rem 0;
    font-size: 0.95rem;
}

.privacy-contact-box strong {
    color: var(--primary);
}

/* Responsive adjustments for privacy policy */
@media (max-width: 768px) {
    .privacy-policy {
        padding: 100px 0 60px;
    }

    .privacy-content {
        padding: 0 1rem;
    }

    .privacy-section {
        padding: 2rem 1.5rem;
        margin-bottom: 1.5rem;
    }

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

    .privacy-section h3 {
        font-size: 1.1rem;
    }
}

/* Careers Page Styles */
.careers-hero {
    padding: 12rem 0 6rem;
    background: var(--background);
    position: relative;
    overflow: hidden;
    margin-top: 0;
    z-index: 1;
    min-height: 400px;
    border: 2px solid red;
    /* Temporary debug border */
}

.careers-hero::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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(148,163,184,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    pointer-events: none;
}

[data-theme="dark"] .careers-hero::before {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(148,163,184,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
}

.careers-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.careers-hero-text h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--text) !important;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.careers-hero-text p {
    font-size: 1.25rem;
    color: var(--text-muted) !important;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 500px;
}

.careers-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.careers-hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 400px;
}


.stat-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(70, 172, 215, 0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 600;
}

.why-join-us {
    padding: 120px 0;
    background: var(--surface);
}

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

.benefit-card {
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(70, 172, 215, 0.15);
}

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

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1rem;
}

.benefit-description {
    color: var(--text-muted);
    line-height: 1.6;
}

.open-positions {
    padding: 80px 0;
    background: var(--background);
}

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

.position-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.position-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: 0 15px 35px rgba(70, 172, 215, 0.1);
}

.position-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.position-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
    margin: 0;
}

.position-type {
    background: var(--primary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
}

.position-description {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.position-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.skill-tag {
    background: var(--background);
    border: 1px solid var(--border);
    color: var(--text);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.culture-section {
    padding: 80px 0;
    background: var(--surface);
}

.culture-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.culture-text h2 {
    margin-bottom: 1rem;
}

.culture-description {
    font-size: 1.25rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 3rem;
}

.culture-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.value-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.value-item p {
    color: var(--text-muted);
    line-height: 1.5;
}

.culture-visual {
    display: flex;
    justify-content: center;
}

.application-process {
    padding: 80px 0;
    background: var(--background);
}

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

.process-step {
    text-align: center;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '→';
    position: absolute;
    top: 50%;
    right: -1rem;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 1.5rem;
    font-weight: bold;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 800;
    margin: 0 auto 1.5rem;
}

.step-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1rem;
}

.step-description {
    color: var(--text-muted);
    line-height: 1.6;
}

.careers-cta {
    padding: 80px 0;
    background: var(--gradient);
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.btn-white {
    background: white;
    color: var(--primary);
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-white:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

/* Responsive adjustments for careers page */
@media (max-width: 768px) {
    .careers-hero {
        padding: 10rem 0 4rem;
    }

    .careers-hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .careers-hero-text h1 {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .careers-hero-text p {
        margin-bottom: 2rem;
    }

    .careers-cta {
        justify-content: center;
    }

    .careers-hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        max-width: 100%;
        margin: 0 auto;
    }

    .stat-number {
        font-size: 2rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 3rem;
    }

    .positions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 3rem;
    }

    .position-header {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }

    .culture-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

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

    .process-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .process-step:not(:last-child)::after {
        content: '↓';
        right: 50%;
        top: auto;
        bottom: -1rem;
        transform: translateX(50%);
    }

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

/* Clean Modern Careers Page Styles */

/* Open Positions Section */
.careers-positions {
    padding-top: 6rem;
}

/* Careers Intro */
.careers-intro {
    text-align: center;
    margin-bottom: 5rem;
    padding-top: 2rem;
}

.careers-intro-content h2 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.careers-intro-content p {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

/* Careers Highlights */
.careers-highlights {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    padding: 1.5rem 2rem;
    background: var(--surface);
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.highlight-text strong {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.25rem;
}

.highlight-text span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Positions Wrapper */
.positions-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

/* Tablet: 2 columns for screens 768px to 1199px */
@media (max-width: 1199px) and (min-width: 769px) {
    .positions-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
}

/* Mobile: 1 column for screens 768px and below */
@media (max-width: 768px) {
    .positions-wrapper {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.position-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.03);
}

.position-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border-color: var(--primary);
}

.position-item.featured {
    border-color: var(--primary);
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.1);
}

.position-badge {
    position: absolute;
    top: -10px;
    left: 2.5rem;
    background: var(--primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Position Main */
.position-main {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Position Role */
.position-role {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.role-info h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.role-meta {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.role-type,
.role-location {
    padding: 0.375rem 0.875rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.role-type {
    background: var(--primary);
    color: white;
}

.role-location {
    background: var(--background);
    color: var(--text-muted);
    border: 1px solid var(--border);
}

/* Position Description */
.position-description p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

/* Position Skills */
.position-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.skill-tag {
    padding: 0.5rem 1rem;
    background: var(--background);
    color: var(--text);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid var(--border);
    transition: all 0.2s ease;
}

.skill-tag:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* Position Actions */
.position-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.position-date {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Careers Bottom CTA */
.careers-bottom-cta {
    background: linear-gradient(135deg, var(--background), var(--surface));
    border-radius: 20px;
    padding: 4rem 3rem;
    text-align: center;
    border: 1px solid var(--border);
}

.bottom-cta-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1rem;
}

.bottom-cta-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Why Join Section */
.why-join-section {
    background: var(--background);
    padding: 6rem 0;
}

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

.why-join-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1rem;
}

.why-join-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.why-join-card {
    background: var(--surface);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.why-join-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.why-join-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

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

.why-join-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.why-join-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 1rem;
}

.why-join-card p {
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Tablet: 2 columns for screens 769px to 1199px */
@media (max-width: 1199px) and (min-width: 769px) {
    .positions-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .careers-intro-content h2 {
        font-size: 2.5rem;
    }

    .careers-intro-content p {
        font-size: 1.1rem;
    }

    .careers-highlights {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .highlight-item {
        width: 100%;
        max-width: 350px;
        padding: 1.25rem 1.5rem;
        justify-content: center;
    }

    .positions-wrapper {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .position-item {
        padding: 1.25rem;
    }

    .position-role {
        gap: 0.5rem;
    }

    .role-info h3 {
        font-size: 1.3rem;
    }

    .role-meta {
        gap: 0.4rem;
    }

    .position-skills {
        gap: 0.5rem;
    }

    .skill-tag {
        font-size: 0.75rem;
        padding: 0.35rem 0.7rem;
    }

    .position-actions {
        margin-top: 1.25rem;
        padding-top: 1.25rem;
    }

    .careers-bottom-cta {
        padding: 3rem 2rem;
    }

    .bottom-cta-content h3 {
        font-size: 1.75rem;
    }

    .bottom-cta-content p {
        font-size: 1rem;
    }

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

    .why-join-card {
        padding: 2rem;
    }

    .service-header {
        gap: 0.75rem;
    }

    .service-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .service-title {
        font-size: 1.3rem;
    }

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


}

/* Blog Page Styles */

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

.blog-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.blog-header p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Blog Stats */
.blog-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

/* Posts Grid */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    grid-auto-rows: min-content;
    gap: 2.5rem;
    margin-bottom: 4rem;
    align-items: start;
}

.post-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: fit-content;
}

.post-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.post-card.featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    max-width: 100%;
    height: fit-content;
}

/* Post Image */
.post-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    flex-shrink: 0;
}

.post-card.featured .post-image {
    height: 300px;
    flex-shrink: 0;
}

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

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

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

/* Post Content */
.post-content {
    padding: 2rem;
}

.post-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.post-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.post-card.featured .post-content h3 {
    font-size: 1.8rem;
    line-height: 1.3;
}

.post-content p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.tag {
    background: var(--background);
    color: var(--text);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    border: 1px solid var(--border);
    transition: all 0.2s ease;
}

.tag:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}



/* Categories Grid */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.category-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border-color: var(--primary);
}

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

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

.category-card p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.category-count {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Newsletter Form */
.newsletter-form {
    max-width: 500px;
    margin: 2rem auto 0;
}

.newsletter-signup {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.newsletter-signup input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 1rem;
    background: var(--surface);
    color: var(--text);
}

.newsletter-signup input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(70, 172, 215, 0.1);
}

.cta-section {
    padding: 80px 0;
    background: var(--gradient);
    border-radius: 24px;
    text-align: center;
    color: white;
    margin: 4rem 0;
}

.cta-section .cta-title {
    color: white;
}

.cta-section .cta-description {
    color: rgba(255, 255, 255, 0.9);
}

.newsletter-note {
    font-size: 0.95rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 1rem;
    display: block;
}

.cta-section .newsletter-note {
    color: white;
    opacity: 0.9;
}

[data-theme="dark"] .newsletter-note {
    color: var(--text-muted);
}

/* Load More */
.load-more {
    text-align: center;
    margin-top: 3rem;
}

/* Blog Mobile Styles */
@media (max-width: 768px) {
    .blog-header h2 {
        font-size: 2.5rem;
    }

    .blog-header p {
        font-size: 1.1rem;
    }

    .posts-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .post-card.featured {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .post-card.featured .post-image {
        height: 250px;
    }

    .post-card .post-content {
        padding: 1.5rem;
    }

    .post-content h3 {
        font-size: 1.3rem;
    }

    .post-card.featured .post-content h3 {
        font-size: 1.5rem;
    }

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

    .category-card {
        padding: 1.5rem;
    }

    .newsletter-signup {
        flex-direction: column;
        gap: 0.75rem;
    }

    .newsletter-signup input {
        width: 100%;
    }
}