/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: linear-gradient(135deg, #2b3648 0%, #1a202c 100%);
    font-feature-settings: "kern" 1, "liga" 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Header Styles */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: static;
    width: 100%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2b3648;
}

.logo-img {
    height: 90px;
    width: auto;
}

.header-cta {
    display: flex;
    align-items: center;
}

/* Main Content */
main {
    margin-top: 0;
}

/* Hero Section */
.hero {
    padding: 5rem 0 6rem 0;
    background: linear-gradient(135deg, #2b3648 0%, #1a202c 50%, #2b3648 100%);
    min-height: calc(100vh - 80px);
    position: relative;
    overflow: hidden;
}

.hero-preheadline {
    font-size: 0.95rem;
    color: #ff6b35;
    font-weight: 500;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 107, 53, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: start;
}

.hero-left {
    padding-top: 2rem;
}

.hero-title {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.05;
    color: #ffffff;
    letter-spacing: -0.03em;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1;
}

.highlight {
    color: #ff6b35;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #ffffff;
    margin-bottom: 3rem;
    line-height: 1.5;
}

.features-card {
    background: linear-gradient(145deg, #3a4759 0%, #323d50 100%);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15), 
                0 1px 3px rgba(0,0,0,0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.features-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.2), 
                0 4px 8px rgba(0,0,0,0.15);
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

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

.check-icon {
    background-color: #4ade80;
    color: #ffffff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Hero Right Side */
.hero-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    background: transparent;
    position: relative;
}

.hero-image {
    position: relative;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 2rem;
}

.website-preview {
    position: relative;
    background: transparent !important;
    width: 85%;
    margin: 0 auto;
}

.website-preview img {
    width: 100%;
    height: auto;
    display: block;
    background: transparent;
    transform: scale(1.0);
    transform-origin: center;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1), 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.website-preview img:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15), 0 10px 30px rgba(0, 0, 0, 0.1);
}

.exclusive-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: #ff6b35;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 10;
}

/* Lead Form Card */
.lead-form-card {
    background: linear-gradient(145deg, #ffffff 0%, #fafafa 100%) !important;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15), 
                0 4px 20px rgba(0,0,0,0.1),
                inset 0 1px 0 rgba(255,255,255,0.2);
    color: #1a202c;
    border: 1px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    width: 85%;
    margin: 0 auto;
    min-height: 400px;
    display: block !important;
    visibility: visible !important;
}

.lead-form-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.2), 
                0 8px 30px rgba(0,0,0,0.15);
}

.lead-form-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c !important;
    margin-bottom: 0.5rem;
    display: block !important;
    visibility: visible !important;
}

.lead-form-card > p {
    color: #4a5568 !important;
    margin-bottom: 1.5rem;
    display: block !important;
    visibility: visible !important;
}

.lead-form-card .form-benefits {
    margin-bottom: 1.5rem !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    overflow: visible !important;
}

.lead-form-card .benefit-item {
    display: flex !important;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    line-height: 1.3;
    color: #4a5568 !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    padding: 0.25rem 0;
}

.lead-form-card .benefit-item:last-child {
    margin-bottom: 0;
}

.lead-form-card .benefit-item span {
    display: inline !important;
    visibility: visible !important;
    opacity: 1 !important;
    color: #4a5568 !important;
}

.lead-form-card .benefit-item span strong {
    color: #2d3748 !important;
    font-weight: 700 !important;
}

.lead-form-card .bullet {
    color: #ff6b35 !important;
    font-weight: 900 !important;
    font-size: 1.1rem !important;
    margin-top: 0.1rem;
    flex-shrink: 0;
    display: inline-block !important;
    visibility: visible !important;
    width: 10px;
    text-align: center;
}

.no-risk-guarantee {
    text-align: center;
    color: #ff6b35;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background-color: #fef2f0;
    border-radius: 8px;
}

/* Form Styles */
.lead-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Tally Form Container */
.tally-form-container {
    margin-top: 1rem;
}

.tally-form-container iframe {
    border-radius: 8px;
    width: 100%;
    min-height: 174px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group input,
.form-group select {
    padding: 0.875rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #ffffff;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
    transform: translateY(-1px);
}

.form-group input:hover,
.form-group select:hover {
    border-color: #cbd5e1;
}

/* Button Styles */
.btn {
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    display: inline-block;
    text-align: center;
    position: relative;
    overflow: hidden;
    font-family: inherit;
    letter-spacing: 0.025em;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b35 0%, #e55a2b 100%) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: inline-block !important;
    width: 100%;
    text-align: center;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #e55a2b 0%, #d94f20 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Header mobile styles */
    .header-content {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 0;
    }
    
    .logo-img {
        height: 70px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-left {
        padding-top: 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .features-card {
        padding: 1.5rem;
    }
    
    .feature-item {
        margin-bottom: 1.5rem;
    }
    
    .lead-form-card {
        padding: 1.5rem;
        width: 100%;
        margin: 0 auto;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 2rem 0 4rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .features-card {
        padding: 1rem;
    }
    
    .feature-content h3 {
        font-size: 1rem;
    }
    
    .feature-content p {
        font-size: 0.9rem;
    }
    
    .lead-form-card {
        padding: 1rem;
        width: 100%;
        margin: 0 auto;
    }
    
    .lead-form-card h3 {
        font-size: 1.25rem;
    }
    
    .benefit-item {
        font-size: 0.85rem;
    }
    
    .no-risk-guarantee {
        font-size: 0.9rem;
        padding: 0.75rem;
    }
}

/* Thank You Page Styles */
.thank-you-hero {
    background: linear-gradient(135deg, #2b3648 0%, #1a1a2e 100%);
    color: #ffffff;
    padding: 12rem 0 6rem 0;
    position: relative;
    overflow: hidden;
}

.thank-you-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 107, 53, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.thank-you-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.success-icon {
    margin: 4rem auto 4rem auto;
    animation: successPulse 2s ease-in-out infinite;
    display: flex;
    justify-content: center;
    align-items: center;
}

@keyframes successPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.thank-you-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.thank-you-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.next-steps-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
    border-radius: 24px;
    padding: 3.5rem 3rem 4rem 3rem;
    margin: 4rem 0;
    color: #1a202c;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15), 
                0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.next-steps-card h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2b3648;
    margin-bottom: 2rem;
    text-align: center;
}

.step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 3rem;
    gap: 1.5rem;
    padding: 0;
}

.step-item:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 55px !important;
    height: 55px !important;
    background: linear-gradient(135deg, #ff6b35 0%, #e55a2b 100%) !important;
    color: #ffffff !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-weight: 700 !important;
    font-size: 1.4rem !important;
    flex-shrink: 0 !important;
    margin-top: 0.1rem !important;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4) !important;
    transition: all 0.3s ease !important;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2b3648;
    margin-bottom: 0.75rem;
    line-height: 1.3;
    margin-top: 0;
}

.step-content p {
    color: #4a5568;
    line-height: 1.7;
    margin: 0;
    font-size: 1rem;
}

.guarantee-reminder {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 107, 53, 0.05) 100%);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 16px;
    padding: 2.5rem;
    margin: 3rem 0;
    text-align: center;
}

.guarantee-reminder h3 {
    color: #ff6b35;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    line-height: 1.3;
}

.guarantee-reminder p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.6;
}

.contact-info {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2.5rem;
    margin: 3rem 0;
    backdrop-filter: blur(10px);
}

.contact-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
}

.contact-details {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.contact-item {
    color: rgba(255, 255, 255, 0.9);
}

.contact-item a {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
}

.contact-item a:hover {
    text-decoration: underline;
}

.social-proof-reminder {
    margin-top: 3.5rem;
    padding: 2rem;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.social-proof-reminder p {
    margin: 0;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
}

.monthly-offer-highlight {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15) 0%, rgba(255, 107, 53, 0.08) 100%);
    border: 2px solid rgba(255, 107, 53, 0.4);
    border-radius: 20px;
    padding: 2.5rem;
    margin: 2.5rem 0 0 0;
    text-align: left;
}

.monthly-offer-highlight h3 {
    color: #ff6b35;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.monthly-offer-highlight ul {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.monthly-offer-highlight li {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.75rem;
    font-size: 1rem;
    line-height: 1.6;
    padding-left: 0;
}

.monthly-offer-highlight p {
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    line-height: 1.6;
    text-align: center;
    font-size: 1.1rem;
}

/* Quiz Page Styles */
.quiz-hero {
    background: linear-gradient(135deg, #2b3648 0%, #1a202c 100%);
    color: #ffffff;
    padding: 4rem 0 6rem 0;
    position: relative;
    overflow: hidden;
}

.quiz-hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.quiz-intro {
    padding-right: 2rem;
}

.quiz-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #ffffff;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.quiz-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.quiz-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.quiz-benefits {
    margin-bottom: 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 1.25rem;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.benefit-item span {
    color: white;
    font-weight: 500;
    font-size: 0.95rem;
}

.benefit-icon {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    flex-shrink: 0;
}

.quiz-cta-section {
    position: sticky;
    top: 2rem;
}

.quiz-cta-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
    border-radius: 20px;
    padding: 2.5rem;
    color: #1a202c;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1), 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.9);
}

.cta-content {
    text-align: center;
}

.cta-badge {
    display: inline-block;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 20px;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    color: #ff6b35;
}

.cta-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2b3648;
    margin-bottom: 0.5rem;
    text-align: center;
}

.cta-subtext {
    color: #4a5568;
    font-size: 0.95rem;
    margin: 0 0 1.5rem 0;
}

.cta-preview {
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(43, 54, 72, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(43, 54, 72, 0.1);
}

.preview-image {
    width: 100%;
    max-width: 200px;
    height: auto;
    border-radius: 8px;
}

.quiz-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: #4a5568;
    font-size: 0.95rem;
}

.form-group input {
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #ffffff;
}

.form-group input:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.main-cta {
    margin-top: 0;
    width: 100%;
    font-size: 1.1rem;
    padding: 1.25rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-bottom: 2rem;
}

.main-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.4);
    text-decoration: none;
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.main-cta:hover .btn-arrow {
    transform: translateX(3px);
}

.cta-guarantees {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 0;
    padding: 0;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #4a5568;
}

.quiz-categories {
    padding: 6rem 0;
    background: rgba(255, 255, 255, 0.02);
}

.quiz-categories-light {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.95) 100%);
    position: relative;
}

/* Score Results Section */
.score-results-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.95) 100%);
    position: relative;
}

.score-results-light {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.95) 100%);
    position: relative;
}

.score-results-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
    align-items: center;
}

.score-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2b3648;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.score-text p {
    font-size: 1.2rem;
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
}

.score-image {
    display: flex;
    justify-content: center;
    align-items: center;
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.score-image img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

.category-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(255, 107, 53, 0.3);
}

.category-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.category-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.category-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}

/* Light background category cards styling */
.quiz-categories-light .category-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
    border: 1px solid rgba(43, 54, 72, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.quiz-categories-light .category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 107, 53, 0.3);
}

.quiz-categories-light .category-card h3 {
    color: #2b3648;
}

.quiz-categories-light .category-card p {
    color: #4a5568;
}

.quiz-categories-light .category-card svg {
    stroke: #ff6b35 !important;
}

/* How It Works Section */
.how-it-works-light {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.95) 100%);
    position: relative;
}

.how-it-works-light .section-header h2 {
    color: #2b3648 !important;
}

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

.how-it-works-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(43, 54, 72, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.how-it-works-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
    border-color: rgba(255, 107, 53, 0.2);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.step-icon {
    margin: 2rem 0 1.5rem 0;
    display: flex;
    justify-content: center;
}

.how-it-works-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2b3648;
    margin-bottom: 1rem;
}

.how-it-works-card p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.step-value {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 107, 53, 0.05) 100%);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 8px;
    padding: 0.75rem;
    color: #ff6b35;
    font-size: 0.9rem;
}

.quiz-categories-light .category-card svg path {
    stroke: #ff6b35 !important;
}

.quiz-categories-light .category-card svg circle {
    stroke: #ff6b35 !important;
}

.quiz-categories-light .category-card svg polyline {
    stroke: #ff6b35 !important;
}

.quiz-faqs {
    padding: 5rem 0;
    background: rgba(255, 255, 255, 0.03);
}

.faq-subtitle {
    color: rgba(255, 255, 255, 0.9) !important;
}

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

.faq-item {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ff6b35;
    margin-bottom: 1rem;
}

.faq-item p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin: 0;
}

.final-cta-light {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.95) 100%);
    text-align: center;
}

.final-cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.final-cta-light h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #2b3648;
    margin-bottom: 1.5rem;
}

.final-cta-light p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.final-cta-light .btn {
    margin-bottom: 1.5rem;
}

.final-cta-light .final-disclaimer {
    color: #6b7280;
    font-size: 0.95rem;
    margin: 0;
}

/* Quiz Page Mobile Styles */
@media (max-width: 768px) {
    .quiz-hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .quiz-intro {
        padding-right: 0;
        order: 1;
    }
    
    .quiz-cta-section {
        order: 2;
        position: static;
    }
    
    .quiz-benefits {
        grid-template-columns: 1fr;
    }
    
    .cta-guarantees {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .score-results-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .score-text h2 {
        font-size: 2rem;
    }
    
    .score-image {
        order: -1;
        padding: 1.5rem;
    }
    
    .categories-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .quiz-hero {
        padding: 3rem 0 4rem 0;
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .thank-you-hero {
        padding: 8rem 0 4rem 0;
    }
    
    .thank-you-content {
        padding: 0 1rem;
    }
    
    .next-steps-card {
        padding: 2.5rem 1.5rem;
        margin: 2.5rem 0;
    }
    
    .contact-details {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .step-item {
        gap: 1.25rem;
        margin-bottom: 2rem;
    }
    
    .step-number {
        width: 65px !important;
        height: 65px !important;
        font-size: 1.4rem !important;
        margin-top: 0 !important;
    }
    
    .guarantee-reminder {
        padding: 2rem 1.5rem;
        margin: 2.5rem 0;
    }
    
    .contact-info {
        padding: 2rem 1.5rem;
        margin: 2.5rem 0;
    }
    
    .social-proof-reminder {
        padding: 1.5rem;
        margin-top: 2.5rem;
    }
}

/* Location Map Section */
.location-map-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.location-map-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255,107,53,0.03) 0%, transparent 50%);
    pointer-events: none;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.location-text-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2b3648;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.location-text-content > p {
    font-size: 1.25rem;
    color: #4a5568;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.location-social-proof {
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: linear-gradient(145deg, #ffffff 0%, #f7fafc 100%);
    border-radius: 16px;
    border: 1px solid rgba(226, 232, 240, 0.6);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.proof-item {
    margin-bottom: 0.75rem;
    font-size: 1rem;
    color: #4a5568;
}

.proof-item:last-child {
    margin-bottom: 0;
}

.proof-item strong {
    color: #2b3648;
}



.location-map-container {
    position: relative;
}

.map-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border: 1px solid rgba(226, 232, 240, 0.6);
    transition: all 0.3s ease;
    position: relative;
    background: #f0f0f0;
    height: 300px;
}

.map-wrapper:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.2);
}

/* Mapbox specific styles */
#location-map {
    width: 100% !important;
    height: 300px !important;
    position: relative;
}

.mapboxgl-canvas {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.mapboxgl-ctrl-logo {
    display: none !important;
}

.map-caption {
    text-align: center;
    font-size: 0.95rem;
    color: #64748b;
    margin-top: 1rem;
    font-style: italic;
}

/* Location Map Responsive Design */
@media (max-width: 768px) {
    .location-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .location-text-content {
        order: 1;
    }
    
    .location-map-container {
        order: 2;
    }
    
    .location-text-content h2 {
        font-size: 2rem;
    }
    
    .location-social-proof {
        padding: 1.25rem;
    }
}

@media (max-width: 480px) {
    .location-map-section {
        padding: 3rem 0;
    }
    
    .location-text-content h2 {
        font-size: 1.75rem;
    }
    
    .location-social-proof {
        padding: 1rem;
    }
    
    .map-wrapper iframe {
        height: 250px;
    }
}

/* Footer */
.footer {
    background-color: #1a202c;
    color: #ffffff;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

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

.footer-section h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
    color: #ffffff;
}

.footer-section p {
    color: #cbd5e1;
    margin-bottom: 1rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-item {
    display: flex;
    gap: 0.5rem;
}

.contact-label {
    font-weight: 600;
    min-width: 60px;
    color: #ffffff;
}

.contact-value {
    color: #cbd5e1;
}

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

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-copyright {
    order: 2;
}

.footer-navigation {
    order: 1;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer-nav-link {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    position: relative;
    overflow: hidden;
}

.footer-nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    transition: left 0.5s ease;
}

.footer-nav-link:hover::before {
    left: 100%;
}

.footer-nav-link:hover {
    color: #ff6b35;
    background-color: rgba(255, 107, 53, 0.05);
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .footer-nav {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .footer-nav-link {
        font-size: 0.95rem;
        padding: 0.75rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .footer-bottom-content {
        gap: 1rem;
    }
    
    .footer-nav {
        gap: 0.75rem;
    }
}

/* Problem Section */
.problem-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #fafbfc 50%, #f8f9fa 100%);
    color: #1a202c;
    position: relative;
    overflow: hidden;
}

.problem-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255,107,53,0.03) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(43,54,72,0.05) 0%, transparent 50%);
    pointer-events: none;
}

.problem-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.problem-section .section-header h2 {
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.problem-section .section-header p {
    font-size: 1.25rem;
    color: #4a5568;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.problem-card {
    background: linear-gradient(145deg, #ffffff 0%, #f7fafc 100%);
    border: 1px solid rgba(226, 232, 240, 0.6);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06), 
                0 1px 3px rgba(0,0,0,0.1);
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,107,53,0.02) 0%, rgba(255,107,53,0.08) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12), 
                0 8px 20px rgba(0,0,0,0.08);
    border-color: rgba(255,107,53,0.2);
}

.problem-card:hover::before {
    opacity: 1;
}

.problem-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
    height: 60px;
}

.problem-icon svg {
    width: 48px;
    height: 48px;
}

.problem-card h3 {
    font-size: 1.25rem;
    color: #2d3748;
    line-height: 1.4;
}

.problem-statement {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.problem-statement p {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #2d3748;
}

/* Social Proof Section */
.social-proof {
    padding: 5rem 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #f1f3f5 50%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.social-proof::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 30%, rgba(255,107,53,0.06) 0%, transparent 50%),
                radial-gradient(circle at 20% 70%, rgba(43,54,72,0.08) 0%, transparent 50%);
    pointer-events: none;
}

.testimonial-card {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(145deg, #ffffff 0%, #fafafa 100%);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1), 
                0 8px 30px rgba(0,0,0,0.05),
                inset 0 1px 0 rgba(255,255,255,0.3);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 80px rgba(0,0,0,0.15), 
                0 12px 40px rgba(0,0,0,0.1);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #e55a2b, #ff6b35);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { background-position: 200% 0; }
    50% { background-position: -200% 0; }
}

.testimonial-content blockquote {
    font-size: 1.5rem;
    font-style: italic;
    color: #2d3748;
    margin-bottom: 2rem;
    line-height: 1.6;
    position: relative;
}

.testimonial-content blockquote::before {
    content: '"';
    font-size: 4rem;
    color: #ff6b35;
    position: absolute;
    top: -1rem;
    left: -1rem;
}

.testimonial-author strong {
    color: #1a202c;
    font-size: 1.25rem;
    display: block;
    margin-bottom: 0.5rem;
}

.testimonial-author span {
    color: #ff6b35;
    font-weight: 600;
}

/* Solution Section */
.solution-section {
    padding: 5rem 0;
    background-color: #2b3648;
    color: #ffffff;
}

.solution-section .section-header h2 {
    color: #ffffff;
    text-align: center;
    margin-bottom: 3rem;
}

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

.comparison-column {
    background-color: #3a4759;
    border-radius: 12px;
    padding: 2rem;
}

.comparison-column h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

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

.comparison-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #4a5568;
    position: relative;
    padding-left: 2rem;
}

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

.comparison-list.bad li::before {
    content: '❌';
    position: absolute;
    left: 0;
    top: 0.75rem;
}

.solution-statement {
    text-align: center;
    background-color: #ff6b35;
    color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
}

.solution-statement h3 {
    font-size: 1.75rem;
    margin: 0;
}

/* Solutions Grid (for profession pages) */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.solution-card {
    background: linear-gradient(145deg, #3a4759 0%, #323d50 100%);
    border-radius: 16px;
    padding: 2rem;
    text-align: left;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
    border-color: rgba(255, 107, 53, 0.3);
}

.solution-number {
    background: linear-gradient(135deg, #ff6b35 0%, #e55a2b 100%);
    color: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.solution-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.solution-card p {
    color: #cbd5e1;
    line-height: 1.6;
    margin: 0;
}

/* Benefits Section (for profession pages) */
.benefits-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    color: #1a202c;
    position: relative;
    overflow: hidden;
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 20%, rgba(255,107,53,0.03) 0%, transparent 50%);
    pointer-events: none;
}

.benefits-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.benefits-section .section-header h2 {
    color: #1a202c;
}

.benefits-section .section-header p {
    color: #4a5568;
}

.benefits-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.benefits-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

.benefit-item-large {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: linear-gradient(145deg, #ffffff 0%, #f7fafc 100%);
    border: 1px solid rgba(226, 232, 240, 0.6);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.benefit-item-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    border-color: rgba(255,107,53,0.2);
}

.benefit-item-large .benefit-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.25rem;
}

.benefit-item-large .benefit-icon svg {
    width: 32px;
    height: 32px;
}

.benefit-item-large h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.benefit-item-large p {
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
}

/* Pricing Section (for profession pages) */
.pricing-section {
    padding: 5rem 0;
    background-color: #2b3648;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

.pricing-section .section-header h2 {
    color: #ffffff;
}

.pricing-section .section-header p {
    color: #cbd5e1;
}

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

.pricing-card {
    background: linear-gradient(145deg, #ffffff 0%, #f7fafc 100%);
    border-radius: 20px;
    padding: 2.5rem;
    color: #1a202c;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 2px solid #ff6b35;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
}

.pricing-card.featured {
    border-color: #ff6b35;
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff6b35 0%, #e55a2b 100%);
    color: #ffffff;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.pricing-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2b3648;
    margin-bottom: 1.5rem;
    text-align: center;
    margin-top: 1rem;
}

.pricing-amount {
    text-align: center;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.pricing-amount .currency {
    font-size: 2rem;
    font-weight: 700;
    color: #2b3648;
}

.pricing-amount .amount {
    font-size: 4rem;
    font-weight: 800;
    color: #ff6b35;
    line-height: 1;
}

.pricing-amount .period {
    font-size: 1.5rem;
    color: #4a5568;
}

.pricing-subtext {
    text-align: center;
    color: #4a5568;
    margin-bottom: 2rem;
    font-size: 1rem;
}

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

.pricing-features li {
    padding: 0.75rem 0;
    color: #2d3748;
    font-size: 1rem;
    line-height: 1.6;
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-terms {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(226, 232, 240, 0.6);
    color: #4a5568;
    font-size: 0.9rem;
    line-height: 1.6;
}

.pricing-terms p {
    margin-bottom: 0.5rem;
}

.pricing-terms p:last-child {
    margin-bottom: 0;
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background-color: #ffffff;
    color: #1a202c;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-text p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.credentials-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.credentials-list li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 2rem;
}

.credentials-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4ade80;
    font-weight: bold;
}

.offer-highlight {
    background-color: #fef2f0;
    border: 2px solid #ff6b35;
    border-radius: 12px;
    padding: 2rem;
    margin-top: 2rem;
}

.offer-highlight p {
    color: #1a202c;
    font-size: 1.25rem;
    margin: 0;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.george-headshot {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.george-headshot:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

/* Portfolio Section */
.portfolio-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
    color: #1a202c;
}

.portfolio-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.portfolio-section .section-header h2 {
    color: #1a202c;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.portfolio-section .section-header p {
    color: #4a5568;
    font-size: 1.1rem;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.portfolio-card {
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding-top: 1.5rem;
}

.portfolio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.portfolio-image {
    position: relative;
    overflow: hidden;
    margin: 0 1.5rem;
    border-radius: 12px;
}

.portfolio-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.portfolio-card:hover .portfolio-image img {
    transform: scale(1.05);
}

.portfolio-content {
    padding: 2rem;
}

.portfolio-content h3 {
    color: #1a202c;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.portfolio-tech {
    color: #ff6b35;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.portfolio-content p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.portfolio-result {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #4ade80;
    font-weight: 600;
    font-size: 0.9rem;
}

.portfolio-result svg {
    flex-shrink: 0;
}

.portfolio-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    border: 2px solid #ff6b35;
    border-radius: 8px;
    transition: all 0.3s ease;
    background-color: transparent;
}

.portfolio-link:hover {
    background-color: #ff6b35;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.portfolio-link svg {
    transition: transform 0.3s ease;
}

.portfolio-link:hover svg {
    transform: translateX(2px);
}

.portfolio-link:hover svg path {
    stroke: #ffffff;
}

/* Mobile responsiveness for portfolio */
@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .portfolio-section .section-header h2 {
        font-size: 2rem;
    }
    
    .portfolio-content {
        padding: 1.5rem;
    }
}

/* Package Section */
.package-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
    color: #1a202c;
}

.package-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.package-section .section-header h2 {
    color: #1a202c;
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.package-item {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.package-item:hover {
    transform: translateY(-5px);
}

.package-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
    height: 60px;
}

.package-icon svg {
    width: 48px;
    height: 48px;
}

.package-item h3 {
    color: #1a202c;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.package-item p {
    color: #4a5568;
    line-height: 1.6;
}

/* Bonuses Section */
.bonuses-section {
    padding: 5rem 0;
    background-color: #2b3648;
    color: #ffffff;
}

.bonuses-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.bonuses-section .section-header h2 {
    color: #ffffff;
}

.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.bonus-card {
    background-color: #3a4759;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    position: relative;
    border: 2px solid #ff6b35;
}

.bonus-value {
    background-color: #ff6b35;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.bonus-card h3 {
    color: #ffffff;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.bonus-card p {
    color: #cbd5e1;
    line-height: 1.6;
}

/* Add-on styling for optional services */
.bonus-card.add-on {
    border: 2px solid #4a5568;
    background-color: #2d3748;
}

.add-on-price {
    background-color: #4a5568;
    color: #ffffff;
}

.bonus-card.add-on h3 {
    color: #e2e8f0;
}

.bonus-card.add-on p {
    color: #a0aec0;
}

/* Comparison Table Section */
.comparison-table-section {
    padding: 5rem 0;
    background-color: #f7fafc;
    color: #1a202c;
}

.comparison-table-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.comparison-table-section .section-header h2 {
    color: #1a202c;
}

.comparison-table-section .section-header p {
    color: #4a5568;
    font-size: 1.1rem;
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-bottom: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    min-width: 600px;
}

.comparison-table th {
    background-color: #2b3648;
    color: #ffffff;
    padding: 1.5rem 1rem;
    text-align: center;
    font-weight: 600;
    border-bottom: 3px solid #ff6b35;
}

.comparison-table th.highlighted {
    background-color: #ff6b35;
    position: relative;
}

.comparison-table th.highlighted::after {
    content: "⭐";
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
}

.comparison-table td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid #e2e8f0;
    vertical-align: middle;
}

.feature-name {
    background-color: #f8fafc;
    font-weight: 600;
    text-align: left !important;
    color: #2d3748;
    border-right: 2px solid #e2e8f0;
}

.diy-cell {
    background-color: #fff5f5;
    color: #1a202c;
}

.traditional-cell {
    background-color: #fffaf0;
    color: #1a202c;
}

.our-cell {
    background-color: #f0fff4;
    color: #1a202c;
    font-weight: 600;
    border-left: 3px solid #ff6b35;
    border-right: 3px solid #ff6b35;
}

.total-row {
    border-top: 3px solid #2b3648;
    background-color: #2b3648 !important;
    color: #ffffff !important;
    font-weight: 700;
}

.total-cell {
    border-top: 3px solid #2b3648;
    font-weight: 700;
    font-size: 1.1rem;
}

.our-cell.total-cell {
    background-color: #ff6b35 !important;
    color: #ffffff !important;
}

.comparison-table small {
    font-size: 0.8rem;
    opacity: 0.8;
    display: block;
    margin-top: 0.25rem;
}

.comparison-summary {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.summary-card {
    background-color: #ffffff;
    border: 2px solid #ff6b35;
    border-radius: 12px;
    padding: 2rem;
    max-width: 600px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.summary-card h3 {
    color: #2b3648;
    margin-bottom: 1rem;
    text-align: center;
}

.summary-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.summary-card li {
    margin-bottom: 0.75rem;
    color: #4a5568;
    line-height: 1.6;
}

/* Mobile responsiveness for comparison table */
@media (max-width: 768px) {
    .comparison-table-wrapper {
        margin: 0 -20px 3rem -20px;
        border-radius: 0;
        padding: 0 10px;
    }
    
    .comparison-table {
        border-radius: 0;
        font-size: 0.9rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem 0.5rem;
    }
    
    .feature-name {
        font-size: 0.85rem;
        padding: 0.75rem 0.75rem;
    }
    
    .summary-card {
        margin: 0 -20px;
        border-radius: 0;
        border-left: none;
        border-right: none;
    }
}

/* Guarantees Section */
.guarantees-section {
    padding: 5rem 0;
    background-color: #ffffff;
    color: #1a202c;
}

.guarantees-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.guarantees-section .section-header h2 {
    color: #1a202c;
}

.guarantees-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.guarantee-card {
    background-color: #f7fafc;
    border: 2px solid #4ade80;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}

.guarantee-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
    height: 60px;
}

.guarantee-icon svg {
    width: 48px;
    height: 48px;
}

.guarantee-card h3 {
    color: #1a202c;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.guarantee-card p {
    color: #4a5568;
    line-height: 1.6;
}

/* Scarcity Section */
.scarcity-section {
    padding: 5rem 0;
    background-color: #1a202c;
    color: #ffffff;
}

.scarcity-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.scarcity-content h2 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.scarcity-content > p {
    font-size: 1.25rem;
    color: #cbd5e1;
    margin-bottom: 3rem;
}

.exchange-terms {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    text-align: left;
}

.exchange-column h3 {
    color: #ff6b35;
    margin-bottom: 1rem;
}

.exchange-column ul {
    list-style: none;
    padding: 0;
}

.exchange-column li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 2rem;
}

.exchange-column li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-weight: bold;
}

.urgency-box {
    background-color: #ff6b35;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}

.urgency-box h3 {
    color: #ffffff;
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.urgency-box p {
    color: #ffffff;
    margin-bottom: 1rem;
}

.urgency-box .highlight {
    color: #ffffff;
}

.availability-counter {
    background-color: #ffffff;
    color: #1a202c;
    padding: 1rem 2rem;
    border-radius: 8px;
    display: inline-block;
    margin-top: 1rem;
}

.counter-label {
    font-weight: 600;
    margin-right: 1rem;
}

.counter-number {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ff6b35;
}

/* Process Section */
.process-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
    color: #1a202c;
}

.process-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.process-section .section-header h2 {
    color: #1a202c;
}

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

.process-step {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Step number styles moved to line 586 to avoid conflicts */

.process-step h3 {
    color: #1a202c;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.process-step p {
    color: #4a5568;
}

.after-year-one {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.after-year-one h3 {
    color: #1a202c;
    margin-bottom: 1rem;
}

.after-year-one ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.after-year-one li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 2rem;
}

.after-year-one li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-weight: bold;
}

/* Final CTA Section */
.final-cta {
    padding: 5rem 0;
    background-color: #2b3648;
    color: #ffffff;
}

.final-cta .cta-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.final-cta h2 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.choice-column {
    background-color: #3a4759;
    border-radius: 12px;
    padding: 2rem;
}

.bad-choice {
    border: 2px solid #ef4444;
}

.good-choice {
    border: 2px solid #4ade80;
}

.choice-column h3 {
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.bad-choice h3 {
    color: #ef4444;
}

.good-choice h3 {
    color: #4ade80;
}

.choice-column ul {
    list-style: none;
    padding: 0;
}

.choice-column li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #4a5568;
    font-size: 1rem;
}

.choice-column li:last-child {
    border-bottom: none;
}

.cta-button-container {
    margin-bottom: 3rem;
}

.btn-large {
    font-size: 1.25rem;
    padding: 1.25rem 3rem;
    margin-bottom: 1rem;
}

.contact-info {
    color: #cbd5e1;
    margin: 1rem 0 0.5rem 0;
}

.response-time {
    color: #9ca3af;
    font-size: 0.9rem;
}

.final-message {
    background-color: #3a4759;
    border-radius: 12px;
    padding: 2rem;
}

.final-message p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.final-message p:last-child {
    margin-bottom: 0;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-header p {
    font-size: 1.25rem;
    color: #4a5568;
}

/* Footer Responsive */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer {
        padding: 2rem 0 1rem;
    }
    
    /* Mobile responsive for new sections */
    .problems-grid,
    .solutions-grid,
    .package-grid,
    .bonuses-grid,
    .guarantees-grid {
        grid-template-columns: 1fr;
    }
    
    .benefit-item-large {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .pricing-card {
        padding: 2rem 1.5rem;
    }
    
    .pricing-amount .amount {
        font-size: 3rem;
    }
    
    .comparison-grid,
    .exchange-terms,
    .choice-comparison {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-header h2,
    .final-cta h2,
    .scarcity-content h2 {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero {
        padding: 6rem 0 6rem 0;
    }
    
    .header-cta .btn {
        font-size: 0.9rem;
        padding: 0.75rem 1.5rem;
    }
    
    .hero-preheadline {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
        margin-bottom: 1.2rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-left {
        order: 1;
        padding-top: 0;
    }
    
    .hero-right {
        order: 2;
    }
    
    .website-preview img {
        width: 110%;
        transform: scale(1.05);
    }
}

@media (max-width: 480px) {
    .process-steps,
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header h2,
    .final-cta h2,
    .scarcity-content h2 {
        font-size: 1.75rem;
    }
    
    .benefit-item-large {
        padding: 1.25rem;
    }
    
    .benefit-item-large h3 {
        font-size: 1.1rem;
    }
    
    .pricing-card {
        padding: 1.5rem 1rem;
    }
    
    .pricing-card h3 {
        font-size: 1.5rem;
    }
    
    .pricing-amount .currency {
        font-size: 1.5rem;
    }
    
    .pricing-amount .amount {
        font-size: 2.5rem;
    }
    
    .pricing-amount .period {
        font-size: 1.25rem;
    }
    
    .solution-card {
        padding: 1.5rem;
    }
    
    .solution-number {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .solution-card h3 {
        font-size: 1.1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .testimonial-content blockquote {
        font-size: 1.25rem;
    }
    
    .btn-large {
        font-size: 1rem;
        padding: 1rem 2rem;
    }
    
    .hero {
        padding: 7rem 0 6rem 0;
    }
    
    .header-cta .btn {
        font-size: 0.8rem;
        padding: 0.6rem 1.2rem;
    }
    
    .hero-preheadline {
        font-size: 0.8rem;
        padding: 0.35rem 0.7rem;
        margin-bottom: 1rem;
    }
    
    .website-preview img {
        width: 100%;
        transform: scale(1.02);
    }
}
