/* Global Styles */
:root {
    --primary-color: #0073e5; /* ADA compliant Orca Blue */
    --primary-light: #eef2ff;
    --secondary-color: #1e1e2f;
    --accent-color: #e41e5b; /* New CTA color */
    --accent-hover: #c10549; /* New CTA hover color */
    --text-color: #333;
    --background-color: #f5f7fa;
    --light-bg: #F5F8FF;
    --gradient-start: #0073e5; /* Changed to match primary-color */
    --gradient-end: #0073e5; /* Changed to match primary-color (no gradient) */
    --light-text: #6b7280;
    --light-gray: #F3F4F9;
    --medium-gray: #e5e7eb;
    --dark-gray: #4b5563;
    --white: #ffffff;
    --success-green: #10b981;
    --border-radius: 8px;
    --button-radius: 30px; /* Rounded buttons */
    --box-shadow: 0 10px 30px rgba(0, 115, 229, 0.1);
    --transition: all 0.3s ease;
    --border-color: #e5e7eb;
    --card-bg: #ffffff;
    --shadow-color: rgba(0, 0, 0, 0.05);
    --card-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

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

body {
    font-family: 'Mulish', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat';
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 1.2rem;
}

h1 {
    font-size: 36px;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 18px;
    margin-bottom: 40px;
    color: #555;
    font-weight: 400;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1.2rem;
    color: var(--light-text);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
    font-weight: 400;
}

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block; /* Fixes image alignment issues */
}

.section-title {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 15px;
    color: white;
}

.section-subtitle {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
    color: var(--text-color);
    font-size: 1rem;
}


.section-subtitle2 {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
    color: var(--black);
    font-size: 1rem;
}
/* Button Styles */
.cta-button {
    background: #e41e5b; /* New solid CTA color */
    color: white;
    padding: 16px 32px;
    border-radius: 32px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    display: inline-block;
    white-space: nowrap;
    border: none;
    box-shadow: 0 6px 16px rgba(228, 30, 91, 0.2);
    text-align: center;
}

.cta-button:hover {
    transform: translateY(-2px);
    background: #c10549; /* New CTA hover color */
    box-shadow: 0 8px 20px rgba(193, 5, 73, 0.3);
    color: white;
}

.cta-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    box-shadow: none;
}

.cta-button.primary {
    background: #e41e5b; /* New solid CTA color */
    color: var(--white);
}

.cta-button.centered {
    display: block;
    margin: 0 auto;
    max-width: 300px;
}

.learn-more-btn {
    color: #0057b3; /* Darker blue for better contrast ratio */
    font-weight: 400;
    font-size: 16px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    padding: 16px 32px;
    transition: all 0.3s ease;
}

.learn-more-btn:hover {
    color: #004494; /* Darker shade for hover state */
}

.learn-more-btn::after {
    content: "›";
    font-size: 24px;
    margin-left: 8px;
    margin-top: -2px;
    font-weight: 700;
    transition: transform 0.2s ease;
    display: inline-block;
}

.learn-more-btn:hover::after {
    transform: translateX(3px);
}

.button-group {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Badge Styles */
.badge {
    display: inline-block;
    background-color: var(--light-bg);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 16px;
    border: 1px solid var(--primary-color);
}

.badge.light {
    background-color: var(--light-bg);
    color: var(--primary-color);
}

/* Header Styles */
header {
    background-color: white;
    padding: 0px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.logo {
    display: block;
}

.logo img {
    height: 36px;
    width: auto;
    display: block;
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Hero Section */
.hero-section {
    padding: 60px 0; /* Remove the top padding since we handle it in main */
    background-color: var(--background-color);
}

.hero-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-text h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.hero-text .subheading {
    font-size: 1.25rem;
    color: white;
    margin-bottom: 2rem;
}

.hero-small-text {
    font-size: 0.875rem;
    color: var(--light-text);
    margin-top: 8px;
}

.price-tag {
    font-size: 2rem;
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

.hero-image img {
    max-width: 100%;
    /* border: 1px dashed var(--medium-gray); */
    padding: 20px;
    /* border-radius: var(--border-radius); */
}

/* Trust Section */
.trust-section {
    background-color: F3F4F9;
    padding: 40px 0;
    color: white;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 2rem auto 0;
    max-width: 800px;
}

.stat {
    text-align: center;
    padding: 20px;
    background-color: white;
    border-radius: var(--border-radius);
    border: 1px solid #2c3e50;
}

.stat h2 {
    font-size: 2rem;
    color: #e41e5b; /* Changed from orange/red to new brand color */
    margin-bottom: 0.5rem;
}

.stat p {
    font-size: 1rem;
    color: var(--text-color);
    margin-bottom: 0;
}

/* Mid CTA */
.mid-cta {
    padding: 40px 0;
    text-align: center;
}

/* Benefits Section */
.benefits {
    background-color: #0f172a;
    margin-top: -2px; /* More aggressive negative margin */
    padding-top: 80px; /* Add padding at the top to compensate */
    color: white;
}

.benefits-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px; /* Add gap for spacing between cards */
}

.benefits .section-title {
    color: white;
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
    font-weight: 400;
}

.benefit-card {
    background-color: #1f2937;
    padding: 30px;
    border-radius: 12px;
    /* Removed transition to prevent hover effects */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #0073e5; /* ADA compliant Orca Blue */
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 1.8rem;
    color: white;
    background-color: transparent;
}

.benefit-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: white;
    text-align: left;
    font-weight: 400;
}

.benefit-list {
    list-style: none;
    padding-left: 0;
}

.benefit-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 16px;
    color: #e5e7eb;
    font-size: 1rem;
    line-height: 1.5;
}

.benefit-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: white;
    font-size: 18px;
    line-height: 1.2;
}

/* Updated mobile styles for benefits section */
@media (max-width: 1024px) {
    .benefits-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .benefits-container {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: 1fr !important;
        gap: 25px;
        padding: 0 10px;
    }
    
    .benefits {
        padding: 60px 15px; /* Adjust horizontal padding */
    }
    
    .benefit-card {
        width: 100% !important;
        margin-bottom: 25px !important;
        padding: 25px 20px;
        overflow: visible;
        height: auto;
        min-height: 280px;
        display: block !important;
        float: none !important;
    }
    
    .benefits .section-title {
        font-size: 1.75rem;
        padding: 0 15px;
        margin-bottom: 40px;
    }
    
    .benefit-list {
        margin-top: 15px;
    }
    
    .benefit-list li {
        margin-bottom: 12px;
    }
    
    /* Force container to be narrower on mobile to better fit content */
    .benefits .container {
        max-width: 100%;
        padding: 0 5px;
    }
}

@media (max-width: 480px) {
    .benefit-card {
        padding: 20px 15px;
        margin-bottom: 25px;
    }
    
    .benefit-list li {
        font-size: 0.95rem;
        line-height: 1.4;
        padding-left: 20px;
    }
    
    .benefit-card h3 {
        font-size: 1.35rem;
        margin-bottom: 1rem;
    }
    
    .benefit-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1.2rem;
    }
}

/* Steps Section */
.steps-section {
    padding: 40px 0;
    background-color: var(--white);
}

.steps-container {
    max-width: 1000px;
    margin: 40px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.step-box {
    background: white;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    /* Removed transition to prevent hover effects */
    max-width: 400px;
}

/* Removed hover effect for step-box as requested */

.step-icon {
    width: 64px;
    height: 64px;
    background-color: var(--primary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--primary-color);
}

.step-icon svg {
    width: 32px;
    height: 32px;
}

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

.step-content h3 {
    color: var(--secondary-color);
    font-size: 22px;
    margin-bottom: 16px;
    font-weight: 400;
}

.step-content p {
    color: var(--light-text);
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    flex-shrink: 0;
}

.step-arrow svg {
    width: 40px;
    height: 40px;
}

@media (max-width: 992px) {
    .steps-container {
        flex-direction: column;
        gap: 40px;
    }

    .step-box {
        width: 100%;
        max-width: 500px;
    }

    .step-arrow {
        transform: rotate(90deg);
    }
}

@media (max-width: 480px) {
    .step-box {
        padding: 24px;
    }

    .step-icon {
        width: 56px;
        height: 56px;
    }

    .step-content h3 {
        font-size: 20px;
    }

    .step-content p {
        font-size: 15px;
    }
}

/* Final CTA Section */
.final-cta {
    background-color: var(--white);
    padding: 60px 0;
}

.cta-container {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    
    border-radius: var(--border-radius);
}

.cta-container h2 {
    font-size: 2rem;
 
}

/* Footer Styles */
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
}

.footer-logo-section {
    flex: 1;
}

.footer-social {
    display: flex;
    justify-content: flex-end;
}

.social-icons-row {
    display: flex;
    gap: 16px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.social-icon:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .footer-social {
        justify-content: center;
    }
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-section .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.25rem;
    }
    
    .benefits-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .benefits-container {
        grid-template-columns: 1fr;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .steps-container {
        flex-direction: column;
    }
    
    .step-arrow {
        height: 50px;
        width: 2px;
    }
    
    .step-arrow:after {
        right: -4px;
        top: auto;
        bottom: -5px;
        transform: rotate(90deg);
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .legal-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .stats-container {
        grid-template-columns: 1fr;
    }
    
    .button-group {
        flex-direction: column;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
}

/* Container and card styles to match 8fig */
.questionnaire-container {
    max-width: 800px;
    margin: 40px auto;
    background-color: var(--card-bg);
    border-radius: 24px;
    box-shadow: var(--card-shadow);
    overflow: hidden;
    padding: 0;
}

.questionnaire-page {
    text-align: center;
    padding: 40px 60px;
}

/* Progress indicator to match 8fig style */
.progress-indicator {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}

.step {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: white;
    color: #555;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #ddd;
    position: relative;
    z-index: 1;
}

.step.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.step.completed {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.step-connector {
    height: 2px;
    width: 60px;
    background-color: #ddd;
    margin: 0;
}

.step-connector.active {
    background-color: var(--primary-color);
}


.platform-option {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
    height: 80px;
    position: relative;
}

.platform-option:hover {
    border-color: var(--primary-color);
    background-color: var(--primary-light);
}

.platform-option.selected {
    border-color: var(--primary-color);
    border-width: 2px;
    box-shadow: 0 0 0 2px rgba(79, 70, 229, 0.1);
}

.platform-option img {
    max-width: 100px;
    max-height: 40px;
    object-fit: contain;
}

/* Revenue selection options */
.revenue-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 30px 0;
}

.revenue-option {
    width: 100%;
    padding: 20px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
    font-size: 17px;
    font-weight: 500;
}

.revenue-option:hover {
    border-color: var(--primary-color);
    background-color: var(--primary-light);
}

.revenue-option.selected {
    border-color: var(--primary-color);
    border-width: 2px;
    background-color: var(--primary-light);
}

/* Form field styles for 8fig-like input */
.form-field {
    margin-bottom: 20px;
    text-align: left;
}

.form-field label {
    display: block;
    margin-bottom: 8px;
    font-weight: 400;
    font-size: 16px;
}

.form-field input, 
.form-field select {
    width: 100%;
    padding: 16px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.2s ease;
}

.form-field input:focus,
.form-field select:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 2px rgba(79, 70, 229, 0.1);
}

.form-field input::placeholder {
    color: #aaa;
}

/* Button styles to match 8fig */
.navigation-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}
.wave-container {
    width: 100%;
    position: relative;
    display: block;
    margin: 0;
    padding: 0;
    line-height: 0;
    font-size: 0;
    left: 0;
    right: 0;
}

.wave-img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
    padding: 0;
}

.btn {
    padding: 16px 24px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: #4338ca;
    transform: translateY(-1px);
}

.btn-secondary {
    background-color: #f5f5f5;
    color: #333;
}

.btn-secondary:hover {
    background-color: #e5e5e5;
}

.btn-wide {
    width: 100%;
    justify-content: center;
}

/* See more button */
.see-more-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    background-color: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--secondary-color);
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
    box-sizing: border-box;
    height: 48px;
    width: auto;
    min-width: 180px;
}

.see-more-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.1);
}

.see-more-btn svg {
    margin-left: 6px;
    width: 16px;
    height: 16px;
}

@media (min-width: 481px) {
    .see-more-btn {
        height: 56px;
        padding: 16px 24px;
        font-size: 15px;
    }
}

/* Benefits list styling */
.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.benefits-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 16px;
    font-size: 16px;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .questionnaire-container {
        margin: 20px;
        border-radius: 16px;
    }
    
    .questionnaire-page {
        padding: 30px 20px;
    }
    
    
    h1 {
        font-size: 28px;
    }
}


/* Add these additional styles to support the 8fig UI */

/* Utility classes */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.ml-2 {
    margin-left: 8px;
}

.mr-2 {
    margin-right: 8px;
}


.welcome-illustration {
    width: 180px;
    height: 180px;
    margin: 0 auto 30px;
    object-fit: contain;
}

#welcome-page {
    background-color: transparent;
    box-shadow: none;
    border-radius: 0;
    padding: 20px 0;
}

#welcome-page h1 {
    font-size: 40px;
    font-weight: 400;
    margin-bottom: 15px;
    color: var(--secondary-color);
    line-height: 1.2;
}

#welcome-page .questionnaire-desc {
    font-size: 16px;
    color: #555;
    max-width: 85%;
    margin-left: auto;
    margin-right: auto;
}

#welcome-page .info-box {
    background-color: var(--primary-light);
    border-radius: 16px;
    padding: 30px;
    margin: 35px auto;
    box-shadow: 0 2px 10px rgba(79, 70, 229, 0.08);
    max-width: 500px;
}

#welcome-page .btn-wide {
    padding: 16px 32px;
    font-size: 18px;
    margin-top: 40px;
}

/* Thank you page styles */
.thanks-illustration {
    max-width: 140px;
    margin-bottom: 30px;
}

/* Spinner styles */
.spinner-container {
    margin-top: 40px;
    text-align: center;
}

.spinner {
    width: 40px;
    height: 40px;
    margin: 0 auto 15px;
    border: 4px solid rgba(79, 70, 229, 0.1);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Button icon adjustments */
.btn svg {
    width: 20px;
    height: 20px;
}

/* Ensure inputs without labels have consistent sizing */
input[type="text"],
input[type="email"],
input[type="tel"] {
    font-size: 16px;
    padding: 16px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    width: 100%;
    box-sizing: border-box;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(79, 70, 229, 0.1);
}

/* Improve header layout */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 40px;
    background-color: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.logo img {
    height: 36px;
}

.contact-support {
    font-size: 14px;
    color: #555;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-support:hover {
    color: var(--primary-color);
}

/* Add these styles for the disqualified options and other cloud-specific elements */

.platform-option.disqualified {
    opacity: 0.5;
    cursor: not-allowed;
    background-color: #f5f5f5;
    border-color: #e5e7eb;
}

.platform-option.disqualified:hover {
    transform: none;
    border-color: #e5e7eb;
    background-color: #f5f5f5;
    box-shadow: none;
}

.revenue-option.disqualified {
    opacity: 0.5;
    cursor: not-allowed;
    background-color: #f5f5f5;
    border-color: #e5e7eb;
}

.revenue-option.disqualified:hover {
    transform: none;
    border-color: #e5e7eb;
    background-color: #f5f5f5;
    box-shadow: none;
}

/* Ensure calendar link button has correct styling */
.info-box .btn {
    margin-top: 15px;
    display: inline-flex;
}

/* Only have one container with the shadow and background */
body.welcome-page-active .questionnaire-container {
    padding: 30px;
}

.review-logo {
    height: 150px;
    width: auto;
    object-fit: contain;
    max-width: 400px;
}

.review-card:first-child .review-logo {
    padding: 10px;
    border-radius: 16px;
    height: 100px;
}

.trust-section .cta-button.secondary:hover {
    background: #F3F4F9;
}

/* Reviews Platform Section */
.reviews-section {
    padding: 80px 0;
    background-color: #F3F7FD;
}

.reviews-platform-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    
    max-width: 1200px;
    margin: 0 auto;
}

.review-platform-card {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1; 
}

/* Removed hover effect as requested */

/* Removed hover effect as requested */

.review-platform-img {
    max-width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 992px) {
    .reviews-platform-container {
        gap: 20px;
    }
    
    .review-platform-card {
        min-width: 180px;
        max-width: 250px;
    }
}

@media (max-width: 768px) {
    .reviews-platform-container {
        flex-direction: column;
        align-items: center;
    }
    
    .review-platform-card {
        width: 80%;
        max-width: 350px;
    }
}

.final-cta .learn-more-btn {
    color: white;
    border: 2px solid white;
    border-radius: 32px;
    padding: 0px 20px;
    font-weight: 400;
}

.final-cta .learn-more-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

.final-cta .learn-more-btn::after {
    color: white;
}


/* pls make sure its stretched to the full width of the screen */
.wave-mask-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 2; 
}

.wave-mask-img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
    padding: 0;
}

/* Customer Reviews Section */
.profile-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
    width: 100%;
    text-align: center;
}

.profile-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}

.review-author {
    font-weight: 600;
    font-size: 18px;
    margin: 0;
    color: #333;
    text-align: center;
}

.review-title {
    color: #666;
    margin: 8px 0 0 0;
    font-size: 14px;
    font-weight: 300;
    text-align: center;
} 