/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Brand Colors - RoiGuru Redesign */
:root {
    --primary-blue: #0c76bf;
    --deep-navy: #063b63;
    --light-gray: #f7f9fc;
    --white: #ffffff;
    --text-dark: #1a202c;
    --text-medium: #4a5568;
    --border-light: #e2e8f0;
}

/* Typography - Consistent Heading Scale */
h1 {
    font-family: 'Campton Semibold', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 3rem;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

h2 {
    font-family: 'Campton Semibold', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 2.25rem;
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin-bottom: 1.25rem;
}

h3 {
    font-family: 'Campton Semibold', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.75rem;
    line-height: 1.3;
    font-weight: 600;
    margin-bottom: 1rem;
}

h4 {
    font-family: 'Campton Semibold', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.25rem;
    line-height: 1.4;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.nav-logo,
.hero h1,
.section h2,
.service-card h3,
.step-title {
    font-family: 'Campton Semibold', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body {
    font-family: 'Campton Book', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: #1a202c;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.nav-open {
    overflow: hidden;
}

/* Navigation */
.navbar {
    background: rgba(12, 118, 191, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1.2rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(12, 118, 191, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    transform: translateY(0);
}

.navbar.hidden {
    transform: translateY(-100%);
}

.navbar.scrolled {
    background: rgba(12, 118, 191, 0.98);
    box-shadow: 0 8px 32px rgba(12, 118, 191, 0.25);
    padding: 0.8rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.nav-logo {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    transition: all 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    background: none;
    border: none;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.nav-link {
    color: #ecf0f1;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #ffffff;
    opacity: 0.8;
}

/* Persistent Demo Button in Navigation */
.nav-demo-btn {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    color: #0c76bf;
    padding: 0.7rem 1.5rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-left: 1rem;
}

.nav-demo-btn:hover {
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
    color: #0a5d99;
}

/* Main content */
main {
    min-height: calc(100vh - 120px);
    padding: 2rem;
    padding-top: 100px; /* Account for fixed navbar */
}

/* Hero section - Redesigned */
.hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--deep-navy) 100%);
    color: var(--white);
    padding: 8rem 2rem;
    text-align: center;
    margin: -2rem -2rem 0 -2rem;
    position: relative;
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.hero h1 {
    font-size: 3.5rem;
    margin-top: 0;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -2px;
    line-height: 1.0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    animation: fadeInUp 0.8s ease-out;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

.hero-tagline {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    opacity: 1;
    font-weight: 600;
    letter-spacing: 1px;
    color: #ffffff;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-subheadline {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    line-height: 1.5;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.cta-button {
    display: inline-block;
    background-color: #0c76bf;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: none;
    border: none;
    cursor: pointer;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover {
    background-color: #095e94;
    transform: none;
    box-shadow: 0 4px 12px rgba(12, 118, 191, 0.3);
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:active {
    transform: translateY(-2px) scale(1.02);
}

/* Trust Section */
.trust-section {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 2rem;
    text-align: center;
    margin: 2rem auto 4rem auto;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    max-width: 1200px;
}

.trust-label {
    font-size: 0.9rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.client-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.client-logo {
    font-size: 1.2rem;
    font-weight: 600;
    color: #0c76bf;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(145deg, #f8fafc, #ffffff);
    border: 1px solid rgba(12, 118, 191, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
    min-width: 140px;
}

.client-logo:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(12, 118, 191, 0.15);
    border-color: rgba(12, 118, 191, 0.3);
}

@media (max-width: 768px) {
    .client-logos {
        gap: 1.5rem;
    }
    
    .client-logo {
        font-size: 1rem;
        min-width: 120px;
    }
}

/* Content sections */
.section {
    margin-bottom: 4rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 6rem 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 4rem;
}

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

.section h2 {
    color: #0c76bf;
    margin-bottom: 1.5rem;
    font-size: 2.25rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.2;
    position: relative;
    padding-bottom: 0.5rem;
}

.section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #0c76bf, #3b82f6);
    border-radius: 2px;
}

.section h3 {
    color: #34495e;
    margin-bottom: 0.8rem;
    font-size: 1.4rem;
}

.section p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

/* Services grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
    padding: 1rem;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.service-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 16px;
    border: 2px solid #e2e8f0;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    margin-bottom: 1rem;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #0c76bf, #3b82f6);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(12, 118, 191, 0.12);
    border-color: #0c76bf;
}

.service-card:hover::before {
    transform: scaleY(1);
}

/* Service Icons - Modern Line Icons */
.service-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.5rem;
    text-align: center;
    line-height: 1;
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, #0c76bf, #3b82f6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-left: auto;
    margin-right: auto;
}

.service-icon i {
    width: 24px;
    height: 24px;
    stroke-width: 2;
}

.service-card h3 {
    color: #0c76bf;
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.2rem;
    line-height: 1.3;
    letter-spacing: -0.3px;
}

/* Contact form */
.contact-form {
    max-width: 600px;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: #2d3748;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: #0c76bf;
    box-shadow: 0 0 0 3px rgba(12, 118, 191, 0.1);
    background: white;
    transform: translateY(-2px);
}

.form-group input:hover,
.form-group textarea:hover,
.form-group select:hover {
    border-color: #cbd5e0;
}

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

.btn-submit {
    background: linear-gradient(135deg, #0c76bf 0%, #3b82f6 100%);
    color: white;
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    cursor: pointer;
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(12, 118, 191, 0.25);
    width: 100%;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-submit:hover {
    background: linear-gradient(135deg, #0a5d99 0%, #2563eb 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(12, 118, 191, 0.4);
}

.btn-submit:hover::before {
    left: 100%;
}

.btn-submit:active {
    transform: translateY(0);
}

/* Enhanced Footer */
footer {
    background: linear-gradient(135deg, #1a365d 0%, #2d3748 100%);
    color: #ffffff;
    text-align: center;
    padding: 4rem 2rem 2rem;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
}

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

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 4rem;
    margin-bottom: 3rem;
    text-align: left;
}

.footer-section h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.footer-section p {
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-link:hover {
    color: #ffffff;
}

.footer-link i {
    width: 16px;
    height: 16px;
    stroke-width: 2;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    opacity: 0.6;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    
    .footer-links {
        gap: 1.5rem;
    }
}

/* Enhanced Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

/* Scroll animations */
.section {
    animation: fadeInUp 0.6s ease-out;
}

.section:nth-child(even) {
    animation: slideInLeft 0.6s ease-out;
}

.section:nth-child(odd) {
    animation: slideInRight 0.6s ease-out;
}

/* Enhanced mobile responsiveness */
@media (max-width: 1024px) {
    .section {
        padding: 2rem;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
        order: 3;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(12, 118, 191, 0.98);
        backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 6rem 2rem 2rem;
        transition: right 0.3s ease;
        gap: 1.5rem;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-link {
        display: block;
        padding: 1rem 0;
        font-size: 1.1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
    }
    
    .nav-demo-btn {
        margin-left: 0;
        margin-top: 1rem;
        font-size: 1rem;
        padding: 1rem 2rem;
        text-align: center;
        width: 100%;
    }
    
    .nav-logo {
        order: 1;
    }
    
    .navbar {
        padding: 1rem 0;
    }
    
    /* Mobile menu overlay */
    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    .hero {
        margin: -2rem -1rem 3rem -1rem;
        padding: 4rem 1.5rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
        line-height: 1.3;
        margin-bottom: 1.5rem;
    }
    
    .hero-tagline {
        font-size: 1.6rem;
        margin-bottom: 1.25rem;
        line-height: 1.4;
    }
    
    .hero-subheadline {
        font-size: 1.15rem;
        margin-bottom: 3rem;
        line-height: 1.6;
        padding: 0 1rem;
    }
    
    .hero .cta-button {
        font-size: 1.1rem;
        padding: 1.25rem 2.5rem;
        margin: 0 0.5rem;
    }
    
    main {
        padding: 1rem;
    }
    
    .section {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }
    
    .section h2 {
        font-size: 1.8rem;
    }
    
    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .section {
        padding: 1.5rem 1rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .nav-menu {
        font-size: 0.9rem;
    }
}

/* Loading states and micro-interactions */
.service-card {
    animation: fadeInUp 0.6s ease-out;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }

/* Smooth scrolling - Enhanced */
html {
    scroll-behavior: smooth;
}

/* Smooth scrolling for all anchor links */
a[href^="#"]:not([href="#"]) {
    scroll-behavior: smooth;
}

/* Add scroll padding to account for fixed header */
html {
    scroll-padding-top: 80px;
}

/* Enhanced list styling - Only for content lists, not navigation */
.section ul {
    list-style: none;
    padding-left: 0;
}

.section ul li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.section ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #0c76bf;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Ensure navigation lists have clean styling */
.nav-menu {
    list-style: none;
    padding-left: 0;
}

.nav-menu li {
    position: static;
    padding-left: 0;
    margin-bottom: 0;
}

.nav-menu li::before {
    display: none;
    content: none;
}

/* Focus states for accessibility */
.nav-link:focus,
.cta-button:focus,
.btn-submit:focus,
.nav-demo-btn:focus {
    outline: 2px solid #0c76bf;
    outline-offset: 2px;
}

/* Skip to main content for screen readers */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #0c76bf;
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 1001;
}

.skip-link:focus {
    top: 6px;
}

/* Improved contrast for better readability */
.step-desc {
    color: #2d3748;
}

/* Better button states */
.cta-button:focus,
.btn-submit:focus,
.nav-demo-btn:focus {
    box-shadow: 0 0 0 3px rgba(12, 118, 191, 0.3);
}

/* Enhanced navigation active states */
.nav-link.active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 6px;
}

/* Improved selection colors */
::selection {
    background: rgba(12, 118, 191, 0.2);
    color: #0c76bf;
}

::-moz-selection {
    background: rgba(12, 118, 191, 0.2);
    color: #0c76bf;
}

/* Final CTA Buttons */
.final-cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.cta-button.primary {
    background: linear-gradient(135deg, #0c76bf 0%, #3b82f6 100%);
    color: white;
    border: 2px solid transparent;
}

.cta-button.secondary {
    background: transparent;
    color: #0c76bf;
    border: 2px solid #0c76bf;
}

.cta-button.secondary:hover {
    background: #0c76bf;
    color: white;
}

@media (max-width: 768px) {
    .final-cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .final-cta-buttons .cta-button {
        width: 100%;
        max-width: 300px;
    }
}

/* Platform Types Section - Redesigned */
.platform-types {
    background: var(--light-gray);
    padding: 6rem 2rem;
    margin: 0 -2rem 4rem -2rem;
}

.platform-type-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.platform-type-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.platform-type-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(12, 118, 191, 0.15);
    border-color: var(--primary-blue);
}

.platform-type-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--deep-navy));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.platform-type-card:hover::before {
    transform: scaleX(1);
}

.platform-type-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-blue), var(--deep-navy));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin: 0 auto 2rem;
    position: relative;
    z-index: 1;
}

.platform-type-icon i {
    width: 32px;
    height: 32px;
    stroke-width: 2;
}

.platform-type-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.platform-type-card p {
    color: var(--text-medium);
    line-height: 1.6;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .platform-type-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .platform-type-card {
        padding: 2.5rem 1.5rem;
    }
    
    .platform-types {
        margin: 0 -1rem 3rem -1rem;
        padding: 4rem 1rem;
    }
}

/* How It Works Section - Redesigned */
.how-it-works {
    background: var(--white);
    padding: 8rem 2rem;
}

.how-it-works-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}

.how-it-works-header h2 {
    color: var(--text-dark);
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.how-it-works-header p {
    color: var(--text-medium);
    font-size: 1.2rem;
    line-height: 1.6;
}

.steps-horizontal {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.step-horizontal {
    flex: 1;
    text-align: center;
    padding: 2rem 1rem;
    position: relative;
    max-width: 280px;
}

.step-number {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-blue), var(--deep-navy));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(12, 118, 191, 0.3);
}

.step-icon-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--deep-navy));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin: 2rem auto 1.5rem;
    box-shadow: 0 8px 24px rgba(12, 118, 191, 0.2);
    transition: all 0.3s ease;
}

.step-icon-large:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 32px rgba(12, 118, 191, 0.3);
}

.step-icon-large i {
    width: 40px;
    height: 40px;
    stroke-width: 2;
}

.step-horizontal h3 {
    color: var(--text-dark);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.step-horizontal p {
    color: var(--text-medium);
    font-size: 1rem;
    line-height: 1.5;
}

.step-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 80px;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.connector-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-blue), var(--deep-navy));
    margin-bottom: 0.5rem;
}

.step-connector i {
    width: 24px;
    height: 24px;
    color: var(--primary-blue);
    stroke-width: 2;
}

@media (max-width: 1200px) {
    .steps-horizontal {
        flex-wrap: wrap;
        gap: 3rem;
    }
    
    .step-connector {
        display: none;
    }
    
    .step-horizontal {
        max-width: 350px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .how-it-works {
        padding: 5rem 1rem;
    }
    
    .how-it-works-header h2 {
        font-size: 2.25rem;
    }
    
    .steps-horizontal {
        flex-direction: column;
        gap: 2rem;
    }
    
    .step-horizontal {
        max-width: 100%;
        padding: 2rem;
        background: var(--light-gray);
        border-radius: 16px;
    }
}

/* Why Choose RoiGuru Section */
.why-choose {
    background: var(--light-gray);
    padding: 8rem 2rem;
    margin: 0 -2rem;
}

.why-choose-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}

.why-choose-header h2 {
    color: var(--text-dark);
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.why-choose-header p {
    color: var(--text-medium);
    font-size: 1.2rem;
    line-height: 1.6;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.why-choose-card {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.why-choose-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(12, 118, 191, 0.15);
    border-color: var(--primary-blue);
}

.why-choose-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--deep-navy));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.why-choose-card:hover::before {
    transform: scaleX(1);
}

.why-choose-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--deep-navy));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin: 0 auto 2rem;
    box-shadow: 0 8px 24px rgba(12, 118, 191, 0.2);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.why-choose-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(12, 118, 191, 0.3);
}

.why-choose-icon i {
    width: 40px;
    height: 40px;
    stroke-width: 2;
}

.why-choose-card h3 {
    color: var(--text-dark);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.why-choose-card p {
    color: var(--text-medium);
    font-size: 1.1rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .why-choose {
        padding: 5rem 1rem;
        margin: 0 -1rem;
    }
    
    .why-choose-header h2 {
        font-size: 2.25rem;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .why-choose-card {
        padding: 2.5rem 1.5rem;
    }
}

/* Final CTA Section - Dark Blue */
.final-cta-section {
    background: linear-gradient(135deg, var(--deep-navy) 0%, var(--primary-blue) 100%);
    color: var(--white);
    padding: 8rem 2rem;
    margin: 0 -2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
}

.final-cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.final-cta-section h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.final-cta-section p {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    opacity: 0.95;
}

.final-cta-actions {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.cta-button.cta-white {
    background: var(--white);
    color: var(--primary-blue);
    border: 2px solid var(--white);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1.2rem 2.5rem;
}

.cta-button.cta-white:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
}

.cta-button.cta-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1.2rem 2.5rem;
}

.cta-button.cta-outline:hover {
    background: var(--white);
    color: var(--primary-blue);
    transform: translateY(-2px);
}

.final-cta-features {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0.9;
}

.cta-feature i {
    width: 24px;
    height: 24px;
    stroke-width: 2;
    color: var(--white);
}

@media (max-width: 768px) {
    .final-cta-section {
        padding: 6rem 1rem;
        margin: 0 -1rem;
    }
    
    .final-cta-section h2 {
        font-size: 2.25rem;
    }
    
    .final-cta-section p {
        font-size: 1.1rem;
    }
    
    .final-cta-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .final-cta-actions .cta-button {
        width: 100%;
        max-width: 300px;
    }
    
    .final-cta-features {
        flex-direction: column;
        gap: 1.5rem;
        text-align: left;
    }
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #0c76bf, #3b82f6);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #0a5d99, #2563eb);
}

/* Platform Selector Styles */
.platform-selector {
    margin: 3rem 0 2rem 0;
    text-align: center;
}

.selector-label {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-weight: 500;
}

.platform-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
    padding: 1rem;
}

.platform-btn {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.platform-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.platform-btn:hover {
    transform: scale(1.03);
    border: 2px solid #0c76bf;
    background: rgba(240, 249, 255, 0.3);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: 0.2s ease;
}

.platform-btn:hover::before {
    opacity: 1;
}

.platform-btn:focus {
    outline: 2px solid rgba(255, 255, 255, 0.8);
    outline-offset: 2px;
}

.platform-btn.selected {
    background: rgba(255, 255, 255, 0.25);
    border: 3px solid #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3);
}

.platform-btn.selected:focus {
    outline: 2px solid rgba(255, 255, 255, 1);
}

.platform-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

.platform-icon i {
    width: 32px;
    height: 32px;
    stroke-width: 1.5;
}

.platform-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    position: relative;
    z-index: 2;
}

.platform-desc {
    font-size: 0.9rem;
    opacity: 0.8;
    position: relative;
    z-index: 2;
}

/* Personalized Content Styles */
.personalized-content {
    margin-top: 2rem;
    animation: fadeInUp 0.6s ease-out;
}

.platform-content {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: slideInUp 0.5s ease-out;
}

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

.platform-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 600;
}

.platform-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.general-cta {
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

/* Mobile responsiveness for platform selector */
@media (max-width: 768px) {
    .platform-buttons {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .platform-btn {
        padding: 1.2rem 0.8rem;
    }
    
    .platform-icon {
        font-size: 2rem;
    }
    
    .platform-name {
        font-size: 1rem;
    }
    
    .platform-desc {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .platform-buttons {
        grid-template-columns: 1fr;
    }
    
    .selector-label {
        font-size: 1.1rem;
    }
}

/* ROI Calculator Styles */
.roi-calculator {
    margin: 2rem auto;
    background: linear-gradient(145deg, #f8fafc, #ffffff);
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    border: 1px solid rgba(12, 118, 191, 0.1);
    max-width: 1200px;
}

.calculator-container {
    max-width: 800px;
    margin: 0 auto;
}

.calculator-inputs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
    padding: 1rem;
}

.input-group {
    position: relative;
    background: white;
    border-radius: 16px;
    padding: 2rem;
    border: 2px solid #e2e8f0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.input-group:hover {
    border-color: #0c76bf;
    box-shadow: 0 4px 12px rgba(12, 118, 191, 0.08);
}

.input-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: #0c76bf;
    font-size: 1rem;
}

.input-group input {
    width: 100%;
    padding: 1rem 0;
    border: none;
    border-bottom: 2px solid #e2e8f0;
    border-radius: 0;
    font-size: 1.1rem;
    background: transparent;
    transition: all 0.3s ease;
    font-family: inherit;
}

.input-group input:focus {
    border-bottom-color: #0c76bf;
    box-shadow: 0 2px 8px rgba(12, 118, 191, 0.15);
    outline: none;
    transform: none;
}

.input-group input:hover {
    border-bottom-color: #94a3b8;
    transition: all 0.2s ease;
}

.input-group input:focus::placeholder {
    color: #94a3b8;
    transition: color 0.2s ease;
}

/* Calculator Results */
.calculator-results {
    background: linear-gradient(135deg, #0c76bf 0%, #0a5d99 100%);
    color: white;
    padding: 2.5rem;
    border-radius: 16px;
    margin-top: 2rem;
    animation: slideInUp 0.5s ease-out;
}

.calculator-results h3 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.result-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 1.5rem 1rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.result-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.2);
}

.result-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

.result-icon i {
    width: 24px;
    height: 24px;
    stroke-width: 2;
}

.result-label {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.result-value {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
}

.calculator-cta {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.calculator-cta p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.calculator-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .calculator-actions {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .calculator-actions .cta-button {
        width: 100%;
    }
}

/* Mobile responsiveness for calculator */
@media (max-width: 768px) {
    .roi-calculator {
        padding: 3rem 1rem;
        margin: 1.5rem 0;
    }
    
    .calculator-inputs {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0.5rem;
    }
    
    .input-group {
        padding: 1.5rem;
    }
    
    .results-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .result-card {
        padding: 1rem 0.5rem;
    }
    
    .result-icon {
        font-size: 1.5rem;
    }
    
    .result-value {
        font-size: 1.2rem;
    }
    
    .section {
        padding: 4rem 1rem;
    }
}

@media (max-width: 480px) {
    .results-grid {
        grid-template-columns: 1fr;
    }
    
    .input-group input {
        padding: 1rem 1.2rem;
        font-size: 1rem;
    }
    
    .calculator-results {
        padding: 2rem 1rem;
    }
    
    .section {
        padding: 3rem 1rem;
    }
}

/* Download/Brochure Section Styles */
.download-section {
    margin: 2rem auto;
    max-width: 1200px;
}

.brochure-card {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: linear-gradient(135deg, #0c76bf 0%, #0a5d99 100%);
    color: white;
    border-radius: 16px;
    padding: 2rem;
    border: none;
    box-shadow: 0 8px 24px rgba(12, 118, 191, 0.25);
    transition: all 0.3s ease;
    max-width: 600px;
    margin: 0 auto;
}

.brochure-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(12, 118, 191, 0.35);
}

.brochure-icon {
    width: 64px;
    height: 64px;
    opacity: 0.9;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brochure-icon i {
    width: 48px;
    height: 48px;
    stroke-width: 1.5;
}

.brochure-content {
    flex: 1;
    text-align: left;
}

.brochure-content h3 {
    font-size: 1.3rem;
    color: white;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.brochure-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.2rem;
    line-height: 1.5;
}

.download-btn {
    background: white;
    color: #0c76bf;
    padding: 0.8rem 1.8rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
}

.download-btn::before {
    content: '⬇';
    font-size: 1rem;
}

.download-btn:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
    color: #0a5d99;
    transition: all 0.2s ease;
}

.download-btn:focus {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
}

/* Mobile responsiveness for brochure card */
@media (max-width: 768px) {
    .brochure-card {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .brochure-content {
        text-align: center;
    }
    
    .brochure-icon {
        font-size: 2.5rem;
    }
}

/* Testimonials Grid - Outlined Cards */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
    padding: 1rem;
}

.testimonial-card {
    background: rgba(248, 250, 252, 0.5);
    padding: 2.5rem;
    border-radius: 16px;
    border: 2px solid #0c76bf;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(12, 118, 191, 0.05);
}

.testimonial-card:hover {
    background: rgba(12, 118, 191, 0.02);
    transform: translateY(-2px) scale(1.02);
    border-color: #0a5d99;
    box-shadow: 0 8px 16px rgba(12, 118, 191, 0.08);
}

.testimonial-logo {
    width: 64px;
    height: 64px;
    margin-bottom: 1rem;
    opacity: 0.8;
    background: linear-gradient(135deg, #0c76bf, #3b82f6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-logo i {
    width: 32px;
    height: 32px;
    stroke-width: 2;
}

.testimonial-card h3 {
    color: #0c76bf;
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* How It Works Interactive Section */
.how-it-works-interactive {
    margin: 2.5rem auto;
    padding: 3rem 2rem;
    background: linear-gradient(145deg, #f8fafc, #ffffff);
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    border: 1px solid rgba(12, 118, 191, 0.1);
    position: relative;
    overflow: hidden;
    max-width: 1200px;
}

.how-it-works-interactive::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0c76bf, #3b82f6, #0c76bf);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.step-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 2px solid rgba(12, 118, 191, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.step-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(12, 118, 191, 0.02), rgba(59, 130, 246, 0.02));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.step-item:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 24px rgba(12, 118, 191, 0.15);
    border-color: #0c76bf;
    background: rgba(12, 118, 191, 0.02);
}

.step-item:hover::before {
    opacity: 1;
}

.step-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    line-height: 1;
    background: linear-gradient(135deg, #0c76bf, #3b82f6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-left: auto;
    margin-right: auto;
}

.step-icon i {
    width: 24px;
    height: 24px;
    stroke-width: 2;
}

.step-title {
    font-weight: 600;
    font-size: 1.1rem;
    color: #0c76bf;
    margin-bottom: 0.8rem;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

.step-desc {
    font-size: 0.95rem;
    color: #4a5568;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Add step numbers */
.step-item::before {
    content: counter(step-counter);
    counter-increment: step-counter;
    position: absolute;
    top: -10px;
    left: -10px;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #0c76bf, #3b82f6);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
    z-index: 3;
}

.steps-container {
    counter-reset: step-counter;
}

/* Add step connectors */
.step-item:not(:last-child)::after {
    content: '→';
    position: absolute;
    top: 50%;
    right: -1.5rem;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: #0c76bf;
    font-weight: bold;
    z-index: 2;
}

/* Responsive design for interactive steps */
@media (max-width: 1024px) {
    .steps-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .step-item:nth-child(2n)::after {
        display: none;
    }
    
    .step-item:nth-child(odd):not(:nth-last-child(-n+2))::after {
        content: '↓';
        top: auto;
        bottom: -1.5rem;
        right: 50%;
        transform: translateX(50%);
    }
}

@media (max-width: 768px) {
    .how-it-works-interactive {
        padding: 2rem 0.5rem;
        margin: 1.5rem 0;
        overflow-x: auto;
    }
    
    .steps-container {
        display: flex;
        gap: 1rem;
        min-width: max-content;
        padding: 0 1rem;
    }
    
    .step-item {
        padding: 1.5rem 1rem;
        min-width: 200px;
        flex-shrink: 0;
    }
    
    .step-item::after {
        content: '→';
        position: absolute;
        top: 50%;
        right: -0.75rem;
        transform: translateY(-50%);
        font-size: 1.2rem;
        color: #0c76bf;
        font-weight: bold;
        z-index: 2;
    }
    
    .step-item:last-child::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .step-icon {
        font-size: 2.5rem;
    }
    
    .step-title {
        font-size: 1rem;
    }
    
    .step-desc {
        font-size: 0.9rem;
    }
}