: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: -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;
}

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 2rem;
}

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

.section-white {
    background: white;
}

.section-grey {
    background: #f8f9fa;
}

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

.section:first-child .container {
    max-width: 1000px;
}

.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;
}

.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;
}

.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;
}

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


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


.phone-frame {
    width: 320px;
    min-width: 320px;
    height: 655px;
    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;
}

.phone-frame::after {
    content: '';
    position: absolute;
    top: 18px;
    right: 18px;
    width: 16px;
    height: 16px;
    background: #333;
    border-radius: 50%;
    z-index: 1;
}

.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: #000;
    border-radius: 26px;
    overflow: hidden;
    position: relative;
}

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

@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: 1000px;
    max-width: 100%;
    position: relative;
    padding: 0 5%;
}

.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: 95%;
        max-width: 700px;
    }
    
    .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;
}

.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;
}



.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) {
    .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 h3 {
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.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;
}

.mobile-pricing-header {
    display: none;
}

.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: 2px 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;
}

@media (max-width: 850px) {
    .pricing-comparison-table {
        overflow-x: visible;
        margin-top: 2rem;
    }
    
    .pricing-comparison-table table {
        box-shadow: none;
        border-radius: 12px;
        overflow: hidden;
    }
    
    .mobile-pricing-header {
        display: none;
    }
    
    .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;
    }
}
