:root {
    --primary-blue: rgb(64, 80, 198);
    --dark-navy: rgb(7, 30, 60);
    --white: rgb(255, 255, 255);
    --light-gray: rgb(248, 249, 250);
    --medium-gray: rgb(108, 117, 125);
    --border-gray: rgb(222, 226, 230);
    --gradient-start: #4050c6;
    --gradient-end: #6366f1;
}

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

body {
    font-family: Inter, Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: var(--dark-navy);
    background-color: var(--white);
}

.navbar {
    height: 80px;
    background-color: var(--white) !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 0;
}

.navbar .container {
    height: 100%;
    display: flex;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--dark-navy);
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #feca57);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
}

.logo-icon i {
    color: white;
    font-size: 20px;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-navy);
}

.nav-link {
    color: var(--dark-navy) !important;
    font-weight: 500;
    padding: 0 16px !important;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-blue) !important;
}

.nav-icon {
    color: var(--medium-gray);
    font-size: 18px;
    margin: 0 12px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.nav-icon:hover {
    color: var(--primary-blue);
}

.btn-primary {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    color: var(--white);
    border-radius: 100px;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary:hover {
    background-color: #3d4ed8;
    border-color: #3d4ed8;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(64, 80, 198, 0.3);
}

.btn-outline-primary {
    background-color: transparent;
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    border-radius: 100px;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: var(--primary-blue);
    color: var(--white);
    transform: translateY(-1px);
}

main {
    padding-top: 80px;
}

.hero-section {
    padding: 100px 0;
    background-color: var(--white);
}

.hero-title {
    font-size: 72px;
    font-weight: 800;
    color: var(--dark-navy);
    line-height: 72px;
    margin-bottom: 40px;
}

.hero-subtitle-container {
    margin-bottom: 40px;
}

.hero-subtitle-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hero-subtitle-list li {
    font-size: 72px;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 72px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.hero-subtitle-list li:nth-child(1) { animation-delay: 0.2s; }
.hero-subtitle-list li:nth-child(2) { animation-delay: 0.4s; }
.hero-subtitle-list li:nth-child(3) { animation-delay: 0.6s; }

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

.hero-description {
    font-size: 18px;
    line-height: 28px;
    color: var(--medium-gray);
    margin-bottom: 40px;
    max-width: 500px;
}

.customer-cards-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 40px;
}

.customer-card {
    background: var(--white);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.customer-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 48px rgba(0,0,0,0.15);
}

.customer-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.customer-info h5 {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-navy);
    margin-bottom: 4px;
}

.customer-info p {
    font-size: 14px;
    color: var(--medium-gray);
    margin-bottom: 8px;
}

.customer-type {
    font-size: 12px;
    color: var(--primary-blue);
    background-color: rgba(64, 80, 198, 0.1);
    padding: 4px 8px;
    border-radius: 12px;
    font-weight: 500;
}

.customer-score {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-navy);
    margin-top: 8px;
}

.intro-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.intro-section h2 {
    font-size: 48px;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 32px;
    text-align: center;
}

.intro-section .lead {
    font-size: 20px;
    line-height: 32px;
    color: var(--medium-gray);
    margin-bottom: 24px;
}

.intro-section p {
    font-size: 18px;
    line-height: 28px;
    color: var(--medium-gray);
}

.brands-section {
    padding: 60px 0;
    background-color: var(--white);
}

.brands-section h4 {
    font-size: 32px;
    font-weight: 600;
    color: var(--dark-navy);
    margin-bottom: 16px;
}

.brand-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.brand-link:hover {
    color: #3d4ed8;
}

.brand-logos {
    display: flex;
    align-items: center;
    gap: 40px;
    justify-content: flex-end;
}

.brand-logo {
    font-size: 18px;
    font-weight: 600;
    color: var(--medium-gray);
    padding: 12px 24px;
    border: 1px solid var(--border-gray);
    border-radius: 8px;
}

.how-it-works-section {
    padding: 100px 0;
    background-color: var(--light-gray);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-subtitle {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--dark-navy);
    line-height: 56px;
}

.feature-card {
    text-align: center;
    padding: 40px 20px;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

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

.feature-card h4 {
    font-size: 24px;
    font-weight: 600;
    color: var(--dark-navy);
    margin-bottom: 16px;
}

.feature-card p {
    font-size: 16px;
    line-height: 24px;
    color: var(--medium-gray);
}

.innovation-section {
    padding: 80px 0;
    background-color: var(--white);
}

.innovation-section h3 {
    font-size: 48px;
    font-weight: 700;
    color: var(--dark-navy);
    line-height: 56px;
}

.innovation-logo {
    text-align: center;
}

.logo-diamond {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transform: rotate(45deg);
}

.logo-diamond i {
    color: white;
    font-size: 48px;
    transform: rotate(-45deg);
}

.stats-section {
    padding: 100px 0;
    background-color: var(--light-gray);
}

.stat-card {
    text-align: center;
    padding: 40px 20px;
}

.stat-card h3 {
    font-size: 48px;
    font-weight: 800;
    color: var(--dark-navy);
    margin-bottom: 8px;
}

.stat-card p {
    font-size: 16px;
    color: var(--medium-gray);
    line-height: 24px;
}

.testimonials-section {
    padding: 80px 0;
    background-color: var(--white);
}

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

.testimonial-category {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.testimonial-slide blockquote {
    font-size: 24px;
    line-height: 36px;
    color: var(--dark-navy);
    font-style: italic;
    margin-bottom: 24px;
    border: none;
    padding: 0;
}

.testimonial-slide cite {
    font-size: 16px;
    color: var(--medium-gray);
    font-style: normal;
    font-weight: 500;
}

.customer-spotlight {
    padding: 100px 0;
    background-color: var(--primary-blue);
    color: var(--white);
}

.spotlight-content {
    padding: 60px;
}

.spotlight-logo {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.spotlight-logo i {
    font-size: 32px;
    margin-right: 16px;
}

.spotlight-logo span {
    font-size: 24px;
    font-weight: 700;
}

.customer-spotlight blockquote {
    font-size: 20px;
    line-height: 32px;
    margin-bottom: 32px;
    border: none;
    padding: 0;
}

.customer-spotlight cite {
    font-size: 16px;
    font-style: normal;
    line-height: 24px;
}

.testimonial-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
}

.metrics-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.metric-card {
    text-align: center;
    padding: 40px 20px;
}

.metric-card h5 {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.metric-value {
    font-size: 48px;
    font-weight: 800;
    color: var(--dark-navy);
    margin-bottom: 8px;
}

.metric-label {
    font-size: 14px;
    color: var(--medium-gray);
    line-height: 20px;
}

.case-studies-section {
    padding: 100px 0;
    background-color: var(--white);
}

.case-study-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 40px;
}

.case-study-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.15);
}

.case-study-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.case-study-content {
    padding: 32px;
}

.case-study-content h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-navy);
    margin-bottom: 16px;
    line-height: 28px;
}

.case-study-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.case-study-link:hover {
    color: #3d4ed8;
}

.case-study-stats {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.case-study-stats .stat h3 {
    font-size: 32px;
    font-weight: 800;
    color: var(--dark-navy);
    margin-bottom: 8px;
}

.case-study-stats .stat p {
    font-size: 14px;
    color: var(--medium-gray);
    line-height: 20px;
}

.contact-section {
    padding: 100px 0;
    background-color: var(--light-gray);
}

.contact-form-container {
    background: var(--white);
    border-radius: 16px;
    padding: 60px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.contact-form-container h3 {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 16px;
    text-align: center;
}

.contact-form-container > p {
    font-size: 18px;
    color: var(--medium-gray);
    text-align: center;
    margin-bottom: 40px;
}

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

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-navy);
    margin-bottom: 8px;
    display: block;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-gray);
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background-color: var(--white);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(64, 80, 198, 0.1);
}

.btn-lg {
    padding: 16px 40px;
    font-size: 18px;
    width: 100%;
    margin-top: 24px;
}

.footer {
    background-color: var(--dark-navy);
    color: var(--white);
    padding: 80px 0 40px;
}

.footer-logo .logo-text {
    color: var(--white);
}

.footer h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--white);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 40px;
    margin-top: 40px;
}

.contact-info h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--white);
}

.contact-info p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
}

.footer-legal {
    text-align: right;
}

.language-selector {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.language-selector i {
    margin: 0 8px;
}

.legal-links {
    display: flex;
    gap: 24px;
    justify-content: flex-end;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: var(--white);
}

.copyright {
    text-align: center;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 8px;
    line-height: 18px;
}

.pricing-hero {
    padding: 120px 0 80px;
    background-color: var(--light-gray);
}

.pricing-hero h1 {
    font-size: 56px;
    font-weight: 800;
    color: var(--dark-navy);
    margin-bottom: 24px;
}

.pricing-hero .lead {
    font-size: 20px;
    color: var(--medium-gray);
    line-height: 32px;
}

.pricing-tiers {
    padding: 80px 0;
    background-color: var(--white);
}

.pricing-card {
    background: var(--white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    position: relative;
    margin-bottom: 40px;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.15);
}

.pricing-card.featured {
    border: 3px solid var(--primary-blue);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-blue);
    color: var(--white);
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.pricing-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 16px;
}

.price {
    display: flex;
    align-items: baseline;
    margin-bottom: 16px;
}

.currency {
    font-size: 24px;
    font-weight: 600;
    color: var(--dark-navy);
}

.amount {
    font-size: 48px;
    font-weight: 800;
    color: var(--dark-navy);
    margin: 0 8px;
}

.period {
    font-size: 16px;
    color: var(--medium-gray);
}

.pricing-header p {
    font-size: 16px;
    color: var(--medium-gray);
    line-height: 24px;
    margin-bottom: 32px;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
}

.pricing-features li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 16px;
    color: var(--dark-navy);
}

.pricing-features li i {
    color: var(--primary-blue);
    margin-right: 12px;
    font-size: 14px;
}

.pricing-features-comparison {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.comparison-table {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.comparison-table table {
    margin: 0;
}

.comparison-table th {
    background-color: var(--dark-navy);
    color: var(--white);
    font-weight: 600;
    padding: 24px;
    border: none;
    text-align: center;
}

.comparison-table th:first-child {
    text-align: left;
}

.price-small {
    font-size: 12px;
    font-weight: 400;
    opacity: 0.8;
}

.comparison-table td {
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-gray);
    vertical-align: middle;
}

.comparison-table td:first-child {
    font-weight: 600;
    color: var(--dark-navy);
}

.pricing-guarantees {
    padding: 80px 0;
    background-color: var(--white);
}

.guarantee-card {
    text-align: center;
    padding: 40px 20px;
}

.guarantee-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.guarantee-icon i {
    color: white;
    font-size: 32px;
}

.guarantee-card h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-navy);
    margin-bottom: 16px;
}

.guarantee-card p {
    font-size: 16px;
    color: var(--medium-gray);
    line-height: 24px;
}

.pricing-faq {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.accordion-item {
    border: none;
    margin-bottom: 16px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.accordion-button {
    background-color: var(--white);
    color: var(--dark-navy);
    font-weight: 600;
    padding: 24px;
    border: none;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-blue);
    color: var(--white);
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-body {
    padding: 24px;
    background-color: var(--white);
    color: var(--medium-gray);
    line-height: 24px;
}

.legal-hero {
    padding: 120px 0 80px;
    background-color: var(--light-gray);
}

.legal-hero h1 {
    font-size: 56px;
    font-weight: 800;
    color: var(--dark-navy);
    margin-bottom: 24px;
}

.legal-hero .lead {
    font-size: 18px;
    color: var(--medium-gray);
}

.legal-content {
    padding: 80px 0;
    background-color: var(--white);
}

.legal-document {
    background: var(--white);
    border-radius: 16px;
    padding: 60px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.legal-document h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 24px;
    margin-top: 40px;
}

.legal-document h2:first-child {
    margin-top: 0;
}

.legal-document h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--dark-navy);
    margin-bottom: 16px;
    margin-top: 32px;
}

.legal-document p {
    font-size: 16px;
    line-height: 28px;
    color: var(--medium-gray);
    margin-bottom: 20px;
}

.legal-document ul {
    margin-bottom: 20px;
    padding-left: 24px;
}

.legal-document li {
    font-size: 16px;
    line-height: 28px;
    color: var(--medium-gray);
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .hero-title,
    .hero-subtitle-list li {
        font-size: 48px;
        line-height: 52px;
    }
    
    .section-title {
        font-size: 36px;
        line-height: 42px;
    }
    
    .customer-cards-container {
        padding: 20px;
    }
    
    .contact-form-container {
        padding: 40px 20px;
    }
    
    .footer-legal {
        text-align: left;
        margin-top: 32px;
    }
    
    .language-selector {
        justify-content: flex-start;
    }
    
    .legal-links {
        justify-content: flex-start;
    }
    
    .pricing-hero h1 {
        font-size: 40px;
        line-height: 44px;
    }
    
    .pricing-card {
        padding: 24px;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }
    
    .amount {
        font-size: 36px;
    }
    
    .comparison-table {
        overflow-x: auto;
    }
    
    .legal-hero h1 {
        font-size: 40px;
        line-height: 44px;
    }
    
    .legal-document {
        padding: 40px 20px;
    }
    
    .legal-document h2 {
        font-size: 28px;
    }
    
    .legal-document h3 {
        font-size: 20px;
    }
}

/* Image placeholder styles */
.customer-image-placeholder {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue), #4f46e5);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    color: var(--white);
    font-size: 24px;
}

.case-study-image-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-blue), #4f46e5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 48px;
    gap: 12px;
}

.case-study-image-placeholder span {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testimonial-image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-blue), #4f46e5);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: var(--white);
    font-size: 80px;
}
