/* MyButler Landing Page - Creative & Bold */
/* Primary: #a11b3d | Font: Figtree */
/* Inspired by minimalist modern design with sophisticated animations */

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

:root {
    --primary: #a11b3d;
    --primary-dark: #7d1530;
    --primary-light: #d4365a;
    --primary-lighter: #f9e8ec;
    --text-primary: #1a1a1a;
    --text-secondary: #666666;
    --text-light: #999999;
    --background: #ffffff;
    --background-alt: #faf7f8;
    --background-dark: #1a1a1a;
    --font-primary: 'Figtree', -apple-system, BlinkMacSystemFont, sans-serif;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-primary);
    background-color: var(--background);
    color: var(--text-primary);
    line-height: 1.6;
    font-weight: 400;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background-color: var(--primary);
    color: #ffffff;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--background);
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-image {
    height: 45px;
    width: auto;
    display: block;
}

/* Navigation */
.nav-menu {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 101;
}

.hamburger {
    width: 24px;
    height: 2px;
    background-color: var(--text-primary);
    position: relative;
    transition: background-color 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--text-primary);
    transition: transform 0.3s ease;
}

.hamburger::before {
    top: -7px;
}

.hamburger::after {
    top: 7px;
}

.mobile-menu-toggle.active .hamburger {
    background-color: transparent;
}

.mobile-menu-toggle.active .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.mobile-menu-toggle.active .hamburger::after {
    transform: rotate(-45deg);
    top: 0;
}

/* Smooth Animations & Transitions */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

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

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

/* Fade-in on scroll classes - CodeSurgeons style */
.fade-in {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.fade-in-up {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: opacity 1.5s cubic-bezier(0.33, 1, 0.68, 1),
                transform 1.5s cubic-bezier(0.33, 1, 0.68, 1);
}

.fade-in-delay-1 {
    animation-delay: 0.1s;
}

.fade-in-delay-2 {
    animation-delay: 0.2s;
}

.fade-in-delay-3 {
    animation-delay: 0.3s;
}

.fade-in-delay-4 {
    animation-delay: 0.4s;
}

/* Removed logo-container - logo now integrated in hero */

/* Section Wrappers - Full Width with Generous Padding */
.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
}

.hero-wrapper,
.problem-wrapper,
.ecosystem-wrapper,
.how-wrapper,
.benefits-wrapper,
.waitlist-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
}

/* Section Title */
.section-title {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, transparent 100%);
    border-radius: 2px;
}

/* Hero Section */
.hero-section {
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 0;
    padding-top: 80px;
    background:
        linear-gradient(135deg, rgba(249, 232, 236, 0.95) 0%, rgba(255, 255, 255, 0.95) 100%),
        url('/public/images/banner-bg.png') center/cover no-repeat;
    position: relative;
    overflow: hidden;
}

.hero-inner {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 4rem;
    position: relative;
    z-index: 2;
    transition: transform 0.1s ease-out, opacity 0.1s ease-out;
    will-change: transform, opacity;
}

.hero-logo {
    display: inline-block;
    margin-bottom: 4rem;
    transition: transform 0.3s ease;
}

.hero-logo img {
    width: 150px;
    height: auto;
}

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

.hero-content {
    /* No max-width restriction */
}

/* Hero Shapes */
.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    transition: transform 0.1s ease-out;
    will-change: transform;
}

.shape-circle {
    position: absolute;
    top: 15%;
    right: 10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(161, 27, 61, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

/* Removed shape lines from hero */

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(-20px, 20px) scale(1.05);
    }
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 3rem;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    animation: fadeInUp 0.8s ease-out;
}

.hero-highlight {
    color: var(--primary);
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.hero-highlight::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0.1em;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
    opacity: 0.4;
}

/* Text Emphasis - Bold Primary Color */
.text-emphasis {
    color: var(--primary);
    font-weight: 700;
    font-style: italic;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    padding: 0.875rem 2rem;
    background-color: var(--primary);
    color: #ffffff;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1rem;
    border-radius: 100px;
    border: 2px solid var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.cta-button:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(161, 27, 61, 0.3);
}

.cta-button:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(161, 27, 61, 0.2);
}

/* Problem Section */
.problem-section {
    padding: 8rem 0;
    background-color: var(--background);
    position: relative;
}

.problem-wrapper {
    position: relative;
}

.problem-content {
    max-width: 1000px;
}

.problem-decoration {
    position: absolute;
    right: 4rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.deco-circle {
    width: 300px;
    height: 300px;
    border: 3px solid var(--primary-lighter);
    border-radius: 50%;
    opacity: 0.5;
}

.problem-label {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.problem-quote {
    font-size: clamp(1.75rem, 4vw, 3rem);
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-primary);
    margin: 0 0 2.5rem 0;
    letter-spacing: -0.01em;
}

.problem-subtext {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.7;
    font-weight: 400;
}

/* Ecosystem Section */
.ecosystem-section {
    padding: 8rem 0;
    background-color: var(--primary-lighter);
    position: relative;
    overflow: hidden;
}

.ecosystem-section::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    height: 100%;
    background: url('/public/images/agent-snippet.png') center/cover no-repeat;
    opacity: 0.06;
    pointer-events: none;
}

.ecosystem-section::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    background: url('/public/images/provider-snippet.png') center/cover no-repeat;
    opacity: 0.06;
    pointer-events: none;
}

.ecosystem-header {
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.ecosystem-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.ecosystem-tagline {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 500;
    line-height: 1.4;
    color: var(--text-secondary);
    margin-bottom: 4rem;
}

.ecosystem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.ecosystem-card {
    padding: 1.75rem;
    background: var(--background);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    will-change: transform, box-shadow;
    z-index: 1;
}

.ecosystem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(161, 27, 61, 0.05), transparent);
    transition: left 0.5s ease;
}

.ecosystem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(161, 27, 61, 0.1);
}

.ecosystem-card:hover::before {
    left: 100%;
}

.ecosystem-number {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.ecosystem-card-label {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

.ecosystem-card h3 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.ecosystem-card p:not(.ecosystem-card-label) {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* How Section */
.how-section {
    padding: 8rem 0;
    background-color: var(--background-dark);
    color: #ffffff;
}

.step {
    position: relative;
}

.step-connector {
    position: absolute;
    right: -1.5rem;
    top: 2rem;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, rgba(161, 27, 61, 0.5) 0%, transparent 100%);
}

.step:last-child .step-connector {
    display: none;
}

.how-title {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 4rem;
    letter-spacing: -0.02em;
    color: #ffffff;
}

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

.step-content {
    margin-bottom: 1.5rem;
}

.step {
    position: relative;
    transition: transform 0.3s ease;
    will-change: transform;
}

.step:hover {
    transform: translateX(5px);
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.75rem;
    display: block;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.step:hover .step-number {
    transform: scale(1.1);
    filter: brightness(1.2);
}

.step h4 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    margin-bottom: 0;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.step p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

/* Benefits Section */
.benefits-section {
    padding: 8rem 0;
    background-color: var(--primary);
}

.benefits-title {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 5rem;
    letter-spacing: -0.02em;
    color: #ffffff;
}

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

.benefit-card {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    transition: transform 0.3s ease;
    position: relative;
    will-change: transform;
}

.benefit-card:hover {
    transform: translateX(10px);
}

.benefit-icon-wrapper {
    position: relative;
    flex-shrink: 0;
}

.benefit-icon {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    display: block;
}

.benefit-card:hover .benefit-icon {
    color: #ffffff;
    transform: scale(1.1);
}

.benefit-line {
    position: absolute;
    left: 50%;
    bottom: -2rem;
    width: 2px;
    height: 80px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, transparent 100%);
    transform: translateX(-50%);
}

.benefit-card:nth-child(3) .benefit-line,
.benefit-card:nth-child(4) .benefit-line {
    display: none;
}

.benefit-content h3 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.benefit-content p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

/* Waitlist Section */
.waitlist-section {
    padding: 8rem 0;
    background-color: var(--background-alt);
}

.waitlist-content {
    max-width: 800px;
}

.waitlist-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.waitlist-tagline {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 500;
    line-height: 1.5;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.waitlist-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.form-input {
    width: 100%;
    padding: 1rem 1.25rem;
    font-family: var(--font-primary);
    font-size: 1.05rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    background: var(--background);
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(161, 27, 61, 0.1);
    transform: translateY(-2px);
}

.form-input::placeholder {
    color: var(--text-light);
}

select.form-input {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 18px;
    cursor: pointer;
}

.cta-submit {
    margin-top: 1rem;
    padding: 1.125rem 2rem;
    font-size: 1.05rem;
}

button.cta-submit {
    border: none;
    outline: none;
    background-color: var(--primary);
    font-family: var(--font-primary);
}

/* Alert Messages */
.alert {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    font-weight: 500;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    background-color: var(--primary);
    color: #ffffff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(161, 27, 61, 0.3);
    z-index: 1000;
}

.scroll-to-top svg {
    width: 20px;
    height: 20px;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(161, 27, 61, 0.4);
}

/* Footer */
.footer {
    padding: 3rem 0 2rem 0;
    background-color: var(--background-dark);
    color: #ffffff;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    height: 35px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    max-width: 300px;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-contact {
    margin-top: 1rem;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #ffffff;
}

/* Privacy Policy Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 1rem;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: var(--background);
    border-radius: 12px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    position: relative;
    display: flex;
    flex-direction: column;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-secondary);
    cursor: pointer;
    line-height: 1;
    z-index: 10;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--primary);
}

.modal-body {
    padding: 2.5rem;
    overflow-y: auto;
}

.modal-body h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.modal-body h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.modal-body p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.modal-body ul {
    margin: 0.5rem 0 1rem 1.5rem;
    padding: 0;
}

.modal-body li {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 0.25rem;
}

.modal-body a {
    color: var(--primary);
    text-decoration: none;
}

.modal-body a:hover {
    text-decoration: underline;
}

.footer-bottom {
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
}

/* Responsive - Tablet */
@media (max-width: 900px) {
    .header-container {
        padding: 1rem 2.5rem;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: var(--background);
        flex-direction: column;
        padding: 5rem 2rem 2rem 2rem;
        gap: 1.5rem;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 99;
    }

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

    .nav-link {
        font-size: 1.1rem;
    }

    .modal-body {
        padding: 2rem;
    }

    .footer-contact {
        text-align: center;
    }

    .section-container,
    .hero-wrapper,
    .problem-wrapper,
    .ecosystem-wrapper,
    .how-wrapper,
    .benefits-wrapper,
    .waitlist-wrapper {
        padding: 0 2.5rem;
    }

    .hero-inner {
        padding: 2rem 2.5rem;
    }

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

    .steps-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .step-connector {
        display: none;
    }

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

    .benefit-line {
        display: none;
    }

    .hero-section {
        min-height: auto;
    }

    .hero-logo {
        margin-bottom: 3rem;
    }

    .hero-logo img {
        width: 120px;
    }

    .problem-section,
    .ecosystem-section,
    .how-section,
    .benefits-section,
    .waitlist-section {
        padding: 5rem 0;
    }

    .problem-decoration {
        display: none;
    }

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

    .benefit-card {
        gap: 1.5rem;
    }

    .shape-circle {
        width: 250px;
        height: 250px;
    }

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

    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-brand p {
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    .scroll-to-top {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 44px;
        height: 44px;
    }

    .scroll-to-top svg {
        width: 18px;
        height: 18px;
    }
}

/* Responsive - Mobile */
@media (max-width: 600px) {
    .header-container {
        padding: 0.875rem 1.5rem;
    }

    .logo-image {
        height: 38px;
    }

    .modal-body {
        padding: 1.5rem;
    }

    .modal-body h2 {
        font-size: 1.5rem;
    }

    .modal-body h3 {
        font-size: 1rem;
    }

    .modal-body p,
    .modal-body li {
        font-size: 0.9rem;
    }

    .section-container,
    .hero-wrapper,
    .problem-wrapper,
    .ecosystem-wrapper,
    .how-wrapper,
    .benefits-wrapper,
    .waitlist-wrapper {
        padding: 0 1.5rem;
    }

    .hero-inner {
        padding: 2rem 1.5rem;
    }

    .hero-logo {
        margin-bottom: 2.5rem;
    }

    .hero-logo img {
        width: 100px;
    }

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.15;
        margin-bottom: 2rem;
    }

    .hero-shapes {
        opacity: 0.5;
    }

    .shape-circle {
        width: 200px;
        height: 200px;
    }

    .problem-quote {
        font-size: 1.5rem;
    }

    .problem-subtext {
        font-size: 1.1rem;
    }

    .cta-button {
        width: 100%;
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }

    .problem-section,
    .ecosystem-section,
    .how-section,
    .benefits-section,
    .waitlist-section {
        padding: 3rem 0;
    }

    .ecosystem-title,
    .how-title,
    .benefits-title,
    .waitlist-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .ecosystem-tagline,
    .waitlist-tagline {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
    }

    .ecosystem-card {
        padding: 1.5rem;
    }

    .ecosystem-card h3 {
        font-size: 1.75rem;
    }

    .step h4 {
        font-size: 1.5rem;
    }

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

    .benefit-card {
        gap: 1rem;
    }

    .benefit-icon {
        font-size: 2.5rem;
    }

    .form-input {
        padding: 0.875rem 1rem;
        font-size: 1rem;
    }

    .cta-submit {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    .footer {
        padding: 2.5rem 0 1.5rem 0;
        text-align: center;
    }

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

    .footer-brand {
        width: 100%;
        align-items: center;
        margin-bottom: 1.5rem;
    }

    .footer-brand p {
        max-width: 100%;
    }

    .footer-logo {
        height: 30px;
    }

    .footer-brand p {
        font-size: 0.85rem;
        text-align: center;
    }

    .footer-links {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .footer-links a {
        display: block;
        text-align: center;
    }

    .footer-bottom {
        text-align: center;
    }

    .footer-bottom p {
        font-size: 0.8rem;
    }

    .scroll-to-top {
        bottom: 1.25rem;
        right: 1.25rem;
        width: 42px;
        height: 42px;
    }
}

/* Responsive - Small Mobile */
@media (max-width: 380px) {
    .section-container,
    .hero-wrapper,
    .problem-wrapper,
    .ecosystem-wrapper,
    .how-wrapper,
    .benefits-wrapper,
    .waitlist-wrapper {
        padding: 0 1.25rem;
    }

    .hero-inner {
        padding: 1.5rem 1.25rem;
    }

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

    .ecosystem-title,
    .how-title,
    .benefits-title,
    .waitlist-title {
        font-size: 1.75rem;
    }

    .ecosystem-card,
    .step {
        padding: 1.25rem;
    }

    .benefit-icon {
        font-size: 2rem;
    }
}
