/* Landing Page Specific Styles */

.landing-main {
    min-height: 100vh;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #0f172a 100%);
}

/* Hero Landing Section */
.hero-landing {
    padding-top: 120px;
    padding-bottom: 80px;
    padding-left: 24px;
    padding-right: 24px;
    border-bottom: 1px solid rgba(6, 182, 212, 0.2);
}

.hero-landing-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background-color: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: 999px;
    margin-bottom: 32px;
}

.trust-badge svg {
    color: #67e8f9;
}

.trust-badge span {
    color: #67e8f9;
    font-size: 14px;
}

.hero-landing-title {
    font-size: 72px;
    font-weight: 800;
    margin-bottom: 24px;
    background: linear-gradient(90deg, #ffffff 0%, #67e8f9 50%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.hero-landing-subtitle {
    font-size: 20px;
    color: #cbd5e1;
    margin-bottom: 48px;
    max-width: 600px;
    margin: 0 auto 48px auto;
}

.hero-landing-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 64px;
}

.btn-landing-primary {
    padding: 16px 32px;
    background: linear-gradient(135deg, #00bcd4 0%, #2196f3 100%);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
}

.btn-landing-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 188, 212, 0.4);
    text-decoration: none;
}

.btn-landing-primary:visited,
.btn-landing-primary:active,
.btn-landing-primary:focus {
    color: white;
    text-decoration: none;
}

.btn-landing-secondary {
    padding: 16px 32px;
    background: linear-gradient(135deg, #00bcd4 0%, #2196f3 100%);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
}

.btn-landing-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 188, 212, 0.4);
    text-decoration: none;
}

.btn-landing-secondary:visited,
.btn-landing-secondary:active,
.btn-landing-secondary:focus {
    color: white;
    text-decoration: none;
}

.quick-stats {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
    max-width: 500px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: #06b6d4;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: #94a3b8;
}

/* How It Works Landing */
.how-it-works-landing {
    padding: 100px 24px;
    background: linear-gradient(135deg, #0a1628 0%, #1e3a8a 100%);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
    border-bottom: 1px solid rgba(6, 182, 212, 0.2);
    position: relative;
    overflow: hidden;
}

.diagonal-stripe {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.03;
    background-image: repeating-linear-gradient(45deg, #06b6d4 0px, #06b6d4 2px, transparent 2px, transparent 20px);
    pointer-events: none;
}

.how-it-works-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.how-it-works-container h2 {
    font-size: 56px;
    font-weight: 800;
    text-align: center;
    color: white;
    margin-bottom: 24px;
    background: linear-gradient(90deg, #ffffff 0%, #67e8f9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    color: #94a3b8;
    margin-bottom: 64px;
}

.section-subtitle-impact {
    text-align: center;
    color: #cbd5e1;
    font-size: 22px;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 80px auto;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}

.step-card {
    padding: 40px 32px;
    border-radius: 16px;
    border: 1px solid rgba(6, 182, 212, 0.2);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.step-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.3), rgba(33, 150, 243, 0.3));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.step-card:hover::before {
    opacity: 1;
}

.step-card:hover {
    border-color: rgba(6, 182, 212, 0.6);
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.15) 0%, rgba(33, 150, 243, 0.15) 100%);
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px rgba(6, 182, 212, 0.4), 0 15px 30px rgba(0, 0, 0, 0.3);
}

.step-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(6, 182, 212, 0.4);
    transition: all 0.3s ease;
}

.step-card:hover .step-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(6, 182, 212, 0.6);
}

.step-icon svg {
    width: 32px;
    height: 32px;
    color: white;
}

.step-label {
    font-size: 13px;
    color: #06b6d4;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.step-title {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
    line-height: 1.3;
}

.step-desc {
    font-size: 15px;
    color: #cbd5e1;
    line-height: 1.6;
}

/* Features Landing */
.features-landing {
    padding: 80px 24px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #0f172a 0%, #0a1628 100%);
    border-bottom: 1px solid rgba(6, 182, 212, 0.2);
}

.wave-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.05;
    pointer-events: none;
    background-image: radial-gradient(circle at 50% 50%, transparent 30px, #06b6d4 30px, #06b6d4 31px, transparent 31px),
                      radial-gradient(circle at 50% 50%, transparent 60px, #06b6d4 60px, #06b6d4 61px, transparent 61px),
                      radial-gradient(circle at 50% 50%, transparent 90px, #06b6d4 90px, #06b6d4 91px, transparent 91px);
    background-size: 300px 300px;
    background-position: 0 0;
}

.features-landing-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.features-landing-container h2 {
    font-size: 48px;
    font-weight: 800;
    text-align: center;
    color: white;
    margin-bottom: 64px;
}

.features-landing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.feature-landing-card {
    padding: 32px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-landing-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2) 0%, rgba(33, 150, 243, 0.2) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.feature-landing-icon svg {
    width: 28px;
    height: 28px;
    color: #06b6d4;
}

.feature-landing-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
}

.feature-landing-card p {
    color: #94a3b8;
    line-height: 1.6;
}

/* Listener Experience */
.listener-experience {
    padding: 80px 24px;
    background: #0f172a;
    position: relative;
}

.radial-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(6, 182, 212, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.listener-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.listener-container h2 {
    font-size: 48px;
    font-weight: 800;
    text-align: center;
    color: white;
    margin-bottom: 16px;
}

.section-subtitle-centered {
    text-align: center;
    color: #94a3b8;
    max-width: 700px;
    margin: 0 auto 64px auto;
}

.listener-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.listener-image-placeholder {
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1) 0%, rgba(33, 150, 243, 0.1) 100%);
    border: 1px solid rgba(6, 182, 212, 0.3);
    aspect-ratio: 4/3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 32px;
}

.listener-image-placeholder svg {
    color: #06b6d4;
    margin-bottom: 16px;
}

.listener-image-placeholder p {
    color: #94a3b8;
    font-size: 14px;
}

.listener-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.listener-feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2) 0%, rgba(33, 150, 243, 0.2) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.listener-feature-icon svg {
    width: 24px;
    height: 24px;
    color: #06b6d4;
}

.listener-feature-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.listener-feature-item p {
    color: #94a3b8;
    line-height: 1.6;
}

/* Industries Section */
.industries-section {
    padding: 80px 24px;
    background: linear-gradient(180deg, #1e3a8a 0%, #0f172a 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.dot-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.04;
    background-image: radial-gradient(circle, #06b6d4 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}

.industries-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.industries-container h2 {
    font-size: 48px;
    font-weight: 800;
    text-align: center;
    color: white;
    margin-bottom: 16px;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.industry-card {
    padding: 24px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: block;
}

a.industry-card,
a.industry-card:hover,
a.industry-card:visited,
a.industry-card:active,
a.industry-card:focus {
    text-decoration: none;
}

.industry-card:hover {
    transform: translateY(-4px);
    border-color: rgba(6, 182, 212, 0.5);
    background: rgba(6, 182, 212, 0.1);
}

.industry-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2) 0%, rgba(33, 150, 243, 0.2) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px auto;
}

.industry-icon svg {
    width: 24px;
    height: 24px;
    color: #06b6d4;
}

.industry-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.industry-card p {
    font-size: 14px;
    color: #94a3b8;
    line-height: 1.4;
}

/* CTA Landing */
.cta-landing {
    padding: 80px 24px;
    background: #0a1628;
    border-top: 2px solid rgba(6, 182, 212, 0.3);
}

.cta-landing-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-landing-box {
    padding: 48px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1) 0%, rgba(33, 150, 243, 0.1) 50%, rgba(147, 51, 234, 0.1) 100%);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.cta-landing-box > svg {
    width: 64px;
    height: 64px;
    color: #06b6d4;
    margin: 0 auto 24px auto;
    display: block;
}

.cta-landing-box h2 {
    font-size: 48px;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
}

.cta-landing-box p {
    font-size: 20px;
    color: #cbd5e1;
    margin-bottom: 32px;
}

.btn-cta-large {
    padding: 14px 28px;
    background: linear-gradient(135deg, #00bcd4 0%, #2196f3 100%);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
    width: auto;
    max-width: fit-content;
    margin: 0 auto;
}

.btn-cta-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 188, 212, 0.5);
    text-decoration: none;
}

.btn-cta-large:visited,
.btn-cta-large:active,
.btn-cta-large:focus {
    color: white;
    text-decoration: none;
}

.cta-benefits {
    margin-top: 24px;
    font-size: 16px;
    color: #67e8f9;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.cta-benefits .bullet {
    color: #06b6d4;
}

/* Partners Section */
.partners-section {
    padding: 60px 24px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.partners-header {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 48px;
}

.partners-header h2 {
    font-size: 48px;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
}

.partners-header p {
    color: #94a3b8;
    max-width: 700px;
    margin: 0 auto;
}

.partners-carousel {
    position: relative;
    overflow: hidden;
}

.partners-track {
    display: flex;
    gap: 32px;
    animation: scroll 120s linear infinite;
    width: fit-content;
}

.partner-logo {
    min-width: 130px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.partner-logo:hover {
    background: #ffffff;
    border-color: #ffffff;
    transform: scale(1.05);
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 1;
    transition: opacity 0.3s ease;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Product Showcase Section */
.product-showcase {
    padding: 100px 24px;
    background: linear-gradient(180deg, #0a1628 0%, #1e3a8a 50%, #0f172a 100%);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
    border-bottom: 1px solid rgba(6, 182, 212, 0.2);
    position: relative;
    overflow: hidden;
}

.showcase-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.15) 0%, transparent 70%);
    pointer-events: none;
    animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.product-showcase-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.product-showcase-container h2 {
    font-size: 48px;
    font-weight: 800;
    text-align: center;
    color: white;
    margin-bottom: 16px;
}

.screenshots-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 24px;
    margin-top: 64px;
}

.screenshot-main {
    grid-row: span 2;
}

.screenshot-wrapper {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(6, 182, 212, 0.3);
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.8) 0%, rgba(30, 58, 138, 0.4) 100%);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
}

.screenshot-wrapper:hover {
    transform: translateY(-8px);
    border-color: rgba(6, 182, 212, 0.6);
    box-shadow: 0 20px 60px rgba(6, 182, 212, 0.3);
}

.screenshot-placeholder {
    aspect-ratio: 16/10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.05) 0%, rgba(33, 150, 243, 0.05) 100%);
    padding: 48px;
    position: relative;
}

.screenshot-placeholder.small {
    aspect-ratio: 4/3;
    padding: 32px;
}

.screenshot-placeholder svg {
    color: #06b6d4;
    margin-bottom: 16px;
    opacity: 0.6;
}

.screenshot-placeholder p {
    color: #67e8f9;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.screenshot-note {
    color: #94a3b8;
    font-size: 14px;
    font-style: italic;
}

.screenshot-label {
    padding: 24px;
    background: rgba(15, 23, 42, 0.6);
}

.screenshot-label.small {
    padding: 16px;
}

.screenshot-label h3 {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.screenshot-label h4 {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.screenshot-label p {
    color: #94a3b8;
    line-height: 1.6;
}

/* Browser Mockup - 3D Floating Style */
.screenshot-main .screenshot-wrapper {
    perspective: 1000px;
    background: transparent;
    border: none;
    overflow: visible;
    padding: 20px 20px 30px 20px;
    position: relative;
}

.screenshot-main .screenshot-wrapper:hover {
    transform: none;
    box-shadow: none;
}

.browser-mockup {
    background: #1e293b;
    border-radius: 12px;
    overflow: hidden;
    box-shadow:
        0 50px 100px rgba(0, 0, 0, 0.5),
        0 30px 60px rgba(6, 182, 212, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    transform: rotateX(8deg) rotateY(-5deg) scale(0.95);
    transform-style: preserve-3d;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    animation: browser-float 6s ease-in-out infinite;
}

.screenshot-main .screenshot-wrapper:hover .browser-mockup {
    transform: rotateX(2deg) rotateY(-2deg) scale(1);
    box-shadow:
        0 60px 120px rgba(0, 0, 0, 0.6),
        0 40px 80px rgba(6, 182, 212, 0.25),
        0 0 60px rgba(6, 182, 212, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.15);
}

@keyframes browser-float {
    0%, 100% {
        transform: rotateX(8deg) rotateY(-5deg) scale(0.95) translateY(0px);
    }
    50% {
        transform: rotateX(8deg) rotateY(-5deg) scale(0.95) translateY(-15px);
    }
}

/* Glowing reflection underneath */
.screenshot-main .screenshot-wrapper::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 15%;
    right: 15%;
    height: 50px;
    background: linear-gradient(180deg, rgba(6, 182, 212, 0.2) 0%, transparent 100%);
    filter: blur(15px);
    border-radius: 50%;
    opacity: 0.6;
    transition: opacity 0.4s ease;
}

.screenshot-main .screenshot-wrapper:hover::after {
    opacity: 1;
}

.browser-header {
    background: linear-gradient(180deg, #334155 0%, #1e293b 100%);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.browser-dots {
    display: flex;
    gap: 8px;
}

.browser-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.browser-dots .dot.red {
    background: #ef4444;
}

.browser-dots .dot.yellow {
    background: #eab308;
}

.browser-dots .dot.green {
    background: #22c55e;
}

.browser-address-bar {
    flex: 1;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    padding: 3px 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.browser-address-bar svg {
    color: #22c55e;
    flex-shrink: 0;
}

.browser-address-bar span {
    color: #94a3b8;
    font-size: 13px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.browser-content {
    background: #0f172a;
    line-height: 0;
    overflow: hidden;
}

.browser-content img {
    width: calc(100% + 3px);
    height: auto;
    display: block;
    margin-right: -3px;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* iPhone 15 Pro Max Mockup */
.iphone-wrapper {
    background: transparent;
    border: none;
    display: flex;
    justify-content: center;
    padding: 20px 16px 40px 16px;
    perspective: 1000px;
    overflow: visible;
}

.iphone-wrapper:hover {
    transform: none;
    box-shadow: none;
}

/* Glowing reflection underneath iPhone */
.iphone-wrapper::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 25%;
    right: 25%;
    height: 40px;
    background: linear-gradient(180deg, rgba(6, 182, 212, 0.25) 0%, transparent 100%);
    filter: blur(12px);
    border-radius: 50%;
    opacity: 0.6;
    transition: opacity 0.4s ease;
}

.iphone-wrapper:hover::after {
    opacity: 1;
}

.iphone-mockup {
    width: 180px;
    background: linear-gradient(145deg, #2a2a2c 0%, #1a1a1c 100%);
    border-radius: 32px;
    padding: 8px;
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.5),
        0 20px 40px rgba(6, 182, 212, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    position: relative;
    transform: rotateX(8deg) rotateY(5deg) scale(0.95);
    transform-style: preserve-3d;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    animation: iphone-float 6s ease-in-out infinite;
}

.iphone-wrapper:hover .iphone-mockup {
    transform: rotateX(2deg) rotateY(2deg) scale(1);
    box-shadow:
        0 40px 80px rgba(0, 0, 0, 0.6),
        0 30px 60px rgba(6, 182, 212, 0.25),
        0 0 50px rgba(6, 182, 212, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.15),
        inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

@keyframes iphone-float {
    0%, 100% {
        transform: rotateX(8deg) rotateY(5deg) scale(0.95) translateY(0px);
    }
    50% {
        transform: rotateX(8deg) rotateY(5deg) scale(0.95) translateY(-10px);
    }
}

.iphone-dynamic-island {
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 18px;
    background: #000;
    border-radius: 20px;
    z-index: 10;
}

.iphone-screen {
    border-radius: 24px;
    overflow: hidden;
    background: #000;
}

.iphone-screen img {
    width: 100%;
    height: auto;
    display: block;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* Customization Showcase */
.customize-wrapper {
    background: transparent;
    border: none;
    padding: 20px 16px 40px 16px;
    perspective: 1000px;
    overflow: visible;
}

.customize-wrapper:hover {
    transform: none;
    box-shadow: none;
}

.customize-showcase {
    position: relative;
    width: 100%;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Center settings icon */
.customize-center {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2) 0%, rgba(139, 92, 246, 0.2) 100%);
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #06b6d4;
    animation: center-pulse 3s ease-in-out infinite;
    z-index: 5;
}

@keyframes center-pulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(6, 182, 212, 0.3);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 40px rgba(6, 182, 212, 0.5);
        transform: scale(1.05);
    }
}

/* Floating elements base */
.floating-element {
    position: absolute;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.floating-element:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(6, 182, 212, 0.3);
    border-color: rgba(6, 182, 212, 0.4);
}

/* Color palette */
.color-palette {
    top: 15px;
    left: 10px;
    display: flex;
    gap: 6px;
    padding: 8px 10px;
    animation: float-1 5s ease-in-out infinite;
}

.color-swatch {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    transition: transform 0.2s ease;
}

.color-palette:hover .color-swatch:nth-child(odd) {
    transform: translateY(-3px);
}

@keyframes float-1 {
    0%, 100% { transform: translateY(0px) rotate(-2deg); }
    50% { transform: translateY(-8px) rotate(0deg); }
}

/* Logo placeholder */
.logo-placeholder {
    top: 20px;
    right: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    animation: float-2 6s ease-in-out infinite;
}

.logo-placeholder svg {
    color: #67e8f9;
}

.logo-placeholder span {
    color: #94a3b8;
    font-size: 11px;
    font-weight: 500;
}

@keyframes float-2 {
    0%, 100% { transform: translateY(0px) rotate(2deg); }
    50% { transform: translateY(-10px) rotate(0deg); }
}

/* Menu buttons */
.menu-buttons {
    bottom: 50px;
    left: 5px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 8px;
    animation: float-3 5.5s ease-in-out infinite;
}

.mini-btn {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.3) 0%, rgba(6, 182, 212, 0.1) 100%);
    color: #67e8f9;
    font-size: 9px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 4px;
    text-align: center;
}

@keyframes float-3 {
    0%, 100% { transform: translateY(0px) rotate(1deg); }
    50% { transform: translateY(-6px) rotate(-1deg); }
}

/* Social icons */
.social-icons {
    bottom: 40px;
    right: 10px;
    display: flex;
    gap: 8px;
    padding: 8px 10px;
    animation: float-4 6.5s ease-in-out infinite;
}

.social-icon {
    width: 28px;
    height: 28px;
    background: rgba(6, 182, 212, 0.15);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #67e8f9;
    transition: all 0.2s ease;
}

.social-icons:hover .social-icon {
    background: rgba(6, 182, 212, 0.3);
}

@keyframes float-4 {
    0%, 100% { transform: translateY(0px) rotate(-1deg); }
    50% { transform: translateY(-7px) rotate(1deg); }
}

/* Glowing reflection underneath */
.customize-wrapper::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 20%;
    right: 20%;
    height: 40px;
    background: linear-gradient(180deg, rgba(139, 92, 246, 0.2) 0%, transparent 100%);
    filter: blur(15px);
    border-radius: 50%;
    opacity: 0.6;
}

/* Platform Integration Section */
.platform-integration {
    padding: 100px 24px;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
    border-bottom: 1px solid rgba(6, 182, 212, 0.2);
    position: relative;
    overflow: hidden;
}

.integration-container {
    max-width: 1200px;
    margin: 0 auto;
}

.integration-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.integration-text h2 {
    font-size: 48px;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
    line-height: 1.2;
}

.integration-subtitle {
    font-size: 20px;
    color: #cbd5e1;
    margin-bottom: 48px;
    line-height: 1.6;
}

.integration-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.integration-feature {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: rgba(6, 182, 212, 0.05);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.integration-feature:hover {
    background: rgba(6, 182, 212, 0.1);
    border-color: rgba(6, 182, 212, 0.4);
    transform: translateX(8px);
}

.integration-feature svg {
    color: #06b6d4;
    flex-shrink: 0;
}

.integration-feature span {
    color: #e2e8f0;
    font-size: 16px;
    font-weight: 500;
}

.integration-visual {
    position: relative;
}

.platform-screenshot {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(6, 182, 212, 0.3);
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.8) 0%, rgba(30, 58, 138, 0.6) 100%);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 80px rgba(6, 182, 212, 0.2);
    transition: all 0.4s ease;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.platform-screenshot:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4), 0 0 100px rgba(6, 182, 212, 0.3);
}

.screenshot-placeholder.platform {
    aspect-ratio: 16/11;
    padding: 64px;
}

/* Enhanced Listener Experience with Phone Mockup */
.app-screenshot-showcase {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

/* Dual Phone Display Layout */
.dual-phone-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    position: relative;
}

.dual-phone-display .phone-mockup {
    width: 200px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: transform;
}

.dual-phone-display .phone-left {
    transform: rotateY(5deg) rotateX(1deg);
    animation: dual-phone-float-left 6s ease-in-out infinite;
}

.dual-phone-display .phone-right {
    transform: rotateY(-5deg) rotateX(1deg);
    animation: dual-phone-float-right 6s ease-in-out infinite;
    animation-delay: -3s;
}

.dual-phone-display .phone-left:hover {
    transform: rotateY(2deg) rotateX(0deg) scale(1.02);
}

.dual-phone-display .phone-right:hover {
    transform: rotateY(-2deg) rotateX(0deg) scale(1.02);
}

@keyframes dual-phone-float-left {
    0%, 100% {
        transform: rotateY(5deg) rotateX(1deg) translateY(0px);
    }
    50% {
        transform: rotateY(5deg) rotateX(1deg) translateY(-8px);
    }
}

@keyframes dual-phone-float-right {
    0%, 100% {
        transform: rotateY(-5deg) rotateX(1deg) translateY(0px);
    }
    50% {
        transform: rotateY(-5deg) rotateX(1deg) translateY(-8px);
    }
}

/* Menu Flow Indicator Arrow */
.menu-flow-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2) 0%, rgba(139, 92, 246, 0.2) 100%);
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 50%;
    color: #67e8f9;
    animation: arrow-pulse 2s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes arrow-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(6, 182, 212, 0.3);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 30px rgba(6, 182, 212, 0.5);
    }
}

.phone-mockup {
    width: 320px;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border-radius: 40px;
    padding: 12px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.1);
    position: relative;
    transition: all 0.4s ease;
    animation: float 6s ease-in-out infinite;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.phone-mockup:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6), 0 0 100px rgba(6, 182, 212, 0.3);
}

.phone-notch {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 28px;
    background: #0a0f1a;
    border-radius: 0 0 20px 20px;
    z-index: 10;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.phone-screen {
    border-radius: 32px;
    overflow: hidden;
    background: #000;
    aspect-ratio: 9/19.5;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.phone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    image-rendering: auto;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.phone-home-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

.screenshot-placeholder.app {
    aspect-ratio: 9/19.5;
    padding: 48px 24px;
}

.app-badges {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.badge-item:hover {
    background: rgba(6, 182, 212, 0.2);
    border-color: rgba(6, 182, 212, 0.4);
    transform: translateY(-2px);
}

.badge-item svg {
    color: #06b6d4;
    width: 24px;
    height: 24px;
}

.badge-item span {
    color: #e2e8f0;
    font-size: 14px;
    font-weight: 600;
}

/* Add depth and shadows to existing sections */
.hero-landing {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.step-card {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.feature-landing-card {
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.feature-landing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(6, 182, 212, 0.2);
    border-color: rgba(6, 182, 212, 0.4);
}

.listener-feature-item {
    transition: all 0.3s ease;
    padding: 16px;
    border-radius: 12px;
}

.listener-feature-item:hover {
    background: rgba(6, 182, 212, 0.05);
    transform: translateX(8px);
}

/* Enhanced CTA with more depth */
.cta-landing-box {
    box-shadow: 0 20px 60px rgba(6, 182, 212, 0.2), 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

.cta-landing-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(6, 182, 212, 0.3), 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* Accessibility - Focus Indicators for VPAT Compliance */
.btn-landing-primary:focus,
.btn-landing-secondary:focus,
.btn-cta-large:focus {
    outline: 3px solid #06b6d4;
    outline-offset: 4px;
}

.step-card:focus,
.feature-landing-card:focus,
.industry-card:focus {
    outline: 2px solid #06b6d4;
    outline-offset: 2px;
}

.screenshot-wrapper:focus-within {
    outline: 2px solid #06b6d4;
    outline-offset: 4px;
    border-color: rgba(6, 182, 212, 0.8);
}

.integration-feature:focus {
    outline: 2px solid #06b6d4;
    outline-offset: 2px;
}

.badge-item:focus {
    outline: 2px solid #06b6d4;
    outline-offset: 2px;
}

/* Ensure animations respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .screenshot-wrapper,
    .platform-screenshot,
    .phone-mockup {
        border-width: 2px;
    }

    .btn-landing-primary,
    .btn-landing-secondary,
    .btn-cta-large {
        border: 2px solid currentColor;
    }
}

/* Overlapping Hero Showcase Layout */
.showcase-hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    margin-top: 64px;
    padding: 40px 0;
    perspective: 2000px;
}

/* Center - Browser Mockup (Main Focus) */
.showcase-center {
    position: relative;
    z-index: 10;
    transform-style: preserve-3d;
}

.showcase-center .browser-mockup {
    width: 520px;
    max-width: 90vw;
    background: #1e293b;
    border-radius: 12px;
    overflow: hidden;
    box-shadow:
        0 50px 100px rgba(0, 0, 0, 0.5),
        0 30px 60px rgba(6, 182, 212, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    transform: rotateX(8deg) rotateY(0deg) scale(1);
    transform-style: preserve-3d;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    animation: center-float 6s ease-in-out infinite;
}

.showcase-center:hover .browser-mockup {
    transform: rotateX(4deg) rotateY(0deg) scale(1.02);
    box-shadow:
        0 60px 120px rgba(0, 0, 0, 0.6),
        0 40px 80px rgba(6, 182, 212, 0.25),
        0 0 60px rgba(6, 182, 212, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.15);
}

@keyframes center-float {
    0%, 100% {
        transform: rotateX(8deg) rotateY(0deg) scale(1) translateY(0px);
    }
    50% {
        transform: rotateX(8deg) rotateY(0deg) scale(1) translateY(-15px);
    }
}

/* Side Elements */
.showcase-side {
    position: absolute;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.showcase-side:hover {
    z-index: 15;
}

/* Left Side - iPhone */
.showcase-left {
    left: 0;
    top: 50%;
    transform: translateY(-50%) translateX(30px);
}

.showcase-left .iphone-mockup {
    width: 160px;
    background: linear-gradient(145deg, #2a2a2c 0%, #1a1a1c 100%);
    border-radius: 28px;
    padding: 6px;
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.5),
        0 20px 40px rgba(6, 182, 212, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    position: relative;
    transform: rotateX(5deg) rotateY(15deg) scale(0.9);
    transform-style: preserve-3d;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    animation: left-float 6s ease-in-out infinite;
}

.showcase-left:hover .iphone-mockup {
    transform: rotateX(2deg) rotateY(8deg) scale(1);
    box-shadow:
        0 40px 80px rgba(0, 0, 0, 0.6),
        0 30px 60px rgba(6, 182, 212, 0.25),
        0 0 50px rgba(6, 182, 212, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.15);
}

@keyframes left-float {
    0%, 100% {
        transform: rotateX(5deg) rotateY(15deg) scale(0.9) translateY(0px);
    }
    50% {
        transform: rotateX(5deg) rotateY(15deg) scale(0.9) translateY(-10px);
    }
}

.showcase-left .iphone-dynamic-island {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 14px;
    background: #000;
    border-radius: 16px;
    z-index: 10;
}

.showcase-left .iphone-screen {
    border-radius: 22px;
    overflow: hidden;
    background: #000;
}

.showcase-left .iphone-screen img {
    width: 100%;
    height: auto;
    display: block;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* Right Side - Video Player Browser Mockup */
.showcase-right {
    right: 0;
    top: 50%;
    transform: translateY(-50%) translateX(-30px);
}

.showcase-right .browser-mockup-small {
    width: 280px;
    background: #1e293b;
    border-radius: 10px;
    overflow: hidden;
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.5),
        0 20px 40px rgba(6, 182, 212, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    transform: rotateX(5deg) rotateY(-15deg) scale(0.9);
    transform-style: preserve-3d;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    animation: right-float 6s ease-in-out infinite;
}

.showcase-right:hover .browser-mockup-small {
    transform: rotateX(2deg) rotateY(-8deg) scale(1);
    box-shadow:
        0 40px 80px rgba(0, 0, 0, 0.6),
        0 30px 60px rgba(6, 182, 212, 0.25),
        0 0 50px rgba(6, 182, 212, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.15);
}

@keyframes right-float {
    0%, 100% {
        transform: rotateX(5deg) rotateY(-15deg) scale(0.9) translateY(0px);
    }
    50% {
        transform: rotateX(5deg) rotateY(-15deg) scale(0.9) translateY(-10px);
    }
}

.browser-mockup-small .browser-header {
    padding: 8px 12px;
}

.browser-mockup-small .browser-dots .dot {
    width: 8px;
    height: 8px;
}

.browser-mockup-small .browser-address-bar {
    padding: 2px 8px;
}

.browser-mockup-small .browser-address-bar span {
    font-size: 10px;
}

.browser-mockup-small .browser-content img {
    width: 100%;
    height: auto;
    display: block;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* Side Labels */
.showcase-side-label {
    text-align: center;
    padding: 12px 16px;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.showcase-side-label h4 {
    font-size: 14px;
    font-weight: 700;
    color: #67e8f9;
    margin-bottom: 4px;
}

.showcase-side-label p {
    font-size: 12px;
    color: #94a3b8;
    margin: 0;
}

/* Unified Glow */
.showcase-glow-unified {
    position: absolute;
    bottom: -20px;
    left: 10%;
    right: 10%;
    height: 100px;
    background: radial-gradient(ellipse at center, rgba(6, 182, 212, 0.25) 0%, rgba(139, 92, 246, 0.15) 40%, transparent 70%);
    filter: blur(30px);
    border-radius: 50%;
    opacity: 0.8;
    z-index: 1;
}

/* Main Label */
.showcase-main-label {
    text-align: center;
    padding: 30px 24px;
    max-width: 700px;
    margin: 0 auto;
}

.showcase-main-label h3 {
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
}

.showcase-main-label p {
    color: #94a3b8;
    font-size: 16px;
    line-height: 1.6;
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .hero-landing-title {
        font-size: 56px;
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .screenshots-grid {
        grid-template-columns: 1fr 1fr;
    }

    .screenshot-main {
        grid-column: span 2;
        grid-row: span 1;
    }

    /* Showcase hero tablet adjustments */
    .showcase-hero {
        min-height: 450px;
        padding: 30px 0;
    }

    .showcase-center .browser-mockup {
        width: 420px;
    }

    .showcase-left {
        transform: translateY(-50%) translateX(10px);
    }

    .showcase-left .iphone-mockup {
        width: 130px;
    }

    .showcase-right {
        transform: translateY(-50%) translateX(-10px);
    }

    .showcase-right .browser-mockup-small {
        width: 220px;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    /* Hero Section */
    .hero-landing {
        padding-top: 100px;
        padding-bottom: 60px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .hero-landing-title {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .hero-landing-subtitle {
        font-size: 16px;
        margin-bottom: 32px;
    }

    .trust-badge {
        padding: 6px 12px;
        margin-bottom: 24px;
    }

    .trust-badge span {
        font-size: 12px;
    }

    .hero-landing-cta {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 48px;
    }

    .btn-landing-primary,
    .btn-landing-secondary {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 16px;
    }

    .quick-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
        max-width: 100%;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-label {
        font-size: 12px;
    }

    /* How It Works Section */
    .how-it-works-landing {
        padding: 60px 16px;
    }

    .how-it-works-container h2 {
        font-size: 32px;
        margin-bottom: 16px;
    }

    .section-subtitle-impact {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .step-card {
        padding: 24px 20px;
    }

    .step-icon {
        width: 52px;
        height: 52px;
        margin-bottom: 16px;
    }

    .step-icon svg {
        width: 26px;
        height: 26px;
    }

    .step-label {
        font-size: 11px;
    }

    .step-title {
        font-size: 20px;
    }

    .step-desc {
        font-size: 14px;
    }

    /* Product Showcase Section */
    .product-showcase {
        padding: 60px 16px;
    }

    .product-showcase-container h2 {
        font-size: 28px;
    }

    .section-subtitle-centered {
        font-size: 15px;
    }

    .screenshots-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }

    .screenshot-main {
        grid-column: span 1;
    }

    /* Reduce 3D effect on mobile */
    .screenshot-main .screenshot-wrapper {
        padding: 10px 10px 40px 10px;
    }

    .browser-mockup {
        transform: rotateX(4deg) rotateY(-2deg) scale(0.98);
        animation: none;
    }

    .screenshot-main .screenshot-wrapper:hover .browser-mockup {
        transform: rotateX(2deg) rotateY(-1deg) scale(1);
    }

    @keyframes browser-float {
        0%, 100%, 50% {
            transform: rotateX(4deg) rotateY(-2deg) scale(0.98) translateY(0px);
        }
    }

    .screenshot-placeholder {
        padding: 32px;
    }

    .screenshot-label {
        padding: 20px;
    }

    .screenshot-label h3 {
        font-size: 20px;
    }

    .screenshot-label h4 {
        font-size: 16px;
    }

    .screenshot-label p {
        font-size: 14px;
    }

    /* Showcase Hero Mobile - Stack vertically */
    .showcase-hero {
        flex-direction: column;
        min-height: auto;
        gap: 40px;
        padding: 20px 0;
        margin-top: 40px;
    }

    .showcase-side {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        transform: none;
    }

    .showcase-left {
        order: 2;
        transform: none;
    }

    .showcase-center {
        order: 1;
    }

    .showcase-right {
        order: 3;
        transform: none;
    }

    .showcase-center .browser-mockup {
        width: 100%;
        max-width: 400px;
        transform: rotateX(4deg) scale(0.98);
        animation: none;
    }

    .showcase-center:hover .browser-mockup {
        transform: rotateX(2deg) scale(1);
    }

    .showcase-left .iphone-mockup {
        width: 180px;
        transform: rotateX(4deg) scale(0.95);
        animation: none;
    }

    .showcase-left:hover .iphone-mockup {
        transform: rotateX(2deg) scale(1);
    }

    .showcase-right .browser-mockup-small {
        width: 280px;
        transform: rotateX(4deg) scale(0.95);
        animation: none;
    }

    .showcase-right:hover .browser-mockup-small {
        transform: rotateX(2deg) scale(1);
    }

    .showcase-side-label {
        margin-top: 12px;
    }

    .showcase-glow-unified {
        display: none;
    }

    .showcase-main-label {
        padding: 20px 16px;
    }

    .showcase-main-label h3 {
        font-size: 24px;
    }

    .showcase-main-label p {
        font-size: 14px;
    }

    /* Features Section */
    .features-landing {
        padding: 60px 16px;
    }

    .features-landing-container h2 {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .features-landing-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .feature-landing-card {
        padding: 24px;
    }

    .feature-landing-icon {
        width: 48px;
        height: 48px;
    }

    .feature-landing-icon svg {
        width: 24px;
        height: 24px;
    }

    .feature-landing-card h3 {
        font-size: 20px;
    }

    .feature-landing-card p {
        font-size: 14px;
    }

    /* Listener Experience Section */
    .listener-experience {
        padding: 60px 16px;
    }

    .listener-container h2 {
        font-size: 28px;
    }

    .listener-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .phone-mockup {
        width: 260px;
    }

    /* Dual Phone Display Mobile */
    .dual-phone-display {
        gap: 16px;
    }

    .dual-phone-display .phone-mockup {
        width: 140px;
    }

    .dual-phone-display .phone-left,
    .dual-phone-display .phone-right {
        transform: rotateY(0deg) rotateX(2deg);
        animation: none;
    }

    .dual-phone-display .phone-left:hover,
    .dual-phone-display .phone-right:hover {
        transform: rotateY(0deg) rotateX(1deg) scale(1.02);
    }

    .menu-flow-indicator {
        width: 36px;
        height: 36px;
    }

    .menu-flow-indicator svg {
        width: 18px;
        height: 18px;
    }

    .app-badges {
        gap: 12px;
    }

    .badge-item {
        padding: 8px 16px;
    }

    .badge-item span {
        font-size: 12px;
    }

    .listener-feature-item h3 {
        font-size: 18px;
    }

    .listener-feature-item p {
        font-size: 14px;
    }

    /* Industries Section */
    .industries-section {
        padding: 60px 16px;
    }

    .industries-container h2 {
        font-size: 28px;
    }

    .industries-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .industry-card {
        padding: 20px 16px;
    }

    .industry-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 12px;
    }

    .industry-icon svg {
        width: 20px;
        height: 20px;
    }

    .industry-card h3 {
        font-size: 15px;
        margin-bottom: 6px;
    }

    .industry-card p {
        font-size: 12px;
    }

    /* CTA Section */
    .cta-landing {
        padding: 60px 16px;
    }

    .cta-landing-box {
        padding: 32px 24px;
    }

    .cta-landing-box > svg {
        width: 48px;
        height: 48px;
        margin-bottom: 20px;
    }

    .cta-landing-box h2 {
        font-size: 28px;
    }

    .cta-landing-box p {
        font-size: 16px;
        margin-bottom: 24px;
    }

    .btn-cta-large {
        justify-content: center;
        padding: 14px 32px;
    }

    .cta-benefits {
        font-size: 13px;
        gap: 8px;
    }

    .cta-benefits .bullet {
        display: none;
    }

    .cta-benefits span:not(.bullet) {
        display: block;
        width: 100%;
        text-align: center;
    }

    /* Partners Section */
    .partners-section {
        padding: 48px 16px;
    }

    .partners-header h2 {
        font-size: 28px;
    }

    .partners-header p {
        font-size: 14px;
    }

    .partners-track {
        gap: 16px;
    }

    .partner-logo {
        min-width: 110px;
        height: 45px;
        padding: 8px 14px;
    }

    .partner-logo img {
        opacity: 0.9;
    }

    /* Integration Section */
    .integration-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .integration-text h2 {
        font-size: 28px;
    }

    .integration-subtitle {
        font-size: 16px;
        margin-bottom: 32px;
    }

    .integration-feature {
        padding: 14px 16px;
    }

    .integration-feature span {
        font-size: 14px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero-landing-title {
        font-size: 30px;
    }

    .quick-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .stat-number {
        font-size: 24px;
    }

    .stat-label {
        font-size: 10px;
    }

    .industries-grid {
        grid-template-columns: 1fr;
    }

    .industry-card {
        display: flex;
        align-items: center;
        gap: 16px;
        text-align: left;
        padding: 16px;
    }

    .industry-icon {
        margin: 0;
        flex-shrink: 0;
    }

    .industry-card h3 {
        margin-bottom: 4px;
    }

    .phone-mockup {
        width: 240px;
    }

    /* Dual Phone Display Small Mobile */
    .dual-phone-display {
        gap: 12px;
    }

    .dual-phone-display .phone-mockup {
        width: 120px;
    }

    .menu-flow-indicator {
        width: 32px;
        height: 32px;
    }

    .menu-flow-indicator svg {
        width: 16px;
        height: 16px;
    }

    .cta-benefits span:not(.bullet) {
        font-size: 12px;
    }
}
