:root {
    --bg: #0d1117;
    --bg-2: #161b22;
    --text: #e6edf3;
    --muted: #8b949e;
    --muted-2: #6e7681;
    --brand: #8b5cf6;
    --accent: #FF6B35;
    --shadow: 0 25px 50px rgba(139, 92, 246, .2);
    --radius: 15px;
    --header-h: 80px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-h)
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px
}

.header {
    position: fixed;
    inset: 0 0 auto 0;
    height: var(--header-h);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
    width: 100%;
    background: rgba(13, 17, 23, 0);
    border-bottom: none;
    z-index: 1000;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    transition: background .3s, border-bottom .3s, box-shadow .3s;
}

.header.scrolled {
    background: rgba(13, 17, 23, .95);
    border-bottom: 1px solid rgba(139, 92, 246, .2);
    box-shadow: 0 6px 20px rgba(0, 0, 0, .25);
}

.nav-container {
    width: 100%;
    max-width: 1300px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--brand);
    display: flex;
    gap: 10px;
    align-items: center;
}

.logo-icon {
    font-size: 2rem;
    color: var(--accent)
}

.logo-icon img {
    display: block
}

.nav-links {
    display: flex;
    gap: 25px
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-size: .95rem;
    font-weight: 500;
    padding: 5px 0;
    transition: color .3s, border-bottom .3s, opacity .2s;
}

.nav-links a:hover {
    color: var(--brand);
    border-bottom: 2px solid var(--accent)
}

.hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--bg) 0%, var(--bg-2) 50%, var(--bg) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: calc(var(--header-h) + 20px) 40px 80px;
    text-align: center;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(1200px 600px at 100% -10%, rgba(139, 92, 246, .15), transparent 60%),
        radial-gradient(900px 500px at -10% 110%, rgba(255, 107, 53, .12), transparent 60%);
    pointer-events: none;
}

.hero-bg {
    position: absolute;
    inset: 0;
    opacity: .3;
    pointer-events: none;
}

.hero-bg-circle1,
.hero-bg-circle2 {
    position: absolute;
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.hero-bg-circle1 {
    width: 500px;
    height: 500px;
    right: -150px;
    top: -150px;
    background: radial-gradient(circle, rgba(139, 92, 246, .3), transparent 60%);
}

.hero-bg-circle2 {
    width: 400px;
    height: 400px;
    left: -150px;
    bottom: -100px;
    background: radial-gradient(circle, rgba(255, 107, 53, .2), transparent 60%);
    animation-duration: 6s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-30px)
    }
}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 5.5rem);
    font-weight: 900;
    margin-bottom: 25px;
    line-height: 1.1;
    letter-spacing: -2px;
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 50%, #FF6B35 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    color: #a8b8d8;
    margin: 0 auto 40px;
    max-width: 900px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.btn {
    padding: 18px 45px;
    border: none;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--brand), #ec4899);
    color: #fff;
    box-shadow: 0 10px 30px rgba(139, 92, 246, .3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(139, 92, 246, .5);
}

.btn-secondary {
    background: transparent;
    color: var(--brand);
    border: 2px solid var(--brand);
}

.btn-secondary:hover {
    background: rgba(139, 92, 246, .1);
    transform: translateY(-3px);
}

.trust-line {
    font-size: .95rem;
    color: #6e7681;
    margin-top: 20px;
}

.trust-bar {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 60px;
    flex-wrap: wrap;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.trust-stat {
    text-align: center
}

.trust-number {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--brand), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.trust-label {
    font-size: .9rem;
    color: var(--muted)
}

section {
    padding: 100px 40px;
    position: relative
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 20px;
    text-align: center;
    color: #fff;
}

.section-subtitle {
    text-align: center;
    color: var(--muted);
    font-size: 1.15rem;
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.8;
}

.show-pricing-btn {
    text-align: center;
    padding: 60px 0
}

.social-proof {
    background: linear-gradient(135deg, #0d1117 0%, #1a1f4d 100%);
    text-align: center;
}

.industries {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.industry-tag {
    background: rgba(139, 92, 246, .1);
    border: 1px solid rgba(139, 92, 246, .3);
    padding: 12px 25px;
    border-radius: 25px;
    color: var(--brand);
    font-weight: 600;
    font-size: .95rem;
    transition: transform .3s, background .3s, border-color .3s;
}

.industry-tag:hover {
    background: rgba(139, 92, 246, .2);
    border-color: var(--brand);
    transform: translateY(-3px);
}

.problem {
    background: var(--bg)
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.problem-card {
    background: linear-gradient(135deg, rgba(139, 92, 246, .05), rgba(255, 107, 53, .05));
    border: 1px solid rgba(139, 92, 246, .2);
    border-radius: var(--radius);
    padding: 40px;
    transition: transform .4s cubic-bezier(.34, 1.56, .64, 1), box-shadow .4s, border-color .4s;
    position: relative;
    overflow: hidden;
}

.problem-card::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, var(--brand), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .5s ease;
}

.problem-card:hover::before {
    transform: scaleX(1)
}

.problem-card:hover {
    transform: translateY(-10px);
    border-color: var(--brand);
    box-shadow: var(--shadow);
}

.problem-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block
}

.problem-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #fff
}

.problem-card p {
    color: var(--muted);
    line-height: 1.7
}

.problem-highlight {
    background: linear-gradient(135deg, rgba(139, 92, 246, .15), rgba(255, 107, 53, .15));
    border: 2px solid var(--brand);
    padding: 50px;
    border-radius: var(--radius);
    margin-top: 60px;
    text-align: center;
}

.problem-highlight h3 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 20px
}

.problem-highlight p {
    font-size: 1.2rem;
    color: var(--text);
    line-height: 1.8
}

.problem-highlight strong {
    color: var(--accent);
    font-size: 1.5rem
}

.solution {
    background: linear-gradient(135deg, var(--bg) 0%, var(--bg-2) 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature-card {
    background: linear-gradient(135deg, rgba(139, 92, 246, .05), rgba(255, 107, 53, .05));
    border: 1px solid rgba(139, 92, 246, .2);
    border-radius: var(--radius);
    padding: 45px;
    transition: transform .4s, border-color .4s, box-shadow .4s;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--brand);
    box-shadow: var(--shadow);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 25px
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
    font-weight: 700
}

.feature-label {
    color: var(--brand);
    font-size: .9rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: block;
}

.feature-card p {
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 20px
}

.feature-list {
    list-style: none;
    margin-top: 20px
}

.feature-list li {
    color: var(--muted);
    padding: 10px 0 10px 30px;
    position: relative;
    border-bottom: 1px solid rgba(139, 92, 246, .1);
}

.feature-list li::before {
    content: '✓';
    color: var(--brand);
    position: absolute;
    left: 0;
    font-weight: 800;
    font-size: 1.2rem;
}

.demo-button {
    background: rgba(139, 92, 246, .1);
    border: 2px solid var(--brand);
    padding: 12px 25px;
    border-radius: 8px;
    color: var(--brand);
    font-weight: 600;
    margin-top: 20px;
    display: inline-block;
    cursor: pointer;
    transition: transform .3s, background .3s;
}

.demo-button:hover {
    background: rgba(139, 92, 246, .2);
    transform: translateX(5px);
}

.integrations {
    background: var(--bg)
}

.integration-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.integration-category {
    background: rgba(139, 92, 246, .05);
    border: 1px solid rgba(139, 92, 246, .2);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
}

.integration-category h4 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.2rem
}

.integration-category p {
    color: var(--muted);
    font-size: .95rem;
    line-height: 1.6
}

.roi {
    background: linear-gradient(135deg, #0d1117 0%, #1a1f4d 100%);
}

.roi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-top: 60px;
}

.roi-card {
    background: linear-gradient(135deg, rgba(139, 92, 246, .1), rgba(255, 107, 53, .1));
    border: 2px solid var(--brand);
    border-radius: var(--radius);
    padding: 40px;
}

.roi-card h3 {
    color: var(--accent);
    font-size: 1.4rem;
    margin-bottom: 25px
}

.roi-card p {
    color: var(--text);
    margin-bottom: 12px;
    line-height: 1.7
}

.roi-result {
    background: rgba(139, 92, 246, .2);
    padding: 20px;
    border-radius: 10px;
    margin-top: 25px;
    font-weight: 700;
    color: #fff;
    font-size: 1.15rem;
    text-align: center;
}

.roi-example {
    background: linear-gradient(135deg, rgba(139, 92, 246, .08), rgba(255, 107, 53, .08));
    border: 1px solid rgba(139, 92, 246, .3);
    padding: 50px;
    border-radius: var(--radius);
    margin-top: 60px;
}

.roi-example h3 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 25px
}

.roi-example blockquote {
    border-left: 4px solid var(--brand);
    padding-left: 30px;
    margin: 25px 0;
    font-style: italic;
    color: #a8b8d8;
    font-size: 1.15rem;
    line-height: 1.9;
}

.roi-example .result {
    color: var(--accent);
    font-weight: 700;
    font-size: 1.3rem;
    margin-top: 20px;
}

.roi-bottom-line {
    text-align: center;
    margin-top: 40px;
    font-size: 1.3rem;
    color: #fff;
    font-weight: 700;
}

.case-studies {
    background: var(--bg)
}

.case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 35px;
    margin-top: 60px;
}

.case-card {
    background: linear-gradient(135deg, rgba(139, 92, 246, .05), rgba(255, 107, 53, .05));
    border: 1px solid rgba(139, 92, 246, .2);
    border-radius: var(--radius);
    padding: 45px;
    transition: transform .4s, border-color .4s, box-shadow .4s;
}

.case-card:hover {
    transform: translateY(-8px);
    border-color: var(--brand);
    box-shadow: 0 25px 50px rgba(139, 92, 246, .15);
}

.case-client {
    font-weight: 700;
    color: var(--brand);
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.case-location {
    color: var(--muted-2);
    font-size: .95rem;
    margin-bottom: 30px;
}

.case-section {
    margin-bottom: 25px
}

.case-label {
    color: var(--accent);
    font-size: .85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.case-text {
    color: var(--text);
    line-height: 1.7
}

.case-results {
    background: rgba(139, 92, 246, .1);
    padding: 30px;
    border-radius: 12px;
    margin-top: 25px;
}

.case-results h4 {
    color: var(--brand);
    margin-bottom: 20px;
    font-size: .95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.result-item {
    color: var(--text);
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.result-item::before {
    content: '✓';
    color: var(--brand);
    position: absolute;
    left: 0;
    font-weight: 800;
    font-size: 1.2rem;
}

.case-quote {
    border-left: 4px solid var(--brand);
    padding-left: 25px;
    margin-top: 25px;
    font-style: italic;
    color: var(--muted);
    line-height: 1.8;
}

.case-author {
    color: #fff;
    font-weight: 600;
    margin-top: 15px;
    font-style: normal;
    font-size: 1.05rem;
}

.pricing {
    background: linear-gradient(135deg, var(--bg) 0%, var(--bg-2) 100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1300px;
    margin: 60px auto 0;
}

.price-card {
    background: linear-gradient(135deg, rgba(139, 92, 246, .05), rgba(255, 107, 53, .05));
    border: 2px solid rgba(139, 92, 246, .2);
    border-radius: var(--radius);
    padding: 50px;
    display: flex;
    flex-direction: column;
    transition: transform .4s, border-color .4s, box-shadow .4s;
}

.price-card:hover {
    border-color: var(--brand);
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.price-card.featured {
    background: linear-gradient(135deg, rgba(139, 92, 246, .12), rgba(255, 107, 53, .12));
    border: 2px solid var(--brand);
    transform: scale(1.03);
    box-shadow: 0 0 60px rgba(139, 92, 246, .3);
}

.price-badge {
    background: linear-gradient(135deg, var(--brand), var(--accent));
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: .85rem;
    font-weight: 700;
    text-transform: uppercase;
    width: fit-content;
    margin-bottom: 20px;
}

.price-tier {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px
}

.price-for {
    color: var(--muted);
    font-size: .95rem;
    margin-bottom: 30px
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 5px
}

.price-period {
    color: var(--muted-2);
    font-size: 1rem;
    margin-bottom: 15px
}

.price-setup {
    color: var(--brand);
    font-size: 1rem;
    margin-bottom: 35px;
    font-weight: 600
}

.price-features {
    flex: 1;
    margin-bottom: 30px
}

.price-features h4 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.05rem
}

.price-features ul {
    list-style: none
}

.price-features li {
    padding: 12px 0 12px 30px;
    color: var(--muted);
    position: relative;
    border-bottom: 1px solid rgba(139, 92, 246, .1);
}

.price-features li::before {
    content: '✓';
    color: var(--brand);
    position: absolute;
    left: 0;
    font-weight: 800;
    font-size: 1.2rem;
}

.roi-box {
    background: rgba(139, 92, 246, .1);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 25px;
}

.roi-box h4 {
    color: var(--accent);
    font-size: .9rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.roi-box p {
    color: var(--text);
    font-size: .95rem;
    line-height: 1.6
}

.roi-currency-value {
    font-weight: 700;
    color: var(--accent)
}

.currency-switcher {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 60px;
}

.currency-btn {
    padding: 14px 35px;
    background: rgba(139, 92, 246, .1);
    border: 2px solid rgba(139, 92, 246, .3);
    border-radius: 8px;
    color: var(--brand);
    font-weight: 600;
    cursor: pointer;
    transition: background .3s, border-color .3s, transform .2s;
}

.currency-btn:hover {
    background: rgba(139, 92, 246, .2);
    border-color: var(--brand);
}

.currency-btn.active {
    background: linear-gradient(135deg, var(--brand), var(--accent));
    color: #fff;
    border-color: var(--brand);
}

.faq {
    background: var(--bg)
}

.faq-container {
    max-width: 900px;
    margin: 60px auto 0
}

.faq-item {
    border-bottom: 1px solid rgba(139, 92, 246, .2);
    padding: 30px 0;
    cursor: pointer;
    transition: border-color .3s;
}

.faq-item:hover {
    border-color: var(--brand)
}

.faq-question {
    font-weight: 700;
    color: #fff;
    font-size: 1.15rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-toggle {
    color: var(--brand);
    font-size: 1.8rem;
    transition: transform .3s;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg)
}

.faq-answer {
    color: var(--muted);
    margin-top: 15px;
    line-height: 1.8;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height .4s, opacity .4s, margin .4s;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    opacity: 1;
    margin-top: 20px;
}

.final-cta {
    background: linear-gradient(135deg, var(--brand) 0%, var(--accent) 100%);
    color: #fff;
    text-align: center;
    padding: 100px 40px;
}

.final-cta h2 {
    color: #fff;
    margin-bottom: 25px;
    font-size: 3rem
}

.final-cta p {
    color: rgba(255, 255, 255, .95);
    font-size: 1.2rem;
    margin: 0 auto 40px;
    max-width: 750px;
    line-height: 1.9;
}

.what-happens {
    background: rgba(255, 255, 255, .1);
    padding: 40px;
    border-radius: var(--radius);
    margin: 50px auto;
    max-width: 650px;
    text-align: left;
}

.what-happens h3 {
    color: #fff;
    margin-bottom: 25px;
    text-align: center;
    font-size: 1.5rem;
}

.what-happens ol {
    color: rgba(255, 255, 255, .95);
    padding-left: 25px
}

.what-happens li {
    margin-bottom: 15px;
    line-height: 1.7;
    font-size: 1.05rem
}

.final-cta .btn-primary {
    background: #fff;
    color: var(--brand);
    font-size: 1.15rem;
    padding: 20px 55px;
}

.final-cta .trust-line {
    color: rgba(255, 255, 255, .85);
    margin-top: 35px;
    font-size: 1.05rem;
}

.copyright {
    background: #010409;
    padding: 40px;
    text-align: center;
    color: var(--muted-2);
    font-size: .95rem;
    border-top: 1px solid rgba(139, 92, 246, .1);
}

.copyright a {
    color: var(--brand);
    text-decoration: none;
    margin: 0 10px;
}

.copyright a:hover {
    text-decoration: underline
}

.modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, .8);
    justify-content: center;
    align-items: center;
    overflow: auto;
}

.modal.show {
    display: flex
}

.modal-content {
    position: relative;
    background: var(--bg);
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 90%;
    max-width: 900px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
    border-radius: 10px;
}

.modal-content video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.close-button {
    color: #aaa;
    position: absolute;
    top: 10px;
    right: 25px;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    transition: .3s;
}

.close-button:hover,
.close-button:focus {
    color: #fff
}

/* Audio Section Styles */
.audio-samples {
    background: var(--bg);
}

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

.audio-card {
    background: linear-gradient(145deg, rgba(22, 27, 34, 0.8), rgba(13, 17, 23, 0.9));
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: var(--radius);
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
    position: relative;
    overflow: hidden;
}

.audio-card:hover {
    transform: translateY(-5px);
    border-color: var(--brand);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.15);
}

/* Audio Card Header */
.audio-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.audio-icon-bg {
    width: 50px;
    height: 50px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.audio-info h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.audio-info p {
    font-size: 0.9rem;
    color: var(--muted);
    margin: 0;
}

/* Custom Player UI */
.custom-player {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.03);
    padding: 15px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.player-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, var(--brand), var(--accent));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s;
    flex-shrink: 0;
}

.player-btn:hover {
    transform: scale(1.1);
}

.play-icon,
.pause-icon {
    font-size: 1rem;
    line-height: 1;
    margin-left: 2px;
    /* Visual centering adjustment */
}

.pause-icon {
    margin-left: 0;
}

.progress-container {
    flex-grow: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--brand), var(--accent));
    border-radius: 10px;
    transition: width 0.1s linear;
}

.time-display {
    font-size: 0.8rem;
    color: var(--muted);
    font-family: monospace;
    min-width: 35px;
}

@media (max-width: 1024px) {
    .price-card.featured {
        transform: scale(1.02)
    }
}

@media (max-width: 768px) {
    .header {
        padding: 0 20px
    }

    .nav-links {
        display: none
    }

    .hero {
        padding: calc(var(--header-h) + 10px) 20px 60px
    }

    section {
        padding: 60px 20px
    }

    .section-title {
        font-size: 1.8rem
    }

    .pricing-grid {
        grid-template-columns: 1fr
    }

    .price-card.featured {
        transform: none
    }

    .final-cta {
        padding: 60px 20px
    }

    .final-cta h2 {
        font-size: 2rem
    }

    .trust-bar {
        gap: 30px
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important
    }
}