/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #f0f0f0;
    z-index: 1000;
    transition: all 0.3s ease;
    height: 70px; /* Set a fixed height for the navbar */
}

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

.nav-logo {
    font-weight: 700;
    font-size: 1.5rem;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

.nav-logo img {
    height: 260px; /* Make logo larger than the navbar */
    width: auto;
    display: block; /* Removes any extra space below the image */
    margin-left: -40px; /* Move logo further to the left */
}

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

.nav-links a {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #3366ff;
}

/* Hamburger Icon */
.hamburger-icon {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 2rem;
    height: 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1010;
}

.hamburger-icon span {
    width: 2rem;
    height: 3px;
    background: #1a1a1a;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding-top: 70px; /* Adjust padding to match new navbar height */
}

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

.hero-content {
    animation: fadeInUp 1s ease-out;
}

.hero-badge {
    display: inline-block;
    background: rgba(51, 102, 255, 0.1);
    color: #3366ff;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out 0.2s both;
    border: 1px solid #3366ff;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-highlight {
    color: #1a1a1a;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #1a1a1a;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 1s ease-out 0.4s;
    animation-fill-mode: backwards;
}

.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background: #3366ff;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(51, 102, 255, 0.3);
    animation: fadeInUp 1s ease-out 0.8s both;
    text-decoration: none;
}

.cta-button:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 30px rgba(51, 102, 255, 0.4);
}

.cta-button.large {
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
    animation: pulse 2s infinite, fadeInUp 1s ease-out 0.8s both;
}

/* Founder Section */
.founder {
    padding: 6rem 0;
    background: #ffffff;
}

.founder-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.founder-image {
    animation: slideInLeft 1s ease-out;
}

.founder-photo {
    width: 300px;
    height: 300px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #3366ff;
    box-shadow: 0 10px 40px rgba(51, 102, 255, 0.2);
}

.founder-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 10%;
}

/* Founder photo link and overlay styles */
.founder-photo-link {
    text-decoration: none;
    display: block;
    position: relative;
}

.founder-photo {
    position: relative;
    transition: all 0.3s ease;
}

.founder-photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    border: 4px solid rgba(255, 255, 255, 0.3);
}

.founder-photo-link:hover .founder-photo-overlay {
    opacity: 1;
}

.founder-photo-link:hover .founder-photo {
    transform: scale(1.05);
    box-shadow: 0 15px 50px rgba(51, 102, 255, 0.3);
}

.linkedin-icon {
    width: 60px;
    height: 60px;
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.founder-text {
    animation: slideInRight 1s ease-out;
}

.founder-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.founder-text p {
    font-size: 1.125rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.founder-signature {
    font-style: italic;
    color: #3366ff;
    font-weight: 500;
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 4rem;
    color: #1a1a1a;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    animation: fadeInUp 0.8s ease-out;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(51, 102, 255, 0.1);
    border-radius: 50%;
    color: #3366ff;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: #3366ff;
    color: white;
    transform: scale(1.1);
}

.service-icon svg {
    width: 30px;
    height: 30px;
}

.service-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: #ffffff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: #3366ff;
    border: 1px solid #3366ff;
    border-radius: 12px;
    text-align: center;
    padding: 2.5rem;
    transition: all 0.3s ease-in-out;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
    background: #4d7aff;
    border-color: #4d7aff;
}

.feature-icon {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* Comparison Section */
.comparison {
    padding: 6rem 0;
    background: #f8f9fa;
}

.text-primary {
    color: #3366ff;
}

.comparison-grid-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(5, auto);
    gap: 2rem;
    align-items: stretch;
}

.comparison-grid-new::before {
    display: none;
}

.comparison-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    min-height: 180px;
    height: 100%;
    width: 100%;
    box-sizing: border-box;
}

.comparison-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.comparison-item.challenge {
    background: #ffffff;
    border: 1px solid #e9ecef;
    justify-content: center;
}

.comparison-item.solution {
    background: #3366ff;
    color: white;
}

.comparison-icon-wrapper {
    flex-shrink: 0;
}

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

.comparison-item.challenge .comparison-icon-wrapper {
    display: none;
}

.comparison-item.solution .comparison-icon-wrapper {
    color: white;
}

.comparison-item.challenge .comparison-text h4 {
    padding-left: 0;
}

.comparison-text h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.comparison-item.solution .comparison-text h4 {
    color: white;
}

.comparison-text p {
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.9;
}

.comparison-arrow {
    color: #a0a0a0;
}

.comparison-arrow svg {
    width: 28px;
    height: 28px;
}

.comparison-item.challenge::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -0.5rem;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid #3366ff;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    z-index: 2;
    display: block;
}

.comparison-item.solution::before {
    display: none;
}

/* Timeline Section */
.timeline {
    padding: 6rem 0;
    background: #ffffff;
}

.timeline-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline-step {
    padding: 0 0 5rem 80px;
    position: relative;
    background-color: inherit;
    width: 100%;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease-out;
}

.timeline-step:last-child {
    padding-bottom: 0;
}

.timeline-step:not(:last-child) .step-content::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 15px solid #3366ff;
    left: 50%;
    transform: translateX(-50%);
    bottom: -35px;
    opacity: 0;
    transition: opacity 0.4s ease-out 0.6s;
}

.timeline-step.in-view:not(:last-child) .step-content::after {
    opacity: 1;
}

.timeline-step.in-view {
    opacity: 1;
    transform: translateX(0);
}

.step-number {
    position: absolute;
    width: 60px;
    height: 60px;
    left: 0;
    background-color: #ffffff;
    border: 3px solid #3366ff;
    top: 0;
    border-radius: 50%;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #3366ff;
}

.step-content {
    padding: 2rem;
    background-color: white;
    position: relative;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.step-content:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.08);
}

.step-text {
    flex: 1;
}

.step-icon-wrapper {
    background-color: rgba(51, 102, 255, 0.1);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.step-icon {
    width: 30px;
    height: 30px;
    color: #3366ff;
}

.timeline-step h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #3366ff;
}

.timeline-step p {
    color: #666;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #3366ff 0%, #5c85ff 100%);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.trust-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 4rem 0 2rem;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: white;
}

.contact-info p {
    margin-bottom: 0.5rem;
    color: #ccc;
}

.contact-info a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #3366ff;
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #3366ff;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #3366ff;
    transform: translateY(-2px);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1rem;
    margin-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #3366ff;
}

.cookie-settings-btn {
    background: none;
    border: none;
    color: #ccc;
    text-decoration: underline;
    font-size: 0.9rem;
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 0;
    font-family: inherit;
}

.cookie-settings-btn:hover {
    color: #3366ff;
}

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

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 20px rgba(51, 102, 255, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 40px rgba(51, 102, 255, 0.5);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 20px rgba(51, 102, 255, 0.3);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1.5rem;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        z-index: 1005;
        display: flex;
    }
    
    .nav-links.open {
        transform: translateX(0);
    }

    .nav-links a {
        font-size: 1.25rem;
    }

    .hamburger-icon {
        display: flex;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
        position: relative;
    }
    
    .hero-visual {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        opacity: 0.15;
    }
    
    .hero-content {
        position: relative;
        z-index: 2;
        padding: 2rem 0;
    }
    
    .hero-highlight {
        color: #3366ff;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .founder-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: left;
    }
    
    .founder-photo {
        width: 150px;
        height: 150px;
    }
    
    .founder-text h2 {
        font-size: 1.75rem;
    }
    
    .founder-text p {
        font-size: 0.9rem;
    }
    
    .comparison-grid-new {
        grid-template-columns: 1fr;
        gap: 1rem 0 !important;
    }
    
    .comparison-item {
        padding: 1.5rem;
    }
    
    .comparison-grid-new {
        position: relative;
    }
    
    .comparison-grid-new::before {
        content: '';
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: 0;
        height: 0;
        border-left: 8px solid #3366ff;
        border-top: 6px solid transparent;
        border-bottom: 6px solid transparent;
        z-index: 3;
    }
    
    .comparison-text h4 {
        font-size: 0.9rem;
    }
    
    .comparison-text p {
        font-size: 0.8rem;
    }
    
    .comparison-divider {
        display: none;
    }
    
    .timeline-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .timeline-step {
        padding: 1rem;
    }
    
    .timeline-step h3 {
        font-size: 1.1rem;
    }
    
    .timeline-step p {
        font-size: 0.9rem;
    }
    
    .trust-badges {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-top: 3rem;
    }
    
    .container {
        padding: 0 1.5rem;
    }
    
    .nav-container {
        padding: 0 1.5rem;
    }
    
    .section-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-section h2 {
        font-size: 1.75rem;
    }
    
    .cta-section p {
        font-size: 0.9rem;
    }
    
    .service-card,
    .feature-card {
        padding: 1.25rem;
    }
    
    .service-card h3,
    .feature-card h3 {
        font-size: 1.1rem;
    }
    
    .service-card p,
    .feature-card p {
        font-size: 0.9rem;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    .founder,
    .services,
    .features,
    .comparison,
    .timeline,
    .cta-section {
        padding: 2rem 0;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .service-card {
        text-align: left;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        height: 140px;
        justify-content: flex-start;
        flex-grow: 1;
        width: 100%;
        min-width: 0;
        padding: 1rem;
        position: relative;
    }
    
    .service-icon {
        position: absolute;
        top: 1rem;
        left: 1rem;
        width: 40px;
        height: 40px;
        background: rgba(51, 102, 255, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #3366ff;
        margin: 0;
    }
    
    .service-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .service-card h3 {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
        padding-left: 3rem;
        min-height: 2.5rem;
        display: flex;
        align-items: center;
        line-height: 1.3;
        hyphens: auto;
        word-break: break-word;
        overflow-wrap: break-word;
    }
    
    .service-card p {
        font-size: 0.85rem;
        line-height: 1.4;
        width: 100%;
        margin-top: 0.5rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .feature-card {
        text-align: left;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        height: auto;
        min-height: 120px;
        justify-content: flex-start;
        flex-grow: 1;
        width: 100%;
        min-width: 0;
        padding: 1rem;
        position: relative;
    }
    
    .feature-icon {
        position: absolute;
        top: 1rem;
        left: 1rem;
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        margin: 0;
        font-size: 1.2rem;
    }
    
    .feature-card h3 {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
        padding-left: 3rem;
        min-height: 2.5rem;
        display: flex;
        align-items: center;
        line-height: 1.3;
        hyphens: auto;
        word-break: break-word;
        overflow-wrap: break-word;
    }
    
    .feature-card p {
        font-size: 0.85rem;
        line-height: 1.4;
        width: 100%;
        margin-top: 0.5rem;
    }
    
    .comparison-grid-new {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .comparison-item {
        text-align: left;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        height: auto;
        min-height: 120px;
        justify-content: flex-start;
        flex-grow: 1;
        width: 100%;
        min-width: 0;
        padding: 1rem;
        position: relative;
    }
    
    .comparison-icon-wrapper {
        position: absolute;
        top: 1rem;
        left: 1rem;
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        margin: 0;
    }
    
    .comparison-item.challenge .comparison-icon-wrapper {
        background: rgba(51, 102, 255, 0.1);
        color: #3366ff;
    }
    
    .comparison-icon-wrapper svg {
        width: 20px;
        height: 20px;
    }
    
    .comparison-text h4 {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
        padding-left: 3rem;
        min-height: 2.5rem;
        display: flex;
        align-items: center;
        line-height: 1.3;
        hyphens: auto;
        word-break: break-word;
        overflow-wrap: break-word;
    }
    
    .comparison-text p {
        font-size: 0.85rem;
        line-height: 1.4;
        width: 100%;
        margin-top: 0.5rem;
    }
    
    .comparison-arrow {
        display: none;
    }
    
    .trust-badges {
        flex-direction: row;
        align-items: center;
        gap: 0.75rem;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 3rem;
    }
    
    .trust-badge {
        font-size: 0.875rem;
        height: 2.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: left;
        gap: 0.75rem;
    }
    
    .footer-links {
        justify-content: flex-start;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .founder-text h2 {
        font-size: 2rem;
    }
    
    .service-card,
    .feature-card {
        padding: 1.5rem;
    }
    
    .comparison-item {
        padding: 1.5rem;
    }
}

/* Custom DSGVO Cookie Consent Banner */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: white;
    padding: 2rem;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    max-height: 80vh;
    overflow-y: auto;
}

#cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-header {
    margin-bottom: 1.5rem;
}

.cookie-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.cookie-header p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #ccc;
    margin: 0;
}

.cookie-options {
    margin-bottom: 1.5rem;
}

.cookie-option {
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    cursor: pointer;
    margin: 0;
}

.cookie-checkbox input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #3366ff;
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
    background: transparent;
    transition: all 0.3s ease;
}

.cookie-checkbox input[type="checkbox"]:checked + .checkmark {
    background: #3366ff;
}

.cookie-checkbox input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.cookie-checkbox input[type="checkbox"]:disabled + .checkmark {
    background: #666;
    border-color: #666;
}

.cookie-info {
    flex: 1;
}

.cookie-info strong {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.25rem;
}

.cookie-info small {
    font-size: 0.85rem;
    color: #ccc;
    line-height: 1.4;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-decoration: none;
    display: inline-block;
}

.cookie-btn.accept {
    background: #3366ff;
    color: white;
}

.cookie-btn.accept:hover {
    background: #5c85ff;
    transform: translateY(-2px);
}

.cookie-btn.reject {
    background: transparent;
    color: #ccc;
    border: 1px solid #ccc;
}

.cookie-btn.reject:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.cookie-link {
    color: #3366ff;
    text-decoration: underline;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.cookie-link:hover {
    color: #5c85ff;
}

/* Responsive Design for Cookie Banner */
@media (max-width: 768px) {
    #cookie-banner {
        padding: 1.5rem;
    }
    
    .cookie-content {
        text-align: center;
    }
    
    .cookie-options {
        margin-bottom: 1rem;
    }
    
    .cookie-option {
        padding: 0.75rem;
    }
    
    .cookie-checkbox {
        text-align: left;
    }
    
    .cookie-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .cookie-btn {
        width: 100%;
        max-width: 200px;
    }
}

@media (max-width: 480px) {
    #cookie-banner {
        padding: 1rem;
    }
    
    .cookie-header h3 {
        font-size: 1.1rem;
    }
    
    .cookie-header p {
        font-size: 0.9rem;
    }
    
    .cookie-info strong {
        font-size: 0.95rem;
    }
    
    .cookie-info small {
        font-size: 0.8rem;
    }
    
    .cookie-btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
} 

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  
  .service-card {
    height: auto;
    min-height: 0;
    padding: 0.75rem 0.75rem 0.75rem 3.5rem;
    margin: 0;
    box-sizing: border-box;
    word-break: break-word;
    overflow-wrap: break-word;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
  
  .service-card h3 {
    font-size: 1rem;
    min-height: unset;
    margin-bottom: 0.25rem;
    padding-left: 0;
    line-height: 1.2;
  }
  
  .service-card p {
    font-size: 0.9rem;
    margin-top: 0.25rem;
    line-height: 1.3;
  }
  
  .service-icon {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    width: 32px;
    height: 32px;
  }
} 

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

@media (max-width: 768px) {
  .comparison-grid-new {
    grid-template-columns: 1fr;
    gap: 1rem 0 !important;
  }
  
  .comparison-item {
    min-height: 130px;
    padding: 1.5rem;
    justify-content: flex-start;
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0;
  }
  
  .comparison-item.solution {
    justify-content: center;
  }
  
  .comparison-item h4 {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
    padding-left: 0 !important;
    hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
  }
  
  .comparison-item p {
    font-size: 0.8rem;
    margin: 0;
    hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
  }
  
  /* Hide icons on mobile and remove any padding they might cause */
  .comparison-item .comparison-icon-wrapper {
    display: none !important;
  }
  
  /* Remove any padding that might be caused by hidden icons */
  .comparison-item.solution .comparison-text h4 {
    padding-left: 0 !important;
    margin-left: 0 !important;
  }
  
  /* MOBILE ARROWS - REMOVED */
  .comparison-item.challenge::after {
    display: none !important;
  }
  
  .comparison-item.solution::after {
    display: none !important;
  }
} 

/* Desktop comparison grid - clean and simple */
.comparison-grid-new {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(5, auto);
  gap: 2rem;
  align-items: start;
}



.comparison-item {
  height: 100%;
  min-height: 200px;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 1.5rem;
}

.comparison-item h4 {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
  hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
}

.comparison-item p {
  font-size: 0.95rem;
  line-height: 1.5;
  opacity: 0.9;
  hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
}

 

 

 