:root {
    --primary-color: rgb(0, 103, 251);
    --primary-hover: rgb(0, 77, 190);
    --text-dark: #000000;
    --text-light: #666666;
    --bg-white: #ffffff;
    --border-light: #e5e5e5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-dark);
    background: var(--bg-white);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    opacity: 0;
    animation: fadeIn 0.3s ease-in forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

header {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-light);
}

nav {
    padding: 1rem 2rem;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    display: block;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: bold;
    transition: opacity 0.2s;
}

.nav-links a:hover {
    opacity: 0.8;
}

main {
    flex: 1;
}

.section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 4rem;
}

.section:first-child {
    min-height: calc(100vh - 80px);
}

.hero-layout {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.hero-content {
    flex: 1;
    min-width: 450px;
    text-align: left;
}

.hero-content h1 {
    text-align: left;
}

.hero-content .subtitle {
    text-align: left;
}

.hero-content .cta-buttons {
    justify-content: flex-start;
}

.hero-laptop {
    min-width: 0;
    max-width: 100%;
    flex-basis: 65%;
    padding: 0 3%;
}

.hero-image-container {
    position: relative;
    flex-basis: 65%;
    min-width: 0;
    max-width: 100%;
}

.section-white {
    background: white;
}

.section-grey {
    background: #f8f9fa;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    text-align: center;
}

.section:first-child h1 {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

h1 {
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

.subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.mobile-features-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    text-align: left;
}

.mobile-features-list li {
    padding: 0.75rem 0;
    color: var(--text-dark);
    font-size: 1.05rem;
    position: relative;
    padding-left: 2rem;
}

.mobile-features-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.subtitle strong {
    color: var(--text-dark);
    font-weight: 600;
}

.subtitle a {
    color: var(--primary-color);
    text-decoration: none;
    transition: opacity 0.2s;
}

.subtitle a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.hero-image {
    margin: 3rem 0 0 0;
    text-align: center;
}

.timeline-layout {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
    text-align: left;
}

.timeline-image {
    flex-basis: 40%;
    min-width: 0;
}

.timeline-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.timeline-content {
    flex: 1;
    padding-top: 1rem;
    text-align: left;
}

.timeline-content h2 {
    text-align: left;
}

.timeline-content .subtitle {
    text-align: left;
}

.timeline-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0 0 0;
}

.timeline-features li {
    padding: 0.5rem 0;
    color: var(--text-dark);
    position: relative;
    padding-left: 1.5rem;
}

.timeline-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

@media (max-width: 968px) {
    .timeline-layout {
        flex-direction: column;
    }

    .timeline-image {
        width: 100%;
    }
}

.hero-image video {
    width: 700px;
    max-width: 100%;
    height: auto;
}

.btn {
    padding: 0.5rem 1.5rem;
    font-size: 0.875rem;
    font-family: 'Open Sans', sans-serif;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.2s;
    font-weight: 500;
}

.btn-primary {
    background-color: var(--primary-color);
    color: rgb(255, 255, 255);
    border-radius: 2px;
    box-shadow: rgba(87, 85, 85, 0.33) 0px 3px 3px;
    padding: 0.75rem 2rem;
    font-size: 1rem;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
}

.btn-secondary {
    background: var(--bg-white);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 2px;
    text-decoration: none;
}

.btn-secondary:hover {
    background: #f6f8fa;
    border-color: var(--primary-color);
    text-decoration: none;
}


.instructions-layout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    row-gap: 0;
    flex-wrap: nowrap;
}

.instructions-layout > div:first-child {
    text-align: left;
}

.instructions-layout > div:first-child h2 {
    text-align: left;
}

.instructions-layout > div:first-child .subtitle {
    text-align: left;
}


.phone-frame {
    width: 320px;
    min-width: 320px;
    height: 680px;
    background: #1a1a1a;
    border-radius: 36px;
    padding: 8px;
    position: relative;
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.25),
        0 10px 30px rgba(0, 0, 0, 0.2),
        0 0 1px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.phone-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 30px;
    background: #1a1a1a;
    border-radius: 0 0 20px 20px;
}

/* Camera dot removed */

.phone-power-button {
    position: absolute;
    top: 150px;
    right: -2px;
    width: 4px;
    height: 60px;
    background: #1a1a1a;
    border-radius: 0 4px 4px 0;
    z-index: 2;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 26px;
    overflow: hidden;
    position: relative;
}

.phone-screen video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slideshow {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
}

@media (max-width: 968px) {
    .hero-layout {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        min-width: 0;
        text-align: center;
    }

    .hero-content h1 {
        text-align: center;
    }

    .hero-content .subtitle {
        text-align: center;
    }

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

    .hero-laptop {
        display: flex;
        justify-content: center;
        padding: 0 10px;
        width: 100%;
    }

    .hero-laptop .tablet-frame {
        width: 100%;
        max-width: 600px;
    }

    .hero-image-container {
        display: flex;
        justify-content: center;
        padding: 0 10px;
        width: 100%;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 1rem;
    }
    
    .nav-links {
        gap: 1rem;
        font-size: 0.875rem;
    }
    
    .logo img {
        max-width: 140px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .instructions-layout .subtitle {
        margin-bottom: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
    
    .instructions-layout {
        flex-direction: column;
        gap: 3rem;
    }
    
    
    .phone-frame {
        width: 275px;
        min-width: 275px;
        height: 563px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .logo {
        margin: 0 auto;
    }
    
    .nav-links {
        width: 100%;
        justify-content: center;
        gap: 1.5rem;
    }
    
    nav {
        padding: 0.75rem 1rem;
    }
    
    h1 {
        font-size: 1.75rem;
    }
}


.builders-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


.tablet-frame {
    width: 100%;
    max-width: 1000px;
    position: relative;
}

.laptop-screen {
    width: 100%;
    aspect-ratio: 1450 / 936;
    background: #1a1a1a;
    border-radius: 12px;
    padding: 6px;
    position: relative;
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.25),
        0 10px 30px rgba(0, 0, 0, 0.2),
        0 0 1px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}


.laptop-base {
    width: 110%;
    height: 20px;
    background: linear-gradient(180deg, #d1d5db 0%, #9ca3af 50%, #6b7280 100%);
    border-radius: 0 0 20px 20px;
    position: relative;
    left: -5%;
    margin-top: -2px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.laptop-base::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: #4b5563;
    border-radius: 2px;
}

.tablet-screen {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}

.tablet-screen video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


@media (max-width: 1050px) {
    .tablet-frame {
        width: 90%;
        max-width: 900px;
    }
}

@media (max-width: 768px) {
    .tablet-frame {
        width: 100%;
        max-width: 600px;
    }

    .laptop-base {
        height: 12px;
    }

    .laptop-base::before {
        top: 2px;
        height: 3px;
        width: 60px;
    }
}


.video-container {
    position: relative;
    width: 1000px;
    max-width: 100%;
    margin: 0 auto;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    background: #000;
    border-radius: 12px;
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.25),
        0 10px 30px rgba(0, 0, 0, 0.2),
        0 0 1px rgba(0, 0, 0, 0.1);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 12px;
}

.video-placeholder-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    border-radius: 12px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.video-placeholder-content:hover {
    background: rgba(0, 0, 0, 0.85);
}

.video-placeholder-content:hover .video-play-button {
    transform: scale(1.1);
}

.video-play-button {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    transition: transform 0.2s;
    pointer-events: none;
}

.play-icon {
    width: 80px;
    height: 80px;
}

.play-text {
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.code-snippet {
    max-width: 600px;
    margin: 2rem auto;
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-align: left;
    position: relative;
}

.code-snippet pre {
    margin: 0;
    padding: 2rem;
    overflow-x: auto;
    text-align: left;
}

.code-snippet code {
    color: #e6e6e6;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    font-size: 0.875rem;
    line-height: 1.6;
    white-space: pre;
    text-align: left;
    display: block;
}

.btn-copy {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    padding: 0.75rem 2rem;
    background: #000;
    color: white;
    border: 1px solid white;
    border-radius: 2px;
    font-size: 1rem;
    font-weight: 500;
    font-family: 'Open Sans', sans-serif;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: rgba(87, 85, 85, 0.33) 0px 3px 3px;
    min-width: 140px;
}

.btn-copy:hover {
    background: #333;
    transform: translateY(-1px);
}

.btn-copy:active {
    transform: translateY(0);
}



.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin: 3rem auto 0;
    max-width: 1100px;
}

.feature-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
    width: 48px;
    height: 48px;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.5;
}

.goodies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 0 auto;
}

.goodie-item {
    background: #f8f9fa;
    padding: 3rem 2rem;
    border-radius: 12px;
    position: relative;
    text-align: center;
}

.goodie-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.5rem;
    filter: brightness(0) saturate(100%) invert(31%) sepia(95%) saturate(3471%) hue-rotate(210deg) brightness(98%) contrast(101%);
}

.goodie-item .tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 10px;
    padding: 10px 16px;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    font-size: 0.875rem;
    border-radius: 6px;
    min-width: 300px;
    max-width: 400px;
    white-space: normal;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s, visibility 0.2s;
    z-index: 10;
    pointer-events: none;
}

.goodie-item .tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: rgba(0, 0, 0, 0.9);
}

.goodie-item:hover .tooltip {
    opacity: 1;
    visibility: visible;
}

.goodie-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .feature-card {
        padding: 2rem 1.5rem;
    }

    .goodies-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .goodie-item {
        padding: 2rem 1.5rem;
    }
    
    .goodie-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 1rem;
        filter: brightness(0) saturate(100%) invert(31%) sepia(95%) saturate(3471%) hue-rotate(210deg) brightness(98%) contrast(101%);
    }
}

.goodies-more {
    margin-top: 2rem;
    font-size: 1rem;
    color: var(--text-light);
    text-align: center;
}

.goodies-more a {
    color: var(--primary-color);
    text-decoration: none;
    transition: opacity 0.2s;
}

.goodies-more a:hover {
    opacity: 0.8;
    text-decoration: underline;
}


.pricing-intro {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.mobile-break {
    display: none;
}

.pricing-comparison-table {
    max-width: 900px;
    margin: 0 auto 3rem;
    overflow-x: auto;
    position: relative;
}

.pricing-comparison-table table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: none;
}

.pricing-comparison-table th,
.pricing-comparison-table td {
    padding: 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid #e5e5e5;
}

.pricing-comparison-table th {
    background: #f8f9fa;
    font-weight: normal;
    vertical-align: top;
}

.pricing-comparison-table th:first-child,
.pricing-comparison-table td:first-child {
    text-align: left;
    font-weight: 500;
}

.pricing-comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.plan-header {
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 1rem;
}

.plan-header h3 {
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge {
    background: var(--primary-color);
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: absolute;
    top: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
}

.plan-header .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.plan-header .price span {
    font-size: 1.125rem;
    font-weight: 400;
    color: #888;
}

.feature-label {
    color: var(--text-dark);
    font-weight: 500;
}


.cta-row {
    background: #f8f9fa;
}

.cta-row td {
    padding: 2rem 1rem;
}


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

.pricing-header h3 {
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-cta {
    text-align: center;
    margin-top: 2rem;
}

.btn-secondary {
    background: #fff;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(77, 121, 206, 0.3);
}

.price {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    justify-content: center;
}

.currency {
    font-size: 1.5rem;
    font-weight: 400;
    color: #888;
    margin-top: 0.25rem;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -0.02em;
    line-height: 1;
}

.period {
    font-size: 1.125rem;
    font-weight: 400;
    color: #888;
    margin-left: 0.25rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    counter-increment: none !important;
    padding: 0.5rem 0;
    margin-bottom: 0;
    font-size: 1.125rem;
    line-height: 1.5;
    color: var(--text-dark);
    position: relative;
    padding-left: 1.5rem;
    text-align: left;
    white-space: nowrap;
}

.pricing-features li::before {
    content: '✓' !important;
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: auto !important;
    height: auto !important;
    background: none !important;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1rem;
    border-radius: 0 !important;
    display: block !important;
    box-shadow: none !important;
}




.trial-link {
    margin-top: 5px;
    font-size: 0.875rem;
    color: var(--text-light);
}

.trial-link a {
    color: var(--primary-color);
    text-decoration: none;
    transition: opacity 0.2s;
}

.trial-link a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.pricing-guarantee {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: 4rem;
    text-align: center;
    font-style: normal;
}

.pricing-guarantee a {
    color: var(--primary-color);
    text-decoration: none;
    transition: opacity 0.2s;
}

.pricing-guarantee a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* Tablet view - simplify table */
@media (max-width: 1024px) {
    .pricing-comparison-table {
        overflow-x: auto;
        margin-top: 2rem;
    }

    .pricing-comparison-table table {
        min-width: 700px;
    }

    /* Hide less important rows on tablet */
    .pricing-comparison-table tbody tr:nth-child(5),
    .pricing-comparison-table tbody tr:nth-child(6),
    .pricing-comparison-table tbody tr:nth-child(8) {
        display: none;
    }
}

/* Mobile pricing cards - hidden by default */
.mobile-pricing-cards {
    display: none;
}

/* Mobile view - card layout */
@media (max-width: 768px) {
    .pricing-comparison-table {
        overflow-x: visible;
        margin-top: 2rem;
    }

    .pricing-comparison-table table {
        display: none;
    }

    .mobile-pricing-cards {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .mobile-pricing-card {
        background: white;
        border: 1px solid var(--border-light);
        border-radius: 12px;
        padding: 2rem;
        text-align: center;
    }

    .mobile-pricing-card.featured {
        border: 2px solid var(--primary-color);
        position: relative;
    }

    .mobile-pricing-card h3 {
        font-size: 1.5rem;
        font-weight: 600;
        margin-bottom: 1rem;
        color: var(--text-dark);
    }

    .mobile-price {
        font-size: 2.5rem;
        font-weight: 700;
        color: var(--text-dark);
        margin-bottom: 1.5rem;
    }

    .mobile-price span {
        font-size: 1.125rem;
        font-weight: 400;
        color: #888;
    }

    .mobile-features {
        list-style: none;
        padding: 0;
        margin: 0 0 2rem 0;
        text-align: left;
    }

    .mobile-features li {
        padding: 0.5rem 0;
        color: var(--text-light);
        font-size: 0.95rem;
        position: relative;
        padding-left: 1.5rem;
    }

    .mobile-features li:before {
        content: "✓";
        position: absolute;
        left: 0;
        color: var(--primary-color);
        font-weight: bold;
    }

    .mobile-pricing-card .btn {
        width: 100%;
    }
    
    .pricing-comparison-table thead tr {
        display: flex;
        border-bottom: 1px solid #e5e5e5;
        margin-bottom: 0;
    }
    
    .pricing-comparison-table thead th {
        border-bottom: none;
        padding: 0.5rem 0.25rem;
    }
    
    .pricing-comparison-table thead th:first-child {
        display: none;
    }
    
    .pricing-comparison-table thead th:not(:first-child) {
        width: 33.333%;
        text-align: center;
    }
    
    .pricing-comparison-table tbody tr:not(.cta-row) {
        display: flex;
        flex-wrap: wrap;
        margin-bottom: 0;
        border-bottom: 1px solid #e5e5e5;
        padding: 1.5rem 0;
    }
    
    .pricing-comparison-table tbody tr:not(.cta-row):last-of-type {
        border-bottom: none;
    }
    
    .pricing-comparison-table tbody tr:not(.cta-row) td:first-child {
        width: 100%;
        text-align: left;
        padding: 0 0 0.5rem 0;
        font-size: 1rem;
        font-weight: 600;
        color: var(--text-dark);
        border-bottom: none;
    }
    
    .pricing-comparison-table tbody tr:not(.cta-row) td:not(:first-child) {
        width: 33.333%;
        text-align: center;
        padding: 0 0.25rem;
        border-bottom: none;
        font-size: 0.875rem;
    }
    
    .plan-header h3 {
        font-size: 0.875rem;
        margin-bottom: 0.25rem;
    }
    
    .plan-header .price {
        font-size: 1.5rem;
    }
    
    .plan-header .price span {
        font-size: 0.75rem;
    }
    
    .cta-row {
        display: flex !important;
        flex-wrap: wrap;
        background: #f8f9fa;
        padding: 1.5rem 0;
        margin: 0 -1rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .cta-row td {
        display: none;
    }
    
    .cta-row td:nth-child(2) {
        display: block;
        width: 100%;
        padding: 0 1rem;
        border-bottom: none;
        text-align: center;
    }
    
    .pricing-comparison-table .btn {
        /* Use default btn styles */
    }
}

@media (max-width: 768px) {
    .pricing-intro {
        font-size: 0.8125rem;
        margin-bottom: 3rem;
    }
    
    .mobile-break {
        display: block;
    }
    
    .pricing-column {
        padding: 2rem;
    }
    
    .amount {
        font-size: 2.5rem;
    }
    
    .pricing-features {
        text-align: left;
        min-width: auto;
    }
    
    .pricing-features li {
        font-size: 1rem;
    }
    
    .pricing-guarantee {
        font-size: 0.8125rem;
        margin-top: 3rem;
    }
}

footer {
    background: #1a1a1a;
    color: white;
    padding: 3rem 2rem 1.5rem;
}

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

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.footer-section p {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #ccc;
}

.footer-section a {
    color: #ccc;
    text-decoration: underline;
    transition: color 0.2s;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid #333;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: #999;
}

@media (max-width: 768px) {
    footer {
        padding: 2rem 1rem 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-section h3 {
        font-size: 1rem;
    }
}

/* Pricing page specific styles */
.pricing-header-section {
    text-align: center;
    padding: 2rem 0;
}

.pricing-header-section h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.pricing-header-section .subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.pricing-notes {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.pricing-notes p {
    margin: 0.5rem 0;
    color: var(--text-light);
}

/* FAQ Section */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    transition: transform 0.2s;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Demo Section */
.demo-section {
    text-align: center;
    padding: 3rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.demo-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.demo-section .subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.demo-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.demo-feature {
    text-align: center;
}

.demo-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.demo-feature h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.demo-feature p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Enterprise Section */
.enterprise-section {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.enterprise-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.enterprise-section .subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.enterprise-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    text-align: left;
    margin: 2rem auto 3rem;
}

.enterprise-features ul {
    list-style: none;
    padding: 0;
}

.enterprise-features li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-dark);
}

.enterprise-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.125rem;
}

@media (max-width: 768px) {
    .pricing-header-section h1 {
        font-size: 2rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .demo-features {
        grid-template-columns: 1fr;
    }

    .enterprise-features {
        grid-template-columns: 1fr;
    }
}

/* Screenshot overlay labels */
.tablet-screen {
    position: relative;
}

@keyframes ripple {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 103, 251, 0.14),
                    0 0 0 0 rgba(0, 103, 251, 0.14);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(0, 103, 251, 0.06),
                    0 0 0 16px rgba(0, 103, 251, 0.02);
    }
    100% {
        box-shadow: 0 0 0 16px rgba(0, 103, 251, 0),
                    0 0 0 24px rgba(0, 103, 251, 0);
    }
}

.screenshot-overlay {
    position: absolute;
    pointer-events: auto;
    opacity: 0;
    transition: opacity 0.5s ease-in;
    cursor: help;
}

.screenshot-overlay.visible {
    opacity: 1;
}

.screenshot-overlay::before {
    content: attr(data-label);
    display: inline-block;
    padding: 6px 32px 6px 12px;
    background: rgba(0, 103, 251, 0.85);
    color: white;
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: 4px;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    pointer-events: none;
    position: relative;
}

.screenshot-overlay .info-icon {
    display: inline-block;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
    color: white;
    pointer-events: none;
    line-height: 1;
}

.screenshot-overlay::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: rgba(0, 103, 251, 0.9);
    border-radius: 50%;
    top: 50%;
    left: -22px;
    transform: translateY(-50%);
    border: 2px solid white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    pointer-events: none;
}

.screenshot-overlay.dot-right::after {
    left: auto;
    right: -22px;
}

.screenshot-overlay .tooltip-text {
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 10px;
    padding: 8px 12px;
    background: rgba(27, 28, 30, 0.95);
    color: white;
    font-size: 0.75rem;
    border-radius: 6px;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s, visibility 0.2s;
    pointer-events: none;
}

.screenshot-overlay:hover .tooltip-text {
    opacity: 1;
    visibility: visible;
}

.screenshot-overlay.tooltip-left .tooltip-text {
    left: auto;
    right: 100%;
    margin-left: 0;
    margin-right: 10px;
}
