@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Space+Grotesk:wght@500;700&display=swap');

html {
    scroll-padding-top: 100px;
}

:root {
    --primary: #0f172a;
    --primary-light: #1e293b;
    --accent: #3b82f6;
    --accent-hover: #2563eb;
    --text-main: #0f172a;
    --text-muted: #475569;
    --bg-body: #f8fafc;
    --bg-card: #ffffff;
    --border: #cbd5e1;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --radius: 4px;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.7;
    font-size: 17px;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -0.02em;
}

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

.navbar {
    background: var(--primary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    height: 100px;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo img {
    height: 90px;
    width: auto;
}

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

.nav-menu a {
    text-decoration: none;
    color: #cbd5e1;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.nav-menu a:hover {
    color: white;
}

.nav-menu a::after {
    display: none;
}

.btn-login {
    background-color: var(--accent);
    color: white !important;
    padding: 0.5rem 1.25rem;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: background-color 0.2s;
    border: 1px solid var(--accent);
}

.btn-login:hover {
    background-color: var(--accent-hover);
    border-color: var(--accent-hover);
    box-shadow: none;
    transform: none;
}

.btn-login-outline {
    background-color: transparent;
    color: var(--accent) !important;
    padding: 0.5rem 1.25rem;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: background-color 0.2s, color 0.2s, border-color 0.2s;
    border: 1px solid var(--accent);
}

.btn-login-outline:hover {
    background-color: var(--accent);
    color: white !important;
    border-color: var(--accent);
    box-shadow: none;
    transform: none;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
}

.hero {
    padding-top: 160px;
    padding-bottom: 100px;
    background: radial-gradient(circle at top right, #f1f5f9 0%, transparent 40%),
                radial-gradient(circle at bottom left, #f1f5f9 0%, transparent 40%);
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.hero-content h1 span {
    color: var(--accent);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

.btn-primary {
    background-color: var(--accent);
    color: white;
    padding: 0.875rem 2rem;
    border-radius: var(--radius);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: var(--shadow-md);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: white;
    color: var(--primary);
    padding: 0.875rem 2rem;
    border-radius: var(--radius);
    font-weight: 600;
    text-decoration: none;
    border: 1px solid var(--border);
    transition: all 0.2s;
}

.btn-secondary:hover {
    background-color: #f8fafc;
    border-color: #cbd5e1;
}

.hero-image {
    position: relative;
    perspective: 1000px;
}

.monitor-frame {
    background: #0f172a;
    padding: 14px 14px 0 14px;
    border-radius: 14px 14px 0 0;
    box-shadow: 0 35px 60px -15px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.05);
    transition: transform 0.5s ease;
    border: 1px solid #1e293b;
}

.monitor-frame:hover {
    transform: translateY(-4px);
}

.monitor-screen {
    background: #ffffff;
    border-radius: 4px 4px 0 0;
    overflow: hidden;
    aspect-ratio: 16/10;
    position: relative;
}

.monitor-screen img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    background-color: #ffffff;
}

.monitor-stand {
    height: 40px;
    width: 120px;
    background: #cbd5e1;
    margin: 0 auto;
    position: relative;
    z-index: -1;
    background: linear-gradient(to bottom, #334155, #1e293b);
    border-radius: 0 0 8px 8px;
}

.monitor-base {
    height: 8px;
    width: 200px;
    background: #1e293b;
    margin: 0 auto;
    border-radius: 4px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.about {
    padding: 100px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.125rem;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 1.5rem;
}

.bento-item {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.5rem;
    transition: all 0.3s ease;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto 1fr;
    column-gap: 1.5rem;
    row-gap: 1.5rem;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.bento-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary);
    opacity: 0;
    transition: opacity 0.3s;
}

.bento-item:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

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

.bento-item.large {
    grid-column: span 2;
    background: white;
}

.bento-icon {
    width: 56px;
    height: 56px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--accent);
    margin-bottom: 0;
    border: 1px solid rgba(59, 130, 246, 0.2);
    grid-row: 1;
    grid-column: 1;
}

.bento-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    grid-row: 1;
    grid-column: 2;
    margin: 0;
}

.bento-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    grid-row: 2;
    grid-column: 1 / -1;
    margin: 0;
}

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

.feature-card {
    padding: 1.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: white;
}

.feature-card h3 {
    margin: 1rem 0 0.5rem;
    color: var(--primary);
    font-weight: 600;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.for-who {
    padding: 80px 0 40px;
    background-color: var(--primary);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.mobile-app {
    padding: 100px 0;
    background: white;
}

.mobile-app .section-header h2 {
    color: var(--text-main);
}

.mobile-app .section-header p {
    color: var(--text-muted);
}

.mobile-app-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.mobile-app-phone {
    display: flex;
    justify-content: center;
    background: transparent;
}

.mobile-app-phone img {
    max-width: 350px;
    height: auto;
    filter: none;
    background: transparent;
}

.mobile-app-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-feature-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--accent);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    color: white;
    font-size: 1.25rem;
}

.feature-content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.feature-content p {
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.coming-soon {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #3b82f6;
    padding: 0.75rem 1.25rem;
    border-radius: 6px;
    color: white;
    font-weight: 500;
    font-size: 0.9375rem;
    margin-top: 1.5rem;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.coming-soon i {
    font-size: 1.25rem;
    color: white;
}

.for-who::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.5;
    pointer-events: none;
}

.for-who h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    letter-spacing: -0.025em;
    position: relative;
    z-index: 1;
}

.for-who .section-description {
    max-width: 700px;
    margin: 0 auto;
    color: #cbd5e1;
    font-size: 1.25rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

footer {
    background: var(--primary);
    color: white;
    padding: 4rem 0 2rem;
}

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

.footer-brand .logo img {
    height: 100px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: #94a3b8;
    max-width: 300px;
}

.footer-col h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #e2e8f0;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 2rem;
    text-align: center;
    color: #64748b;
    font-size: 0.875rem;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
    will-change: opacity, transform;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal.delay-100 { transition-delay: 0.1s; }
.reveal.delay-200 { transition-delay: 0.2s; }
.reveal.delay-300 { transition-delay: 0.3s; }
.reveal.delay-400 { transition-delay: 0.4s; }

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        margin: 0 auto 2rem;
    }

    .hero-actions {
        justify-content: center;
    }

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

    .bento-item.large {
        grid-column: span 1;
    }
    
    .mobile-app-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .mobile-app-phone img {
        max-width: 280px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }

    .nav-menu.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100px;
        left: 0;
        width: 100%;
        background: var(--primary);
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        animation: slideDown 0.3s ease forwards;
    }

    .nav-menu.active a {
        color: white;
        font-size: 1.1rem;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        width: 100%;
        text-align: center;
    }

    .nav-menu.active a:hover {
        color: var(--accent);
    }

    @keyframes slideDown {
        from { opacity: 0; transform: translateY(-10px); }
        to { opacity: 1; transform: translateY(0); }
    }
}

.integrations {
    padding: 40px 0 80px;
    background-color: var(--primary);
    border-bottom: 1px solid #1e293b;
}

.integrations h3 {
    text-align: center;
    margin-bottom: 3rem;
    color: #94a3b8;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.875rem;
}

.integrations .container {
    max-width: 1500px;
}

.integrations-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
    mask-image: linear-gradient(to right, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
}

.integrations-track {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    width: max-content;
    animation: integrations-scroll 35s linear infinite;
}

.integrations-marquee:hover .integrations-track {
    animation-play-state: paused;
}

@keyframes integrations-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
    .integrations-track {
        animation: none;
    }
}

.integrations-track .integration-logo {
    flex: 0 0 auto;
}

.integration-logo {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.25rem 1.25rem;
    border-radius: var(--radius);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.integration-logo:has(img[src*="ksef"]) {
    padding: 1rem 1.5rem;
}

.integration-logo:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    border-color: var(--accent);
}

.integration-logo img {
    height: 32px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: all 0.3s;
}

.integration-logo img[src*="ksef"] {
    height: 48px;
    width: 120px;
    object-fit: contain;
}

.integration-logo img[src*="dpd"],
.integration-logo img[src*="wysylam-z-allegro"] {
    height: 56px;
    width: 140px;
    object-fit: contain;
}

.integration-logo:has(img[src*="dpd"]),
.integration-logo:has(img[src*="wysylam-z-allegro"]) {
    padding: 0.5rem 1rem;
}

.integration-logo:hover img {
    opacity: 1;
    transform: scale(1.05);
}

.pricing {
    padding: 100px 0;
    background: white;
    overflow: visible;
}

.pricing .container {
    max-width: 1600px;
    padding: 0 2rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    margin: 0 auto;
}

@media (max-width: 1400px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 1000px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 640px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

.pricing-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.75rem 1.5rem;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.pricing-card.featured {
    border: 2px solid var(--accent);
    box-shadow: var(--shadow-lg);
    z-index: 1;
}

.pricing-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 100%;
    background: var(--accent);
    border-radius: 0;
}

.pricing-card.featured::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--accent);
    border-radius: 0;
}

.pricing-card.featured:hover {
    transform: translateY(-5px);
}

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

.price {
    margin-bottom: 0.5rem;
}

.amount {
    font-size: 2.2rem;
    font-weight: 800;
}

.period {
    color: var(--text-muted);
}

.price-yearly {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.features li {
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
}

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

.btn-pricing {
    display: block;
    width: 100%;
    padding: 0.875rem;
    background: white;
    color: var(--primary);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-pricing:hover {
    background: #f8fafc;
    border-color: var(--primary);
}

.pricing-card.featured .btn-pricing {
    background: var(--accent);
    color: white;
    border: none;
}

.pricing-card.featured .btn-pricing:hover {
    background: var(--accent-hover);
}

.pricing-card.featured .badge {
    background: var(--accent);
}

.badge {
    position: absolute;
    top: 14px;
    right: -30px;
    background: var(--accent);
    color: white;
    padding: 0.35rem 2.5rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-align: center;
    transform: rotate(45deg);
    box-shadow: 0 2px 8px rgba(0,0,0,0.25);
    z-index: 2;
    white-space: nowrap;
}

.pricing-note {
    text-align: center;
    margin-top: 2rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-style: italic;
}

.faq {
    padding: 100px 0;
    background: #f8fafc;
}

.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 3rem;
    letter-spacing: -0.025em;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: none;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
}

.faq-item.faq-open {
    border-color: var(--accent);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    cursor: pointer;
    transition: all 0.2s;
}

.faq-question:hover {
    color: var(--accent);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--accent);
    transition: transform 0.3s ease;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.1);
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: var(--text-muted);
    line-height: 1.7;
}

.faq-item.faq-open .faq-answer {
    padding: 0 2rem 2rem;
    max-height: 500px; /* Increased to accommodate longer answers */
}

.faq-item.faq-open .faq-icon {
    transform: rotate(45deg);
}

.contact {
    padding: 100px 0;
    background: white;
    text-align: center;
}

.contact-email {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 8px;
    transition: all 0.2s;
    display: inline-block;
    margin-top: 1rem;
}

.contact-email:hover {
    color: var(--accent-hover);
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .contact-email {
        font-size: 1.1rem;
        word-break: break-all;
        padding: 0 1rem;
        line-height: 1.4;
    }
}

.breadcrumb-section {
    padding-top: 120px;
    padding-bottom: 1rem;
    background: white;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.breadcrumb a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: var(--accent-hover);
    text-decoration: underline;
}

.breadcrumb span:last-child {
    color: var(--text-main);
    font-weight: 500;
}

.hero-simple {
    padding: 3rem 0 4rem;
    background: white;
    text-align: center;
}

.hero-simple h1 {
    font-size: 2.75rem;
    line-height: 1.2;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.steps-timeline {
    padding: 4rem 0;
    background: #f8fafc;
}

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

.timeline::before {
    content: '';
    position: absolute;
    left: 50px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent), transparent);
}

.timeline-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    position: relative;
}

.timeline-icon {
    width: 80px;
    height: 80px;
    background: white;
    border: 3px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--accent);
    box-shadow: 0 4px 10px rgba(59, 130, 246, 0.2);
    position: relative;
    z-index: 2;
}

.timeline-number {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-muted);
    background: white;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 0.25rem 0.75rem;
}

.timeline-content {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}

.timeline-content:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.timeline-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.timeline-content p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.timeline-content p:last-of-type {
    margin-bottom: 1.5rem;
}

.btn-step {
    display: inline-block;
    background-color: var(--accent);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: var(--shadow-md);
}

.btn-step:hover {
    background-color: var(--accent-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-main);
    font-size: 0.95rem;
}

.feature-list i {
    color: var(--accent);
    font-size: 1rem;
    flex-shrink: 0;
}

.info-box {
    background: rgba(59, 130, 246, 0.05);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: var(--radius);
    padding: 1.25rem;
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.info-box i {
    color: var(--accent);
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.info-box strong {
    color: var(--primary);
}

.bonus-features {
    padding: 5rem 0;
    background: white;
}

.bonus-features h2 {
    text-align: center;
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 3rem;
    letter-spacing: -0.025em;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.bonus-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    transition: all 0.3s;
}

.bonus-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.bonus-icon {
    width: 60px;
    height: 60px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

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

.bonus-card p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.faq-inline {
    padding: 5rem 0;
    background: #f8fafc;
}

.faq-inline h2 {
    text-align: center;
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 3rem;
    letter-spacing: -0.025em;
}

.cta-section {
    padding: 5rem 0;
    background: transparent;
    text-align: center;
    margin-bottom: 0;
}

.cta-section .container {
    background: white;
    padding: 4rem 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border);
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
}

.cta-section p {
    color: var(--text-muted);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.nav-menu a.active {
    color: white;
    position: relative;
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent);
}

@media (max-width: 1024px) {
    .bonus-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .timeline::before {
        left: 40px;
    }
    
    .timeline-item {
        grid-template-columns: 80px 1fr;
        gap: 1.5rem;
    }
    
    .timeline-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-simple h1 {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .bonus-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline::before {
        display: none;
    }
    
    .timeline-item {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 3rem;
    }
    
    .timeline-marker {
        flex-direction: row;
        justify-content: flex-start;
    }
    
    .timeline-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
        border-width: 2px;
    }
    
    .cta-section h2 {
        font-size: 1.75rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons a {
        width: 100%;
        text-align: center;
    }

    .contact-wrapper {
        flex-direction: column;
    }

    .contact-form-container {
        margin-right: 0;
        margin-bottom: 2rem;
    }

    .form-row {
        flex-direction: column;
    }

    .form-row .form-group {
        width: 100%;
    }
}

.contact-wrapper {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-form-container {
    flex: 1;
    margin-right: 2rem;
}

#contactForm {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
}

.form-group label {
    font-weight: 600;
    color: var(--text-main);
    font-size: 0.95rem;
}

.form-group label .required {
    color: #ef4444;
    font-weight: 700;
}

.form-group label small {
    color: var(--text-muted);
    font-weight: 400;
}

.form-row {
    display: flex;
    gap: 1.5rem;
    width: 100%;
}

.form-row .form-group {
    flex: 1;
}

.form-group input,
.form-group textarea {
    padding: 0.875rem 1rem;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: var(--bg-card);
    color: var(--text-main);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group textarea {
    resize: none;
    min-height: 140px;
}

.btn-submit {
    background: var(--accent);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    font-family: 'Space Grotesk', sans-serif;
    width: auto;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-submit:hover:not(:disabled) {
    background: var(--accent-hover);
    transform: translateY(-1px);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.contact-info {
    flex: 0 0 320px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
    padding: 1.5rem;
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.contact-info-item i {
    font-size: 1.5rem;
    color: var(--accent);
}

.contact-info-item h4 {
    margin: 0 0 0.25rem 0;
    font-size: 1.1rem;
    color: var(--text-main);
}

.contact-info-item p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.6;
}

.contact-info-item a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.2s;
}

.contact-info-item a:hover {
    color: var(--accent-hover);
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: var(--radius);
    font-weight: 500;
}

.form-message.success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #6ee7b7;
}

.form-message.error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

.grecaptcha-badge {
    visibility: hidden !important;
}

