/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

*, *::before, *::after {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #ffffff;
    color: #1a1a1a;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(245, 240, 249, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1a1a1a;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.logo img {
    height: 2.5rem;
}

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

.nav-links a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #1a1a1a;
}

/* Mobile Menu Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
    z-index: 1001;
    position: relative;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: #1a1a1a;
    transition: all 0.3s;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
    margin: 0;
    padding-top: calc(80px + 4rem);
    padding-bottom: 4rem;
    padding-left: 2rem;
    padding-right: 2rem;
    text-align: center;
    position: relative;
    background: radial-gradient(ellipse at top, rgba(255, 182, 255, 0.15) 0%, rgba(245, 240, 249, 1) 50%);
}

.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle at center, rgba(147, 51, 234, 0.08) 0%, transparent 60%);
    filter: blur(80px);
    z-index: -1;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;    background: linear-gradient(135deg, #1a1a1a 0%, #666 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease-out;
}

.hero p {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #1a1a1a;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: transform 0.3s, box-shadow 0.3s;
    line-height: 1.5;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cta-button-secondary {
    display: inline-block;
    background: transparent;
    color: #1a1a1a;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    border: 2px solid #1a1a1a;
}
.cta-button-secondary:hover {
    background: #1a1a1a;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.hero-image {
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    height: 400px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Removed trust-logos styles */

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Base Styles */
section {
    padding: 4rem 2rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #666 100%);
    -webkit-background-clip: text;    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    color: #666;
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Lead Cards Container */
.lead-cards-preview {
    margin: 0;
    padding: 4rem 2rem;
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    position: relative;
    background: white;
    flex-wrap: wrap;
}

/* Pain Points Section */
.pain-points {
    background: #f5f5f5;
}

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

.pain-card {
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

/* Apply gradients directly to background */
.pain-card:nth-child(1) {
    background: radial-gradient(circle at bottom right, rgba(255, 182, 243, 0.3) 0%, rgba(255, 182, 243, 0.15) 25%, white 50%);
}

.pain-card:nth-child(2) {
    background: radial-gradient(circle at top left, rgba(255, 235, 59, 0.25) 0%, rgba(255, 235, 59, 0.1) 25%, white 50%);
}

.pain-card:nth-child(3) {
    background: radial-gradient(circle at bottom left, rgba(147, 51, 234, 0.25) 0%, rgba(147, 51, 234, 0.1) 25%, white 50%);
}

.pain-card:nth-child(4) {
    background: radial-gradient(circle at top right, rgba(56, 178, 255, 0.25) 0%, rgba(56, 178, 255, 0.1) 25%, white 50%);
}

.pain-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}
.pain-icon {
    width: 60px;
    height: 60px;
    background: #f5f5f5;
    border: 2px solid #e5e5e5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: #1a1a1a;
}

.pain-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.pain-card p {
    color: #666;
    line-height: 1.6;
}

/* Benefits Section */
.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* Gallery Styles */
.gallery-section {
    width: 100%;
}

.gallery-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.gallery-main {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #333;
}

.gallery-featured {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.3s ease;
    display: block;
}

.gallery-featured:hover {
    transform: scale(1.05);
}

.gallery-sidebar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 0.75rem;
}

.gallery-bottom {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #f0f0f0;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 3000;
    cursor: pointer;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
}

.lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 40px;
    color: white;
    cursor: pointer;
    background: none;
    border: none;
    font-weight: 300;
    z-index: 3001;
}

.lightbox-close:hover {
    color: #ccc;
}

/* Lightbox Navigation */
.lightbox-prev,
.lightbox-next {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: 60px;
    padding: 20px 30px;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 3001;
    font-weight: 300;
    line-height: 1;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

@media (max-width: 768px) {
    .lightbox-prev,
    .lightbox-next {
        padding: 10px 15px;
        font-size: 40px;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
}

.benefit-content {
    padding: 2rem;
}

.benefit-item {
    margin-bottom: 2rem;
}

.benefit-item h3 {    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.benefit-item p {
    color: #666;
    line-height: 1.6;
}

/* Pricing Section */
.pricing {
    padding: 6rem 2rem;
    text-align: center;
    background: #f5f5f5;
}

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

.pricing-subtitle {
    color: #666;
    margin-bottom: 2rem;
}

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

.billing-option {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

.save-badge {
    background: #4CAF50;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 20px;
    font-size: 0.75rem;
    margin-left: 0.5rem;
}

/* Toggle Switch */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 28px;
}

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

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

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #8B5CF6;
}

input:checked + .slider:before {
    transform: translateX(32px);
}

.pricing-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-cards {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 1.5rem;
    padding: 2rem;
}

.pricing-card {
    flex: 1;
    background: white;
    padding: 3rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    position: relative;    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.pricing-card.featured {
    background: linear-gradient(to bottom, #565656 0%, #1a1a1a 100%);
    color: white;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.popular-badge {
    position: absolute;
    top: 2.5rem;
    right: 2.5rem;
    background: #8b5cf6;
    color: white;
    padding: 0.375rem 1.25rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.plan-category {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.pricing-card.featured .plan-category {
    color: #ccc;
}

.plan-name {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.plan-description {
    color: #666;
    font-size: 1rem;
    margin-bottom: 2.5rem;
    line-height: 1.5;
}

.pricing-card.featured .plan-description {
    color: #ccc;
}

.plan-price {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 1rem;
}

.plan-price .currency {
    font-size: 4.5rem;
}

.plan-price .amount {
    font-size: 4.5rem;
}

.plan-price .period {
    font-size: 1.25rem;
    color: #666;
    font-weight: 400;
    margin-left: 0.5rem;
}

.pricing-card.featured .plan-price .period {
    color: #ccc;
}

.annual-savings {
    color: #666;
    font-size: 1rem;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
    height: 1.5rem;
}

.annual-savings .save-text {
    color: #4CAF50;
    font-weight: 500;
}

.pricing-card.featured .annual-savings {
    color: #aaa;
}

.annual-note {
    color: #666;
    font-size: 0.875rem;
    margin-bottom: 2rem;
    height: 1.2rem;
}

.pricing-card.featured .annual-note {
    color: #ccc;
}

.plan-features-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #333;
}

.pricing-card.featured .plan-features-title {
    color: white;
}

.plan-features {
    list-style: none;
    margin: 0 0 3rem 0;
    padding: 0;
    flex-grow: 1;
}

.plan-features li {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 0.875rem;
    font-size: 1rem;
    color: #555;
}

.pricing-card.featured .plan-features li {
    color: #f0f0f0;
}

.feature-icon {
    width: 20px;    height: 20px;
    border-radius: 50%;
    background: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
    font-size: 0.75rem;
}

.pricing-card.featured .feature-icon {
    background: white;
    color: #333;
}

.plan-button {
    width: 100%;
    padding: 1rem 1.5rem;
    border: none;
    background: #2b2b2b;
    color: white;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.plan-button:hover {
    background: #1a1a1a;
}

.pricing-card.featured .plan-button {
    background: white;
    color: #333;
}

.pricing-card.featured .plan-button:hover {
    background: #f5f5f5;
}

/* Objections Section */
.objections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}
.objection-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

/* Gradient corners for objection cards */
.objection-card:first-child {
    background: radial-gradient(circle at bottom right, rgba(56, 178, 255, 0.25) 0%, rgba(56, 178, 255, 0.1) 25%, white 50%);
}

.objection-card:last-child {
    background: radial-gradient(circle at top left, rgba(255, 235, 59, 0.25) 0%, rgba(255, 235, 59, 0.1) 25%, white 50%);
}

.objection-card h3 {
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.objection-list {
    list-style: none;
    padding: 0;
}

.objection-list li {
    padding: 0.5rem 0;
    color: #666;
}

/* Red X symbols */
.objection-x {
    color: #ef4444;
    font-weight: bold;
    margin-right: 0.5rem;
}

.solution-card {
    background: radial-gradient(circle at bottom left, rgba(147, 51, 234, 0.25) 0%, rgba(147, 51, 234, 0.1) 25%, white 50%);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 2rem;
}

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

.solution-item {
    display: flex;
    gap: 1rem;
}

.solution-item h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.solution-item p {    color: #666;
    font-size: 0.875rem;
}

/* How It Works Section */
.how-it-works {
    background: #f5f5f5;
    padding: 6rem 2rem;
}

.process-timeline {
    max-width: 1200px;
    margin: 4rem auto 0;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.timeline-line {
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, #8b5cf6 0%, #ec4899 100%);
    z-index: 0;
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 0 1rem;
}

.step-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: #f9fafb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
    color: #a78bfa;
}


.step-number {
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: bold;
    color: white;
    box-shadow: 0 2px 10px rgba(139, 92, 246, 0.3);
}

.step-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

.step-content p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Responsive adjustments for How It Works */
@media (max-width: 968px) {
    .process-timeline {
        flex-direction: column;
        align-items: center;
    }
    
    .timeline-line {
        top: 40px;
        left: 50%;
        right: auto;
        width: 2px;
        height: 80%;
        transform: translateX(-50%);
    }
    
    .process-step {
        margin-bottom: 3rem;
        max-width: 400px;
    }
}

/* FAQ Section */
.faq {
    padding: 4rem 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
}

.faq-item {
    border-bottom: 1px solid #eee;
    padding: 1.5rem 0;
    overflow: hidden;
}

.faq-question {
    font-weight: 600;
    margin-bottom: 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question span {
    font-size: 1.5rem;
    font-weight: 300;
    color: #666;
    transition: transform 0.3s ease;
    line-height: 1;
    display: inline-block;
}

.faq-item.active .faq-question span {
    transform: rotate(45deg);
}

.faq-answer {
    color: #666;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(-10px);
    transition: max-height 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-top: 1rem;
    opacity: 1;
    transform: translateY(0);
}
/* Newsletter Section */
.newsletter {
    padding: 4rem 2rem;
    background: white;
}

.newsletter-card {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-card h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.newsletter-card p {
    color: #666;
    margin-bottom: 2rem;
}

.email-form {
    display: flex;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.email-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
}

.email-button {
    padding: 0.75rem 1.5rem;
    background: #1a1a1a;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
}
.email-button:hover {
    background: #333;
}

/* Testimonials Section */
.testimonials {
    padding: 4rem 2rem;
    background: #f5f5f5;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.25rem;
}

.testimonial-info h4 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.testimonial-info p {    color: #666;
    font-size: 0.875rem;
}

.testimonial-text {
    color: #333;
    line-height: 1.6;
    font-style: italic;
}

/* Final CTA */
.final-cta {
    padding: 6rem 2rem;
    text-align: center;
    background: white;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    color: white;
    padding: 4rem 2rem 2rem;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(147, 51, 234, 0.2) 0%, transparent 50%);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

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

.footer-section h4 {
    margin-bottom: 1rem;
    color: #fff;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: white;
}

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

/* Modal Styles */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.modal-content {
    background: white;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    max-width: 800px;
    width: 90%;
    max-height: 80vh;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    margin: 0 auto;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    /* Force border radius on all browsers */
    -webkit-mask-image: -webkit-radial-gradient(white, black);
    mask-image: radial-gradient(white, black);
}

#modal-body {
    padding: 3rem;
    overflow-y: auto;
    overflow-x: hidden;
    flex: 1;
}

/* Custom scrollbar for modal */
#modal-body::-webkit-scrollbar {
    width: 8px;
}

#modal-body::-webkit-scrollbar-track {
    background: transparent;
}

#modal-body::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 4px;
}

#modal-body::-webkit-scrollbar-thumb:hover {
    background: #bbb;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #f5f5f5;
    border: none;
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
    z-index: 10;
}

.modal-close:hover {
    background: #f5f5f5;
    color: #333;
}


#modal-body h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    margin-top: 0;
    padding-right: 2rem;
    color: #1a1a1a;
}

#modal-body h3 {
    font-size: 1.25rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #333;
}

#modal-body h4 {
    font-size: 1.1rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #555;
}

#modal-body p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

#modal-body ul,
#modal-body ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

#modal-body li,
#modal-body ol li {
    color: #666;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

#modal-body strong {
    color: #333;
    font-weight: 600;
}

/* Table styling for modal */
#modal-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

#modal-body table thead {
    background: #f5f5f5;
}

#modal-body table th {
    padding: 0.75rem 1rem;
    text-align: left;
    font-weight: 600;
    color: #333;
    border-bottom: 2px solid #e0e0e0;
}

#modal-body table td {
    padding: 0.75rem 1rem;
    color: #666;
    border-bottom: 1px solid #f0f0f0;
}

#modal-body table tbody tr:last-child td {
    border-bottom: none;
}

#modal-body table tbody tr:hover {
    background: #fafafa;
}

/* Responsive */
@media (max-width: 768px) {
    /* Navigation */
    header {
        padding: 0.75rem 0;
    }
    
    nav {
        padding: 0 1rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    /* Keep logo visible on mobile */
    .logo {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }
    
    .logo-text {
        display: inline;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100vh;
        background: rgba(245, 240, 249, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 1rem;
        padding-top: calc(80px + 1rem);
        gap: 1.5rem;
        transform: translateY(-100%);
        transition: transform 0.3s, opacity 0.3s;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        z-index: 999;
        pointer-events: none;
        opacity: 0;
        justify-content: flex-start;
        align-items: center;
    }
    
    .nav-links.active {
        transform: translateY(0);
        pointer-events: auto;
        opacity: 1;
    }
    
    .nav-links a {
        font-size: 1.25rem;
        padding: 0.75rem 0;
        text-align: center;
        width: 100%;
        display: block;
        transition: all 0.3s;
    }
    
    .nav-links a:hover {
        color: #1a1a1a;
        transform: scale(1.05);
    }
    
    /* Hero Section */
    .hero {
        padding-top: calc(60px + 1.5rem);
        padding-bottom: 1.5rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .hero h1 {
        font-size: 1.75rem;
        line-height: 1.2;
        margin-bottom: 0.75rem;
    }
    
    .hero p {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .cta-button, .cta-button-secondary {
        width: 100%;
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .hero-image {
        margin-top: 1.5rem;
        height: 250px;
    }
    
    /* Container and sections */
    .container {
        padding: 0 1rem;
    }
    
    section {
        padding: 2rem 1rem;
    }
    
    /* Other sections */
    .section-title {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }
    
    .lead-cards-preview {
        flex-direction: column;
        padding: 2rem 1rem;
        gap: 1.5rem;
    }

    .stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    /* Pain Points */
    .pain-grid {
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .pain-card {
        padding: 1.5rem;
    }
    
    .pain-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 1rem;
        font-size: 1.25rem;
    }
    
    .pain-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }
    
    .pain-card p {
        font-size: 0.9rem;
    }

    /* Benefits */
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .benefit-content {
        padding: 0;
    }
    
    .benefit-item {
        margin-bottom: 1.5rem;
    }
    
    .benefit-item h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .benefit-item p {
        font-size: 0.9rem;
    }
    
    /* Gallery */
    .gallery-container {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        margin-bottom: 0.5rem;
    }
    
    .gallery-sidebar {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .gallery-bottom {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .gallery-item {
        border-radius: 8px;
    }
    
    .gallery-main {
        border-radius: 12px;
    }

    /* Pricing */
    .pricing {
        padding: 2rem 1rem;
    }
    
    .pricing-cards {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .pricing-card {
        padding: 1.5rem;
    }
    
    .plan-price {
        font-size: 2rem;
    }
    
    .plan-features {
        font-size: 0.9rem;
    }
    
    .plan-button {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .billing-toggle {
        flex-wrap: wrap;
        font-size: 0.875rem;
        margin-bottom: 2rem;
    }
    
    .save-badge {
        display: block;
        margin-left: 0;
        margin-top: 0.25rem;
    }
    
    /* How it works */
    .how-it-works {
        padding: 2rem 1rem;
    }
    
    .process-timeline {
        margin-top: 2rem;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .timeline-line {
        display: none !important; /* Hide vertical line on mobile */
    }
    
    .process-step {
        padding-left: 0;
        margin-bottom: 2.5rem;
        max-width: 100%;
        width: 100%;
        text-align: left;
    }
    
    .step-icon-wrapper {
        left: auto;
        position: relative;
        display: flex;
        align-items: center;
        margin-bottom: 1rem;
        justify-content: flex-start;
        gap: 1rem;
    }
    
    .step-icon {
        width: 48px;
        height: 48px;
        position: relative;
        margin-right: 0;
        flex-shrink: 0;
    }
    
    .step-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .step-number {
        font-size: 0.875rem;
        position: relative !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        top: auto !important;
        background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
        width: 24px;
        height: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        flex-shrink: 0;
    }
    
    .step-content {
        margin-top: 0;
        text-align: left;
    }
    
    .step-content h3 {
        font-size: 1.1rem;
    }
    
    .step-content p {
        font-size: 0.85rem;
    }
    
    .step-content p {
        font-size: 0.9rem;
    }
    
    /* FAQ */
    .faq {
        padding: 2rem 1rem;
    }
    
    .faq h2 {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }
    
    .faq-item {
        margin-bottom: 0.75rem;
        border-bottom: 1px solid #eee;
        padding: 0.75rem 0;
    }
    
    .faq-question {
        padding: 0.75rem 0;
        font-size: 0.95rem;
    }
    
    .faq-answer {
        font-size: 0.9rem;
        line-height: 1.5;
        padding-left: 0;
        padding-right: 0;
    }
    
    .faq-item.active .faq-answer {
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
    }

    /* Newsletter */
    .newsletter {
        padding: 2rem 1rem;
    }
    
    .newsletter-card {
        padding: 2rem 1.5rem;
    }
    
    .newsletter h2 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }
    
    .newsletter p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    /* Footer */
    footer {
        padding: 2rem 1rem 1rem;
    }
    
    .footer-content {
        padding: 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-section h4 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .footer-section ul {
        font-size: 0.9rem;
    }

    .email-form {
        flex-direction: column;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .cta-button, .cta-button-secondary {
        width: 100%;
        text-align: center;
    }
    
    /* Objections Section */
    .objections {
        padding: 2rem 1rem;
    }
    
    .objections-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .objection-card {
        padding: 1.5rem;
    }
    
    .objection-card h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .objection-list {
        font-size: 0.9rem;
    }
    
    .objection-list li {
        margin-bottom: 0.75rem;
    }
    
    .solution-card {
        padding: 1.5rem;
        margin: 0;
    }
    
    .solution-card h3 {
        font-size: 1.25rem !important;
        margin-bottom: 1rem !important;
    }
    
    .solution-grid {
        gap: 1rem;
    }
    
    .solution-item {
        gap: 0.75rem;
    }
    
    .solution-item h4 {
        font-size: 0.95rem;
    }
    
    .solution-item p {
        font-size: 0.85rem;
    }
    
    /* Fullscreen modal on mobile */
    .modal-overlay {
        padding: 0;
    }
    
    .modal-content {
        width: 100%;
        height: 100%;
        max-width: 100%;
        max-height: 100%;
        border-radius: 0;
        margin: 0;
        box-shadow: none;
    }
    
    #modal-body {
        padding: 2rem;
        padding-top: 4rem;
        height: 100%;
        max-height: 100%;
    }
    
    .modal-close {
        top: 0.5rem;
        right: 0.5rem;
        background: rgba(255, 255, 255, 0.9);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    
    #modal-body h2 {
        font-size: 1.75rem;
    }
    
    #modal-body h3 {
        font-size: 1.15rem;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    /* Hero adjustments for phones */
    .hero {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .hero h1 {
        font-size: 1.75rem;
    }
    
    .hero p {
        font-size: 0.95rem;
    }
    
    .logo {
        font-size: 1.25rem;
    }
    
    .logo img {
        height: 2rem;
    }
    
    .hero-image {
        height: 250px;
    }
    
    /* Modal adjustments */
    #modal-body {
        padding: 1.5rem;
        padding-top: 3.5rem;
    }
    
    #modal-body h2 {
        font-size: 1.5rem;
    }
    
    #modal-body h3 {
        font-size: 1.1rem;
    }
    
    #modal-body p, #modal-body li {
        font-size: 0.95rem;
    }
    
    /* Responsive table */
    #modal-body table {
        font-size: 0.85rem;
    }
    
    #modal-body table th,
    #modal-body table td {
        padding: 0.5rem;
    }
}

/* Lightbox Gallery Styles */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
    color: white;
    text-align: center;
    margin-top: 1rem;
    font-size: 1rem;
    opacity: 0.8;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 3rem;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10001;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.lightbox-close:hover {
    opacity: 1;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
    color: white;
    background: rgba(0, 0, 0, 0.3);
    border: none;
    cursor: pointer;
    padding: 0 20px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: opacity 0.3s, background-color 0.3s;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    opacity: 1;
    background: rgba(0, 0, 0, 0.5);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

/* Mobile adjustments for lightbox */
@media (max-width: 768px) {
    .lightbox-close {
        top: 10px;
        right: 20px;
        font-size: 2rem;
    }
    
    .lightbox-prev,
    .lightbox-next {
        font-size: 2rem;
        padding: 0 15px;
        height: 60px;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    .lightbox-caption {
        font-size: 0.9rem;
    }
}