@import url(https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Geist:wght@400;500;600;700;800;900&display=swap);

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

:root {
    --color-primary: #719fce;
    --color-primary-dark: #5a88b8;
    --color-secondary: #719fce;
    --color-text: #1a1a1a;
    --color-text-light: #666;
    --color-background: #ffffff;
    --color-background-alt: #f8f9fa;
    --color-border: #e5e7eb;
    --spacing-unit: 8px;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    --font-display: 'Geist', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1)
}

body {
    font-family: var(--font-sans);
    color: var(--color-text);
    background: var(--color-background);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 700
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 calc(var(--spacing-unit) * 3)
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
    z-index: 1000;
    padding: calc(var(--spacing-unit) * 1) 0
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.logo {
    font-size: 26px;
    font-weight: 700;
    color: var(--color-primary);
    text-decoration: none;
    font-family: var(--font-display);
    display: flex;
    align-items: center;
    line-height: 1;
    padding-left: 10px;
    padding-top: 5px;
}

.logo img {
    height: 25px;
    width: auto;
    margin-right: 8px;
    object-fit: contain;
    image-rendering: auto;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

.nav-links {
    display: flex;
    gap: calc(var(--spacing-unit) * 4);
    list-style: none;
    align-items: center
}

.nav-links a {
    color: var(--color-text);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: var(--transition-smooth)
}

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--color-text);
    transition: var(--transition-smooth)
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none
}

.btn-primary {
    background: var(--color-primary);
    color: #fff;
    box-shadow: 0 1px 3px rgba(113, 159, 206, .12)
}

.btn-primary:hover {
    background: var(--color-primary-dark);
    box-shadow: 0 2px 6px rgba(113, 159, 206, .2);
    transform: translateY(-1px)
}

.btn-secondary {
    background: 0 0;
    color: var(--color-text);
    border: 1.5px solid var(--color-border)
}

.btn-secondary:hover {
    background: var(--color-background-alt);
    border-color: var(--color-primary);
    color: var(--color-primary)
}

.btn-large {
    padding: 10px 28px;
    font-size: 15px
}

.btn-nav {
    padding: 6px 16px;
    font-size: 13px
}

.btn-nav2 {
    padding: 6px 16px;
    font-size: 13px;
    color: #fff
}

.btn-block {
    width: 100%;
    text-align: center
}

.btn-disabled {
    background: #e5e7eb !important;
    color: #9ca3af !important;
    cursor: not-allowed !important;
    border-color: #e5e7eb !important
}

.btn-disabled:hover {
    transform: none !important;
    box-shadow: none !important;
    background: #e5e7eb !important
}

.hero {
    padding: calc(var(--spacing-unit) * 8) 0 calc(var(--spacing-unit) * 15);
    margin-top: 60px;
    background: #fff
}

.hero-content {
    max-width: 800px;
    text-align: center;
    margin: 0 auto
}

.hero-title {
    font-size: clamp(48px, 8vw, 72px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: calc(var(--spacing-unit) * 3);
    color: var(--color-text);
    font-family: var(--font-display)
}

.hero-subtitle {
    font-size: clamp(18px, 3vw, 22px);
    color: var(--color-text-light);
    margin-bottom: calc(var(--spacing-unit) * 5);
    line-height: 1.7
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: calc(var(--spacing-unit) * 2);
    margin-bottom: calc(var(--spacing-unit) * 8)
}

.cta-note {
    font-size: 14px;
    color: var(--color-text-light)
}

.hero-visual {
    max-width: 900px;
    margin: 0 auto
}

.hero-mockup {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .1);
    overflow: hidden;
    transition: var(--transition-smooth)
}

.hero-mockup:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, .15)
}

.mockup-header {
    background: #497097;
    padding: 12px 16px;
    border-bottom: 1px solid var(--color-border)
}

.mockup-dots {
    display: flex;
    gap: 8px
}

.mockup-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-border)
}

.mockup-map {
    padding: 0
}

.mockup-screenshot {
    width: 100%;
    height: auto;
    display: block
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto calc(var(--spacing-unit) * 12)
}

.section-title {
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: calc(var(--spacing-unit) * 3);
    text-align: center;
    font-family: var(--font-display)
}

.section-subtitle {
    font-size: clamp(16px, 2.5vw, 20px);
    color: var(--color-text-light);
    line-height: 1.7
}

.feature-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: calc(var(--spacing-unit) * 8);
    align-items: center;
    margin-bottom: calc(var(--spacing-unit) * 15)
}

.feature-block.reverse {
    direction: rtl
}

.feature-block.reverse>* {
    direction: ltr
}

.feature-content {
    padding: calc(var(--spacing-unit) * 4)
}

.feature-title {
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 700;
    margin-bottom: calc(var(--spacing-unit) * 2);
    line-height: 1.3;
    font-family: var(--font-display)
}

.feature-description {
    font-size: 18px;
    color: var(--color-text-light);
    line-height: 1.7
}

.feature-visual {
    height: 100%
}

.visual-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .1);
    transition: var(--transition-smooth);
    height: auto;
    width: 100%;
    max-width: 580px
}

.feature-visual img,
.visual-card img,
img.visual-card {
    width: 100%;
    height: auto;
    display: block;
    max-width: 100%
}

.visual-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, .15)
}

.visual-placeholder {
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center
}

.solutions {
    padding: calc(var(--spacing-unit) * 15) 0;
    background: var(--color-background-alt)
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: calc(var(--spacing-unit) * 4);
    margin-top: calc(var(--spacing-unit) * 8)
}

.solution-card {
    background: #fff;
    padding: calc(var(--spacing-unit) * 5);
    border-radius: 16px;
    border: 1px solid var(--color-border);
    transition: var(--transition-smooth);
    text-align: center
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, .1);
    border-color: var(--color-primary)
}

.solution-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(113, 159, 206, .1);
    border-radius: 16px;
    transition: var(--transition-smooth);
    margin: 0 auto calc(var(--spacing-unit) * 2)
}

.solution-icon svg {
    width: 32px;
    height: 32px;
    color: var(--color-primary);
    transition: var(--transition-smooth)
}

.solution-card:hover .solution-icon {
    background: rgba(113, 159, 206, .15);
    transform: scale(1.05)
}

.solution-card:hover .solution-icon svg {
    transform: scale(1.1)
}

.solution-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: calc(var(--spacing-unit) * 2)
}

.solution-card p {
    color: var(--color-text-light);
    line-height: 1.7
}

.testimonials {
    padding: calc(var(--spacing-unit) * 15) 0
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: calc(var(--spacing-unit) * 4);
    margin-top: calc(var(--spacing-unit) * 8)
}

.testimonial-card {
    background: var(--color-background-alt);
    padding: calc(var(--spacing-unit) * 5);
    border-radius: 16px;
    border: 1px solid var(--color-border)
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    margin-bottom: calc(var(--spacing-unit) * 4)
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: calc(var(--spacing-unit) * 2)
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px
}

.author-name {
    font-weight: 600;
    margin-bottom: 4px
}

.author-title {
    font-size: 14px;
    color: var(--color-text-light)
}

.cta-trial {
    padding: calc(var(--spacing-unit) * 15) 0;
    background: rgba(113, 159, 206, .03);
    text-align: center;
    position: relative;
    overflow: hidden
}

.cta-trial::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(113, 159, 206, .05) 0, transparent 70%);
    pointer-events: none
}

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

.cta-trial-title {
    font-size: clamp(36px, 6vw, 52px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: calc(var(--spacing-unit) * 3);
    color: var(--color-text);
    font-family: var(--font-display)
}

.cta-trial-subtitle {
    font-size: clamp(18px, 2.5vw, 22px);
    color: var(--color-text-light);
    margin-bottom: calc(var(--spacing-unit) * 6);
    line-height: 1.6
}

.cta-trial-button {
    display: inline-flex;
    align-items: center;
    gap: calc(var(--spacing-unit) * 1.5);
    margin-bottom: calc(var(--spacing-unit) * 3);
    box-shadow: 0 2px 8px rgba(113, 159, 206, .2)
}

.cta-trial-button:hover {
    box-shadow: 0 4px 12px rgba(113, 159, 206, .3)
}

.cta-trial-note {
    font-size: 15px;
    color: var(--color-text-light);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: calc(var(--spacing-unit))
}

.cta-trial-note::before {
    content: '✓';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: #43e97b;
    color: #fff;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700
}

.pricing {
    padding: calc(var(--spacing-unit) * 15) 0;
    background: var(--color-background-alt)
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: calc(var(--spacing-unit) * 2);
    margin: calc(var(--spacing-unit) * 6) 0
}

.toggle-label {
    font-size: 16px;
    font-weight: 500;
    color: var(--color-text-light)
}

.toggle-switch {
    position: relative;
    width: 56px;
    height: 28px;
    cursor: pointer
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0
}

.toggle-slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-border);
    border-radius: 28px;
    transition: var(--transition-smooth)
}

.toggle-slider::before {
    content: '';
    position: absolute;
    width: 22px;
    height: 22px;
    left: 3px;
    bottom: 3px;
    background: #fff;
    border-radius: 50%;
    transition: var(--transition-smooth)
}

.toggle-switch input:checked+.toggle-slider {
    background: var(--color-primary)
}

.toggle-switch input:checked+.toggle-slider::before {
    transform: translateX(28px)
}

.toggle-badge {
    background: var(--color-primary);
    color: #fff;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: calc(var(--spacing-unit) * 3);
    margin-top: calc(var(--spacing-unit) * 8)
}

.pricing-card {
    background: #fff;
    padding: calc(var(--spacing-unit) * 4);
    border-radius: 16px;
    border: 2px solid var(--color-border);
    position: relative;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .1)
}

.pricing-card.featured {
    border-color: var(--color-primary);
    box-shadow: 0 20px 60px rgba(102, 126, 234, .2)
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary);
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600
}

.pricing-name {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: calc(var(--spacing-unit));
    font-family: var(--font-display)
}

.pricing-description {
    color: var(--color-text-light);
    margin-bottom: calc(var(--spacing-unit) * 3);
    font-size: 14px;
    min-height: 40px
}

.pricing-price {
    margin-bottom: calc(var(--spacing-unit) * 3)
}

.price-amount {
    font-size: 40px;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1
}

.price-period {
    font-size: 14px;
    color: var(--color-text-light)
}

.pricing-features {
    list-style: none;
    margin-bottom: calc(var(--spacing-unit) * 4);
    flex: 1
}

.pricing-features li {
    padding: calc(var(--spacing-unit) * 1.5) 0;
    border-bottom: 1px solid var(--color-border);
    color: var(--color-text);
    font-size: 14px
}

.pricing-features li:last-child {
    border-bottom: none
}

.pricing-card .btn-block {
    margin-top: auto
}

.cta-section {
    padding: calc(var(--spacing-unit) * 15) 0;
    background: var(--color-primary);
    color: #fff;
    text-align: center
}

.cta-title {
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: calc(var(--spacing-unit) * 3);
    font-family: var(--font-display)
}

.cta-subtitle {
    font-size: clamp(16px, 2.5vw, 20px);
    opacity: .9;
    margin-bottom: calc(var(--spacing-unit) * 5);
    line-height: 1.7
}

.cta-section .btn-primary {
    background: #fff;
    color: var(--color-primary)
}

.cta-section .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(255, 255, 255, .3)
}

.cta-section .cta-note {
    color: #fff;
    opacity: .8
}

.footer {
    background: var(--color-text);
    color: #fff;
    padding: calc(var(--spacing-unit) * 10) 0 calc(var(--spacing-unit) * 4)
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: calc(var(--spacing-unit) * 6);
    margin-bottom: calc(var(--spacing-unit) * 6)
}

.footer-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: calc(var(--spacing-unit) * 2);
    color: var(--color-primary)
}

.footer-subtitle {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: calc(var(--spacing-unit) * 2)
}

.footer-description {
    opacity: .7;
    line-height: 1.7
}

.footer-links {
    list-style: none
}

.footer-links li {
    margin-bottom: calc(var(--spacing-unit))
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    opacity: .7;
    transition: var(--transition-smooth)
}

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

.footer-bottom {
    text-align: center;
    padding-top: calc(var(--spacing-unit) * 4);
    border-top: 1px solid rgba(255, 255, 255, .1);
    opacity: .5
}

@media (max-width:1200px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: calc(var(--spacing-unit) * 3)
    }
}

@media (max-width:968px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, .98);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        border-bottom: 1px solid var(--color-border);
        box-shadow: 0 10px 30px rgba(0, 0, 0, .1)
    }

    .nav-links.active {
        display: flex
    }

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid var(--color-border)
    }

    .nav-links li:last-child {
        border-bottom: none
    }

    .nav-links a {
        display: block;
        padding: 15px 0;
        font-size: 16px
    }

    .mobile-menu-toggle {
        display: flex;
        z-index: 1001
    }

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

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px)
    }

    .feature-block,
    .feature-block.reverse {
        grid-template-columns: 1fr;
        gap: calc(var(--spacing-unit) * 6)
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: calc(var(--spacing-unit) * 4)
    }
}

@media (max-width:640px) {
    .hero {
        padding: calc(var(--spacing-unit) * 12) 0 calc(var(--spacing-unit) * 8)
    }

    .pricing-grid,
    .solutions-grid,
    .testimonials-grid {
        grid-template-columns: 1fr
    }

    .footer-content {
        grid-template-columns: 1fr
    }
}

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

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.feature-block,
.hero-content,
.hero-visual,
.pricing-card,
.solution-card,
.testimonial-card {
    animation: fadeInUp .6s ease-out
}

@viewport {
    width: device-width;
    zoom: 1
}

@media (max-width:768px) {
    .container {
        padding: 0 20px
    }

    .navbar {
        padding: 10px 0;
        position: relative
    }

    .nav-wrapper {
        flex-wrap: nowrap
    }

    .logo {
        font-size: 20px
    }

    .nav-links {
        display: none !important;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 20px;
        gap: 0;
        border-bottom: 1px solid var(--color-border);
        box-shadow: 0 10px 30px rgba(0, 0, 0, .1);
        z-index: 9999;
        max-height: calc(100vh - 60px);
        overflow-y: auto
    }

    .nav-links.active {
        display: flex !important
    }

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid var(--color-border)
    }

    .nav-links li:last-child {
        border-bottom: none
    }

    .nav-links a {
        display: block;
        padding: 15px 0;
        font-size: 16px
    }

    .mobile-menu-toggle {
        display: flex !important;
        z-index: 10000
    }

    .hero {
        padding: 80px 0 60px;
        margin-top: 60px
    }

    .hero-title {
        font-size: 32px !important;
        line-height: 1.2
    }

    .hero-subtitle {
        font-size: 16px !important;
        line-height: 1.6
    }

    .hero-cta {
        flex-direction: column;
        gap: 15px
    }

    .btn-large {
        font-size: 15px;
        padding: 14px 28px
    }

    .mockup-browser {
        max-width: 100%
    }

    .mockup-screenshot {
        border-radius: 0 0 12px 12px
    }

    .feature-block {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 60px
    }

    .feature-block.reverse {
        grid-template-columns: 1fr
    }

    .feature-title {
        font-size: 24px !important
    }

    .feature-description {
        font-size: 16px
    }

    .feature-visual {
        width: 100%;
        overflow: hidden
    }

    .feature-visual .visual-card,
    .visual-card {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box
    }

    .feature-visual img,
    .visual-card img,
    img.visual-card {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        display: block;
        box-sizing: border-box
    }

    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 20px
    }

    .section-title {
        font-size: 28px !important
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px
    }

    .cta-section {
        padding: 60px 30px
    }

    .cta-title {
        font-size: 28px !important
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px
    }

    body {
        overflow-x: hidden
    }

    * {
        max-width: 100%;
        box-sizing: border-box
    }

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

@media (max-width:480px) {
    .hero-title {
        font-size: 28px !important
    }

    .section-title {
        font-size: 24px !important
    }

    .btn-large {
        width: 100%;
        text-align: center
    }

    .stats-grid {
        grid-template-columns: 1fr
    }
}

@supports (-webkit-touch-callout:none) {
    .hero {
        min-height: -webkit-fill-available
    }
}

@media (max-width:768px) and (orientation:landscape) {
    .hero {
        padding: 60px 0 40px
    }
}