/* Redesign CSS */

html, body { 
    overflow: hidden; 
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100vh;
    background: #0a0a0a;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #ffffff;
}

.problem-grid-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.problem-col {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.problem-story-card,
.problem-steps-card,
.problem-impact-card,
.mobile-gap-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 16px;
    padding: 30px;
}

.story-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

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

.problem-story-card h3 {
    font-size: 1.4rem;
    color: var(--primary);
}

.story-time {
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.problem-steps-card h3 {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.steps-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 20px;
}

.step {
    text-align: center;
}

.step-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.problem-impact-card h3,
.mobile-gap-card h3 {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.impact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

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

.impact-text h4 {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 5px;
}

.mobile-gap-card ul {
    padding-left: 20px;
}

.gap-conclusion {
    margin-top: 20px;
    padding: 15px;
    background: rgba(168, 85, 247, 0.1);
    border-radius: 8px;
    text-align: center;
}

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

.hero-title-redesign {
    font-size: 8rem;
    font-weight: 900;
    letter-spacing: -0.05em;
    background: -webkit-linear-gradient(45deg, #a855f7, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.hero-subtitle-redesign {
    font-size: 2rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.hero-author {
    font-size: 1.2rem;
    color: var(--text-muted);
}

.hero-info-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 16px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.info-title {
    font-size: 1rem;
    color: var(--text-muted);
}

.info-value {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
}

.slide-title {
    font-size: 4rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    background: -webkit-linear-gradient(45deg, #a855f7, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.slide-subtitle {
    font-size: 1.5rem;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.solution-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
}

.solution-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.solution-card h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.solution-footer {
    margin-top: 4rem;
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-muted);
}

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

.demo-video-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 16px;
    padding: 30px;
    height: 100%;
}

.video-placeholder {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 300px;
}

.video-placeholder p {
    font-size: 1.5rem;
    color: var(--text-muted);
}

.demo-features-card h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.demo-features-card ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2rem;
}

.demo-features-card li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.check-icon, .progress-icon {
    font-size: 1.2rem;
}

.check-icon {
    color: #22c55e;
}

.progress-icon {
    color: #f59e0b;
}

.demo-footer {
    margin-top: 4rem;
    text-align: center;
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-muted);
}

.timing-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.timing-card-new {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
}

.timing-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.timing-card-new h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.timing-footer {
    margin-top: 4rem;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-muted);
}

.market-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 4rem;
}

.market-card-new {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
}

.market-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.market-card-new h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.market-value {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
}

.market-funnel-new {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.funnel-stage {
    text-align: center;
}

.funnel-stage h4 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.funnel-value {
    font-size: 2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.funnel-arrow-new {
    font-size: 2rem;
    color: var(--primary);
}

.pricing-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 4rem;
}

.pricing-card-new {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 16px;
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.pricing-card-new.featured-new {
    border-color: var(--primary);
    transform: scale(1.05);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-card-new h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.price-new {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
}

.price-unit {
    font-size: 1rem;
    color: var(--text-muted);
}

.features-list-new {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.features-list-new li {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.pricing-footer {
    text-align: center;
    color: var(--text-muted);
}

.competitive-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: start;
}

.comparison-table-wrapper {
    overflow-x: auto;
}

.comparison-table-new {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table-new th,
.comparison-table-new td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(168, 85, 247, 0.2);
}

.comparison-table-new th {
    color: var(--text-muted);
    font-weight: 600;
}

.comparison-table-new .drape-row {
    background: rgba(168, 85, 247, 0.1);
    font-weight: 600;
}

.differentiators-new {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.differentiator-item-new {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

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

.differentiator-text h4 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.competition-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.competitor-card-new {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 16px;
    padding: 30px;
}

.competitor-card-new.our-advantage {
    border-color: var(--primary);
    background: rgba(168, 85, 247, 0.1);
}

.competitor-card-new h4 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.competitor-card-new ul {
    list-style: none;
    padding-left: 0;
}

.competitor-card-new li {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

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

.gtm-phase {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 16px;
    padding: 30px;
}

.phase-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1.5rem;
}

.phase-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phase-header h4 {
    font-size: 1.2rem;
}

.phase-date {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-left: auto;
}

.phase-goals {
    list-style: none;
    padding-left: 0;
}

.phase-goals li {
    margin-bottom: 0.5rem;
    color: var(--text-muted);
}

.acquisition-channels-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.channel-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
}

.channel-card h5 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}