/* Reset & Base Styles */
:root {
    --primary: #0078d7;
    --primary-dark: #005fa3;
    --secondary: #2c3e50;
    --light: #f8f9fa;
    --dark: #343a40;
    --success: #28a745;
    --danger: #dc3545;
    --gray: #6c757d;
    --gray-light: #e9ecef;
    --border-radius: 8px;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: #fff;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--secondary);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

img {
    max-width: 100%;
    height: auto;
}

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

a:hover {
    color: var(--primary-dark);
}

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

.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary);
}

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

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(to right, var(--primary), #009aff);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
}

.btn:hover {
    background-color: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--box-shadow);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: linear-gradient(to right, var(--primary), #009aff);
    color: white;
}

.btn-lg {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.flex {
    display: flex;
}

.flex-wrap {
    flex-wrap: wrap;
}

.justify-between {
    justify-content: space-between;
}

.items-center {
    align-items: center;
}

.gap-20 {
    gap: 20px;
}

.grid {
    display: grid;
}

.grid-cols-1 {
    grid-template-columns: 1fr;
}

.grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-cols-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
}

header.scrolled {
    padding: 10px 0;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
}

.logo span {
    color: var(--secondary);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

nav ul li a {
    color: var(--secondary);
    font-weight: 600;
    font-size: 1rem;
}

nav ul li a:hover {
    color: var(--primary);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--secondary);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #003b80 0%, #0066cc 40%, #0099ff 100%);
    color: white;
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSgxMzUpIj48cmVjdCBpZD0icGF0dGVybi1iZyIgd2lkdGg9IjQwMCUiIGhlaWdodD0iNDAwJSIgZmlsbD0icmdiYSgyNTUsIDI1NSwgMjU1LCAwLjApIj48L3JlY3Q+PHBhdGggZmlsbD0icmdiYSgyNTUsIDI1NSwgMjU1LCAwLjA1KSIgZD0iTTAgMGgyMHYyMEgweiI+PC9wYXRoPjwvcGF0dGVybj48L2RlZnM+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNwYXR0ZXJuKSI+PC9yZWN0Pjwvc3ZnPg==');
    opacity: 0.4;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 650px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: white;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-image {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 50%;
    max-width: 600px;
    opacity: 0.8;
}

/* Features Section */
.features {
    background-color: var(--light);
    position: relative;
}

.feature-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    margin-bottom: 20px;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(0, 120, 215, 0.1) 0%, rgba(0, 153, 255, 0.2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary);
    font-size: 1.8rem;
}

/* Pricing Section */
.pricing {
    background-color: white;
}

.pricing-table {
    grid-gap: 30px;
}

.pricing-card {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    border: 1px solid var(--gray-light);
    height: 100%;
}

.pricing-card.featured {
    transform: scale(1.05);
    border-color: var(--primary);
}

.pricing-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-card h3 {
    color: var(--secondary);
    margin-bottom: 15px;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 20px;
}

.price small {
    font-size: 1rem;
    color: var(--gray);
    font-weight: 400;
}

.pricing-features {
    list-style: none;
    margin: 25px 0;
}

.pricing-features li {
    margin-bottom: 15px;
    color: var(--secondary);
}

.pricing-features li i {
    color: var(--success);
    margin-right: 5px;
}

.pricing-card .btn {
    width: 100%;
}

/* Calculator */
.calculator {
    background-color: var(--light);
    padding: 30px;
    border-radius: var(--border-radius);
    margin-top: 50px;
}

.calculator h3 {
    margin-bottom: 20px;
}

.calculator-form {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: flex-end;
}

.calculator-form .form-group {
    flex: 1;
    min-width: 200px;
}

.calculator-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.calculator-form input,
.calculator-form select {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--gray-light);
    border-radius: var(--border-radius);
    font-size: 1rem;
}

.calculator-result {
    margin-top: 30px;
    text-align: center;
    padding: 20px;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
}

.calculator-result p {
    margin-bottom: 0;
    font-size: 1.2rem;
}

.calculator-result strong {
    font-size: 1.5rem;
    color: var(--primary);
}

/* Pricing Notes */
.pricing-notes {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.note-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 1px solid var(--gray-light);
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.note-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.note-card h4 {
    color: var(--primary);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.note-card h4 i {
    font-size: 1.2rem;
}

.note-card p {
    color: var(--secondary);
    line-height: 1.6;
    margin-bottom: 0;
}

/* User Journey */
.user-journey {
    background-color: white;
}

.journey-steps {
    position: relative;
}

.journey-steps::before {
    content: '';
    position: absolute;
    top: 30px;
    left: calc(50% - 1px);
    width: 2px;
    height: calc(100% - 60px);
    background-color: var(--gray-light);
}

.journey-step {
    display: flex;
    margin-bottom: 50px;
    position: relative;
}

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

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-right: 30px;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.step-content {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    flex: 1;
}

.step-content h3 {
    margin-bottom: 15px;
}

/* Testimonials */
.testimonials {
    background-color: var(--light);
}

.testimonial-slider {
    overflow: hidden;
    position: relative;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-slide {
    min-width: 100%;
    padding: 0 15px;
}

.testimonial-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    font-size: 4rem;
    font-family: Georgia, serif;
    color: var(--primary);
    position: absolute;
    top: 10px;
    left: 20px;
    opacity: 0.2;
}

.testimonial-content {
    margin-bottom: 20px;
    font-style: italic;
    color: var(--dark);
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.author-info h4 {
    margin-bottom: 0;
    font-size: 1.1rem;
}

.author-info p {
    margin-bottom: 0;
    color: var(--gray);
    font-size: 0.9rem;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 10px;
}

.testimonial-nav button {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-nav button:hover {
    color: var(--primary-dark);
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 60px;
}

.trust-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 80px;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 15px;
}

/* Contact Section */
.contact {
    position: relative;
}

.contact-form {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 40px;
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--gray-light);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 120, 215, 0.2);
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

/* Footer */
footer {
    background-color: var(--secondary);
    color: white;
    padding: 80px 0 30px;
}

.footer-content {
    margin-bottom: 50px;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    display: block;
}

.footer-info {
    margin-top: 20px;
}

.footer-info p {
    margin-bottom: 10px;
}

.footer-info p i {
    margin-right: 10px;
    color: var(--primary);
}

.footer-links h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links ul {
    list-style: none;
}

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

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: white;
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Form Success Message */
.form-success {
    background-color: rgba(40, 167, 69, 0.1);
    border-left: 4px solid var(--success);
    padding: 15px;
    margin-top: 20px;
    border-radius: var(--border-radius);
    color: var(--success);
    display: flex;
    align-items: center;
}

.form-success i {
    font-size: 1.5rem;
    margin-right: 10px;
}

/* Animations */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Loading Animation */
.loading {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

.loading div {
    position: absolute;
    top: 33px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: var(--primary);
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.loading div:nth-child(1) {
    left: 8px;
    animation: loading1 0.6s infinite;
}

.loading div:nth-child(2) {
    left: 8px;
    animation: loading2 0.6s infinite;
}

.loading div:nth-child(3) {
    left: 32px;
    animation: loading2 0.6s infinite;
}

.loading div:nth-child(4) {
    left: 56px;
    animation: loading3 0.6s infinite;
}

@keyframes loading1 {
    0% { transform: scale(0); }
    100% { transform: scale(1); }
}

@keyframes loading2 {
    0% { transform: translate(0, 0); }
    100% { transform: translate(24px, 0); }
}

@keyframes loading3 {
    0% { transform: scale(1); }
    100% { transform: scale(0); }
}

/* Scroll Animation */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Media Queries */
@media (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .section {
        padding: 60px 0;
    }

    .grid-cols-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .grid-cols-3 {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .hero {
        padding: 150px 0 80px;
    }
    
    .hero-image {
        display: none;
    }
    
    .hero-content {
        max-width: 100%;
    }

    .journey-steps::before {
        left: 30px;
    }

    .pricing-card.featured {
        transform: scale(1);
    }
    
    .feature-card > div {
        flex-direction: column;
    }
    
    .feature-card > div > div {
        width: 100%;
        flex: none !important;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: row;
        justify-content: space-between;
    }

    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    nav.active {
        display: block;
    }

    nav ul {
        flex-direction: column;
        gap: 10px;
        padding: 20px;
    }

    .mobile-menu-btn {
        display: block;
    }

    .grid-cols-2 {
        grid-template-columns: 1fr;
    }

    .grid-cols-3,
    .grid-cols-4 {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .calculator-form {
        flex-direction: column;
        gap: 15px;
    }

    footer .grid {
        gap: 30px;
    }
    
    .feature-card {
        flex-direction: column !important;
        align-items: flex-start !important;
    }
    
    .feature-card > div {
        min-width: 100% !important;
    }
    
    .pricing-notes {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Print Styles */
@media print {
    header, 
    footer, 
    .hero-buttons, 
    .testimonial-slider, 
    .contact-form,
    .mobile-menu-btn {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        color: #000;
        background: #fff;
    }
    
    .container {
        width: 100%;
        max-width: none;
        padding: 0;
    }
    
    .hero {
        background: none;
        color: #000;
        padding: 20px 0;
    }
    
    .hero h1, 
    .hero p {
        color: #000;
    }
    
    .section {
        padding: 20px 0;
        page-break-inside: avoid;
    }
    
    .feature-card,
    .pricing-card,
    .step-content {
        box-shadow: none;
        border: 1px solid #ddd;
    }
    
    a {
        text-decoration: underline;
        color: #000;
    }
    
    a[href]:after {
        content: " (" attr(href) ")";
        font-size: 90%;
    }
}
.about-section {
    padding: 6rem 5%;
    background: linear-gradient(to right, var(--light-bg), var(--background));
    position: relative;
    overflow: hidden;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content {
    position: relative;
    z-index: 2;
}

.section-badge {
    display: inline-block;
    background-color: rgba(74, 107, 250, 0.1);
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    margin-bottom: 1.5rem;
}

.about-content h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-description {
    font-size: 1.2rem;
    color: var(--light-text);
    margin-bottom: 2rem;
}

.tech-partners {
    margin: 2rem 0;
}

.tech-partners h4 {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.partners-grid {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.partner-badge {
    display: flex;
    align-items: center;
    background-color: var(--light-bg);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    font-weight: 500;
    box-shadow: var(--box-shadow);
    transition: transform 0.2s, box-shadow 0.2s;
}

.partner-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.partner-icon {
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.cta-container {
    margin-top: 2.5rem;
}

.cta-text {
    font-weight: 600;
    font-size: 1.8rem;
    color: blue;
    margin-bottom: 1.2rem;
    text-align: center;
    text-decoration: underline;
}

.demo-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: transform 0.3s, background-color 0.3s;
    box-shadow: 0 5px 15px rgba(74, 107, 250, 0.3);
}

.demo-button:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(74, 107, 250, 0.4);
}

.tagline {
    font-style: italic;
    color: var(--light-text);
    margin-top: 2rem;
    font-size: 1.1rem;
}

.about-image-container {
    position: relative;
    z-index: 1;
}

.about-image {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s;
}

.about-image:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.shape {
    position: absolute;
    background-color: rgba(0, 47, 255, 0.596);
    border-radius: 50%;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -150px;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: -80px;
    right: 10%;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 20%;
    right: -50px;
}

@media (max-width: 992px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-content {
        order: 1;
    }

    .about-image-container {
        order: 0;
        max-width: 500px;
        margin: 0 auto;
    }

    .about-image {
        transform: perspective(1000px) rotateY(0deg);
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 4rem 5%;
    }

    .about-content h2 {
        font-size: 2rem;
        color: var(--primary)
    }

    .about-description {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .partners-grid {
        gap: 1rem;
    }
    
    .partner-badge {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }

    .demo-button {
        width: 100%;
        text-align: center;
    }
}
.calculator-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 2rem 1rem;
}

.calculator {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  max-width: 600px;
  width: 100%;
  margin: auto;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

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

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

.calculate-btn {
  width: 100%;
  padding: 0.75rem;
  margin-top: 0.5rem;
  background: var(--primary, #1976d2);
  color: #fff;
  font-size: 1.1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
}
.calculate-btn:hover {
  background: var(--primary-dark, #0d47a1);
}

.results-card {
  background: #f9fafb;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  max-width: 500px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  text-align: center;
}

.results-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
.results-grid > div strong {
  display: block;
  margin-bottom: 0.25rem;
}

.roi-bar-wrap {
  background: #eee;
  border-radius: 10px;
  height: 20px;
  width: 100%;
  overflow: hidden;
  margin-top: 1rem;
}
#roi-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #00c853 0%, #009624 100%);
  transition: width 0.6s;
}

@media (min-width: 600px) {
  .roi-form {
    grid-template-columns: repeat(4, 1fr);
    align-items: end;
  }
  .calculate-btn {
    grid-column: span 4;
    width: auto;
    justify-self: end;
    max-width: 220px;
  }
  .results-grid {
    grid-template-columns: repeat(4, 1fr);
    text-align: left;
  }
}
/* Container centering & emphasis */
.calculator-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 3rem 1rem;
}

.calculator {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.13);
  max-width: 680px;
  width: 100%;
  margin: 2.5rem auto;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  border: 2px solid #e3e9f9;
}

/* Responsive grid for form */
.roi-form {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  align-items: end;
}

.field {
  flex: 1 1 150px;
  display: flex;
  flex-direction: column;
  min-width: 130px;
}

/* Modern input/select styling */
.roi-form input,
.roi-form select {
  padding: 0.75rem 1rem;
  border-radius: 9px;
  border: 1.5px solid #d5dbea;
  background: #f8fafd;
  box-shadow: 0 1px 3px rgba(70,110,255,0.06);
  font-size: 1rem;
  margin-top: 0.35rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.roi-form input:focus,
.roi-form select:focus {
  outline: none;
  border-color: #8b9cff;
  box-shadow: 0 0 0 2px #b3c6ff33;
}

/* Button styling to match inputs */
.calculate-btn {
  padding: 0.75rem 2rem;
  border-radius: 9px;
  background: linear-gradient(90deg, #1976d2 60%, #4f8cff 100%);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  box-shadow: 0 2px 8px rgba(70,110,255,0.10);
  cursor: pointer;
  transition: background 0.13s, box-shadow 0.13s;
  flex: 1 0 150px;
  margin-top: 0.35rem;
  align-self: stretch;
}
.calculate-btn:hover {
  background: linear-gradient(90deg, #1651a7 60%, #1976d2 100%);
  box-shadow: 0 4px 12px rgba(70,110,255,0.17);
}

/* Ensure button sits flush and wraps nicely */
@media (max-width: 700px) {
  .roi-form {
    flex-direction: column;
    gap: 1rem;
  }
  .calculate-btn {
    width: 100%;
    margin-left: 0;
  }
}

/* Results card styling */
.results-card {
  background: linear-gradient(100deg, #f7faff 60%, #e6f1ff 100%);
  border: 2.5px solid #7abfff;
  border-radius: 14px;
  box-shadow: 0 2px 14px rgba(100,150,255,0.11);
  padding: 2.2rem 1.2rem;
  max-width: 540px;
  margin: 0 auto;
  margin-top: 1.5rem;
  text-align: center;
  position: relative;
}

.results-card::before {
  content: "";
  position: absolute;
  left: 0; top: 0; right: 0;
  height: 8px;
  border-radius: 14px 14px 0 0;
  background: linear-gradient(90deg, #1976d2 60%, #4f8cff 100%);
  opacity: 0.18;
}

.results-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  justify-content: space-between;
  margin-bottom: 1.2rem;
}
.results-grid > div {
  flex: 1 1 110px;
  background: #fff;
  border-radius: 8px;
  padding: 0.75rem 0.5rem;
  box-shadow: 0 1px 3px rgba(100,150,255,0.07);
}
.results-grid strong {
  display: block;
  margin-bottom: 0.2rem;
  color: #1976d2;
  font-size: 1rem;
}

/* ROI bar styling (optional, if you use it) */
.roi-bar-wrap {
  background: #e9f1ff;
  border-radius: 10px;
  height: 20px;
  width: 100%;
  overflow: hidden;
  margin-top: 1rem;
}
#roi-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #00c853 0%, #009624 100%);
  transition: width 0.6s;
}

/* Section title centering */
.calculator-container .section-title {
  text-align: center;
  margin-bottom: 2rem;
}
