/* Modern CSS Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Variables */
:root {
    /* Primary Colors */
    --primary-orange: #FF6B2C;
    --primary-dark-orange: #E85A1F;
    --primary-blue: #0C2542;
    --primary-dark-blue: #091D33;
    --secondary-color: #4A5568;
    
    /* Background Colors */
    --background-color: #ffffff;
    --gray-light: #F7FAFC;
    --gray-medium: #E2E8F0;
    --gray-dark: #2D3748;
    --section-alt: #F8FAFC;
    
    /* Text Colors */
    --text-color: #0C2542;
    --text-light: #718096;
    --text-white: #ffffff;
    
    /* Status Colors */
    --success-color: #48BB78;
    --warning-color: #F6AD55;
    --error-color: #F56565;
    
    /* Layout */
    --max-width: 1200px;
    --border-radius: 6px;
}

/* Base Styles */


/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: Reckless, serif;
    font-weight: 200;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 2rem;
}

h3,h4{
	font-size:25px;
}

p,span,a{font-family: DM Sans, sans-serif;}

/* Layout */
.header, section, .footer {
    position: relative;
    overflow: hidden;
}

section {
    position: relative;
}

section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gray-medium), transparent);
}

/* Section Background Alternation */
section:nth-of-type(even) {
    background-color: var(--section-alt);
}

section:nth-of-type(odd) {
    background-color: var(--background-color);
}

/* Override specific section backgrounds */
.security {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-dark-blue));
}

.hero {
    background: linear-gradient(135deg, var(--primary-dark-blue), var(--primary-blue));
}

/* Add section transitions */
section {
    transition: background-color 0.3s ease;
}

/* Container spacing */
.container, .feature-grid, .security-grid, .steps-grid, .testimonial-grid {
    padding: 0 2rem;
    margin: 0 auto;
    max-width: var(--max-width);
}

/* Navigation */
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    text-decoration: none;
}

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

.nav-links a {
    margin-left: 2rem;
    text-decoration: none;
    color: var(--text-white);
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--primary-orange);
}

/* Hero Section */
.hero .container {
    text-align: left;
    padding: 1rem 1.5rem 1rem;
    color: var(--text-white);
    border-radius: 0 0 3rem 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: var(--max-width);
    margin: 0 auto;
}

.hero-content {
    max-width: 600px;
}

.hero-header {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary-orange);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    background: rgba(255, 107, 44, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: inline-block;
    border: 1px solid rgba(255, 107, 44, 0.3);
}

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

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

.floating-animation {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

.subtitle {
    font-size: 1.5rem;
    color: var(--primary-orange);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.sub-subtitle {
    font-size: 1.25rem;
    color: var(--text-white);
    opacity: 0.9;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Value Proposition */
.value-prop {
    text-align: center;
    padding: 7rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-dark-blue));
    color: var(--text-white);
}

.value-prop .container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.value-prop-content {
    text-align: left;
}

.value-prop-content h2 {
    color: var(--text-white);
}

.lead-text {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-white);
    opacity: 0.9;
    line-height: 1.8;
}

.microsoft-integration {
    position: relative;
}

.integration-img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.microsoft-badges {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
}

.microsoft-badges i {
    font-size: 2.5rem;
    color: var(--text-white);
    transition: transform 0.3s ease, color 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(255, 255, 255, 0.2));
}

.microsoft-badges i:hover {
    transform: translateY(-5px);
    color: var(--primary-orange);
    filter: drop-shadow(0 4px 8px rgba(255, 107, 44, 0.3));
}

/* Buttons */
.cta-buttons {
    margin-top: 1rem;
}

.btn {
    padding: 1.25rem 2.5rem;
    border-radius: var(--border-radius);
    border: none;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

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

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

.primary-btn:hover {
    background-color: var(--primary-dark-orange);
}

/* Features Section */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    padding: 2rem;
}

.feature-card {
    background: white;
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-medium);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-orange);
}

.feature-card h3 {
    color: var(--primary-blue);
    margin-bottom: 1.25rem;
}

/* Security Section */
.security {
    color: var(--text-white);
    padding: 7rem 1.5rem;
    position: relative;
    overflow: hidden;
}

.security-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(135deg, rgba(12, 37, 66, 0.95), rgba(12, 37, 66, 0.98)),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: -1;
}

.security h2 {
    color: var(--text-white);
    position: relative;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 2rem;
}

.security-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    font-weight: 500;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.security-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.security-item i {
    font-size: 2rem;
    color: var(--primary-orange);
}

/* Security CTA */
.security-cta {
    text-align: center;
    margin-top: 4rem;
    display: flex;
    justify-content: center;
}

.security-btn {
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--text-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    padding: 1.5rem 3rem;
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    overflow: hidden;
}

.security-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.1),
        rgba(255, 255, 255, 0.2),
        rgba(255, 255, 255, 0.1)
    );
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.security-btn:hover {
    background-color: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.security-btn:hover::before {
    transform: translateX(100%);
}

.security-btn i {
    font-size: 1.4rem;
    transition: transform 0.3s ease;
}

.security-btn:hover i {
    transform: scale(1.1);
}

/* How It Works Section */
.how-it-works {
    position: relative;
    padding: 7rem 1.5rem;
    background: var(--section-alt);
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--primary-orange), transparent);
    opacity: 0.4;
}

.how-it-works::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--primary-orange), transparent);
    opacity: 0.4;
}

.how-it-works h2 {
    position: relative;
    z-index: 1;
    color: var(--primary-blue);
    margin-bottom: 3rem;
}

.section-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, 
        rgba(247, 250, 252, 0.95), 
        rgba(237, 242, 247, 0.95)
    );
    z-index: 0;
}

.how-it-works .decoration-circle {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: linear-gradient(135deg, 
        rgba(255, 107, 44, 0.08), 
        rgba(12, 37, 66, 0.08)
    );
    top: -200px;
    right: -100px;
    z-index: 0;
}

.how-it-works .decoration-dots {
    position: absolute;
    width: 200px;
    height: 200px;
    background-image: radial-gradient(var(--primary-orange) 2px, transparent 2px);
    background-size: 15px 15px;
    opacity: 0.15;
    bottom: -50px;
    left: -50px;
    z-index: 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.step-icon {
    width: 100%;
    max-width: 300px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    position: relative;
}

.step-card {
    background: var(--background-color);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    border: 1px solid rgba(226, 232, 240, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.step-card h3 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.step-card p {
    color: var(--secondary-color);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

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

    .step-card {
        padding: 2rem;
    }

    .step-icon {
        max-width: 100%;
        width: 100%;
    }
}

/* Testimonials */
.testimonials {
    background-color: var(--gray-light);
    padding: 7rem 1.5rem;
    position: relative;
    overflow: hidden;
}

.testimonial-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
}

.testimonial-circles::before,
.testimonial-circles::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 107, 44, 0.1), rgba(12, 37, 66, 0.1));
}

.testimonial-circles::before {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -100px;
}

.testimonial-circles::after {
    width: 200px;
    height: 200px;
    bottom: -50px;
    right: -50px;
}

.testimonial-card {
    background: white;
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    font-size: 1.125rem;
    position: relative;
    z-index: 1;
}

.quote-icon {
    font-size: 2.5rem;
    color: var(--primary-orange);
    opacity: 0.2;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

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

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: var(--text-color);
}

.author-company {
    color: var(--text-light);
    font-size: 0.875rem;
}

/* Comparison Section */
.comparison {
    background: linear-gradient(to bottom, var(--gray-light), white);
    padding: 7rem 1.5rem;
    position: relative;
    overflow: hidden;
}

.comparison::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 10% 10%, rgba(255, 107, 44, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 90%, rgba(12, 37, 66, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.comparison-table {
    max-width: 900px;
    margin: 3rem auto 0;
    padding: 1rem;
    position: relative;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.comparison table {
    width: 100%;
    min-width: 280px; /* Reduced minimum width */
    border-collapse: separate;
    border-spacing: 0;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    table-layout: fixed; /* Fixed table layout for better control */
}

.comparison thead {
    background: var(--primary-blue);
    color: var(--text-white);
    position: sticky;
    top: 0;
    z-index: 1;
}

.comparison th {
    padding: 1.5rem 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 1.1rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.comparison th:first-child {
    width: 50%; /* Adjusted width */
}

.comparison th:not(:first-child) {
    width: 25%; /* Equal width for status columns */
}

.comparison td {
    padding: 1.25rem 1rem;
    border-bottom: 1px solid var(--gray-medium);
    font-size: 1.05rem;
    background: white;
    vertical-align: top;
    word-wrap: break-word; /* Enable word wrapping */
    hyphens: auto; /* Enable hyphenation */
}

.comparison td:first-child {
    line-height: 1.4; /* Better line height for wrapped text */
}

.comparison tr:last-child td {
    border-bottom: none;
}

.comparison td.check, 
.comparison td.cross, 
.comparison td.warning {
    text-align: center;
    padding: 1.25rem 0.5rem;
    vertical-align: middle;
}

.comparison td.check i,
.comparison td.cross i,
.comparison td.warning i {
    font-size: 1.5rem;
    transition: transform 0.2s ease;
}

.comparison td.check {
    color: var(--success-color);
    background: rgba(72, 187, 120, 0.05);
}

.comparison td.check i {
    color: var(--success-color);
    filter: drop-shadow(0 2px 4px rgba(72, 187, 120, 0.2));
}

.comparison td.cross {
    color: var(--error-color);
    background: rgba(245, 101, 101, 0.05);
}

.comparison td.cross i {
    color: var(--error-color);
    filter: drop-shadow(0 2px 4px rgba(245, 101, 101, 0.2));
}

.comparison td.warning {
    color: var(--warning-color);
    background: rgba(246, 173, 85, 0.05);
}

.comparison td.warning i {
    color: var(--warning-color);
    filter: drop-shadow(0 2px 4px rgba(246, 173, 85, 0.2));
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .comparison {
        padding: 4rem 0.5rem;
    }

    .comparison-table {
        padding: 0.5rem;
        margin-top: 1.5rem;
    }

    .comparison h2 {
        padding: 0 1rem;
        font-size: 1.75rem;
    }

    .comparison th,
    .comparison td {
        padding: 1rem 0.75rem;
        font-size: 0.9rem;
    }

    .comparison td:first-child {
        font-size: 0.9rem;
        padding-right: 0.5rem;
    }

    .comparison td.check i,
    .comparison td.cross i,
    .comparison td.warning i {
        font-size: 1.25rem;
    }
}

/* Extra small screens */
@media (max-width: 360px) {
    .comparison th,
    .comparison td {
        padding: 0.75rem 0.5rem;
        font-size: 0.85rem;
    }

    .comparison td.check i,
    .comparison td.cross i,
    .comparison td.warning i {
        font-size: 1.1rem;
    }

    .comparison h2 {
        font-size: 1.5rem;
    }
}

/* Table decoration */
.comparison::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 15%;
    right: 15%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gray-medium), transparent);
}

/* CTA Section */
.cta-section {
    text-align: center;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-dark-orange));
    color: var(--text-white);
    padding: 7rem 1.5rem;
    border-radius: 3rem 3rem 0 0;
}

.cta-section h2 {
    color: var(--text-white);
}

.cta-section p {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 1.5rem auto 0;
    opacity: 0.9;
}

.cta-section .primary-btn {
    background-color: var(--text-white);
    color: var(--primary-orange);
    margin-top: 3rem;
    display: inline-block;
}

.cta-section .primary-btn:hover {
    background-color: var(--gray-light);
    color: var(--primary-dark-orange);
}

/* Footer */
.footer {
    background-color: var(--primary-dark-blue);
    color: var(--text-white);
    padding: 5rem 1.5rem 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.footer-logo {
    height: 30px;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1);
}

.footer-section p {
    opacity: 0.8;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-column h4 {
    color: var(--primary-orange);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

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

.footer-links-list a {
    color: var(--text-white);
    opacity: 0.8;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links-list a:hover {
    color: var(--primary-orange);
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    opacity: 0.8;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    display: flex;
    opacity: 1;
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 1000px;
    height: 80vh;
    margin: auto;
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    transform: scale(0.7);
    transition: transform 0.3s ease;
}

.modal.show .modal-content {
    transform: scale(1);
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 28px;
    font-weight: bold;
    color: var(--text-color);
    cursor: pointer;
    z-index: 1;
    transition: color 0.2s ease;
}

.close-modal:hover {
    color: var(--primary-orange);
}

#calendlyFrame {
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }

    .nav-links {
        margin-top: 1rem;
    }

    .nav-links a {
        margin: 0 0.75rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .comparison-table {
        padding: 1rem;
    }

    table {
        font-size: 0.875rem;
    }

    th, td {
        padding: 1rem;
    }

    .header, section, .footer {
        padding: 2rem 1.5rem;
    }
    
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 1rem 1.5rem;
        gap: 2rem;
    }
    
    .hero-content {
        margin: 0 auto;
        order: 1;
    }

    .hero-illustration {
        order: 2;
    }

    .hero-illustration img {
        max-width: 80%;
    }

    .cta-buttons {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .value-prop .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .value-prop-content {
        text-align: center;
    }
    
    .microsoft-integration {
        margin-top: 2rem;
    }
    
    .decoration-circle {
        width: 200px;
        height: 200px;
    }
    
    .decoration-dots {
        width: 100px;
        height: 100px;
    }
    
    .feature-card, .step-card, .testimonial-card {
        padding: 2rem;
    }
    
    .security-item {
        padding: 1.5rem;
    }
    
    .security-item i {
        font-size: 1.5rem;
    }
    
    .testimonial-circles::before {
        width: 200px;
        height: 200px;
    }
    
    .testimonial-circles::after {
        width: 150px;
        height: 150px;
    }
    
    .testimonial-card {
        padding: 2rem;
    }
    
    .quote-icon {
        font-size: 2rem;
    }
    
    h1 {
        margin-bottom: 1.5rem;
    }
    
    h2 {
        margin-bottom: 2rem;
    }
    
    .subtitle {
        margin-bottom: 1rem;
    }
    
    .sub-subtitle {
        margin-bottom: 2rem;
    }
    
    .btn {
        padding: 1rem 2rem;
    }

    .feature-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.5rem;
    }

    .feature-icon i {
        font-size: 1.75rem;
    }

    .security-btn {
        padding: 1.25rem 2.5rem;
        font-size: 1.1rem;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        padding: 1rem;
    }

    .step-card {
        padding: 2rem;
    }

    .step-icon {
        width: 100%;
        height: auto;
    }

    .step-icon i {
        font-size: 1.5rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero, .feature-card, .testimonial-card, .step-card {
    animation: fadeIn 0.6s ease-out forwards;
}

/* Features Decoration */
.features-decoration {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: -1;
}

.decoration-circle {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 107, 44, 0.1), rgba(12, 37, 66, 0.1));
    top: -100px;
    right: -100px;
}

.decoration-dots {
    position: absolute;
    width: 200px;
    height: 200px;
    background-image: radial-gradient(var(--gray-medium) 2px, transparent 2px);
    background-size: 15px 15px;
    opacity: 0.3;
    bottom: 50px;
    left: -50px;
}

/* Feature Icons */
.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gray-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transition: all 0.3s ease;
    position: relative;
}

.feature-icon i {
    font-size: 2rem;
    color: var(--primary-orange);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: var(--primary-orange);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 107, 44, 0.2);
}

.feature-card:hover .feature-icon i {
    color: var(--text-white);
    transform: scale(1.1);
}

/* Icon Pulse Animation */
.feature-icon.pulse::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--primary-orange);
    border-radius: 50%;
    opacity: 0.2;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.2;
    }
    50% {
        transform: scale(1.2);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 0.2;
    }
}

/* Header & Navigation */
.header {
    position: relative;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.logo {
    flex-shrink: 0;
}

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

.nav-links {
    display: flex;
    gap: 3rem;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.2s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-orange);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-orange);
}

.nav-links a:hover::after {
    transform: scaleX(1);
}

/* Hero Section */
.hero .container{
    text-align: left;
    padding: 6rem 2rem;
    color: var(--text-white);
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: var(--max-width);
    margin: 0 auto;
}

.hero-content {
    max-width: 600px;
}

.hero h1 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    line-height: 1.2;
    margin-bottom: 0.75rem;
    color: var(--text-white);
}

.subtitle {
    font-size: 1.5rem;
    color: var(--primary-orange);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.sub-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: var(--text-white);
    opacity: 0.9;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-illustration {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-illustration img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.primary-btn {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    background-color: var(--primary-orange);
    color: var(--text-white);
    border-radius: var(--border-radius);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.primary-btn:hover {
    background-color: var(--primary-dark-orange);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Desktop Enhancements */
@media (min-width: 1024px) {
    .nav-container {
        padding: 2rem 4rem;
    }

    .logo-img {
        height: 50px;
    }

    .hero {
        padding: 2rem 4rem;
    }

    .hero-content {
        padding-right: 2rem;
    }

    .hero h1 {
        font-size: 3.5rem;
        margin-bottom: 2rem;
    }

    .subtitle {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .sub-subtitle {
        font-size: 1.25rem;
        margin-bottom: 3rem;
        max-width: 540px;
    }

    .hero-illustration {
        transform: scale(1.1);
    }

    .primary-btn {
        padding: 1.5rem 3rem;
        font-size: 1.25rem;
    }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }

    .nav-links {
        margin-top: 1rem;
        gap: 1.5rem;
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 4rem 1.5rem;
        gap: 2rem;
    }

    .hero-content {
        margin: 0 auto;
        order: 1;
    }

    .hero-illustration {
        order: 2;
        width: 100%;
    }

    .hero-illustration img {
        max-width: 80%;
    }

    .cta-buttons {
        justify-content: center;
    }

    .sub-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
}

/* Add hover animations for SVG elements */
.hover-animate {
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.step-card:hover .hover-animate {
    opacity: 1;
}

/* Upload document hover effect */
.upload-pulse {
    animation: none;
    stroke: #FF6B2C;
    stroke-width: 3;
    filter: drop-shadow(0 0 2px rgba(255, 107, 44, 0.5));
}

.step-card:hover .upload-pulse {
    animation: uploadPulse 2s ease-in-out infinite;
}

@keyframes uploadPulse {
    0% {
        stroke-width: 3;
        stroke-opacity: 0;
        transform: scale(1);
    }
    50% {
        stroke-width: 4;
        stroke-opacity: 1;
        transform: scale(1.1);
    }
    100% {
        stroke-width: 3;
        stroke-opacity: 0;
        transform: scale(1);
    }
}

/* Neural network hover effect */
.data-particle {
    animation: none;
}

.step-card:hover .data-particle {
    animation: particleFlow 3s linear infinite;
}

@keyframes particleFlow {
    0% {
        opacity: 0;
        transform: translate(0, 0) scale(1);
    }
    25% {
        opacity: 1;
        transform: translate(20px, -10px) scale(1.5);
    }
    75% {
        opacity: 1;
        transform: translate(40px, 10px) scale(1.5);
    }
    100% {
        opacity: 0;
        transform: translate(60px, 0) scale(1);
    }
}

/* Checkmark hover effect */
.checkmark-draw {
    stroke-dasharray: 50;
    stroke-dashoffset: 50;
    transition: stroke-dashoffset 0.6s ease;
    filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.5));
}

.step-card:hover .checkmark-draw {
    stroke-dashoffset: 0;
}

/* FAQ Section */
.faq {
    background: linear-gradient(135deg, var(--gray-light), var(--background-color));
    position: relative;
    overflow: hidden;
    padding: 7rem 1.5rem;
}

/* Add features section padding */
#features {
    padding: 7rem 1.5rem;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23FF6B2C' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 0;
}

.faq h2 {
    position: relative;
    z-index: 1;
    color: var(--primary-blue);
    margin-bottom: 3rem;
}

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

.faq-item {
    background: var(--background-color);
    border: 1px solid var(--gray-medium);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-orange);
}

.faq-item.active {
    border-color: var(--primary-orange);
    box-shadow: 0 6px 20px rgba(255, 107, 44, 0.15);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    cursor: pointer;
    background: var(--background-color);
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: var(--gray-light);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    line-height: 1.4;
    flex: 1;
    padding-right: 1rem;
}

.faq-question i {
    color: var(--primary-orange);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: var(--gray-light);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 2rem 1.5rem;
}

.faq-answer p {
    margin: 0;
    color: var(--text-light);
    line-height: 1.6;
    font-size: 1rem;
}

.faq-answer ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.faq-answer li {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.faq-answer li:last-child {
    margin-bottom: 0;
}

/* FAQ Responsive Design */
@media (max-width: 768px) {
    .faq-container {
        padding: 0 1rem;
    }
    
    .faq-question {
        padding: 1.25rem 1.5rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
        padding-right: 0.75rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.25rem;
    }
    
    .faq-answer p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .faq-question {
        padding: 1rem 1.25rem;
    }
    
    .faq-question h3 {
        font-size: 0.95rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.25rem 1rem;
    }
    
    .faq-answer p {
        font-size: 0.9rem;
    }
} 

/* G2 Reviews Section */
.g2-reviews {
    background: var(--gray-light);
    padding: 4rem 1.5rem;
    text-align: center;
}

.g2-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    max-width: var(--max-width);
    margin-left: auto;
    margin-right: auto;
}

.g2-header h3 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin: 0;
    font-weight: 600;
}

.g2-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.g2-logo {
    height: 24px;
    width: auto;
}

.g2-badge span {
    font-weight: 600;
    color: var(--primary-blue);
    font-size: 0.9rem;
}

.reviews-container {
    position: relative;
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.carousel-btn {
    background: var(--primary-orange);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    flex-shrink: 0;
}

.carousel-btn:hover {
    background: var(--primary-dark-orange);
    transform: scale(1.1);
}

.carousel-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: var(--max-width);
    margin: 0 auto;
    flex: 1;
}

.review-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--gray-medium);
    opacity: 1;
    transform: translateX(0);
}

.review-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.stars i {
    color: #FFD700;
    font-size: 1rem;
}

.review-text {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
    font-size: 1rem;
}

.reviewer {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.reviewer-name {
    font-weight: 600;
    color: var(--primary-blue);
    font-size: 0.9rem;
}

.reviewer-title {
    color: var(--text-light);
    font-size: 0.8rem;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.carousel-indicators .indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: var(--gray-medium);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-indicators .indicator.active {
    background: var(--primary-orange);
    transform: scale(1.2);
}

/* Mobile responsive styles for G2 Reviews */
@media (max-width: 768px) {
    .g2-reviews {
        padding: 3rem 1rem;
    }
    
    .g2-header {
        flex-direction: column;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .g2-header h3 {
        font-size: 1.25rem;
    }
    
    .reviews-container {
        gap: 0.5rem;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 0;
        overflow: hidden;
    }
    
    .review-card {
        padding: 1.5rem;
        opacity: 0;
        transform: translateX(100%);
        transition: opacity 0.5s ease, transform 0.5s ease;
        position: absolute;
        width: 100%;
        left: 0;
    }
    
    .review-card.active {
        opacity: 1;
        transform: translateX(0);
        position: relative;
    }
    
    .review-text {
        font-size: 0.95rem;
    }
    
    .carousel-indicators {
        margin-top: 1.5rem;
    }
} 

/* Product Slideshow */
.product-slideshow {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
    transform: translateX(0);
}

.slide.prev {
    transform: translateX(-100%);
}

.slide-image {
    max-width: 100%;
    max-height: 80%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.slide-caption {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(12, 37, 66, 0.9);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    white-space: nowrap;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease 0.3s;
}

.slide.active .slide-caption {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.slideshow-indicators {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
    transform: scale(1.2);
}

.indicator:hover {
    background: rgba(255, 107, 44, 0.7);
    border-color: var(--primary-orange);
} 

/* Mobile responsive styles for Product Slideshow */
@media (max-width: 768px) {
    .product-slideshow {
        height: 300px;
        margin: 0 1rem;
    }
    
    .slide-image {
        max-height: 70%;
    }
    
    .slide-caption {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
        bottom: 15px;
    }
    
    .slideshow-indicators {
        bottom: 45px;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
} 

.step-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover .step-image {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
} 

/* Sticky Demo Banner */
.sticky-demo-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-dark-blue));
    color: var(--text-white);
    padding: 1rem 1.5rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sticky-demo-banner.show {
    transform: translateY(0);
}

.sticky-demo-banner.collapsed {
    transform: translateY(0);
    padding: 1rem 1.5rem;
    background: transparent;
    box-shadow: none;
    border-top: none;
}

.sticky-demo-banner.collapsed .banner-content {
    display: none;
}

.banner-collapsed {
    display: none;
    align-items: center;
    justify-content: center;
    max-width: var(--max-width);
    margin: 0 auto;
}

.sticky-demo-banner.collapsed .banner-collapsed {
    display: flex;
}

.banner-btn.small {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    border-radius: 25px;
    animation: buttonGlow 2s ease-in-out infinite;
    box-shadow: 0 4px 12px rgba(255, 107, 44, 0.3);
}

@keyframes buttonGlow {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(255, 107, 44, 0.3);
        transform: translateY(0);
    }
    50% {
        box-shadow: 0 6px 20px rgba(255, 107, 44, 0.5);
        transform: translateY(-2px);
    }
}

.banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--max-width);
    margin: 0 auto;
    gap: 2rem;
}

.banner-text h4 {
    color: var(--text-white);
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.banner-text p {
    color: var(--text-white);
    opacity: 0.9;
    margin: 0;
    font-size: 0.9rem;
}

.banner-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.banner-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--border-radius);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

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

.banner-btn.primary:hover {
    background-color: var(--primary-dark-orange);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 44, 0.3);
}

.banner-btn.secondary {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.banner-btn.secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Mobile responsive styles for sticky banner */
@media (max-width: 768px) {
    .sticky-demo-banner {
        padding: 1rem;
    }
    
    .banner-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .banner-text h4 {
        font-size: 1rem;
    }
    
    .banner-text p {
        font-size: 0.85rem;
    }
    
    .banner-actions {
        width: 100%;
        justify-content: center;
    }
    
    .banner-btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
    }
}

/* Add bottom padding to body to account for sticky banner */
body {
    padding-bottom: 0px;
}

@media (max-width: 768px) {
    body {
        padding-bottom: 0px;
    }
}