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

:root {
    --primary-bg: #1a1a1a;
    --secondary-bg: #2a2a2a;
    --accent-blue: #00aaff;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --warning-red: #ff4444;
    --gradient-bg: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    --card-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--primary-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav {
    padding: 15px 0;
}

.nav-brand h1 {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-blue);
    text-align: center;
}

/* Hero Section */
.hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    background: var(--gradient-bg);
    position: relative;
    padding-top: 60px;
    padding-bottom: 40px;
    z-index: 1;
}

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

.step-indicator {
    display: inline-flex;
    align-items: center;
    background: rgba(42, 42, 42, 0.8);
    padding: 8px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.step-indicator i {
    color: var(--accent-blue);
    margin-right: 10px;
    animation: bounce 2s infinite;
}

.step-indicator span {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-5px); }
    60% { transform: translateY(-3px); }
}

.hero-title {
    font-size: clamp(24px, 4vw, 40px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
}

.blue-text {
    color: var(--accent-blue);
}

.warning-notice {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid var(--warning-red);
    padding: 8px 16px;
    border-radius: 6px;
    margin-bottom: 20px;
    color: var(--warning-red);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.5px;
}

.warning-notice i {
    margin-right: 8px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

.strategy-headline {
    font-size: clamp(20px, 3.5vw, 36px);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 15px;
}

.strategy-subtext {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 25px;
    font-weight: 400;
}

.cta-arrow {
    margin: 20px 0;
}

.cta-arrow i {
    font-size: 24px;
    color: var(--accent-blue);
    animation: bounce 2s infinite;
}

.cta-button {
    background: linear-gradient(135deg, var(--accent-blue) 0%, #0088cc 100%);
    color: white;
    border: none;
    padding: 18px 48px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 170, 255, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 170, 255, 0.4);
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
    overflow: hidden;
}

.section-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--text-primary);
}

.testimonials-slideshow {
    margin-top: 50px;
    overflow: hidden;
    position: relative;
}

.slideshow-track {
    display: flex;
    animation: slide 30s linear infinite;
    width: calc(100% * 2);
}

.testimonial-slide {
    flex: 0 0 300px;
    margin-right: 30px;
    text-align: center;
}

.testimonial-slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

.testimonial-slide:hover img {
    transform: scale(1.05);
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.testimonials-slideshow:hover .slideshow-track {
    animation-play-state: paused;
}

@media (max-width: 768px) {
    .testimonial-slide {
        flex: 0 0 250px;
        margin-right: 20px;
    }
    
    .testimonial-slide img {
        height: 350px;
    }
    
    .slideshow-track {
        animation-duration: 25s;
    }
}

/* Features Section */
.features {
    padding: 60px 0;
    background: var(--primary-bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.feature-item {
    text-align: center;
    padding: 25px 15px;
    background: rgba(42, 42, 42, 0.3);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent-blue);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-blue), #0088cc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.feature-icon i {
    font-size: 28px;
    color: white;
}

.feature-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.feature-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Final CTA Section */
.final-cta {
    padding: 60px 0;
    background: var(--gradient-bg);
    text-align: center;
}

.final-cta h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.final-cta p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    display: block !important;
    opacity: 1 !important;
}

.modal-content {
    background-color: var(--secondary-bg);
    margin: 5% auto;
    padding: 20px;
    border-radius: 16px;
    width: 90%;
    max-width: 800px;
    height: 80vh;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.close {
    color: var(--text-secondary);
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: var(--accent-blue);
}

#typeform-container {
    width: 100%;
    height: calc(100% - 40px);
    border-radius: 12px;
    overflow: hidden;
}

/* Bridge Form Styles */
.bridge-form {
    background: white;
    color: #333;
    max-width: 600px;
    margin: 2% auto;
    padding: 0;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.bridge-container {
    padding: 40px 50px;
    text-align: center;
}

.bridge-container h2 {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 40px;
    line-height: 1.3;
}

.bridge-container .form-group {
    margin-bottom: 20px;
    position: relative;
}

.bridge-container input[type="text"],
.bridge-container input[type="email"],
.bridge-container input[type="tel"] {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 16px;
    background: #f8f9fa;
    color: #333;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.bridge-container input:focus {
    border-color: #1e88e5;
    background: white;
    outline: none;
    box-shadow: 0 0 0 3px rgba(30, 136, 229, 0.1);
}

.phone-input {
    display: flex;
    gap: 10px;
}

.phone-input select {
    padding: 18px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    background: #f8f9fa;
    font-size: 16px;
    color: #333;
    min-width: 100px;
    cursor: pointer;
}

.phone-input input {
    flex: 1;
}

.discover-btn {
    width: 100%;
    background: linear-gradient(135deg, #1e88e5, #1565c0);
    color: white;
    border: none;
    padding: 20px 30px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    text-transform: none;
    letter-spacing: 0.5px;
}

.discover-btn:hover {
    background: linear-gradient(135deg, #1565c0, #0d47a1);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 136, 229, 0.3);
}

.error-message {
    color: #f44336;
    font-size: 14px;
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 5px;
    display: none;
}

.error-message.show {
    display: block;
}

#closeBridge {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 32px;
    font-weight: bold;
    color: #999;
    cursor: pointer;
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

#closeBridge:hover {
    background: #f5f5f5;
    color: #333;
}

/* Questionnaire Styles */
.questionnaire-body {
    background: linear-gradient(135deg, #0f1419 0%, #1a2332 50%, #0f1419 100%);
    min-height: 100vh;
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
}

.questionnaire-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.progress-header {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.header-nav {
    margin-bottom: 20px;
}

.back-link {
    color: #e0e6ed;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.back-link:hover {
    opacity: 1;
    color: #1e88e5;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 12px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #1e88e5, #42a5f5);
    border-radius: 4px;
    transition: width 0.6s ease;
    width: 12.5%;
}

.progress-text {
    color: #e0e6ed;
    font-size: 14px;
    font-weight: 500;
}

.questionnaire-wrapper {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.questionnaire-form {
    position: relative;
    min-height: 500px;
}

.question-slide {
    display: none;
    padding: 60px 50px;
    animation: slideIn 0.6s ease;
}

.question-slide.active {
    display: block;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.question-title {
    color: #ffffff;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 40px;
    line-height: 1.3;
    text-align: center;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.options-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.option-card {
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    position: relative;
}

.option-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(30, 136, 229, 0.5);
    transform: translateY(-2px);
}

.option-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.option-card input[type="radio"]:checked + .option-content {
    color: #1e88e5;
}

.option-card input[type="radio"]:checked {
    & ~ .option-content::after {
        content: '✓';
        position: absolute;
        top: 12px;
        right: 12px;
        width: 24px;
        height: 24px;
        background: #1e88e5;
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        font-weight: bold;
    }
}

.option-card:has(input[type="radio"]:checked) {
    background: rgba(30, 136, 229, 0.15);
    border-color: #1e88e5;
}

.option-content {
    color: #e0e6ed;
    position: relative;
}

.option-content i {
    font-size: 24px;
    margin-bottom: 12px;
    display: block;
    color: #1e88e5;
}

.option-content span {
    font-size: 18px;
    font-weight: 500;
    display: block;
    margin-bottom: 4px;
}

.option-content small {
    font-size: 14px;
    color: #9ca3af;
    display: block;
}

/* Commitment Scale */
.commitment-scale {
    text-align: center;
}

.scale-labels {
    display: flex;
    justify-content: space-between;
    margin-bottom: 24px;
    color: #9ca3af;
    font-size: 14px;
}

.scale-options {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 40px;
}

.scale-option {
    flex: 1;
    max-width: 60px;
}

.scale-option input[type="radio"] {
    display: none;
}

.scale-option span {
    display: block;
    width: 50px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #9ca3af;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
}

.scale-option:hover span {
    border-color: #1e88e5;
    color: #1e88e5;
}

.scale-option input[type="radio"]:checked + span {
    background: #1e88e5;
    border-color: #1e88e5;
    color: white;
    transform: scale(1.1);
}

/* Textarea */
.textarea-container {
    margin-bottom: 40px;
}

.textarea-container textarea {
    width: 100%;
    min-height: 120px;
    padding: 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    color: #e0e6ed;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    resize: vertical;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.textarea-container textarea:focus {
    outline: none;
    border-color: #1e88e5;
    background: rgba(255, 255, 255, 0.12);
}

.textarea-container textarea::placeholder {
    color: #9ca3af;
}

/* Navigation */
.question-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 50px;
    background: rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-btn {
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.prev-btn {
    background: rgba(255, 255, 255, 0.1);
    color: #e0e6ed;
}

.prev-btn:hover {
    background: rgba(255, 255, 255, 0.15);
}

.next-btn, .submit-btn {
    background: linear-gradient(135deg, #1e88e5, #1565c0);
    color: white;
    margin-left: auto;
}

.submit-btn {
    width: 100%;
    margin-left: 0;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.next-btn:hover, .submit-btn:hover {
    background: linear-gradient(135deg, #1565c0, #0d47a1);
    transform: translateY(-2px);
}

.next-btn:disabled, .submit-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* Success Message */
.success-message {
    text-align: center;
    padding: 40px 20px;
    color: #e0e6ed;
    max-width: 1000px;
    margin: 0 auto;
}

.success-content {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.calendly-header {
    background: linear-gradient(135deg, #1e88e5, #1565c0);
    padding: 40px 30px;
    text-align: center;
}

.calendly-header h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #ffffff;
    line-height: 1.3;
}

.calendly-header p {
    font-size: 16px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.calendly-inline-widget {
    background: white;
    border-radius: 0 0 24px 24px;
    overflow: hidden;
}

.success-actions .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #e0e6ed;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: 20px;
    display: inline-block;
}

.success-actions .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* Responsive Design */
@media (max-width: 768px) {
    .questionnaire-container {
        padding: 20px 15px;
    }
    
    .question-slide {
        padding: 40px 30px;
    }
    
    .question-title {
        font-size: 24px;
    }
    
    .options-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .question-navigation {
        padding: 20px 30px;
    }
    
    .nav-btn {
        padding: 14px 24px;
        font-size: 14px;
    }
    
    .scale-options {
        gap: 4px;
    }
    
    .scale-option span {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
}

/* Custom Form Styles */
.custom-form {
    padding: 30px;
    height: 100%;
    overflow-y: auto;
}

.custom-form h2 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--text-primary);
    font-size: 24px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 12px;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 16px;
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.radio-group label {
    display: flex;
    align-items: center;
    margin-bottom: 0;
    padding: 12px 16px;
    background: rgba(42, 42, 42, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 400;
}

.radio-group label:hover {
    border-color: var(--accent-blue);
    background: rgba(42, 42, 42, 0.7);
}

.radio-group input[type="radio"] {
    margin-right: 12px;
    accent-color: var(--accent-blue);
    transform: scale(1.2);
}

.radio-group input[type="radio"]:checked + label,
.radio-group label:has(input[type="radio"]:checked) {
    border-color: var(--accent-blue);
    background: rgba(0, 170, 255, 0.1);
    color: var(--text-primary);
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--accent-blue) 0%, #0088cc 100%);
    color: white;
    border: none;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 170, 255, 0.4);
}

.success-message, .error-message {
    text-align: center;
    padding: 60px 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.success-icon {
    color: #4CAF50;
    font-size: 64px;
    margin-bottom: 20px;
}

.error-icon {
    color: var(--warning-red);
    font-size: 64px;
    margin-bottom: 20px;
}

.success-message h2, .error-message h2 {
    margin-bottom: 15px;
    color: var(--text-primary);
}

.success-message p, .error-message p {
    color: var(--text-secondary);
    margin-bottom: 30px;
    max-width: 400px;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 28px;
    }
    
    .strategy-headline {
        font-size: 24px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .modal-content {
        width: 95%;
        height: 85vh;
        margin: 2.5% auto;
    }
    
    .cta-button {
        padding: 15px 36px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .step-indicator {
        padding: 10px 16px;
        font-size: 12px;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .feature-item {
        padding: 30px 15px;
    }
}
