/* ==========================================
   WAY AI COACH - MAIN STYLES
   ========================================== */

/* CSS Variables */
:root {
    --bg-dark: #0A0E27;
    --bg-dark-2: #0D1230;
    --bg-dark-3: #1A1F4E;

    --cyan: #53EAFD;
    --cyan-light: #A2F4FD;
    --purple: #C4B4FF;
    --purple-dark: #A684FF;
    --blue: #8EC5FF;
    --blue-dark: #51A2FF;

    --text-white: #FFFFFF;
    --text-light: #D1D5DC;
    --text-muted: #99A1AF;
    --text-dark: #6A7282;

    --border-cyan: rgba(0, 211, 242, 0.3);
    --border-purple: rgba(166, 132, 255, 0.3);
    --border-blue: rgba(81, 162, 255, 0.3);
    --border-white: rgba(255, 255, 255, 0.1);

    --font-primary: 'Poppins', sans-serif;
    --font-poppins: 'Poppins', sans-serif;
    --font-inter: 'Poppins', sans-serif;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Header and Footer styles come from shared ../styles.css */

/* WAY AI Coach Page - Header Overrides */
.header .logo-section {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

.header .logo-link {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

.header .logo-text {
    white-space: nowrap;
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
}

/* Header navigation - match main page font */
.header .nav-link {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
}

.header .cta-button {
    font-family: 'Poppins', sans-serif;
}

/* Desktop Navigation - Ensure proper display */
@media (min-width: 769px) {
    .main-nav {
        position: static !important;
        width: auto !important;
        height: auto !important;
        background: transparent !important;
        padding: 0 !important;
        display: flex !important;
        justify-content: center !important;
        right: auto !important;
        box-shadow: none !important;
        overflow: visible !important;
    }

    .nav-list {
        display: flex !important;
        flex-direction: row !important;
        gap: 35px !important;
    }

    .nav-list li {
        border-bottom: none !important;
    }

    .nav-list li a.nav-link {
        padding: 0 !important;
        font-size: 0.95rem !important;
    }

    .mobile-menu-btn {
        display: none !important;
    }

    .mobile-overlay {
        display: none !important;
    }

    .cta-desktop {
        display: inline-block !important;
    }

    .nav-cta-mobile {
        display: none !important;
    }

    /* Desktop Dropdown */
    .nav-dropdown .dropdown-menu {
        position: absolute !important;
        max-height: none !important;
        overflow: visible !important;
    }
}

/* Button styles are now shared in ../styles.css */

/* ==========================================
   HERO SECTION
   ========================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    padding: 120px 24px 80px;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-dark-3) 50%, var(--bg-dark) 100%);
    overflow: hidden;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../assets/way-startup/core-experience-bg.png') center / cover no-repeat;
    opacity: 0.1;
    z-index: 0;
    pointer-events: none;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

/* Star effects are now shared in ../styles.css */

.star-4 {
    width: 4px;
    height: 4px;
    background: var(--cyan-light);
    top: 65%;
    right: 25%;
    opacity: 0.88;
}

.star-5 {
    width: 8px;
    height: 8px;
    background: var(--purple-dark);
    top: 50%;
    left: 50%;
    opacity: 0.53;
}

.hero-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    display: flex;
    flex-direction: column;
}

.hero-title {
    position: static;
    transform: none;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    width: fit-content;
    margin-bottom: 20px;
    text-align: left;
    background: linear-gradient(to right, #22d3ee, #60a5fa, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.5;
}

.hero-intro {
    font-size: 18px;
    font-weight: 600;
    color: var(--cyan);
    margin-bottom: 16px;
}

.hero-intro .highlight {
    color: var(--cyan);
}

.feature-list {
    margin-bottom: 32px;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-white);
}

.check-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 4px;
    stroke: var(--cyan);
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
    max-width: 550px;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 2;
    margin-left: -80px;
}

.phone-mockup {
    position: relative;
}

.phone-mockup img {
    max-width: 100%;
    height: auto;
    border-radius: 32px;
}

/* Hero Mockup Stack - 2 images stacked */
.hero-mockup-stack {
    position: relative;
    width: 400px;
    height: 480px;
}

.mockup-card {
    position: absolute;
    width: 400px;
    height: 220px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(83, 234, 253, 0.2);
    transition: transform 0.3s ease;
}

.mockup-card:hover {
    transform: scale(1.02);
}

.mockup-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.mockup-top {
    top: 0;
    left: 0;
}

.mockup-bottom {
    top: 245px;
    left: 0;
}

/* Video Thumbnail Play Overlay */
.mockup-card.video-thumbnail {
    cursor: pointer;
}

.mockup-card .play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.25);
    transition: background 0.3s ease;
    z-index: 2;
}

.mockup-card.video-thumbnail:hover .play-overlay {
    background: rgba(0, 0, 0, 0.4);
}

.mockup-card .play-icon {
    width: 60px;
    height: 60px;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
    transition: transform 0.3s ease;
}

.mockup-card.video-thumbnail:hover .play-icon {
    transform: scale(1.15);
}

/* Video Modal */
.video-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.video-modal-overlay.active {
    display: flex;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
}

.video-modal-content video {
    width: 100%;
    border-radius: 12px;
}

.video-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 32px;
    cursor: pointer;
    padding: 4px 12px;
    line-height: 1;
}

/* ==========================================
   SECTION COMMON STYLES
   ========================================== */
.section-container {
    max-width: 1252px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Global section titles are now shared in ../styles.css */

.subsection-title {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.75px;
    width: fit-content;
    margin-bottom: 16px;
    background: linear-gradient(90deg, var(--cyan) 0%, var(--purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subsection-desc {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-muted);
    margin-bottom: 24px;
}

/* ==========================================
   PROBLEM SECTION
   ========================================== */
.problem-section {
    padding: 80px 24px;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-dark-2) 50%, var(--bg-dark) 100%);
    position: relative;
}

.problem-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.problem-card {
    padding: 24px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-4px);
}

.problem-card.card-cyan {
    background: linear-gradient(135deg, rgba(0, 184, 219, 0.1) 0%, rgba(0, 0, 0, 0) 100%);
    border: 1px solid var(--border-cyan);
}

.problem-card.card-cyan:hover {
    box-shadow: 0 0 20px rgba(34, 211, 238, 0.15);
}

.problem-card.card-purple {
    background: linear-gradient(135deg, rgba(142, 81, 255, 0.1) 0%, rgba(0, 0, 0, 0) 100%);
    border: 1px solid var(--border-purple);
}

.problem-card.card-purple:hover {
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.15);
}

.problem-card.card-blue {
    background: linear-gradient(135deg, rgba(43, 127, 255, 0.1) 0%, rgba(0, 0, 0, 0) 100%);
    border: 1px solid var(--border-blue);
}

.problem-card.card-blue:hover {
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.15);
}

.card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 16px;
}

.card-cyan .card-icon {
    background: linear-gradient(135deg, rgba(0, 184, 219, 0.1) 0%, rgba(0, 0, 0, 0) 100%);
    border: 1px solid var(--border-cyan);
}

.card-purple .card-icon {
    background: linear-gradient(135deg, rgba(142, 81, 255, 0.1) 0%, rgba(0, 0, 0, 0) 100%);
    border: 1px solid var(--border-purple);
}

.card-blue .card-icon {
    background: linear-gradient(135deg, rgba(43, 127, 255, 0.1) 0%, rgba(0, 0, 0, 0) 100%);
    border: 1px solid var(--border-blue);
}

.card-icon img {
    width: 32px;
    height: 32px;
}

.card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 8px;
    line-height: 1.5;
}

.card-desc {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-muted);
    line-height: 1.5;
}

.problem-footer {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-muted);
    text-align: center;
}

.text-cyan {
    color: #53EAFD;
}

.text-purple {
    color: #C4B4FF;
}

/* ==========================================
   OFFERS SECTION
   ========================================== */
.offers-section {
    padding: 80px 24px;
    background: linear-gradient(180deg, #0A0E27 0%, #0D1230 50%, #0A0E27 100%);
    position: relative;
}

.offers-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../assets/offers-bg.png');
    background-size: cover;
    background-position: center;
    opacity: 0.16;
    z-index: 0;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
}

.offers-section>* {
    position: relative;
    z-index: 1;
}

.offers-content {
    display: grid;
    grid-template-columns: 1fr 600px;
    gap: 60px;
    margin-top: 48px;
    align-items: start;
}

.role-galaxy {
    flex: 1;
}

.offers-mockups {
    display: flex;
    gap: 20px;
    position: sticky;
    top: 120px;
    z-index: 2;
    align-self: start;
}

.offers-mockups .phone-mockup img {
    width: 280px;
    border-radius: 28px;
}

.offers-mockups .mockup-2 {
    margin-top: 100px;
}

.roles-intro {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 24px;
}

.roles-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.role-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.role-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.role-icon img {
    width: 32px;
    height: 32px;
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}

.role-item p {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-white);
    line-height: 1.5;
}

/* ==========================================
   CHAT SECTION
   ========================================== */
.chat-section {
    padding: 100px 24px;
    background: var(--bg-dark);
}

.chat-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
    margin-top: 48px;
}

.chat-mockups {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.chat-mockups .mockup-1 {
    position: relative;
    z-index: 2;
}

.chat-mockups .mockup-2 {
    position: relative;
    top: 100px;
    z-index: 1;
}

.chat-mockups .phone-mockup img {
    width: 280px;
    border-radius: 28px;
}

.chat-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-card {
    padding: 24px;
    border-radius: 16px;
}

.feature-card.card-cyan {
    background: linear-gradient(135deg, rgba(0, 184, 219, 0.05) 0%, rgba(0, 0, 0, 0) 100%);
    border: 1px solid rgba(0, 211, 242, 0.2);
}

.feature-card.card-purple {
    background: linear-gradient(135deg, rgba(142, 81, 255, 0.05) 0%, rgba(0, 0, 0, 0) 100%);
    border: 1px solid rgba(166, 132, 255, 0.2);
}

.feature-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

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

.feature-card.card-cyan .feature-icon {
    stroke: var(--cyan);
}

.feature-card.card-purple .feature-icon {
    stroke: var(--purple);
}

.feature-header h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-white);
    line-height: 1.5;
}

.feature-list-simple {
    padding-left: 32px;
}

.feature-list-simple li {
    position: relative;
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 8px;
    padding-left: 16px;
}

.feature-card.card-cyan .feature-list-simple li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--cyan);
}

.feature-card.card-purple .feature-list-simple li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--purple);
}

/* ==========================================
   WORKSPACE SECTION
   ========================================== */
.workspace-section {
    padding: 80px 24px;
    background: linear-gradient(180deg, #0A0E27 0%, #0D1230 50%, #0A0E27 100%);
    position: relative;
}

.workspace-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../assets/offers-bg.png');
    background-size: cover;
    background-position: center;
    opacity: 0.16;
    z-index: 0;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
}

.workspace-section .section-container {
    position: relative;
    z-index: 1;
}

.workspace-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-top: 48px;
}

.workspace-intro {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.5;
}

.workspace-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.workspace-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border-radius: 14px;
}

.workspace-feature.cyan {
    background: linear-gradient(135deg, rgba(0, 184, 219, 0.05) 0%, rgba(0, 0, 0, 0) 100%);
    border: 1px solid rgba(0, 211, 242, 0.2);
}

.workspace-feature.purple {
    background: linear-gradient(135deg, rgba(142, 81, 255, 0.05) 0%, rgba(0, 0, 0, 0) 100%);
    border: 1px solid rgba(166, 132, 255, 0.2);
}

.workspace-feature.blue {
    background: linear-gradient(135deg, rgba(43, 127, 255, 0.05) 0%, rgba(0, 0, 0, 0) 100%);
    border: 1px solid rgba(81, 162, 255, 0.2);
}

.feature-icon-circle {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.workspace-feature.cyan .feature-icon-circle {
    background: linear-gradient(135deg, rgba(0, 211, 242, 0.2) 0%, rgba(0, 0, 0, 0) 100%);
    border: 1px solid var(--border-cyan);
}

.workspace-feature.cyan .feature-icon-circle svg {
    stroke: var(--cyan);
}

.workspace-feature.purple .feature-icon-circle {
    background: linear-gradient(135deg, rgba(166, 132, 255, 0.2) 0%, rgba(0, 0, 0, 0) 100%);
    border: 1px solid var(--border-purple);
}

.workspace-feature.purple .feature-icon-circle svg {
    stroke: var(--purple);
}

.workspace-feature.blue .feature-icon-circle {
    background: linear-gradient(135deg, rgba(81, 162, 255, 0.2) 0%, rgba(0, 0, 0, 0) 100%);
    border: 1px solid var(--border-blue);
}

.workspace-feature.blue .feature-icon-circle svg {
    stroke: var(--blue);
}

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

.workspace-feature span {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-white);
}

.workspace-mockups {
    display: flex;
    gap: 20px;
    justify-content: center;
    position: relative;
}

.workspace-mockups .phone-mockup img {
    width: 260px;
    border-radius: 28px;
}

.workspace-mockups .mockup-2 {
    position: relative;
    top: 80px;
}

/* Signup Section styles are now shared in ../styles.css */

/* Footer styles come from shared ../styles.css */

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */
@media (max-width: 1024px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }

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

    .hero-title {
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .feature-list {
        display: inline-flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        margin: 0 auto 32px;
    }

    .feature-list li {
        justify-content: flex-start;
        text-align: left;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        max-width: 350px;
        order: -1;
        margin-bottom: 32px;
    }

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

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

    .offers-mockups {
        position: static;
        justify-content: center;
        order: -1;
        margin-bottom: 32px;
    }

    .offers-mockups .phone-mockup img {
        width: 200px;
    }

    .chat-content {
        grid-template-columns: 1fr;
    }

    .chat-mockups {
        order: -1;
        justify-content: center;
        margin-bottom: 32px;
    }

    .chat-mockups .phone-mockup img {
        width: 200px;
    }

    .workspace-content {
        grid-template-columns: 1fr;
    }

    .workspace-mockups {
        order: -1;
        margin-bottom: 32px;
        justify-content: center;
    }

    .workspace-mockups .phone-mockup img {
        width: 180px;
    }


}

@media (max-width: 768px) {
    /* Mobile nav/header/footer styles come from shared ../styles.css */

    /* Mobile Header Logo Fix */
    .header .logo-section,
    .header .logo-link {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 8px;
    }

    .header .logo-circle {
        width: 40px;
        height: 40px;
        flex-shrink: 0;
    }

    .header .logo-text {
        font-size: 1rem;
        white-space: nowrap;
    }

    .hero-section {
        padding: 140px 20px 40px;
    }

    .hero-container {
        display: flex;
        flex-direction: column;
        gap: 30px;
        height: auto !important;
        min-height: auto !important;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        order: 1;
    }

    .hero-image {
        order: 2;
        width: 100%;
        max-width: 100%;
        margin: 20px auto 0;
        margin-left: auto !important;
        display: flex;
        justify-content: center;
        overflow: visible;
    }

    .hero-mockup-stack {
        width: 100% !important;
        max-width: 340px;
        height: auto !important;
        position: relative;
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .mockup-card {
        position: relative !important;
        width: 100% !important;
        height: auto !important;
        min-height: 180px;
        top: auto !important;
        left: auto !important;
    }

    .mockup-card video,
    .mockup-card .video-poster {
        width: 100% !important;
        height: 100% !important;
        min-height: 180px;
        object-fit: cover !important;
        display: block !important;
    }

    .mockup-card img,
    .mockup-card .video-poster {
        width: 100% !important;
        height: auto !important;
    }

    .mockup-bottom {
        top: auto !important;
    }

    .hero-image .phone-mockup {
        width: 100%;
        max-width: 320px;
    }

    .hero-image .phone-mockup img {
        width: 100%;
        max-width: 100%;
        height: auto;
    }

    .hero-title {
        position: static !important;
        text-align: center;
        font-size: 32px;
        line-height: 1.2;
        margin-bottom: 16px;
        width: auto;
        max-width: 100%;
        word-wrap: break-word;
    }

    .hero-subtitle {
        font-size: 15px;
        line-height: 1.5;
        text-align: center;
        margin-bottom: 20px;
    }

    .hero-intro {
        font-size: 15px;
        text-align: center;
        margin-bottom: 16px;
    }

    /* Feature list - ensure it's visible on mobile */
    .feature-list {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        list-style: none;
        padding: 0;
        margin: 0 0 24px 0;
        text-align: left;
        width: 100%;
        max-width: 400px;
    }

    .feature-list li {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        flex-direction: row;
        align-items: flex-start;
        gap: 10px;
        font-size: 14px;
        margin-bottom: 10px;
        text-align: left;
    }

    .feature-list li svg,
    .feature-list li .check-icon {
        flex-shrink: 0;
        width: 18px;
        height: 18px;
        margin-top: 2px;
    }

    .feature-list li span {
        flex: 1;
    }

    .hero-buttons {
        justify-content: center;
        width: 100%;
    }

    .problem-section {
        padding: 50px 20px;
    }

    .offers-section {
        padding: 50px 20px;
    }

    .chat-section {
        padding: 50px 20px;
    }

    .workspace-section {
        padding: 50px 20px;
    }

    .signup-section {
        padding: 50px 20px;
    }

    /* Global title styles used */

    .section-subtitle {
        font-size: 14px;
    }

    .subsection-title {
        font-size: 22px;
    }

    /* Offers Section Mobile */
    .offers-mockups .phone-mockup img {
        width: 180px;
    }

    .offers-mockups .mockup-2 {
        margin-top: 60px;
    }

    .role-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 0 12px;
    }

    .role-item p {
        font-size: 13px;
        font-weight: 600;
    }

    .roles-intro {
        font-size: 16px;
        text-align: center;
    }

    /* Chat Section Mobile */
    .chat-mockups {
        flex-direction: column;
        align-items: center;
        gap: 40px !important;
    }

    .chat-mockups .phone-mockup img {
        width: 220px;
    }

    .chat-mockups .mockup-2 {
        top: 0;
    }

    .feature-header {
        flex-direction: column;
        align-items: flex-start;
    }

    /* Workspace Section Mobile */
    .workspace-mockups {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .workspace-mockups .phone-mockup img {
        width: 220px;
    }

    .workspace-mockups .mockup-2 {
        top: 0;
    }

    .workspace-feature {
        flex-direction: column;
        text-align: center;
    }

    /* Global form responsive styles used from styles.css */


}

@media (max-width: 480px) {

    /* Smallest Mobile Header Logo Fix */
    .header .logo-section,
    .header .logo-link {
        gap: 6px;
    }

    .header .logo-circle {
        width: 36px;
        height: 36px;
    }

    .header .logo-text {
        font-size: 0.9rem;
    }

    .hero-section {
        padding: 90px 16px 50px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .hero-intro {
        font-size: 14px;
    }

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

    .btn {
        padding: 10px 20px;
        font-size: 13px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-image {
        max-width: 280px;
    }

    /* Sections Mobile Small */
    .section-title {
        font-size: 24px;
    }

    .section-subtitle {
        font-size: 13px;
    }

    .subsection-title {
        font-size: 20px;
    }

    .subsection-desc {
        font-size: 13px;
    }

    /* Cards Mobile Small */
    .problem-card {
        padding: 16px;
    }

    .card-title {
        font-size: 15px;
    }

    .card-desc {
        font-size: 12px;
    }

    /* Offers Mobile Small */
    .offers-mockups .phone-mockup img {
        width: 150px;
    }

    .offers-mockups .mockup-2 {
        margin-top: 40px;
    }

    .role-item p {
        font-size: 12px;
    }

    .roles-intro {
        font-size: 14px;
    }

    /* Chat Mobile Small */
    .chat-mockups .phone-mockup img {
        width: 140px;
    }

    .chat-mockups .mockup-2 {
        top: 30px;
    }

    .feature-card {
        padding: 16px;
    }

    .feature-header h4 {
        font-size: 15px;
    }

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

    /* Workspace Mobile Small */
    .workspace-mockups .phone-mockup img {
        width: 130px;
    }

    .workspace-feature span {
        font-size: 14px;
    }

    /* Signup Section responsive styles are now shared in ../styles.css */


}

/* Global footer styles come from shared ../styles.css */

/* Active dropdown item styles are now shared in ../styles.css */

/* ==========================================
   MISSION WAY SECTION OVERRIDES
   (When embedded in DopiFuture page)
   ========================================== */
.mission-hero {
    min-height: auto;
    padding: 80px 24px;
    background: linear-gradient(180deg, #0A0E27 0%, #0D1230 50%, #0A0E27 100%);
}

.mission-hero .section-container {
    max-width: 1252px;
    padding: 0 24px;
}

.mission-hero .mission-hero-bg {
    background: none;
}

.mission-hero .mission-hero-bg::before {
    display: none;
}

/* ==========================================
   WAY STARTUP SECTION
   (Embedded in DopiFuture page)
   ========================================== */
.startup-hero-section {
    position: relative;
    padding: 80px 24px;
    background: linear-gradient(180deg, #0A0E27 0%, #0D1230 50%, #0A0E27 100%);
    overflow: hidden;
}

.startup-hero-section .section-container {
    max-width: 1252px;
    padding: 0 24px;
}

.startup-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.startup-hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    background: linear-gradient(to right, #22d3ee, #60a5fa, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.startup-hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 20px;
    font-weight: 500;
}

.startup-hero-description {
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
}

.startup-hero-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 16px;
}

.startup-hero-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.startup-hero-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-light);
    font-size: 1rem;
}

.startup-hero-features li img {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.startup-hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.startup-hero-mockup {
    display: flex;
    justify-content: center;
    align-items: center;    
}

.startup-mockup-container {
    position: relative;
    display: flex;
    align-items: flex-start;
}

.startup-mockup-main {
    width: 260px;
    height: auto;
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.5));
    border-radius: 24px;
}

.startup-mockup-small {
    width: 210px;
    height: auto;
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.5));
    border-radius: 24px;
    margin-left: 0px;
    margin-top: 60px;
}

@media (max-width: 768px) {
    .startup-hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .startup-hero-title {
        font-size: 2.25rem;
    }

    .startup-hero-subtitle {
        font-size: 1.25rem;
    }

    .startup-hero-features {
        align-items: center;
    }

    .startup-hero-buttons {
        justify-content: center;
    }

    .startup-hero-mockup {
        order: -1;
        margin-bottom: 30px;
    }

    .startup-mockup-main {
        width: 200px;
    }

    .startup-mockup-small {
        width: 150px;
    }
}

/* ==========================================
   WAY STARTUP LEARNING JOURNEY
   (Embedded in DopiFuture page)
   ========================================== */
.startup-journey-section {
    padding: 48px 24px;
    background: linear-gradient(270deg, #041237 0%, #003466 49.04%, #011135 100%);
}

.startup-journey-section .section-container {
    max-width: 1252px;
    padding: 0 24px;
}

.startup-journey-title {
    text-align: center;
    margin-bottom: 48px;
}

.startup-journey-title h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.journey-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.journey-column {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.journey-step {
    background: #093260;
    border-radius: 8px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.journey-step-header {
    background: linear-gradient(to right, #041d53, #1463a8);
    padding: 8px;
    border-radius: 6px;
    margin-bottom: 12px;
    text-align: center;
}

.journey-step-header span {
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
}

.journey-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.journey-badge {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 8px;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
}

.journey-badge img {
    width: 16px;
    height: 16px;
}

.journey-arrow {
    position: absolute;
    bottom: -28px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.5);
    z-index: 1;
}

@media (max-width: 768px) {
    .journey-grid {
        grid-template-columns: 1fr;
    }

    .startup-journey-title h3 {
        font-size: 1.25rem;
    }
}

/* Journey badge sizing - fit all 3 badges on one line */
.relative.py-12 .flex.flex-wrap.gap-2 {
    flex-wrap: nowrap !important;
    gap: 4px !important;
}

.relative.py-12 .flex.items-center.gap-1.text-xs {
    font-size: 10px !important;
    padding: 3px 6px !important;
    white-space: nowrap;
}

/* ==========================================
   DOPIFUTURE - MOBILE RESPONSIVE OVERRIDES
   ========================================== */

/* Global mobile overflow prevention */
html,
body {
    overflow-x: hidden;
    max-width: 100vw;
}

/* --- 1024px Tablet --- */
@media (max-width: 1024px) {
    .mission-hero {
        padding: 60px 20px;
    }

    .mission-hero .section-container {
        padding: 0 16px;
    }

    .mission-hero-title {
        font-size: 2.5rem;
    }

    .startup-hero-section {
        padding: 60px 20px;
    }

    .startup-hero-section .section-container {
        padding: 0 16px;
    }

    .startup-hero-title {
        font-size: 2.75rem;
    }

    .startup-hero-grid {
        gap: 40px;
    }
}

/* --- 768px Mobile --- */
@media (max-width: 768px) {

    /* ===== OFFERS SECTION - Stack mockups vertically ===== */
    .offers-section {
        padding: 50px 16px;
    }

    .offers-mockups {
        flex-direction: column !important;
        align-items: center !important;
        gap: 40px;
    }

    .offers-mockups .mockup-2 {
        margin-top: 0 !important;
    }

    .offers-mockups .phone-mockup img {
        width: 240px !important;
    }

    /* ===== MISSION HERO - fix mockup overlap ===== */
    .mission-hero {
        padding: 50px 16px;
    }

    .mission-hero .section-container {
        padding: 0 20px;
    }

    .mission-hero-grid {
        grid-template-columns: 1fr !important;
        text-align: center;
        gap: 30px;
    }

    .mission-hero-mockup {
        order: -1;
        margin-bottom: 20px;
        position: relative !important;
        z-index: 1;
    }

    .mission-hero-content {
        position: relative;
        z-index: 2;
    }

    .mission-hero .phone-mockup {
        width: 200px !important;
        height: 332px !important;
        margin: 0 auto;
    }

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

    .mission-hero-subtitle {
        font-size: 1.125rem;
    }

    .mission-hero-description {
        font-size: 0.95rem;
        padding: 0 8px;
    }

    .mission-hero-features {
        align-items: center;
    }

    .mission-hero-features li {
        font-size: 0.95rem;
    }

    /* ===== MISSION CORE EXPERIENCE - cards ===== */
    .mission-core-experience {
        padding: 50px 16px;
    }

    .mission-cards {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

    .mission-card {
        width: 100%;
        max-width: 280px;
        height: auto;
        min-height: 140px;
    }

    .mission-card p {
        font-size: 1rem;
    }

    .mission-tagline {
        font-size: 0.95rem;
        margin-top: 40px;
        padding: 0 8px;
    }

    /* ===== MISSION SCENARIO ===== */
    .mission-scenario {
        padding: 40px 16px;
    }

    .scenario-image-container {
        border-radius: 12px;
    }

    /* ===== MISSION OTHER - scenario rows ===== */
    .mission-other {
        padding: 50px 16px;
    }

    .mission-row {
        grid-template-columns: 1fr !important;
        gap: 24px;
        margin-bottom: 50px;
    }

    .mission-row.reverse {
        direction: ltr;
    }

    .mission-row-mockups {
        order: -1;
        margin-bottom: 10px;
    }

    .mission-row-content {
        padding: 24px;
    }

    .mission-row-content h3 {
        font-size: 1.35rem;
    }

    .mission-row-content p {
        font-size: 1rem;
    }

    /* ===== MISSION SKILLS ===== */
    .mission-skills {
        padding: 50px 16px;
    }

    .skills-grid {
        grid-template-columns: 1fr !important;
    }

    .skill-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
        padding: 20px;
    }

    /* ===== STARTUP HERO - stack & reduce whitespace ===== */
    .startup-hero-section {
        padding: 40px 16px;
    }

    .startup-hero-section .section-container {
        padding: 0;
    }

    .startup-hero-grid {
        grid-template-columns: 1fr !important;
        text-align: center;
        gap: 24px;
    }

    .startup-hero-title {
        font-size: 1.75rem;
    }

    .startup-hero-subtitle {
        font-size: 1.05rem;
    }

    .startup-hero-description {
        font-size: 0.95rem;
        padding: 0 8px;
    }

    .startup-hero-features {
        align-items: center;
    }

    .startup-hero-features li {
        font-size: 0.95rem;
    }

    .startup-hero-mockup {
        order: -1;
        margin-bottom: 10px;
    }

    /* Stack startup mockups vertically */
    .startup-mockup-container {
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center;
        gap: 16px;
    }

    .startup-mockup-main {
        width: 200px;
    }

    .startup-mockup-small {
        width: 170px;
        margin-top: 0 !important;
        margin-left: 0 !important;
    }

    /* ===== LEARNING JOURNEY (Tailwind section) ===== */
    .startup-journey-section {
        padding: 40px 16px;
    }

    .journey-grid {
        grid-template-columns: 1fr !important;
    }

    .startup-journey-title h3 {
        font-size: 1.15rem;
    }

    /* ===== CHAT SECTION ===== */
    .chat-section {
        padding: 50px 16px;
    }

    .chat-content {
        grid-template-columns: 1fr !important;
    }

    .chat-mockups {
        flex-direction: column !important;
        align-items: center !important;
        gap: 40px !important;
        order: -1;
        margin-bottom: 20px;
    }

    .chat-mockups .mockup-2 {
        top: 0 !important;
        margin-top: 0 !important;
    }

    .chat-mockups .phone-mockup img {
        width: 240px;
    }

    /* ===== WORKSPACE SECTION ===== */
    .workspace-section {
        padding: 50px 16px;
    }

    .workspace-content {
        grid-template-columns: 1fr !important;
    }

    .workspace-mockups {
        flex-direction: column !important;
        align-items: center !important;
        gap: 40px !important;
        order: -1;
        margin-bottom: 20px;
    }

    .workspace-mockups .mockup-2 {
        top: 0 !important;
        margin-top: 0 !important;
    }

    .workspace-mockups .phone-mockup img {
        width: 240px;
    }

    .workspace-feature span {
        font-size: 14px;
    }

    /* ===== HERO SECTION ===== */
    .hero-section {
        padding: 50px 16px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }

    /* ===== PROBLEM SECTION ===== */
    .problem-section {
        padding: 50px 16px;
    }

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

    /* ===== SIGNUP / CONTACT SECTION ===== */
    .signup-section {
        padding: 50px 16px;
    }
}

/* --- 480px Small Mobile --- */
@media (max-width: 480px) {

    /* Offers */
    .offers-mockups .phone-mockup img {
        width: 220px !important;
    }

    /* Mission Hero */
    .mission-hero {
        padding: 30px 12px;
    }

    .mission-hero-title {
        font-size: 1.75rem;
    }

    .mission-hero-subtitle {
        font-size: 1rem;
    }

    .mission-hero-description {
        font-size: 0.875rem;
    }

    .mission-hero-features li {
        font-size: 0.875rem;
    }

    .mission-hero .phone-mockup {
        width: 250px !important;
    }

    /* Mission Cards */
    .mission-card {
        max-width: 100%;
        min-height: 120px;
        padding: 18px;
    }

    .mission-card p {
        font-size: 0.9rem;
    }

    .mission-card-icon {
        width: 40px;
        height: 40px;
    }

    .mission-tagline {
        font-size: 0.875rem;
    }

    /* Mission Other */
    .mission-row-content {
        padding: 18px;
    }

    .mission-row-content h3 {
        font-size: 1.15rem;
    }

    .mission-row-content p {
        font-size: 0.875rem;
    }

    /* Startup Hero */
    .startup-hero-section {
        padding: 30px 12px;
    }

    .startup-hero-title {
        font-size: 1.5rem;
    }

    .startup-hero-subtitle {
        font-size: 0.95rem;
    }

    .startup-hero-description {
        font-size: 0.875rem;
    }

    .startup-hero-features li {
        font-size: 0.875rem;
    }

    .startup-mockup-main {
        width: 180px;
    }

    .startup-mockup-small {
        width: 150px;
    }

    /* Chat */
    .chat-mockups .phone-mockup img {
        width: 220px;
    }

    /* Workspace */
    .workspace-mockups .phone-mockup img {
        width: 220px;
    }

    .workspace-feature {
        padding: 12px;
    }

    .workspace-feature span {
        font-size: 13px;
    }

    /* Tailwind Journey Section - fit badges */
    .relative.py-12 .flex.flex-wrap.gap-2 {
        flex-wrap: wrap !important;
        gap: 4px !important;
    }

    .relative.py-12 .flex.items-center.gap-1.text-xs {
        font-size: 9px !important;
        padding: 2px 5px !important;
    }

    /* Section titles */
    .section-title {
        font-size: 1.75rem !important;
    }

    .subsection-title {
        font-size: 1.25rem !important;
    }

    .section-subtitle {
        font-size: 0.95rem !important;
        padding: 0 8px;
    }
}