/* Software Page Styles - Modern & Beautiful Design */

/* Full page background canvas */
#pageBackgroundCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
}

/* CSS Variables - Updated to match landing styles */
:root {
    --bg: #f9fafe;
    --bg-soft: #ffffff;
    --text: #1b1e21;
    --muted: rgb(77, 91, 124);
    --primary: #ff0030;
    --primary-600: #e01319;
    --accent: #1b1e21;
    --brand-blue: #6090f0;
    --card: #ffffff;
    --line: rgba(0,0,0,0.08);
    --radius: 14px;
    --shadow: 0 8px 24px rgba(16, 24, 40, 0.08);
    --accent-color: #a31c05;
    --footer-bg: #242424;
    --gradient-footer: linear-gradient(135deg, #242424 0%, #2d2d2d 100%);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text);
    overflow-x: hidden;
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

section {
    padding: 64px 0;
}

/* Header Styles */
.landing-header {
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-bottom: 1px solid var(--line);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
    box-shadow: 0 0 16px rgba(0,0,0,0.05);
}

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

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text);
}

.logo .separator {
    width: 1px;
    height: 18px;
    background: var(--line);
    margin: 0 8px;
    align-self: center;
}

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

.navbar-nav {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    opacity: 0.9;
    padding: 6px 8px;
    border-radius: 8px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--brand-blue);
    opacity: 1;
}

.nav-link.active::after {
    display: none;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(180deg, var(--bg-soft), var(--bg));
    position: relative;
    overflow: hidden;
    padding-top: 80px;
    z-index: 2;
    margin-top: 44px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.dot-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.6;
    z-index: 1;
}

.dot-grid circle {
    fill: rgba(96, 144, 240, 0.3);
    transition: opacity 0.3s ease, fill 0.3s ease;
}

.dot-grid circle.active {
    fill: rgba(96, 144, 240, 0.8);
    opacity: 1;
}

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

.hero-text {
    color: var(--text);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.8s ease-out forwards;
}

.title-line:nth-child(1) { animation-delay: 0.2s; }
.title-line:nth-child(2) { animation-delay: 0.4s; }
.title-line:nth-child(3) { animation-delay: 0.6s; }

.title-line.highlight {
    background: var(--brand-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Blinking cursor effect */
.title-line.highlight::after {
    content: '|';
    color: var(--brand-blue);
    animation: blink 1s infinite;
    margin-left: 2px;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

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

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.hero-description {
    font-size: 1rem;
    margin-bottom: 2rem;
    opacity: 0.8;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0px 0px 50px 0px rgba(93, 93, 93, 0.27);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 0.875rem 1.75rem;
    font-weight: 600;
    transition: var(--transition);
    font-size: 1rem;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--primary-600);
    transform: translateY(-2px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: rgba(96, 144, 240, 0.1);
    color: var(--text);
    border: 2px solid rgba(96, 144, 240, 0.3);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    background: rgba(96, 144, 240, 0.2);
    border-color: rgba(96, 144, 240, 0.5);
}

.btn-icon {
    width: 20px;
    height: 20px;
}

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

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.code-editor {
    background: #1e1e1e;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    width: 100%;
    max-width: 600px;
    transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
    transition: var(--transition);
    border: 2px solid var(--line);
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
}

.code-editor:hover {
    transform: perspective(1000px) rotateY(-10deg) rotateX(2deg);
}

.editor-header {
    background: #2d3748;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.editor-controls {
    display: flex;
    gap: 0.5rem;
}

.control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    cursor: pointer;
}

.control-close { background: #ff5f56; }
.control-minimize { background: #ffbd2e; }
.control-maximize { background: #27ca3f; }

.editor-title {
    color: #a0aec0;
    font-size: 0.9rem;
    margin-left: 1rem;
}

.editor-content {
    display: flex;
    background: #1e1e1e;
    color: #d4d4d4;
    font-size: 14px;
    line-height: 1.5;
}

.line-numbers {
    background: #252526;
    padding: 1rem 0.5rem;
    border-right: 1px solid #3c3c3c;
    color: #858585;
    text-align: right;
    user-select: none;
    min-width: 40px;
}

.line-numbers span {
    display: block;
    margin-bottom: 0.5rem;
}

.code-content {
    flex: 1;
    padding: 1rem;
}

.code-line {
    margin-bottom: 0.5rem;
    position: relative;
    min-height: 20px;
}

.code-text {
    color: #d4d4d4;
}

.cursor {
    color: #569cd6;
    animation: blink 1s infinite;
    margin-left: 2px;
}

.typing-line .code-text {
    overflow: hidden;
    white-space: nowrap;
    border-right: 2px solid transparent;
}

/* Syntax highlighting */
.code-line:nth-child(1) .code-text { color: #569cd6; } /* pipeline */
.code-line:nth-child(2) .code-text { color: #d4d4d4; } /* agent any */
.code-line:nth-child(3) .code-text { color: #569cd6; } /* stages */
.code-line:nth-child(4) .code-text { color: #569cd6; } /* stage */
.code-line:nth-child(5) .code-text { color: #569cd6; } /* steps */
.code-line:nth-child(6) .code-text { color: #ce9178; } /* sh command */
.code-line:nth-child(7) .code-text { color: #569cd6; } /* closing brace */
.code-line:nth-child(8) .code-text { color: #569cd6; } /* closing brace */
.code-line:nth-child(9) .code-text { color: #569cd6; } /* stage */
.code-line:nth-child(10) .code-text { color: #569cd6; } /* steps */
.code-line:nth-child(11) .code-text { color: #ce9178; } /* sh command */
.code-line:nth-child(12) .code-text { color: #569cd6; } /* closing brace */
.code-line:nth-child(13) .code-text { color: #569cd6; } /* closing brace */
.code-line:nth-child(14) .code-text { color: #569cd6; } /* closing brace */
.code-line:nth-child(15) .code-text { color: #569cd6; } /* closing brace */

/* Code Editor Animations */
@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

@keyframes typewriter {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes fadeInLine {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Line reveal animation */
.code-line {
    animation: fadeInLine 0.5s ease-out forwards;
    opacity: 0;
}

.code-line:nth-child(1) { animation-delay: 0.1s; }
.code-line:nth-child(2) { animation-delay: 0.2s; }
.code-line:nth-child(3) { animation-delay: 0.3s; }
.code-line:nth-child(4) { animation-delay: 0.4s; }
.code-line:nth-child(5) { animation-delay: 0.5s; }
.code-line:nth-child(6) { animation-delay: 0.6s; }
.code-line:nth-child(7) { animation-delay: 0.7s; }
.code-line:nth-child(8) { animation-delay: 0.8s; }
.code-line:nth-child(9) { animation-delay: 0.9s; }
.code-line:nth-child(10) { animation-delay: 1.0s; }
.code-line:nth-child(11) { animation-delay: 1.1s; }
.code-line:nth-child(12) { animation-delay: 1.2s; }
.code-line:nth-child(13) { animation-delay: 1.3s; }
.code-line:nth-child(14) { animation-delay: 1.4s; }
.code-line:nth-child(15) { animation-delay: 1.5s; }

/* Enhanced hover effects */
.code-line:hover {
    background: rgba(96, 144, 240, 0.1);
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

/* Editor glow effect */
.code-editor::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(96, 144, 240, 0.05), transparent);
    border-radius: var(--radius);
    pointer-events: none;
    z-index: -1;
}

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

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    background: var(--brand-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Process Section */
.process-section {
    padding: 64px 0;
    background: var(--bg-soft);
    position: relative;
    z-index: 2;
}

.process-section h2 {
    font-weight: 700;
    font-size: 32px;
    margin: 0 0 24px;
    text-align: center;
}

.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--brand-blue), transparent);
    transform: translateX(-50%);
    opacity: 0.6;
    animation: timelineGlow 3s ease-in-out infinite;
}

.process-step {
    display: flex;
    align-items: center;
    margin-bottom: 2.5rem;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    animation: stepReveal 0.8s ease-out forwards;
}

.process-step:nth-child(1) { animation-delay: 0.1s; }
.process-step:nth-child(2) { animation-delay: 0.3s; }
.process-step:nth-child(3) { animation-delay: 0.5s; }
.process-step:nth-child(4) { animation-delay: 0.7s; }

.process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.process-step:nth-child(even) .step-content {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--brand-blue) 0%, #7ba3f2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 1.25rem;
    z-index: 2;
    position: relative;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(96, 144, 240, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: stepNumberFloat 3s ease-in-out infinite;
}

.step-number::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--brand-blue) 0%, #7ba3f2 100%);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.3;
    animation: stepNumberPulse 2s ease-in-out infinite;
}

.step-number:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 40px rgba(96, 144, 240, 0.4);
    border-color: rgba(255, 255, 255, 0.4);
}

.step-number:hover::before {
    animation: stepNumberPulse 0.6s ease-in-out infinite;
}

.step-content {
    flex: 1;
    padding: 0 2rem;
    text-align: center;
    background: var(--card);
    backdrop-filter: blur(10px);
    border-radius: var(--radius);
    padding: 1.5rem;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.step-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(96, 144, 240, 0.1), transparent);
    transition: left 0.6s ease;
}

.step-content:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(16, 24, 40, 0.15);
    border-color: var(--brand-blue);
}

.step-content:hover::before {
    left: 100%;
}

.step-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.step-content p {
    color: var(--muted);
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Features Section */
.features-section {
    padding: 64px 0;
    background: var(--bg-soft);
    position: relative;
    z-index: 2;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--brand-blue);
    transform: scaleX(0);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(16,24,40,0.12);
}

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

.feature-card:hover .feature-icon {
    background: rgba(96, 144, 240, 0.1);
    border-color: var(--brand-blue);
}

.feature-card:hover .feature-icon svg {
    color: var(--brand-blue);
    transform: translateY(-2px);
}

.feature-icon {
    width: 36px;
    height: 36px;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    border: 1px solid var(--line);
    background: rgba(96, 144, 240, 0.05);
}

.feature-icon svg {
    width: 20px;
    height: 20px;
    color: var(--brand-blue);
    stroke-width: 1.5;
}

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

.feature-card p {
    color: var(--muted);
    line-height: 1.6;
}

/* Stats Section */
.stats-section {
    padding: 64px 0;
    background: var(--bg);
    position: relative;
    z-index: 2;
}

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

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: var(--radius);
    border: 1px solid var(--line);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(16,24,40,0.12);
}

.stat-icon {
    font-size: 3rem;
    font-weight: 800;
    color: var(--brand-blue);
    margin-bottom: 1rem;
}

.stat-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.stat-item p {
    color: var(--muted);
    line-height: 1.6;
}

/* Technologies Section */
.technologies-section {
    padding: 64px 0;
    background: var(--bg-soft);
    position: relative;
    z-index: 2;
}

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

.tech-item {
    text-align: center;
    padding: 1.5rem 1rem;
    border-radius: var(--radius);
    transition: var(--transition);
    background: var(--card);
    backdrop-filter: blur(5px);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.tech-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(16,24,40,0.12);
}

.tech-item img {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

/* Special icon sizes for specific technologies */
.tech-item img[src*="kubernetes.svg"],
.tech-item img[src*="nexus.svg"] {
    width: 40px;
    height: 40px;
}

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

.tech-item p {
    color: var(--muted);
    font-size: 0.85rem;
    line-height: 1.4;
}

/* Clients Section */
.clients-section {
    padding: 64px 0;
    background: var(--bg);
    position: relative;
    z-index: 2;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    align-items: center;
}

.client-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: var(--radius);
    border: 1px solid var(--line);
    transition: var(--transition);
}

.client-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(16,24,40,0.12);
}

.client-item img {
    max-width: 150px;
    height: auto;
    filter: grayscale(100%);
    transition: var(--transition);
}

.client-item:hover img {
    filter: grayscale(0%);
}

/* CTA Section */
.cta-section {
    padding: 64px 0;
    background: var(--bg-soft);
    color: var(--text);
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-content {
    background: var(--card);
    border-radius: var(--radius);
    padding: 3rem 2rem;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
    position: relative;
    overflow: hidden;
}

.cta-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--brand-blue);
    transform: scaleX(0);
    transition: var(--transition);
}

.cta-content:hover::before {
    transform: scaleX(1);
}

.cta-content h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
    color: var(--text);
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--muted);
    line-height: 1.6;
}

/* Footer */
.landing-footer {
    background: var(--gradient-footer);
    color: white;
    padding: 4rem 0 2rem;
    position: relative;
    z-index: 2;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--brand-blue);
}

.footer-section ul {
    list-style: none;
}

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

.footer-section ul li a {
    color: #b0b0b0;
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--brand-blue);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    text-align: center;
    color: #888888;
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(12px) scale(0.996);
    transition: all 0.8s ease-out;
}

.reveal.revealed,
.reveal.is-visible,
.reveal.animate {
    opacity: 1;
    transform: none;
}

/* Обратная совместимость для класса animate */
.animate {
    opacity: 1;
    transform: none;
}

/* Responsive Design */
@media (max-width: 1024px) and (min-width: 769px) {
    /* Tablet specific styles */
    .process-timeline {
        max-width: 700px;
    }
    
    .step-content {
        padding: 1.25rem;
    }
    
    .step-number {
        width: 55px;
        height: 55px;
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Process Section Mobile Styles */
    .process-timeline {
        padding-left: 50px;
        position: relative;
    }
    
    .process-timeline::before {
        left: 30px;
        transform: none;
    }
    
    .process-step {
        flex-direction: row;
        text-align: left;
        align-items: flex-start;
        margin-bottom: 2rem;
        padding-left: 0;
    }
    
    .process-step:nth-child(even) {
        flex-direction: row;
        text-align: left;
        align-items: flex-start;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1rem;
        margin-right: 1rem;
        flex-shrink: 0;
        position: relative;
        z-index: 3;
    }
    
    .step-content {
        flex: 1;
        padding: 1.5rem;
        margin: 0;
        text-align: left;
        background: var(--card);
        backdrop-filter: blur(10px);
        border-radius: var(--radius);
        border: 1px solid var(--line);
        box-shadow: var(--shadow);
    }
    
    .step-content h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .step-content p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .navbar-nav {
        display: none;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    /* Process Section for Small Mobile */
    .process-timeline {
        padding-left: 40px;
    }
    
    .process-timeline::before {
        left: 20px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
        margin-right: 0.75rem;
    }
    
    .step-content {
        padding: 1rem;
    }
    
    .step-content h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .step-content p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
.btn:focus,
.nav-link:focus {
    outline: 2px solid var(--brand-blue);
    outline-offset: 2px;
}

/* Process Section Animations */
@keyframes stepNumberFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-3px); }
}

@keyframes stepNumberPulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 0.3;
    }
    50% { 
        transform: scale(1.1);
        opacity: 0.6;
    }
}

@keyframes stepReveal {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes timelineGlow {
    0%, 100% { 
        opacity: 0.6;
        box-shadow: 0 0 10px rgba(96, 144, 240, 0.3);
    }
    50% { 
        opacity: 0.8;
        box-shadow: 0 0 20px rgba(96, 144, 240, 0.5);
    }
}
