/* Custom styles for Durability AI theme - 8 Section Structure with Fitness Images */
:root {
    --space-grey: #2f312f;
    --electric-green: #0bd800;
    --bright-green: #00ff88;
    --white: #ffffff;
    --light-grey: #e2e8f0;
    --text-size: 3.4rem;
}

* {
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--white);
    margin: 0;
    padding: 0;
    background: var(--space-grey);
}

/* SECTION 1: HERO SECTION */
.hero-section {
    background: linear-gradient(rgba(165, 161, 167, 0.85), rgba(42, 42, 42, 0.85)), 
                url('images/background5.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    position: relative;
}

.hero-content {
    max-width: 800px;
    z-index: 2;
}

.hero-content h1 {
    font-size: clamp(2.2rem, 5.5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--white);
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.hero-content h2 {
    font-size: clamp(1.1rem, 2.8vw, 1.6rem);
    font-weight: 400;
    margin-bottom: 3rem;
    color: var(--light-grey);
    line-height: 1.4;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    margin: 3rem 0;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.hero-form .form-row {
    display: flex !important;
    gap: 1rem !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    width: 100% !important;
    max-width: 500px !important;
    margin: 0 auto !important;
}

.hero-form input[type="text"],
.hero-form input[type="email"] {
    padding: 1.2rem 1.5rem !important;
    border: 2px solid rgba(241, 238, 238, 0.1) !important;
    border-radius: 12px !important;
    font-size: 1.2rem !important;
    background: rgba(255, 255, 255, 0.05) !important;
    color: var(--white) !important;
    backdrop-filter: blur(10px) !important;
    transition: all 0.3s ease !important;
    box-sizing: border-box !important;
}

.hero-form input[type="text"] {
    min-width: 140px !important;
    flex: 1 !important;
    width: auto !important;
}

.hero-form input[type="email"] {
    min-width: 300px !important;
    width: 100% !important;
}

.hero-form input[type="text"]:focus,
.hero-form input[type="email"]:focus {
    outline: none !important;
    border-color: var(--electric-green) !important;
    background: rgba(255, 255, 255, 0.1) !important;
}

.hero-form input[type="text"]::placeholder,
.hero-form input[type="email"]::placeholder {
    color: var(--light-grey) !important;
    font-size: 1.2rem !important;
}

.cta-button {
    background: var(--electric-green);
    color: var(--white);
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(11, 216, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
}

.cta-button:hover {
    background: var(--bright-green);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(11, 216, 0, 0.4);
}

.hero-subtext {
    font-size: 1.2rem;
    color: var(--light-grey);
    margin-top: 1.5rem;
    font-weight: 500;
}

/* Header Container for consistent alignment */
.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: left;
}

.header-container h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    text-align: left;
    margin: 0 0 3rem 0;
    color: white;
    line-height: 1.2;
}

/* SECTION 2: ELEVATOR PITCH / PROBLEM FRAMING */
.elevator-pitch {
    padding: 5rem 0;
    background: var(--space-grey);
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
}

.elevator-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.elevator-sections {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.elevator-section {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2.5rem;
    text-align: left;
    position: relative;
    z-index: 1;
}

.elevator-section h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.elevator-section .story-text {
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.6;
    margin: 0;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.elevator-section .story-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.elevator-section .story-list li {
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.6;
    margin-bottom: 0.8rem;
    color: #ffffff;
    padding-left: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.elevator-section .story-list li strong,
.elevator-section .story-text strong {
    color: var(--electric-green);
    font-weight: 700;
}

.elevator-section .edge-statement {
    font-size: clamp(1.3rem, 2.8vw, 1.7rem);
    font-weight: 600;
    color: var(--electric-green);
    margin: 0;
    line-height: 1.4;
    text-align: left;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* SECTION 3: THE PROBLEM (PAIN POINTS) */
.problem-section {
    background: linear-gradient(rgba(26, 26, 26, 0.85), rgba(42, 42, 42, 0.85)), 
                url('images/background3.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    padding: 5rem 0;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
}

.problem-content {
    max-width: 1030px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

.durability-carousel-card {
    text-align: center;
    margin: 3rem 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.durability-card {
    text-align: left;
    margin: 2rem 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.durability-card .card {
    flex-direction: column;
    gap: 1rem;
    padding: 2rem;
    text-align: left;
}

.durability-card .card p {
    color: var(--white);
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
}

.durability-card .card p strong {
    color: var(--electric-green);
}

.cycle-image-cropped {
    width: 50%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.card {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    justify-content: left;
    align-items: start;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1rem;
    text-align: center;
    position: relative;
    z-index: 1;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--white);
    min-height: auto;
    max-width: 800px;
    margin: 0 auto;
    width: fit-content;
}

.card ul {
    overflow: hidden;
    position: relative;
    padding: 0;
    margin: 0;
    min-width: 15rem;
    font-size: clamp(1.5rem, 3vw, 2rem);
    height: clamp(7rem, 4vw, 8rem); 
    list-style: none;
}

.card li {
    display: block;
    height: 100%;
    color: var(--electric-green);
    animation: rotate-the-words 10s infinite;
    text-align: left;
}

/* Animated vertical list rotation */
@keyframes rotate-the-words {
    0% { transform: translateY(100%); }
    2%, 20% { transform: translateY(0%); }
    22%, 40% { transform: translateY(-100%); }
    42%, 60% { transform: translateY(-200%); }
    62%, 80% { transform: translateY(-300%); }
    82%, 100% { transform: translateY(-400%); }
}

/* SECTION 4: THE PRODUCT (SOLUTION GLIMPSE) */
.product-section {
    background: var(--space-grey);
    color: var(--white);
    padding: 6rem 2rem;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.product-content {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.product-header {
    font-size: clamp(2.2rem, 4.8vw, 3.2rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--white);
}

.product-subheader {
    font-size: clamp(1.4rem, 2.8vw, 1.9rem);
    font-weight: 600;
    margin-bottom: 4rem;
    text-align: center;
    color: var(--light-grey);
}

.product-grid {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 4rem;
    align-items: stretch;
    width: 100%;
    min-height: 600px;
}

.product-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    justify-content: center;
    height: 100%;
}

.solution-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step {
    text-align: center;
    padding: 2.5rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.step:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.step-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.step h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--electric-green);
}

.step p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--white);
}

/* App Screenshots Section */
.product-right {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    max-width: 60vw;
    overflow: hidden;
}

.app-screenshots {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 2rem;
    width: 100%;
    padding: 2rem 0;
}

.app-screenshot {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

.app-screenshot:nth-child(1) {
    grid-column: 1 / 3;
}

.app-screenshot:nth-child(2) {
    grid-column: 3 / 5;
}

.app-screenshot:nth-child(3) {
    grid-column: 5 / 7;
}

.app-screenshot:nth-child(4) {
    grid-column: 2 / 4;
    justify-self: center;
}

.app-screenshot:nth-child(5) {
    grid-column: 4 / 6;
    justify-self: center;
}

.app-screenshot img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

/* SECTION 5: THE CUSTOMER (SEGMENTATION) */
.customer-section {
    background: linear-gradient(rgba(26, 26, 26, 0.85), rgba(42, 42, 42, 0.85)), 
                url('images/background2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 6rem 2rem;
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
}

.customer-content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 2;
}

.customer-content h2 {
    font-size: clamp(2.2rem, 4.8vw, 3.2rem);
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--white);
}

.customer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin: 3rem 0;
    align-items: start;
}

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

.customer-segments {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    justify-content: space-between;
    min-height: 400px;
    margin-top: 100px;
}

.customer-right {
    display: flex;
    flex-direction: column;
}

.customer-quotes {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.segment {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    position: relative;
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
    min-height: 120px;
    display: flex;
    align-items: center;
}

.segment:nth-child(1) { animation-delay: 0.2s; }
.segment:nth-child(2) { animation-delay: 0.4s; }
.segment:nth-child(3) { animation-delay: 0.6s; }
.segment:nth-child(4) { animation-delay: 0.8s; }

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

.segment::before {
    content: '✓';
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: var(--electric-green);
    font-weight: bold;
    font-size: 1.2rem;
}

.segment:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.segment p {
    margin: 0;
    font-weight: 500;
    font-size: 1.2rem;
    color: var(--white);
}

.pain-quotes {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
}

.pain-quote {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.08));
    padding: 2rem 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    width: 85%;
}

/* Alternate positioning */
.pain-quote:nth-child(odd) {
    align-self: flex-end;
    margin-left: auto;
}

.pain-quote:nth-child(even) {
    align-self: flex-start;
    margin-right: auto;
}

.pain-quote::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--electric-green), var(--bright-green));
    border-radius: 3px;
}

.pain-quote p {
    margin: 0;
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--white);
    font-style: italic;
    line-height: 1.5;
    letter-spacing: -0.01em;
    position: relative;
    z-index: 2;
}

.pain-quote .quote-author {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--electric-green);
    font-weight: 500;
    font-style: normal;
    opacity: 0.8;
}

/* SECTION 6: SOCIAL PROOF / EARLY INTEREST (FOMO) */
.social-proof {
    background: var(--space-grey);
    padding: 6rem 2rem;
    min-height: 80vh;
    display: flex;
    align-items: center;
    text-align: center;
}

.social-content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.social-content h2 {
    font-size: clamp(2.2rem, 4.8vw, 3.2rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.waitlist-count {
    font-size: clamp(1.8rem, 3.8vw, 2.6rem);
    font-weight: 800;
    color: var(--electric-green);
    margin: 1.5rem 0;
    background: linear-gradient(135deg, var(--electric-green), var(--bright-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.social-content p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: var(--light-grey);
}

/* SECTION 6.5: FOUNDERS */
.founders-section {
    background: linear-gradient(rgba(26, 26, 26, 0.85), rgba(42, 42, 42, 0.85)), 
                url('images/background1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 6rem 2rem;
    min-height: 80vh;
    display: flex;
    align-items: center;
    text-align: center;
}

.founders-content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.founders-content h2 {
    font-size: clamp(2.2rem, 4.8vw, 3.2rem);
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--white);
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.founder-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.founder-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.founder-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--electric-green);
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.founder-info h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.founder-role {
    font-size: 1rem;
    color: var(--electric-green);
    font-weight: 600;
    margin-bottom: 1rem;
}

.founder-bio {
    font-size: 0.95rem;
    color: var(--light-grey);
    line-height: 1.5;
    margin: 0;
}

/* SECTION 7: CALL TO ACTION (ANCHOR SECTION) */
.cta-section {
    background: linear-gradient(rgba(26, 26, 26, 0.85), rgba(42, 42, 42, 0.85)), 
                url('images/background4.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    padding: 6rem 2rem;
    min-height: 80vh;
    display: flex;
    align-items: center;
    text-align: center;
}

.cta-content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.cta-content h2 {
    font-size: clamp(2.2rem, 4.8vw, 3.2rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: var(--light-grey);
}

.cta-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-form .form-row {
    display: flex !important;
    gap: 1rem !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    width: 100% !important;
    max-width: 500px !important;
    margin: 0 auto !important;
}

.cta-form input[type="text"],
.cta-form input[type="email"] {
    padding: 1.2rem 1.5rem !important;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 12px !important;
    font-size: 1.2rem !important;
    background: rgba(255, 255, 255, 0.1) !important;
    color: var(--white) !important;
    backdrop-filter: blur(10px) !important;
    transition: all 0.3s ease !important;
    box-sizing: border-box !important;
}

.cta-form input[type="text"] {
    min-width: 140px !important;
    flex: 1 !important;
    width: auto !important;
}

.cta-form input[type="email"] {
    min-width: 300px !important;
    width: 100% !important;
}

.cta-form input[type="text"]:focus,
.cta-form input[type="email"]:focus {
    outline: none !important;
    border-color: var(--white) !important;
    background: rgba(255, 255, 255, 0.15) !important;
}

.cta-form input[type="text"]::placeholder,
.cta-form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 1.2rem !important;
}

/* SECTION 8: FOOTER */
.footer {
    background: var(--space-grey);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 4rem 2rem 2rem;
    text-align: center;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-social a {
    color: var(--light-grey);
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-social a:hover {
    color: var(--electric-green);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

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

.footer-links a:hover {
    color: var(--electric-green);
}

.footer-copyright {
    margin-top: 2rem;
    color: var(--light-grey);
    font-size: 1.1rem;
}

/* Scroll Indicator */
.scroll-indicator {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
    opacity: 0.8;
    transition: all 0.3s ease;
    transform: translateY(-3px);
}

.scroll-indicator:hover {
    opacity: 1;
    transform: translateY(0);
}

.scroll-arrow {
    width: 50px;
    height: 50px;
    background: var(--electric-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(11, 216, 0, 0.3);
    transition: all 0.3s ease;
}

.scroll-arrow:hover {
    background: var(--bright-green);
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(11, 216, 0, 0.4);
}

.scroll-arrow i {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: bold;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--white);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Typography adjustments for mobile */
    .hero-content h1 {
        font-size: clamp(2rem, 8vw, 3rem);
        margin-bottom: 1rem;
    }
    
    .hero-content h2 {
        font-size: clamp(1rem, 4vw, 1.3rem);
        margin-bottom: 2rem;
    }
    
    /* Section padding adjustments */
    .hero-section,
    .elevator-pitch,
    .problem-section,
    .product-section,
    .customer-section,
    .social-proof,
    .cta-section {
        padding: 4rem 1rem;
        min-height: 70vh;
    }
    
    /* Elevator sections mobile adjustments */
    .elevator-sections {
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .elevator-section {
        padding: 2rem;
        margin-bottom: 1rem;
    }
    
    .elevator-section h2 {
        font-size: clamp(1.6rem, 6vw, 2.2rem);
        margin-bottom: 1rem;
    }
    
    .elevator-section .story-text {
        font-size: clamp(0.95rem, 3.5vw, 1.1rem);
        line-height: 1.5;
    }
    
    .elevator-section .story-list li {
        font-size: clamp(0.95rem, 3.5vw, 1.1rem);
        line-height: 1.5;
        margin-bottom: 0.6rem;
    }
    
    .elevator-section .edge-statement {
        font-size: clamp(1.1rem, 4vw, 1.5rem);
        text-align: left;
    }
    
    .product-section {
        padding-bottom: 8rem;
    }
    
    /* Form improvements for mobile */
    .hero-form,
    .cta-form {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin: 2rem 0;
    }
    
    .hero-form .form-row,
    .cta-form .form-row {
        flex-direction: column !important;
        width: 100% !important;
        max-width: 350px !important;
        margin: 0 auto !important;
    }
    
    .hero-form input[type="text"],
    .hero-form input[type="email"],
    .cta-form input[type="text"],
    .cta-form input[type="email"] {
        min-width: 280px !important;
        width: 100% !important;
        max-width: 350px !important;
        font-size: 16px !important; /* Prevents zoom on iOS */
        margin: 0 auto !important;
    }
    
    .elevator-content h1 {
        font-size: clamp(2rem, 4vw, 3rem);
        margin-bottom: 2rem;
    }
    
    /* Grid layouts for mobile */
    .customer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin: 2rem 0;
    }
    
    .customer-segments {
        gap: 2rem;
        min-height: auto;
    }
    
    .customer-quotes {
        gap: 1rem;
    }
    
    /* Product section mobile adjustments */
    .product-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .product-left {
        order: 1;
    }
    
    .product-right {
        order: 2;
        width: 100%;
        max-width: 100vw;
    }
    
    .solution-steps {
        gap: 1.5rem;
    }
    
    .app-screenshots {
        position: relative;
        height: 435px;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 1rem 0;
    }
    
    .app-screenshot {
        position: absolute;
        width: 200px;
        max-width: 200px;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
   
        transform: translate(-50%, -50%);
    }
    
    .app-screenshot:nth-child(1) {
        z-index: 5;
        left: 53%;
    }
    
    .app-screenshot:nth-child(2) {
        z-index: 4;
        left: 39%;
    }
    
    .app-screenshot:nth-child(3) {
        z-index: 3;
        left: 25%;
    }
    
    .app-screenshot:nth-child(4) {
        z-index: 2;
        left: 11%;
    }
    
    .app-screenshot:nth-child(5) {
        z-index: 1;
        left: 0%;
    }
    
    /* Card adjustments for mobile */
    .step,
    .segment,
    .pain-quote {
        padding: 1.5rem 2rem;
        margin-bottom: 1rem;
        width: 100%;
        align-self: center;
    }
    
    /* Mobile carousel adjustments */
    .card {
        max-width: 85vw;
        width: fit-content;
        padding: 1rem;
    }
    
    .card ul {
        min-width: 10rem;
        height: clamp(9rem, 7vw, 11rem);
        font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    }
    
    /* Mobile founders grid adjustments */
    .founders-content {
        max-width: 90%;
    }
    
    .founders-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 90%;
        padding: 0 1rem;
    }
    
    .founder-card {
        padding: 1.5rem;
    }
    
    .pain-quote p {
        font-size: 1.5rem;
    }
    
    .pain-quote .quote-author {
        font-size: 1rem;
    }
    
    /* Footer adjustments */
    .footer {
        padding: 3rem 1rem 2rem;
    }
    
    .footer-social {
        gap: 1rem;
    }
    
    .footer-links {
        gap: 1rem;
        flex-direction: column;
    }
    
    /* Disable parallax on mobile for better performance */
    .hero-section,
    .elevator-pitch,
    .problem-section,
    .product-section,
    .customer-section,
    .social-proof,
    .cta-section {
        background-attachment: scroll;
    }
    
    /* Hide scroll indicator on mobile */
    .scroll-indicator {
        bottom: 1rem;
        right: 1rem;
    }
    
    .scroll-arrow {
        width: 45px;
        height: 45px;
    }
}

/* Small mobile devices */
@media (max-width: 650px) {
    .hero-content h1 {
        font-size: clamp(1.8rem, 10vw, 2.5rem);
    }
    
    .hero-content h2 {
        font-size: clamp(0.9rem, 5vw, 1.2rem);
    }
    
    .hero-form input[type="text"],
    .hero-form input[type="email"],
    .cta-form input[type="text"],
    .cta-form input[type="email"] {
        min-width: 250px !important;
        max-width: 300px !important;
        width: 100% !important;
        margin: 0 auto !important;
    }
    
    .cta-button {
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }
    
    /* Elevator sections small mobile adjustments */
    .elevator-sections {
        gap: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .elevator-section {
        padding: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .elevator-section h2 {
        font-size: clamp(1.4rem, 5vw, 1.8rem);
        margin-bottom: 0.8rem;
    }
    
    .elevator-section .story-text {
        font-size: clamp(0.9rem, 3vw, 1rem);
        line-height: 1.4;
    }
    
    .elevator-section .story-list li {
        font-size: clamp(0.9rem, 3vw, 1rem);
        line-height: 1.4;
        margin-bottom: 0.5rem;
    }
    
    .elevator-section .edge-statement {
        font-size: clamp(1rem, 3.5vw, 1.3rem);
    }
    
    .step-icon {
        font-size: 2.5rem;
    }
    
    .product-section {
        padding-bottom: 6rem;
    }
    
    .footer-social a {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
} 

 