/* ============================================
   Reset & Base Styles
   ============================================ */

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

:root {
    --color-bg: #101010;
    --color-bg-alt: #111111;
    --color-text: #ffffff;
    --color-text-muted: #aaaaaa;
    --color-accent: #ff8c00;
    --color-border: rgba(255, 255, 255, 0.1);
    --color-grid: rgba(37, 37, 37, 0.5);
    
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-mono: 'SF Mono', 'Monaco', 'Cascadia Code', 'Roboto Mono', 'Consolas', 'Courier New', monospace;
    
    --font-weight-light: 300;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;
    
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    --container-max-width: 1200px;
    --container-padding: 1.5rem;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    font-weight: var(--font-weight-regular);
    background-color: var(--color-bg);
    background-image: 
        linear-gradient(var(--color-grid) 1px, transparent 1px),
        linear-gradient(90deg, var(--color-grid) 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: 0 0;
    color: var(--color-text);
    line-height: 1.7;
    letter-spacing: -0.01em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(var(--color-grid) 1px, transparent 1px),
        linear-gradient(90deg, var(--color-grid) 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: 0 0;
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
}

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

.visually-hidden-focusable:focus {
    position: fixed;
    top: 1rem;
    left: 1rem;
    width: auto;
    height: auto;
    padding: 0.5rem 1rem;
    margin: 0;
    overflow: visible;
    clip: auto;
    white-space: normal;
    background: var(--color-bg-alt);
    color: var(--color-text);
    z-index: 9999;
    border: 2px solid var(--color-accent);
}

/* ============================================
   Container
   ============================================ */

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ============================================
   Navigation
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    backdrop-filter: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(16, 16, 16, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.2s;
}

.navbar-brand:hover {
    opacity: 0.8;
}

.navbar-brand img {
    height: 48px;
    width: auto;
}

.navbar-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.navbar-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text);
    transition: all 0.3s ease;
}

.navbar-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.navbar-toggle.active span:nth-child(2) {
    opacity: 0;
}

.navbar-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-link {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: var(--font-weight-medium);
    letter-spacing: -0.01em;
    transition: color 0.2s;
    position: relative;
}

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

.nav-link-cta {
    background: var(--color-text);
    color: var(--color-bg);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: var(--font-weight-medium);
}

.nav-link-cta:hover {
    background: var(--color-text-muted);
    color: var(--color-bg);
}

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

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    padding-bottom: var(--spacing-xl);
    position: relative;
    overflow: hidden;
    background-color: transparent;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(255, 140, 0, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    text-align: center;
}

.hero-title-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.hero-icon {
    width: auto;
    height: clamp(150px, 18vw, 250px);
    flex-shrink: 0;
    margin-top: 0;
    filter: brightness(0) invert(1);
    align-self: flex-start;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: var(--font-weight-extrabold);
    line-height: 1.1;
    margin: 0;
    letter-spacing: -0.03em;
    color: var(--color-text);
    text-align: left;
}

.hero-tagline {
    display: inline-block;
    padding: 0.5rem 1rem;
    border: 1px solid var(--color-text);
    font-size: 0.75rem;
    font-weight: var(--font-weight-medium);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 3rem;
    color: var(--color-text);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: var(--font-weight-extrabold);
    line-height: 1.1;
    margin: 0;
    letter-spacing: -0.03em;
    color: var(--color-text);
    text-align: left;
}

.hero-title .highlight {
    color: var(--color-accent);
    font-weight: var(--font-weight-extrabold);
}

.hero-subtitle {
    font-family: var(--font-mono);
    font-size: clamp(0.875rem, 1.75vw, 1rem);
    font-weight: var(--font-weight-regular);
    color: var(--color-text);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    letter-spacing: 0.02em;
    opacity: 0.9;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    background: var(--color-text);
    color: var(--color-bg);
    text-decoration: none;
    border-radius: 4px;
    font-weight: var(--font-weight-semibold);
    font-size: 1rem;
    letter-spacing: -0.01em;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: var(--color-text-muted);
    transform: translateY(-1px);
}

.btn-primary {
    background: var(--color-accent);
    color: #000;
}

.btn-primary:hover {
    background: #ffa500;
    color: #000;
}

.btn-arrow {
    font-size: 1.125rem;
    line-height: 1;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 5rem;
    padding-top: 3rem;
    border-top: 1px solid var(--color-border);
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-family: var(--font-mono);
    font-size: 1.5rem;
    font-weight: var(--font-weight-extrabold);
    line-height: 1;
    margin-bottom: 0.75rem;
    letter-spacing: 0.02em;
    color: var(--color-text);
}

.stat-label {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: var(--font-weight-regular);
    color: var(--color-text-muted);
    letter-spacing: 0.02em;
}

/* ============================================
   Sections
   ============================================ */

main {
    position: relative;
    z-index: 1;
}

.section {
    padding: var(--spacing-xl) 0;
    position: relative;
    z-index: 1;
}

.section-alt {
    background: var(--color-bg-alt);
}

.section-header {
    margin-bottom: 4rem;
    text-align: left;
    max-width: 100%;
}

.section-title {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: var(--font-weight-extrabold);
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: -0.03em;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.section-number {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: var(--font-weight-extrabold);
    color: var(--color-accent);
    letter-spacing: 0.02em;
}

.section-subtitle {
    font-family: var(--font-sans);
    font-size: 1.125rem;
    font-weight: var(--font-weight-regular);
    color: rgba(255, 140, 0, 0.7);
    letter-spacing: -0.01em;
}

/* ============================================
   Services Grid
   ============================================ */

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

.service-card {
    padding: 2rem;
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-left: 3px solid var(--color-accent);
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    border-color: var(--color-text);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.service-icon {
    width: 32px;
    height: 32px;
    background: var(--color-accent);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    flex-shrink: 0;
}

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

.service-icon span {
    color: #000;
    font-size: 16px;
}

.service-title {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    margin: 0;
    letter-spacing: -0.02em;
    color: var(--color-text);
}

.service-description {
    color: var(--color-text-muted);
    font-weight: var(--font-weight-regular);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    letter-spacing: -0.01em;
    font-size: 0.9375rem;
}

.service-tags {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.5rem;
    margin-top: 1.5rem;
    overflow-x: auto;
}

.service-tag {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-radius: 4px;
    color: var(--color-text-muted);
    font-size: 0.75rem;
    font-weight: var(--font-weight-regular);
    letter-spacing: -0.01em;
    white-space: nowrap;
    flex-shrink: 0;
}

/* ============================================
   Approach Section
   ============================================ */

.approach-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.approach-left-column {
    display: flex;
    flex-direction: column;
}

.section-header-left {
    max-width: 100%;
    margin-bottom: 2rem;
}

.approach-content {
    max-width: 100%;
}

.approach-text {
    font-size: 1.125rem;
    font-weight: var(--font-weight-regular);
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--color-text-muted);
    letter-spacing: -0.01em;
}

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

.approach-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--color-text-muted);
}

.check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--color-border);
    border-radius: 4px;
    color: var(--color-accent);
    font-size: 0.875rem;
    font-weight: var(--font-weight-bold);
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.code-block {
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.code-header {
    background: var(--color-bg);
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    gap: 1rem;
}

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

.code-control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}

.code-control-close {
    background: #ff5f56;
}

.code-control-minimize {
    background: #ffbd2e;
}

.code-control-maximize {
    background: #27c93f;
}

.code-label {
    font-family: var(--font-mono);
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    flex: 1;
    text-align: center;
}

.code-content {
    padding: 1.5rem;
    overflow-x: auto;
    background: var(--color-bg-alt);
}

.code-content pre {
    margin: 0;
    font-family: var(--font-mono);
    font-size: 0.875rem;
    font-weight: var(--font-weight-regular);
    line-height: 1.7;
    color: var(--color-text);
    letter-spacing: 0;
}

.code-content code {
    color: var(--color-text);
}

.code-keyword {
    color: #c792ea;
    font-weight: var(--font-weight-medium);
}

.code-variable {
    color: #82aaff;
}

.code-property {
    color: #7fdbca;
}

.code-string {
    color: #c3e88d;
}

.code-comment {
    color: #546e7a;
    font-style: italic;
}

.code-prompt {
    color: #82aaff;
}

.code-check {
    color: var(--color-accent);
    margin-right: 0.5rem;
}

/* Typewriter Cursor */
.typewriter-cursor {
    display: inline-block;
    width: 2px;
    height: 1.2em;
    background: var(--color-accent);
    margin-left: 2px;
    animation: blink 1s infinite;
    vertical-align: text-bottom;
}

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

/* Hide cursor when typing is complete */
.typewriter-complete .typewriter-cursor {
    display: none;
}

/* ============================================
   Process Steps - Vertical Timeline
   ============================================ */

.timeline-container {
    position: relative;
    max-width: 900px;
    margin: 3rem auto 0;
    padding: 0 2rem;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--color-border);
    transform: translateX(-50%);
}

.process-steps {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.process-step {
    position: relative;
    width: 45%;
    display: flex;
    align-items: center;
}

.process-step.step-left {
    align-self: flex-start;
    flex-direction: row;
}

.process-step.step-right {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.step-left::before {
    content: '';
    position: absolute;
    right: 0;
    top: 1.5rem;
    width: calc(50% - 45%);
    height: 2px;
    background: var(--color-border);
    z-index: 1;
}

.step-right::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1.5rem;
    width: calc(50% - 45%);
    height: 2px;
    background: var(--color-border);
    z-index: 1;
}

.step-card {
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 1.5rem;
    width: 100%;
    position: relative;
}

.step-left .step-card {
    text-align: right;
}

.step-right .step-card {
    text-align: left;
}


.step-title {
    font-size: 1.25rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
    color: var(--color-text);
    display: inline-flex;
    align-items: baseline;
    gap: 0.5rem;
}

.step-left .step-title {
    flex-direction: row-reverse;
}

.step-number {
    font-family: var(--font-mono);
    font-size: 1.25rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-accent);
    letter-spacing: 0.02em;
}

.step-description {
    color: var(--color-text-muted);
    margin-bottom: 1rem;
    line-height: 1.7;
    font-size: 0.9375rem;
    letter-spacing: -0.01em;
}

.step-duration {
    display: inline-block;
    font-size: 0.6875rem;
    color: var(--color-text-muted);
    padding: 0.25rem 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-border);
    border-radius: 4px;
    margin-top: 0.5rem;
}

.step-left .step-duration {
    float: left;
}

.step-right .step-duration {
    float: right;
}

/* ============================================
   About Section
   ============================================ */

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-text {
    margin-bottom: 3rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-weight: var(--font-weight-regular);
    line-height: 1.8;
    color: var(--color-text-muted);
    letter-spacing: -0.01em;
}

.toolkit {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 8px;
}

.toolkit-title {
    font-size: 1.25rem;
    font-weight: var(--font-weight-semibold);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.toolkit-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.toolkit-list li {
    color: var(--color-text-muted);
    padding-left: 1.5rem;
    position: relative;
}

.toolkit-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-text);
}

.quote {
    margin: 3rem 0 0;
    padding: 2rem;
    border-left: 3px solid var(--color-text);
    background: var(--color-bg);
}

.quote p {
    font-size: 1.125rem;
    font-weight: var(--font-weight-regular);
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.8;
    letter-spacing: -0.01em;
}

.quote cite {
    display: block;
    font-size: 0.875rem;
    color: var(--color-text-muted);
    font-style: normal;
}

/* ============================================
   CTA Section
   ============================================ */

.cta-section {
    text-align: center;
    padding: var(--spacing-xl) 0;
}

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

.cta-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 140, 0, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: var(--color-text);
}

.cta-icon svg {
    width: 32px;
    height: 32px;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: var(--font-weight-extrabold);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.03em;
    color: var(--color-text);
}

.cta-title-accent {
    color: var(--color-accent);
}

.cta-text {
    font-family: var(--font-mono);
    font-size: clamp(0.875rem, 1.75vw, 1rem);
    font-weight: var(--font-weight-regular);
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    letter-spacing: 0.02em;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-accent);
    font-size: 0.9375rem;
    font-weight: var(--font-weight-regular);
}

.cta-feature svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* ============================================
   Footer
   ============================================ */

.footer {
    padding: 3rem 0;
    border-top: 1px solid var(--color-border);
    background: var(--color-bg-alt);
    position: relative;
    z-index: 1;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    color: var(--color-text-muted);
    font-size: 0.875rem;
}

.footer-nav {
    display: flex;
    gap: 2rem;
}

.footer-nav a {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
}

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

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

@media (max-width: 768px) {
    :root {
        --container-padding: 1rem;
        --spacing-lg: 3rem;
        --spacing-xl: 4rem;
    }

    .hero-tagline {
        font-size: 0.6875rem;
        padding: 0.4rem 0.8rem;
        margin-bottom: 2rem;
    }

    .hero-title-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .hero-icon {
        width: auto;
        height: clamp(100px, 25vw, 150px);
        margin-top: 0;
    }

    .hero-title {
        text-align: center;
    }

    .hero-stats {
        gap: 2rem;
        margin-top: 3rem;
    }

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

    .section-header {
        text-align: center;
    }

    .section-title {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

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

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

    .section-header-left {
        margin-bottom: 1.5rem;
    }

    .approach-content {
        max-width: 100%;
    }

    .navbar-toggle {
        display: flex;
    }

    .navbar-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--color-bg-alt);
        flex-direction: column;
        align-items: flex-start;
        padding: 5rem 2rem 2rem;
        gap: 1.5rem;
        border-left: 1px solid var(--color-border);
        transition: right 0.3s ease;
        z-index: 1000;
    }

    .navbar-menu.active {
        right: 0;
    }

    .nav-link-cta {
        width: 100%;
        text-align: center;
    }

    .hero {
        padding-top: 100px;
        min-height: auto;
    }

    .hero-stats {
        gap: 2rem;
    }

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

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

    .timeline-container {
        padding: 0 1rem;
    }

    .process-step {
        width: 100%;
        align-self: center !important;
        flex-direction: row !important;
    }

    .step-card {
        margin-left: 1.5rem;
        text-align: left !important;
    }

    .step-title {
        flex-direction: row !important;
    }

    .step-duration {
        float: right !important;
    }

    .toolkit-list {
        grid-template-columns: 1fr;
    }

    .cta-features {
        flex-direction: column;
        gap: 1.5rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-nav {
        flex-direction: column;
        gap: 1rem;
    }
}

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

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

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

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

/* ============================================
   Animations
   ============================================ */

/* Base Animation States - Elements start hidden */
.animate-on-scroll {
    opacity: 0;
    will-change: opacity, transform;
}

/* Fade In Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes rocketFlyIn {
    0% {
        opacity: 0;
        transform: translateY(calc(100vh + 200px)) translateX(-30px) rotate(-10deg) scale(0.7);
    }
    40% {
        opacity: 0.8;
        transform: translateY(calc(30vh)) translateX(5px) rotate(3deg) scale(1.05);
    }
    70% {
        opacity: 1;
        transform: translateY(-20px) translateX(-2px) rotate(-1deg) scale(1.02);
    }
    100% {
        opacity: 1;
        transform: translateY(0) translateX(0) rotate(0deg) scale(1);
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

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

.fade-in-down {
    animation: fadeInDown 0.8s ease-out forwards;
}

.fade-in-left {
    animation: fadeInLeft 0.8s ease-out forwards;
}

.fade-in-right {
    animation: fadeInRight 0.8s ease-out forwards;
}

.fade-in-scale {
    animation: fadeInScale 0.6s ease-out forwards;
}

/* Hero Section Initial Animations */
.hero-tagline {
    opacity: 0;
    animation: fadeInDown 0.6s ease-out 0.2s forwards;
}

.hero-title-wrapper {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
}

.hero-icon {
    position: relative;
    opacity: 0;
    animation: rocketFlyIn 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s forwards;
}

.hero-subtitle {
    opacity: 0;
    animation: fadeIn 0.6s ease-out 0.8s forwards;
}

.hero .btn {
    opacity: 0;
    animation: fadeInScale 0.6s ease-out 1s forwards;
}

.hero-stats {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 1.2s forwards;
}

.stat-item {
    opacity: 0;
}

.stat-item:nth-child(1) {
    animation: fadeIn 0.6s ease-out 1.4s forwards;
}

.stat-item:nth-child(2) {
    animation: fadeIn 0.6s ease-out 1.6s forwards;
}

/* Accessibility: Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .animate-on-scroll {
        opacity: 1;
    }
    
    .hero-tagline,
    .hero-title-wrapper,
    .hero-icon,
    .hero-subtitle,
    .hero .btn,
    .hero-stats,
    .stat-item {
        opacity: 1;
        animation: none;
    }
}

/* ============================================
   Print Styles
   ============================================ */

@media print {
    .navbar,
    .footer {
        display: none;
    }

    .hero {
        min-height: auto;
        page-break-after: always;
    }

    .section {
        page-break-inside: avoid;
    }
}
