/* PropShift Main Styles */

/* Inter Font (Local) */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/inter-regular.woff2') format('woff2');
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('../fonts/inter-medium.woff2') format('woff2');
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('../fonts/inter-semibold.woff2') format('woff2');
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('../fonts/inter-bold.woff2') format('woff2');
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url('../fonts/inter-extrabold.woff2') format('woff2');
}

:root {
    --primary: #4470ad;
    --primary-dark: #365a8c;
    --primary-light: #5a8bc7;
    --secondary: #0F172A;
    --text-primary: #1F2937;
    --text-secondary: #6B7280;
    --text-muted: #9CA3AF;
    --bg-light: #F8FAFC;
    --bg-gradient: linear-gradient(135deg, #F8FAFC 0%, #E2E8F0 100%);
    --white: #FFFFFF;
    --border: #E5E7EB;
}

* {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

html, body {
    overflow-x: hidden;
}

body {
    color: var(--text-primary);
    background-color: var(--white);
}

/* Navbar */
.navbar {
    padding: 1rem 0;
    margin-bottom: 80px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--secondary) !important;
}

.navbar-brand span {
    color: var(--primary);
}

.nav-link {
    color: var(--text-secondary) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--primary) !important;
}

.btn-primary {
    background: var(--primary);
    border: none;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 0.5rem;
    transition: all 0.2s;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(68, 112, 173, 0.3);
}

.btn-outline-primary {
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 0.5rem;
    transition: all 0.2s;
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-1px);
}

/* Hero Section */
.hero-section {
    padding: 0;
    background: var(--bg-gradient);
}

/* Widget Container */
#propshift-widget {
    width: 100%;
    background: var(--white);
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

/* Trust Logos */
.trust-section {
    padding: 3rem 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
}

.trust-title {
    color: var(--text-muted);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.trust-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    opacity: 0.6;
}

.trust-logo {
    height: 32px;
    filter: grayscale(100%);
    transition: all 0.3s;
}

.trust-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Benefits Section */
.benefits-section {
    padding: 6rem 0;
    background: var(--white);
}

.section-badge {
    display: inline-block;
    background: rgba(68, 112, 173, 0.1);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 3rem;
}

.benefit-card {
    text-align: center;
    padding: 2rem;
    border-radius: 1rem;
    transition: all 0.3s;
    height: 100%;
}

.benefit-card:hover {
    background: var(--bg-light);
    transform: translateY(-4px);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    background: rgba(68, 112, 173, 0.1);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary);
    font-size: 1.75rem;
}

.benefit-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--secondary);
}

.benefit-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Video Section */
.video-section {
    padding: 6rem 0;
    background: var(--bg-gradient);
}

.video-container {
    background: var(--secondary);
    border-radius: 1rem;
    overflow: hidden;
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.video-placeholder {
    color: var(--text-muted);
    text-align: center;
}

.video-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

/* Features Section */
.features-section {
    padding: 6rem 0;
    background: var(--white);
}

.feature-row {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 6rem;
}

.feature-row:last-child {
    margin-bottom: 0;
}

.feature-row.reverse {
    flex-direction: row-reverse;
}

.feature-content {
    flex: 1;
}

.feature-image {
    flex: 1;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
}

.feature-tag {
    display: inline-block;
    background: rgba(68, 112, 173, 0.1);
    color: var(--primary);
    padding: 0.375rem 0.75rem;
    border-radius: 0.375rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.feature-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.feature-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

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

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
}

.feature-list li i {
    color: var(--primary);
    font-size: 1.25rem;
    flex-shrink: 0;
}

/* Before/After Slider */
.ba-slider-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 75%; /* 4:3 aspect ratio fallback */
    border-radius: 1rem;
    overflow: hidden;
    cursor: ew-resize;
    background: var(--bg-light);
}

@supports (aspect-ratio: 4/3) {
    .ba-slider-container {
        height: auto;
        padding-bottom: 0;
        aspect-ratio: 4/3;
    }
}

.ba-slider-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ba-before {
    clip-path: inset(0 50% 0 0);
}

.ba-slider-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: white;
    transform: translateX(-50%);
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.ba-slider-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ba-label {
    position: absolute;
    top: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(0,0,0,0.6);
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 2rem;
}

.ba-label-before {
    left: 1rem;
}

.ba-label-after {
    right: 1rem;
}

/* Gallery Section */
.gallery-section {
    padding: 6rem 0;
    background: var(--bg-gradient);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 0;
    background: var(--white);
}

.testimonial-card {
    background: var(--bg-light);
    border-radius: 1rem;
    padding: 2rem;
    height: 100%;
}

.testimonial-stars {
    color: #FBBF24;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1.125rem;
    color: var(--text-primary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.testimonial-info h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--secondary);
}

.testimonial-info p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
}

/* Pricing Section */
.pricing-section {
    padding: 6rem 0;
    background: var(--bg-gradient);
}

.pricing-card {
    background: var(--white);
    border-radius: 1rem;
    padding: 2rem;
    height: 100%;
    border: 2px solid var(--border);
    transition: all 0.3s;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.pricing-card.popular {
    border-color: var(--primary);
    transform: scale(1.05);
    box-shadow: 0 25px 50px rgba(68, 112, 173, 0.2);
    z-index: 1;
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 0.375rem 1rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.pricing-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.pricing-description {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.pricing-price {
    margin-bottom: 1.5rem;
}

.pricing-price .amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary);
}

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

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

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.pricing-features li i {
    color: var(--primary);
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background: var(--white);
}

.accordion-item {
    border: none;
    border-bottom: 1px solid var(--border);
}

.accordion-button {
    font-weight: 600;
    font-size: 1.125rem;
    color: var(--secondary);
    padding: 1.5rem 0;
    background: none;
}

.accordion-button:not(.collapsed) {
    background: none;
    color: var(--primary);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--border);
}

.accordion-body {
    padding: 0 0 1.5rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: var(--secondary);
    color: var(--white);
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.25rem;
    opacity: 0.8;
    margin-bottom: 2rem;
}

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

.btn-white {
    background: var(--white);
    color: var(--secondary);
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 0.5rem;
    transition: all 0.2s;
}

.btn-white:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
}

.cta-section .btn-outline-light {
    border: 2px solid rgba(255,255,255,0.5);
    color: white;
    background: transparent;
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 0.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.cta-section .btn-outline-light:hover {
    background: rgba(255,255,255,0.1);
    border-color: white;
    color: white;
}

/* Footer */
.footer {
    padding: 4rem 0 2rem;
    background: var(--secondary);
    color: rgba(255,255,255,0.7);
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-brand span {
    color: var(--primary-light);
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    margin-top: 3rem;
}

.footer-social {
    display: none; /* Temporarily hidden - will be activated later */
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: var(--white);
    margin-right: 0.75rem;
    transition: all 0.2s;
}

.footer-social a:hover {
    background: var(--primary);
}

/* Legal/Content Sections */
.content-section {
    padding: 4rem 0;
    margin-top: 76px;
    background: var(--bg-light);
}

.content-card {
    background: var(--white);
    border-radius: 1rem;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.content-card h1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 2rem;
}

.content-card h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.content-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--secondary);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.content-card p, .content-card li {
    color: var(--text-secondary);
    line-height: 1.7;
}

.content-card ul {
    padding-left: 1.5rem;
}

.content-card li {
    margin-bottom: 0.5rem;
}

.content-card a {
    color: var(--primary);
    text-decoration: none;
}

.content-card a:hover {
    text-decoration: underline;
}

.highlight-box {
    background: var(--bg-light);
    border-left: 4px solid var(--primary);
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
}

.legal-section {
    padding: 4rem 0;
    background: var(--bg-light);
}

.legal-section h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: var(--secondary);
}

.legal-section h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--secondary);
}

.legal-section p, .legal-section li {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* About Page - Values Section */
.values-section {
    padding: 5rem 0;
}

.value-card {
    background: var(--white);
    border-radius: 1rem;
    padding: 2.5rem;
    height: 100%;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.value-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.value-icon i {
    font-size: 1.75rem;
    color: white;
}

.value-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.value-description {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 0;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Text Generation Preview */
.text-generation-preview {
    background: var(--white);
    border-radius: 1rem;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    overflow: hidden;
    border: 1px solid var(--border);
}

.preview-header {
    background: var(--secondary);
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.preview-dots {
    display: flex;
    gap: 6px;
}

.preview-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
}

.preview-dots span:first-child { background: #ff5f57; }
.preview-dots span:nth-child(2) { background: #ffbd2e; }
.preview-dots span:last-child { background: #28ca42; }

.preview-title {
    color: rgba(255,255,255,0.8);
    font-size: 0.875rem;
    font-weight: 500;
}

.preview-content {
    padding: 1.5rem;
}

.preview-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(68, 112, 173, 0.1);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.preview-text {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.preview-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.preview-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--bg-light);
    border-radius: 0.5rem;
}

.preview-feature i {
    color: var(--primary);
    font-size: 1.25rem;
    margin-top: 2px;
}

.preview-feature strong {
    display: block;
    font-size: 0.875rem;
    color: var(--secondary);
    margin-bottom: 2px;
}

.preview-feature span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.preview-cta {
    text-align: center;
    padding: 0.75rem;
    background: linear-gradient(135deg, rgba(68, 112, 173, 0.1) 0%, rgba(68, 112, 173, 0.05) 100%);
    border-radius: 0.5rem;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
}

.preview-cta i {
    margin-right: 0.5rem;
}

/* Stat Cards */
.stat-card {
    text-align: center;
    padding: 2rem 1rem;
    background: var(--white);
    border-radius: 1rem;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.stat-description {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.4;
}

/* Comparison Table */
.comparison-table {
    background: var(--white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-bottom: 1px solid var(--border);
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-cell {
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.comparison-header .comparison-cell {
    padding: 1.5rem;
    font-weight: 700;
    font-size: 1.125rem;
}

.comparison-header .comparison-cell i {
    margin-right: 0.5rem;
    font-size: 1.25rem;
}

.comparison-label {
    justify-content: flex-start;
    text-align: left;
    font-weight: 600;
    color: var(--secondary);
    background: var(--bg-light);
}

.comparison-label i {
    margin-right: 0.75rem;
    color: var(--primary);
}

.comparison-old {
    color: var(--text-secondary);
    background: #fef2f2;
}

.comparison-header .comparison-old {
    background: #fee2e2;
    color: #991b1b;
}

.comparison-new {
    color: var(--text-primary);
    background: #f0fdf4;
    font-weight: 500;
}

.comparison-header .comparison-new {
    background: #dcfce7;
    color: #166534;
}

/* Step Cards */
.step-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--white);
    border-radius: 1rem;
    height: 100%;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(68, 112, 173, 0.3);
}

.step-icon {
    width: 64px;
    height: 64px;
    background: rgba(68, 112, 173, 0.1);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem auto 1.5rem;
    color: var(--primary);
    font-size: 1.75rem;
}

.step-card h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--secondary);
}

.step-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* Billing Toggle */
.billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.billing-option {
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.2s;
}

.billing-option.active {
    color: var(--primary);
    font-weight: 600;
}

.save-badge {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
    padding: 0.25rem 0.5rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 32px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.3s;
    border-radius: 32px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 24px;
    width: 24px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.toggle-switch input:checked + .toggle-slider {
    background-color: var(--primary);
}

.toggle-switch input:checked + .toggle-slider:before {
    transform: translateX(28px);
}

.yearly-info {
    font-size: 0.875rem;
    color: #16a34a;
    font-weight: 500;
    margin-top: -0.5rem;
    margin-bottom: 1rem;
}

.monthly-info {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: -0.5rem;
    margin-bottom: 1rem;
}

/* Responsive */
@media (max-width: 1199.98px) {
    .container {
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-stats {
        gap: 2rem;
    }

    .feature-row {
        flex-direction: column;
        gap: 2rem;
    }

    .feature-row.reverse {
        flex-direction: column;
    }

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

    .pricing-card.popular {
        transform: scale(1);
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        padding: 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .benefits-section,
    .video-section,
    .features-section,
    .gallery-section,
    .testimonials-section,
    .pricing-section,
    .faq-section {
        padding: 4rem 0;
    }

    .feature-title {
        font-size: 1.5rem;
    }

    .cta-title {
        font-size: 1.75rem;
    }

    .feature-image {
        width: 100%;
        min-height: 250px;
    }

    .ba-slider-container {
        min-height: 250px;
        aspect-ratio: 16/10;
        touch-action: pan-y pinch-zoom;
    }

    /* Prevent horizontal scroll on mobile */
    section {
        overflow-x: hidden;
    }

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

    .preview-content {
        padding: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.875rem;
    }

    .stat-description {
        font-size: 0.75rem;
    }

    .comparison-cell {
        padding: 0.75rem 0.5rem;
        font-size: 0.8rem;
    }

    .comparison-header .comparison-cell {
        padding: 1rem 0.5rem;
        font-size: 0.9rem;
        flex-direction: column;
        gap: 0.25rem;
    }

    .comparison-header .comparison-cell i {
        margin-right: 0;
    }

    .comparison-label {
        font-size: 0.75rem;
    }

    .comparison-label i {
        display: none;
    }
}
