/* 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: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    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: 80px;
}

/* 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;
}

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

.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%);
    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-left: auto;
}

.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;
    margin-bottom: 0.5rem;
}

.lead-form-card > p {
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.form-benefits {
    margin-bottom: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    line-height: 1.4;
}

.bullet {
    color: #ff6b35;
    font-weight: bold;
    margin-top: 0.1rem;
}

.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%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.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) {
    .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: 10rem 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: 0 auto 2rem auto;
    animation: successPulse 2s ease-in-out infinite;
}

@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.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    border-radius: 20px;
    padding: 3rem 2.5rem 3.5rem 2.5rem;
    margin: 3.5rem 0;
    color: #1a202c;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    text-align: left;
}

.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: 2.5rem;
    gap: 1.5rem;
}

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

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

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

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

/* 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: 40px;
        height: 40px;
        font-size: 1.1rem;
        margin-top: 0;
    }
    
    .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;
}

/* Problem Section */
.problem-section {
    padding: 4rem 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: 2rem;
    margin-bottom: 3rem;
}

.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: 4rem 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: 4rem 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;
}

/* About Section */
.about-section {
    padding: 4rem 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: 4rem 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: 2rem;
}

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

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

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

/* Guarantees Section */
.guarantees-section {
    padding: 4rem 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: 2rem;
}

.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: 4rem 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: 4rem 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: 2rem;
    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 {
    background-color: #ff6b35;
    color: #ffffff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem auto;
}

.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: 4rem 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,
    .package-grid,
    .bonuses-grid,
    .guarantees-grid {
        grid-template-columns: 1fr;
    }
    
    .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 {
        grid-template-columns: 1fr;
    }
    
    .section-header h2,
    .final-cta h2,
    .scarcity-content h2 {
        font-size: 1.75rem;
    }
    
    .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);
    }
}
