* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Montserrat, sans-serif;
}

:root {
    --btn-gradient: linear-gradient(30deg, #2652B9, #2652B9, #E24012, #FE7505);
}

.bg-orange-gradient {
    background-image: radial-gradient(62.34% 62.34% at 83.12% 18.18%, #E24012 0%, #FE7505 100%);
}

.btn-gradient {
    width: 30%;
}

.top-navigation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 15px 20px;
}

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

.nav-logo {
    height: 40px;
}

.nav-logo img {
    height: 100%;
    width: auto;
}

.nav-button {
    background-color: #4F6BFF;
    color: white;
    padding: 10px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
}

.nav-button:hover {
    background-color: #3d54cc;
    transform: translateY(-2px);
}

body {
    padding-top: 70px;
}

@media (max-width: 768px) {
    .top-navigation {
        padding: 12px 15px;
    }

    .nav-logo {
        height: 32px;
    }

    .nav-button {
        padding: 8px 20px;
        font-size: 13px;
    }

    body {
        padding-top: 60px;
    }
}

.btn-gradient:hover,
.btn-gradient:focus {
    background-position: left;
}

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

.hero {
    position: relative;
    height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.hero-background > picture > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}


.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}

.hero-content {
    max-width: 900px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero h2 {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.6;
}

.cta-button {
    width: 300px;
    margin: 0 auto;
    background-image: var(--btn-gradient);
    background-size: 500%;
    background-position: right;
    transition: background-position 1s, color 400ms;
    transition-timing-function: ease;
    border-radius: 100vw;
    justify-content: center;
    align-items: center;
    padding: 1rem 2rem;
    display: flex;
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.cta-button-nav {
    width: 250px;
    background-image: var(--btn-gradient);
    background-size: 500%;
    background-position: right;
    transition: background-position 1s, color 400ms;
    transition-timing-function: ease;
    border-radius: 100vw;
    justify-content: center;
    align-items: center;
    padding: 1rem 2rem;
    display: flex;
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.cta-button:hover, .cta-button-nav:hover {
    background-position: left;
}

.why-choose {
    padding: 80px 20px;
    background: #f8f9fa;
    text-align: center;
}

.why-choose h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: #fb6d07;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 32px;
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
    font-size: 15px;
}

.demo-section {
    padding: 80px 20px;
}

.demo-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
}

.demo-content {
    background: #007dfe33;
    padding: 2rem;
}

.demo-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.demo-info {
    margin-bottom: 40px;
}

.demo-info p {
    color: #666;
    line-height: 1.7;
    font-size: 16px;
    margin-bottom: 30px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: #333;
    font-size: 15px;
}

.check-icon {
    width: 24px;
    height: 24px;
    background: #fb6d07;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    font-size: 14px;
    flex-shrink: 0;
}

.demo-details {
    background: #f8f9fa;
    padding: 24px;
    border-radius: 8px;
    margin-top: 30px;
}

.demo-details p {
    color: #666;
    font-size: 14px;
    margin-bottom: 8px;
}

.demo-details strong {
    color: #1a1a1a;
}

.calendly-embed {
    background: white;
    border-radius: 12px;
    height: 600px;
    overflow: hidden;
}

.calendly-inline-widget {
    min-width: 100%;
    height: 100%;
}

@media (max-width: 968px) {
    .hero h1 {
        font-size: 36px;
    }

    .demo-container {
        grid-template-columns: 1fr;
    }

    .why-choose h2,
    .demo-content h2 {
        font-size: 32px;
    }

    .calendly-embed {
        height: 1000px;
    }
}

.projects-showcase {
    padding: 80px 20px;
    background: #f8f9fa;
    text-align: center;
}

.projects-showcase h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    grid-auto-rows: 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch;
}

.project-card {
    background: #f4d2b6;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.project-header {
    padding: 30px 30px 20px;
    border-bottom: 1px solid #eee;
    flex-shrink: 0;
}

.project-icon {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.project-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.project-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.project-desc {
    color: #666;
    line-height: 1.6;
    font-size: 15px;
    min-height: 72px;
}

.project-body {
    padding: 30px;
    text-align: left;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.project-subtitle {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1a1a1a;
    min-height: 50px;
}

.project-summary {
    color: #666;
    line-height: 1.6;
    font-size: 15px;
    margin-bottom: 25px;
    flex-grow: 1;
}

.feedback-block {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-top: auto;
}

.feedback-text {
    font-style: italic;
    color: #444;
    line-height: 1.7;
    margin-bottom: 20px;
    min-height: 80px;
}

.customer-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.customer-avatar {
    width: 40px;
    height: 40px;
    background: #fb6d07;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
}

.customer-details {
    display: flex;
    flex-direction: column;
}

.customer-name {
    font-weight: 600;
    color: #1a1a1a;
}

.customer-role {
    font-size: 14px;
    color: #666;
}

.project-footer {
    padding: 20px 10px;
    border-top: 1px solid #eee;
    background: #f8f9fa;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.project-meta {
    display: flex;
    gap: 20px;
}

.meta-item {
    display: flex;
    flex-direction: column;
}

.meta-label {
    font-size: 12px;
    color: #888;
    margin-bottom: 4px;
}

.meta-value {
    font-weight: 600;
    color: #1a1a1a;
}

.project-link {
    color: #fb6d07;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
}


@media (max-width: 768px) {
    .calendly-inline-widget {
        max-width: 100%;
    }

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

    .project-footer {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .feedback-text {
        min-height: auto;
    }
}