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

/* Hide all scrollbars globally */
* {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

*::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
    width: 0;
    height: 0;
    background: transparent;
}

html, body {
    overflow-x: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

:root {
    --ocean-deep: #001f3f;
    --ocean-dark: #003d7a;
    --ocean-medium: #0066cc;
    --ocean-light: #0099ff;
    --ocean-surface: #00bfff;
    --ocean-foam: #e0f7ff;
    --accent-teal: #00d4aa;
    --accent-cyan: #00ffff;
    --text-light: #ffffff;
    --text-dark: #1a1a1a;
    --text-gray: #6b7280;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background: linear-gradient(180deg, var(--ocean-surface) 0%, var(--ocean-deep) 100%);
    overflow-x: hidden;
}

/* Depth Bar */
.depth-bar {
    position: fixed;
    left: 0;
    top: 0;
    width: 80px;
    height: 100vh;
    z-index: 1000;
    background: linear-gradient(180deg, 
        var(--ocean-surface) 0%,
        var(--ocean-light) 20%,
        var(--ocean-medium) 40%,
        var(--ocean-dark) 60%,
        var(--ocean-deep) 100%);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 120px;
    box-shadow: 2px 0 20px rgba(0, 0, 0, 0.3);
}

.depth-indicator {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.depth-markers {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.depth-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light);
    background: rgba(0, 0, 0, 0.3);
    padding: 8px 12px;
    border-radius: 20px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.depth-line {
    width: 3px;
    height: calc(100vh - 200px);
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 0.8) 0%,
        rgba(255, 255, 255, 0.6) 25%,
        rgba(255, 255, 255, 0.4) 50%,
        rgba(255, 255, 255, 0.2) 75%,
        rgba(255, 255, 255, 0.1) 100%);
    border-radius: 2px;
    position: relative;
}

.depth-line::after {
    content: '';
    position: absolute;
    top: var(--indicator-top, 0px);
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 40px;
    background: var(--accent-cyan);
    border-radius: 4px;
    box-shadow: 0 0 20px var(--accent-cyan);
    transition: top 0.1s ease;
    z-index: 10;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 80px;
    right: 0;
    height: 80px;
    background: rgba(0, 31, 63, 0.8);
    backdrop-filter: blur(20px);
    z-index: 999;
    display: flex;
    align-items: center;
    padding: 0 40px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.nav-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-cyan);
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 40px;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-cyan);
    transition: width 0.3s ease;
}

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

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 40px 40px;
    margin-left: 80px;
    overflow: hidden;
    z-index: 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background: linear-gradient(135deg, var(--ocean-surface) 0%, var(--ocean-medium) 50%, var(--ocean-deep) 100%);
    overflow: hidden;
    pointer-events: none;
}

.ocean-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1505142468610-359e7d316be0?w=1920&h=1080&fit=crop&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.35;
    z-index: 0;
    filter: brightness(0.9) contrast(1.1);
}

.wave-animation {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23001f3f' fill-opacity='0.4' d='M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") repeat-x;
    background-size: 1440px 200px;
    animation: wave 20s linear infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes wave {
    0% {
        background-position-x: 0;
    }
    100% {
        background-position-x: 1440px;
    }
}

.hero-content {
    max-width: 1000px;
    text-align: center;
    z-index: 1;
    animation: fadeInUp 1s ease;
    position: relative;
    margin: 0 auto;
}

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

.hero-title {
    font-size: clamp(36px, 6vw, 72px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 30px;
    color: var(--text-light);
}

.title-line {
    display: block;
}

.hero-subtitle {
    font-size: clamp(18px, 2.5vw, 28px);
    font-weight: 400;
    margin-bottom: 50px;
    color: var(--ocean-foam);
    line-height: 1.6;
}

.hero-cta {
    margin-top: 60px;
    margin-bottom: 80px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
}

.company-name {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
    color: var(--accent-cyan);
    margin-bottom: 15px;
}

.company-tagline {
    font-size: clamp(16px, 2vw, 22px);
    color: var(--text-light);
    line-height: 1.6;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    z-index: 10;
    pointer-events: none;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border-right: 3px solid var(--text-light);
    border-bottom: 3px solid var(--text-light);
    transform: rotate(45deg);
}

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

/* Section Styles */
section {
    padding: 120px 40px;
    margin-left: 80px;
    position: relative;
    min-height: auto;
    overflow: hidden;
    isolation: isolate;
    clear: both;
    scroll-margin-top: 80px;
}

.hero {
    min-height: 100vh;
    padding-bottom: 40px;
    position: relative;
    z-index: 1;
    margin-bottom: 0;
    isolation: isolate;
    overflow: hidden;
    contain: layout style paint;
}

.section-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-light);
}

.section-intro {
    font-size: clamp(18px, 2.5vw, 24px);
    text-align: center;
    margin-bottom: 80px;
    color: var(--ocean-foam);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* Remove section intro for problem section */
.problem .section-intro {
    display: none;
}

/* Problem Section */
.problem {
    background: linear-gradient(180deg, var(--ocean-medium) 0%, var(--ocean-dark) 100%);
    position: relative;
    z-index: 2;
    margin-top: 0;
    isolation: isolate;
    padding-top: 120px;
    contain: layout style paint;
}

.problem-visual {
    width: 100%;
    max-width: 1200px;
    height: 300px;
    margin: 0 auto 60px;
    overflow: hidden;
    position: relative;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.problem-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    filter: brightness(0.8) contrast(1.1);
    transition: transform 0.5s ease;
}

.problem-visual:hover .problem-hero-image {
    transform: scale(1.05);
}

.problem::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0;
    background: transparent;
    z-index: -1;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.problem-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
}

.problem-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 12px;
    transition: all 0.3s ease;
}

.problem-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--text-light);
    filter: brightness(1.2);
}

.problem-card:hover .problem-icon {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.problem-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--accent-cyan);
}

.problem-card p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--ocean-foam);
    font-weight: 500;
}

.problem-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.stat-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.stat-number {
    font-size: 64px;
    font-weight: 800;
    color: var(--accent-cyan);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 8px;
}

.stat-detail {
    font-size: 14px;
    color: var(--ocean-foam);
    line-height: 1.4;
}

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

.feature-list li {
    font-size: 18px;
    line-height: 2;
    color: var(--ocean-foam);
    padding-left: 30px;
    position: relative;
    margin-bottom: 12px;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-cyan);
    font-weight: 700;
    font-size: 20px;
}

/* Solution Section */
.solution {
    background: linear-gradient(180deg, var(--ocean-deep) 0%, #000814 100%);
    position: relative;
    z-index: 4;
    margin-top: 0;
    isolation: isolate;
}

.solution::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0;
    background: transparent;
    z-index: -1;
}

.solution-steps {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-top: 60px;
}

.solution-step {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    padding: 50px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.solution-step:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.step-number {
    font-size: 72px;
    font-weight: 800;
    color: var(--accent-cyan);
    opacity: 0.3;
    line-height: 1;
    min-width: 120px;
}

.step-content h3 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-light);
}

.step-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--ocean-foam);
}

.step-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 20px;
}

.step-text {
    display: flex;
    flex-direction: column;
}

.step-image {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.material-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    min-height: 200px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
    object-fit: cover;
    background: rgba(255, 255, 255, 0.05);
}

.material-image:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.image-caption {
    margin-top: 12px;
    font-size: 14px;
    color: var(--ocean-foam);
    font-style: italic;
    text-align: center;
}

.solution-highlight {
    margin-top: 80px;
    padding: 50px;
    background: rgba(0, 212, 170, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 2px solid var(--accent-teal);
    text-align: center;
}

.highlight-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: center;
}

.highlight-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.highlight-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-image:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.highlight-text {
    display: flex;
    align-items: center;
}

.highlight-text h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-cyan);
    margin-bottom: 15px;
}

.highlight-text p {
    font-size: 20px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 15px;
}

.highlight-text p:last-child {
    font-size: 18px;
    color: var(--ocean-foam);
    margin-bottom: 0;
}

/* Vision Section */
.vision {
    background: linear-gradient(180deg, var(--ocean-dark) 0%, var(--ocean-deep) 100%);
    position: relative;
    z-index: 3;
    margin-top: 0;
    isolation: isolate;
    contain: layout style paint;
}

.vision-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.vision-text h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-cyan);
    margin-top: 40px;
    margin-bottom: 20px;
}

.vision-text h3:first-child {
    margin-top: 0;
}

.vision-text p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--ocean-foam);
    margin-bottom: 30px;
}

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

.values-list li {
    font-size: 18px;
    line-height: 2;
    color: var(--ocean-foam);
    padding-left: 30px;
    position: relative;
    margin-bottom: 15px;
}

.values-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-cyan);
    font-weight: 700;
    font-size: 24px;
}

.vision-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.vision-image {
    width: 100%;
    max-width: 500px;
    height: 600px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

/* Contact Section */
.contact {
    background: #000814;
    position: relative;
    z-index: 5;
    margin-top: 0;
    isolation: isolate;
    contain: layout style paint;
}

.calendly-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: visible;
    position: relative;
}

.calendly-inline-widget {
    border-radius: 12px;
    width: 100% !important;
    height: 900px !important;
    overflow: visible !important;
    position: relative;
    display: block;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
}

.calendly-inline-widget::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    background: transparent !important;
}

.calendly-inline-widget iframe {
    border-radius: 12px;
    border: none !important;
    width: 100% !important;
    height: 100% !important;
    overflow: visible !important;
    display: block;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
}

.calendly-inline-widget iframe::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    background: transparent !important;
}

/* CTA Section */
.cta {
    background: linear-gradient(180deg, var(--ocean-deep) 0%, #000814 100%);
    position: relative;
    text-align: center;
    z-index: 4;
    margin-top: 0;
    isolation: isolate;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0;
    background: transparent;
    z-index: -1;
}

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

.cta-visual {
    margin-bottom: 50px;
    display: flex;
    justify-content: center;
}

.cta-image {
    width: 100%;
    max-width: 700px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.1);
    opacity: 0.9;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.cta-image:hover {
    transform: scale(1.02);
    opacity: 1;
}

.cta-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--text-light);
    line-height: 1.4;
}

.cta-subtitle {
    font-size: clamp(20px, 3vw, 28px);
    margin-bottom: 20px;
    color: var(--ocean-foam);
    line-height: 1.6;
}

.highlight {
    color: var(--accent-cyan);
    font-weight: 600;
}

.cta-message {
    font-size: clamp(18px, 2.5vw, 24px);
    margin-bottom: 50px;
    color: var(--text-light);
    font-weight: 500;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: var(--accent-cyan);
    color: var(--ocean-deep);
    border: 2px solid var(--accent-cyan);
}

.btn-primary:hover {
    background: transparent;
    color: var(--accent-cyan);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3);
}

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

.btn-secondary:hover {
    background: var(--text-light);
    color: var(--ocean-deep);
    transform: translateY(-3px);
}

/* Footer */
.footer {
    background: #000814;
    padding: 60px 40px 30px;
    margin-left: 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-brand h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-cyan);
    margin-bottom: 10px;
}

.footer-brand p {
    color: var(--text-gray);
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

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

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--text-gray);
    font-size: 14px;
}

.image-attribution {
    margin-top: 10px;
    font-size: 12px;
}

.image-attribution p {
    color: var(--text-gray);
    margin: 0;
}

.image-attribution a {
    color: var(--accent-cyan);
    text-decoration: none;
    transition: color 0.3s ease;
}

.image-attribution a:hover {
    color: var(--text-light);
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .depth-bar {
        width: 60px;
    }

    .navbar {
        left: 60px;
        padding: 0 20px;
        height: 70px;
    }

    .nav-links {
        gap: 20px;
        font-size: 14px;
    }

    .hero,
    section,
    .footer {
        margin-left: 60px;
    }

    .solution-step {
        flex-direction: column;
        padding: 30px;
    }

    .step-content-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .step-number {
        font-size: 48px;
        min-width: auto;
    }

    .step-image {
        order: -1;
    }

    .material-image {
        max-width: 100%;
    }

    .highlight-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .highlight-visual {
        order: -1;
    }

    .solution-highlight p {
        text-align: center;
    }

    .problem-visual {
        height: 250px;
    }

    .problem-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stat-number {
        font-size: 48px;
    }

    .stat-label {
        font-size: 18px;
    }

    .feature-list li {
        font-size: 16px;
    }

    .highlight-text h3 {
        font-size: 24px;
    }

    .highlight-text p {
        font-size: 16px;
    }

    .vision-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .vision-visual {
        order: -1;
    }

    .vision-text h3 {
        font-size: 24px;
    }

    .vision-text p,
    .values-list li {
        font-size: 16px;
    }

    .calendly-container {
        padding: 20px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    .problem-icon {
        width: 56px;
        height: 56px;
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .depth-bar {
        width: 50px;
    }

    .navbar {
        left: 50px;
    }

    .hero,
    section,
    .footer {
        margin-left: 50px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .nav-links {
        display: none;
    }

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

