/* Landing Page Styles - Diablo-inspired dark theme */

/* Import variables from main styles */
:root {
    --landing-gold: #e8c987;
    --landing-gold-dark: #b8924e;
    --landing-gold-light: #e4c680;
    --landing-red: #E89B3C;
    --landing-blue: #3a7afe;
}

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

/* Navigation */
.landing-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(12, 13, 16, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.nav-logo h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.25rem;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    margin: 0;
    transform: scaleY(1.10);
    background: linear-gradient(180deg, #f9e6c1 0%, #d8ae69 45%, #6e5940 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow:
        0 0 1px rgba(255, 255, 255, 0.1),
        0 2px 6px rgba(0, 0, 0, 0.6),
        0 0 12px rgba(255, 215, 130, 0.25),
        0 -2px 4px rgba(255, 255, 255, 0.08);
}

.nav-logo h1::before {
    content: "";
    position: absolute;
    inset: 50% auto auto 50%;
    transform: translate(-50%, -52%);
    width: 200%;
    height: 260%;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 40%, rgba(255, 195, 130, 0.12), transparent 70%);
    z-index: -1;
    pointer-events: none;
}

.nav-logo h1::after {
    content: "道";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -48%);
    font-size: 3.5rem;
    opacity: 0.03;
    color: #f2d399;
    pointer-events: none;
    font-family: 'Noto Serif JP', serif;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-menu li a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s ease;
    cursor: url('img/kunai-cursor-64.png') 6 5, auto;
}

.nav-menu li a:hover {
    color: var(--landing-gold);
    cursor: url('img/kunai-cursor-64-hover.png') 6 5, auto;
}

.nav-login {
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, var(--landing-gold), var(--landing-gold-dark));
    color: #2b1d0f;
    border-radius: 20px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.nav-login:hover {
    filter: brightness(1.1);
    box-shadow: 0 0 15px rgba(232, 201, 135, 0.4);
    cursor: url('img/hand-pointing-cursor.png') 6 5, pointer !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: transparent;
    border: none;
    cursor: url('img/kunai-cursor-64.png') 6 5, auto;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero * {
    box-sizing: border-box;
}

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

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.25) contrast(1.2);
    z-index: 1;
}

/* Drifting Smoke/Fog Effect - Cooled, muted brass tones */
.hero-smoke {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    z-index: 5;
    pointer-events: none;
    background: 
        radial-gradient(ellipse 800px 600px at 20% 30%, rgba(170, 160, 145, 0.25) 0%, rgba(170, 160, 145, 0.1) 35%, transparent 55%),
        radial-gradient(ellipse 900px 700px at 80% 70%, rgba(160, 150, 140, 0.22) 0%, rgba(160, 150, 140, 0.08) 35%, transparent 55%),
        radial-gradient(ellipse 700px 500px at 50% 50%, rgba(180, 170, 155, 0.2) 0%, rgba(180, 170, 155, 0.07) 35%, transparent 55%);
    animation: driftSmoke 60s ease-in-out infinite;
    mix-blend-mode: screen;
    opacity: 0.6;
}

.hero-smoke-1 {
    animation-delay: 0s;
    opacity: 0.5;
}

.hero-smoke-2 {
    animation-delay: -20s;
    opacity: 0.45;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background: 
        radial-gradient(ellipse 750px 800px at 70% 20%, rgba(165, 155, 140, 0.22) 0%, rgba(165, 155, 140, 0.08) 35%, transparent 55%),
        radial-gradient(ellipse 850px 600px at 30% 80%, rgba(175, 165, 150, 0.2) 0%, rgba(175, 165, 150, 0.07) 35%, transparent 55%);
    mix-blend-mode: overlay;
}

.hero-smoke-3 {
    animation-delay: -40s;
    opacity: 0.4;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background: 
        radial-gradient(ellipse 700px 550px at 60% 40%, rgba(160, 150, 138, 0.2) 0%, rgba(160, 150, 138, 0.07) 35%, transparent 55%),
        radial-gradient(ellipse 650px 750px at 40% 60%, rgba(170, 160, 148, 0.18) 0%, rgba(170, 160, 148, 0.06) 35%, transparent 55%);
    mix-blend-mode: soft-light;
}

@keyframes driftSmoke {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(3%, -2%) scale(1.03);
    }
    50% {
        transform: translate(-2%, 3%) scale(0.98);
    }
    75% {
        transform: translate(-3%, -1%) scale(1.01);
    }
}

/* Animated Vignette - Tightened glow radius, darker edges */
.hero-vignette {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    transform: translate(-50%, -50%);
    z-index: 6;
    pointer-events: none;
    background: radial-gradient(
        ellipse 75% 75% at center,
        transparent 0%,
        transparent 25%,
        rgba(12, 13, 16, 0.4) 45%,
        rgba(12, 13, 16, 0.7) 60%,
        rgba(8, 9, 10, 0.85) 75%,
        rgba(5, 6, 7, 0.95) 90%,
        rgba(0, 0, 0, 0.98) 100%
    );
    animation: pulseVignette 8s ease-in-out infinite;
}

@keyframes pulseVignette {
    0%, 100% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.85;
        transform: translate(-50%, -50%) scale(1.02);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(8, 9, 10, 0.55) 0%,
        rgba(10, 11, 12, 0.65) 30%,
        rgba(12, 13, 16, 0.7) 50%,
        rgba(12, 13, 16, 0.78) 100%
    );
    z-index: 4;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    padding: 2rem;
    text-align: center;
}

.hero-headline {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--landing-gold);
    margin-bottom: 1.5rem;
    text-shadow: 
        0 0 15px rgba(170, 160, 145, 0.3),
        0 4px 10px rgba(0, 0, 0, 0.9);
    line-height: 1.2;
}


.hero-subhead {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--landing-gold), var(--landing-gold-dark));
    color: #2b1d0f;
    padding: 14px 32px;
    border-radius: 28px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    text-decoration: none;
    cursor: url('img/kunai-cursor-64.png') 6 5, auto;
    box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.4),
        0 0 14px rgba(255, 210, 110, 0.25),
        inset 0 0 4px rgba(255, 255, 255, 0.3);
    transition: all 0.2s ease;
}

.btn-primary:hover {
    filter: brightness(1.08);
    transform: translateY(-2px);
    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(255, 210, 110, 0.35),
        inset 0 0 4px rgba(255, 255, 255, 0.3);
    cursor: url('img/hand-pointing-cursor.png') 6 5, pointer !important;
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 215, 130, 0.4);
    color: var(--landing-gold);
    padding: 14px 32px;
    border-radius: 28px;
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    cursor: url('img/kunai-cursor-64.png') 6 5, auto;
    transition: all 0.2s ease;
}

.btn-secondary:hover {
    background: rgba(255, 215, 130, 0.08);
    border-color: rgba(255, 215, 130, 0.7);
    transform: translateY(-2px);
    cursor: url('img/kunai-cursor-64-hover.png') 6 5, auto;
}

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

/* Section Titles */
.section-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--landing-gold);
    text-align: center;
    margin-bottom: 3rem;
    text-transform: uppercase;
}

/* How It Works */
.how-it-works {
    padding: 6rem 0;
    background: var(--bg-color);
}

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

.step-card {
    background: #171a22;
    border: 1px solid var(--panel-border);
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--panel-shadow);
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: rgba(232, 201, 135, 0.3);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(232, 201, 135, 0.1);
}

.step-number {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(232, 201, 135, 0.2);
    margin-bottom: 1rem;
    line-height: 1;
}

.step-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--landing-gold);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.step-description {
    color: #b2bac9;
    line-height: 1.6;
    font-size: 1rem;
}

/* Core Systems */
.core-systems {
    padding: 6rem 0;
    background: var(--bg-color-alt);
}

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

.system-card {
    background: var(--surface-color);
    border: 1px solid var(--panel-border);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--panel-shadow);
}

.system-card:hover {
    transform: translateY(-5px);
    border-color: rgba(232, 201, 135, 0.3);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(232, 201, 135, 0.1);
}

.system-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.system-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(84%) sepia(29%) saturate(562%) hue-rotate(5deg) brightness(95%) contrast(89%);
}

.system-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--landing-gold);
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.system-description {
    color: #b2bac9;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Story Block */
.story-block {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--bg-color-alt) 0%, var(--bg-color) 100%);
}

.story-content {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
}

.story-text {
    font-family: 'Noto Serif JP', serif;
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    line-height: 1.8;
    color: var(--text-primary);
    font-style: italic;
    padding: 3rem;
    background: rgba(21, 23, 31, 0.5);
    border: 1px solid rgba(232, 201, 135, 0.2);
    border-radius: 12px;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.5),
        inset 0 0 30px rgba(232, 201, 135, 0.05);
}

/* Social Proof */
.social-proof {
    padding: 6rem 0;
    background: var(--bg-color);
}

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

.testimonial-card {
    background: var(--surface-color);
    border: 1px solid var(--panel-border);
    border-radius: 12px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    box-shadow: var(--panel-shadow);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(232, 201, 135, 0.3);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(232, 201, 135, 0.1);
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #b2bac9;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    font-size: 0.95rem;
    color: var(--landing-gold);
    font-weight: 500;
    text-align: right;
}

/* Pricing */
.pricing {
    padding: 6rem 0;
    background: var(--bg-color-alt);
}

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

.pricing-card {
    background: var(--surface-color);
    border: 1px solid var(--panel-border);
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: var(--panel-shadow);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(232, 201, 135, 0.1);
}

.pricing-featured {
    border: 2px solid rgba(232, 201, 135, 0.4);
    box-shadow: 
        var(--panel-shadow),
        0 0 30px rgba(232, 201, 135, 0.2);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--landing-gold), var(--landing-gold-dark));
    color: #2b1d0f;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.pricing-toggle-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-top: 0.5rem;
}

.pricing-toggle-label {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.pricing-toggle-label.active {
    color: var(--landing-gold);
}

.pricing-toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
    cursor: url('img/kunai-cursor-64.png') 6 5, auto;
}

.pricing-toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(232, 201, 135, 0.3);
    transition: 0.3s;
    border-radius: 26px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: var(--landing-gold);
    transition: 0.3s;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.pricing-toggle-switch input:checked + .toggle-slider {
    background-color: rgba(232, 201, 135, 0.2);
    border-color: var(--landing-gold);
}

.pricing-toggle-switch input:checked + .toggle-slider:before {
    transform: translateX(24px);
}

.pricing-toggle-switch:hover .toggle-slider {
    border-color: var(--landing-gold);
    box-shadow: 0 0 10px rgba(232, 201, 135, 0.3);
}

.pricing-tier {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--landing-gold);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-price {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--landing-gold);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.pricing-period {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.pricing-savings {
    color: var(--landing-red);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

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

.pricing-features li {
    padding: 0.75rem 0;
    color: #b2bac9;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.pricing-features li:before {
    content: "✓ ";
    color: var(--landing-gold);
    font-weight: 600;
    margin-right: 0.5rem;
}

.pricing-btn {
    width: 100%;
    padding: 14px 32px;
    border-radius: 28px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    cursor: url('img/kunai-cursor-64.png') 6 5, auto;
    transition: all 0.2s ease;
}

.pricing-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 130, 0.3);
    color: var(--landing-gold);
}

.pricing-btn:hover {
    background: rgba(255, 215, 130, 0.1);
    border-color: rgba(255, 215, 130, 0.6);
    cursor: url('img/hand-pointing-cursor.png') 6 5, pointer !important;
}

.pricing-btn-primary {
    background: linear-gradient(135deg, var(--landing-gold), var(--landing-gold-dark));
    color: #2b1d0f;
    border: none;
    box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.4),
        0 0 14px rgba(255, 210, 110, 0.25),
        inset 0 0 4px rgba(255, 255, 255, 0.3);
}

.pricing-btn-primary:hover {
    filter: brightness(1.08);
    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(255, 210, 110, 0.35),
        inset 0 0 4px rgba(255, 255, 255, 0.3);
    cursor: url('img/hand-pointing-cursor.png') 6 5, pointer !important;
}

/* Final CTA */
.final-cta {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--bg-color) 0%, var(--bg-color-alt) 100%);
    text-align: center;
}

.cta-headline {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--landing-gold);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.cta-subhead {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

/* Footer */
.landing-footer {
    background: var(--bg-color);
    border-top: 1px solid var(--panel-border);
    padding: 4rem 0 2rem;
}

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

.footer-section h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--landing-gold);
    margin-bottom: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-section p {
    color: var(--text-secondary);
    line-height: 1.6;
}

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

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

.footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
    cursor: url('img/kunai-cursor-64.png') 6 5, auto;
}

.footer-section ul li a:hover {
    color: var(--landing-gold);
    cursor: url('img/kunai-cursor-64-hover.png') 6 5, auto;
}

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

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(12, 13, 16, 0.98);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        border-bottom: 1px solid var(--panel-border);
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-toggle {
        display: flex;
    }

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

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

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

    .hero-headline {
        font-size: 2rem;
    }

    .hero-subhead {
        font-size: 1rem;
    }

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

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }

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

    .systems-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .story-text {
        padding: 2rem 1.5rem;
        font-size: 1rem;
    }

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

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .nav-container {
        padding: 1rem;
    }

    .hero-content {
        padding: 1rem;
    }

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

    .step-card,
    .system-card,
    .testimonial-card,
    .pricing-card {
        padding: 1.5rem;
    }
}
