:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #8b5cf6;
    --secondary: #10b981;
    --accent: #f59e0b;
    --dark: #1f2937;
    --gray-900: #111827;
    --gray-800: #1f2937;
    --gray-700: #374151;
    --gray-600: #4b5563;
    --gray-500: #6b7280;
    --gray-400: #9ca3af;
    --gray-300: #d1d5db;
    --gray-200: #e5e7eb;
    --gray-100: #f3f4f6;
    --gray-50: #f9fafb;
    --white: #ffffff;
    --font-sans: 'Segoe UI', system-ui, -apple-system, sans-serif;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --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);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --radius: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--white);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--primary-dark);
}

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

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--gray-900);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

@media (min-width: 768px) {
    h1 { font-size: 3.5rem; }
    h2 { font-size: 2.5rem; }
    h3 { font-size: 1.75rem; }
}

.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-200);
    transition: transform 0.3s ease;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
}

.logo:hover {
    color: var(--primary);
}

.nav-links {
    display: none;
    gap: 32px;
}

.nav-links a {
    color: var(--gray-600);
    font-weight: 500;
    transition: color 0.2s ease;
}

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

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gray-800);
    transition: transform 0.3s ease;
}

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

.nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px;
    border-bottom: 1px solid var(--gray-200);
    gap: 16px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

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

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

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

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

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

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary);
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.875rem;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.125rem;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    color: var(--primary);
}

.link-arrow:hover {
    color: var(--primary-dark);
}

.hero-asymmetric {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 120px 20px 60px;
    position: relative;
    overflow: hidden;
}

.hero-content-offset {
    max-width: 600px;
    margin-left: 5%;
    position: relative;
    z-index: 2;
}

.hero-tag {
    display: inline-block;
    padding: 8px 16px;
    background: var(--primary);
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 24px;
}

.hero-asymmetric h1 {
    margin-bottom: 24px;
}

.hero-asymmetric h1 em {
    font-style: normal;
    color: var(--primary);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.hero-visual {
    position: absolute;
    right: -10%;
    top: 50%;
    transform: translateY(-50%);
    width: 50%;
    max-width: 500px;
    opacity: 0.8;
    z-index: 1;
}

.hero-svg {
    width: 100%;
    height: auto;
}

@media (min-width: 768px) {
    .hero-asymmetric {
        flex-direction: row;
        align-items: center;
        padding: 0 20px;
    }

    .hero-content-offset {
        margin-left: 10%;
    }

    .hero-visual {
        right: 5%;
        opacity: 1;
    }
}

.stats-ribbon {
    background: var(--gray-900);
    padding: 40px 20px;
}

.stats-ribbon .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
}

.stat-label {
    display: block;
    font-size: 0.875rem;
    color: var(--gray-400);
    margin-top: 8px;
}

.section-offset-left,
.section-offset-right {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-offset-left .content-block,
.section-offset-right .content-block {
    flex: 1;
}

.section-offset-left .visual-block,
.section-offset-right .visual-block {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 768px) {
    .section-offset-left,
    .section-offset-right {
        flex-direction: row;
        align-items: center;
        padding: 120px 20px;
    }

    .section-offset-left {
        padding-left: 10%;
    }

    .section-offset-right {
        flex-direction: row-reverse;
        padding-right: 10%;
    }
}

.content-block h2 {
    margin-bottom: 24px;
}

.content-block p {
    color: var(--gray-600);
    margin-bottom: 16px;
}

.section-number {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
}

.illustration {
    width: 100%;
    max-width: 300px;
    height: auto;
}

.illustration-circle {
    width: 100%;
    max-width: 300px;
    height: auto;
}

.feature-list {
    margin-top: 24px;
}

.feature-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    color: var(--gray-700);
}

.feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
}

.featured-startups {
    background: var(--gray-50);
    padding: 80px 20px;
}

.section-header-creative {
    margin-bottom: 48px;
}

.section-header-creative h2 {
    margin-bottom: 16px;
}

.section-header-creative p {
    color: var(--gray-600);
    max-width: 600px;
}

.startup-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.startup-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.startup-card-large {
    flex-direction: column;
}

@media (min-width: 768px) {
    .startup-cards {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .startup-card-large {
        flex: 1 1 100%;
        flex-direction: row;
        align-items: center;
    }

    .startup-card:not(.startup-card-large) {
        flex: 1 1 calc(50% - 12px);
    }
}

.card-visual {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
}

.card-visual.small {
    width: 80px;
    height: 80px;
}

.card-visual svg {
    width: 100%;
    height: 100%;
}

.card-category {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary);
    margin-bottom: 8px;
}

.card-content h3 {
    margin-bottom: 8px;
}

.card-content p {
    color: var(--gray-600);
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.card-meta {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.cta-band {
    background: var(--primary);
    padding: 60px 20px;
}

.cta-band .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 8px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
}

@media (min-width: 768px) {
    .cta-band .container {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.testimonials-creative {
    padding: 80px 20px;
}

.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.testimonial {
    background: var(--gray-50);
    padding: 32px;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary);
}

.testimonial-featured {
    background: var(--primary);
    border-left-color: var(--white);
}

.testimonial-featured p {
    color: var(--white);
}

.testimonial-featured footer strong,
.testimonial-featured footer span {
    color: rgba(255, 255, 255, 0.9);
}

.testimonial p {
    font-size: 1.125rem;
    font-style: italic;
    margin-bottom: 16px;
    color: var(--gray-700);
}

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

.testimonial footer strong {
    color: var(--gray-900);
}

.testimonial footer span {
    font-size: 0.875rem;
    color: var(--gray-500);
}

@media (min-width: 768px) {
    .testimonials-grid {
        flex-direction: row;
        align-items: stretch;
    }

    .testimonial {
        flex: 1;
    }
}

.services-preview {
    background: var(--gray-50);
    padding: 80px 20px;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.service-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    position: relative;
}

.service-card-highlight {
    border: 2px solid var(--primary);
}

.service-badge {
    position: absolute;
    top: -12px;
    right: 24px;
    background: var(--primary);
    color: var(--white);
    padding: 6px 16px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 20px;
}

.service-price {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.service-card h3 {
    margin-bottom: 12px;
}

.service-card p {
    color: var(--gray-600);
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    .services-grid {
        flex-direction: row;
    }

    .service-card {
        flex: 1;
    }
}

.services-cta {
    text-align: center;
}

.newsletter-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
}

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

.newsletter-content h2 {
    color: var(--white);
    margin-bottom: 16px;
}

.newsletter-content p {
    color: var(--gray-400);
    margin-bottom: 32px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.newsletter-form input[type="email"] {
    padding: 16px 20px;
    font-size: 1rem;
    border: none;
    border-radius: var(--radius);
    background: var(--white);
}

@media (min-width: 768px) {
    .newsletter-form {
        flex-direction: row;
    }

    .newsletter-form input[type="email"] {
        flex: 1;
    }
}

.final-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    padding: 100px 20px;
    text-align: center;
}

.final-cta h2 {
    color: var(--white);
    margin-bottom: 16px;
}

.final-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.footer {
    background: var(--gray-900);
    padding: 60px 20px 30px;
}

.footer-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    color: var(--white);
    display: inline-block;
    margin-bottom: 16px;
}

.footer-brand p {
    color: var(--gray-400);
    max-width: 300px;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 20px;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--gray-400);
}

.footer-links a:hover {
    color: var(--white);
}

.footer-contact p {
    color: var(--gray-400);
    margin-bottom: 8px;
}

.footer-contact a {
    color: var(--gray-400);
}

.footer-contact a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid var(--gray-800);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: var(--gray-500);
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .footer-grid {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-brand {
        flex: 1.5;
    }

    .footer-links,
    .footer-contact {
        flex: 1;
    }
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--gray-900);
    padding: 20px;
    z-index: 1001;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.cookie-content p {
    color: var(--gray-300);
    text-align: center;
}

.cookie-content a {
    color: var(--primary-light);
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

@media (min-width: 768px) {
    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .cookie-content p {
        text-align: left;
    }
}

.sticky-cta {
    position: fixed;
    bottom: 80px;
    right: 20px;
    background: var(--primary);
    color: var(--white);
    padding: 16px 24px;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: all 0.3s ease;
}

.sticky-cta:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
}

.page-header {
    padding: 140px 20px 60px;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--gray-100) 100%);
}

.page-header-offset {
    padding-left: 10%;
}

.page-tag {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 16px;
}

.page-intro {
    font-size: 1.25rem;
    color: var(--gray-600);
    max-width: 600px;
    margin-top: 24px;
}

.about-story {
    padding-top: 60px;
}

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

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.value-card {
    padding: 32px;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
}

.value-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.value-icon svg {
    width: 100%;
    height: 100%;
}

.value-card h3 {
    margin-bottom: 12px;
}

.value-card p {
    color: var(--gray-600);
}

@media (min-width: 768px) {
    .values-grid {
        flex-direction: row;
    }

    .value-card {
        flex: 1;
    }
}

.team-section {
    background: var(--gray-50);
}

.team-visual {
    width: 100%;
    max-width: 300px;
}

.team-visual svg {
    width: 100%;
    height: auto;
}

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

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

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gray-200);
}

@media (min-width: 768px) {
    .timeline::before {
        left: 50%;
        transform: translateX(-50%);
    }
}

.timeline-item {
    position: relative;
    padding-left: 40px;
    padding-bottom: 40px;
}

.timeline-year {
    position: absolute;
    left: -8px;
    top: 0;
    width: 60px;
    height: 30px;
    background: var(--primary);
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
}

.timeline-content {
    background: var(--gray-50);
    padding: 24px;
    border-radius: var(--radius-lg);
    margin-left: 40px;
}

.timeline-content h3 {
    margin-bottom: 8px;
    font-size: 1.125rem;
}

.timeline-content p {
    color: var(--gray-600);
    font-size: 0.95rem;
}

@media (min-width: 768px) {
    .timeline-item {
        padding-left: 0;
        width: 50%;
    }

    .timeline-item:nth-child(odd) {
        margin-left: 50%;
        padding-left: 40px;
    }

    .timeline-item:nth-child(even) {
        padding-right: 40px;
        text-align: right;
    }

    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 0;
        margin-right: 40px;
    }

    .timeline-year {
        left: -30px;
    }

    .timeline-item:nth-child(even) .timeline-year {
        left: auto;
        right: -30px;
    }
}

.partners-section {
    padding: 60px 20px;
    text-align: center;
}

.partners-section h2 {
    margin-bottom: 40px;
    font-size: 1.5rem;
}

.partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.partner-logo {
    width: 120px;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.partner-logo:hover {
    opacity: 1;
}

.services-main {
    padding: 60px 20px;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.service-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.service-item:hover {
    box-shadow: var(--shadow-lg);
}

.service-item-featured {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.service-header {
    padding: 24px 32px;
    background: var(--gray-50);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.service-item-featured .service-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
}

.service-item-featured .service-header .service-badge {
    background: var(--white);
    color: var(--primary);
}

.service-item-featured .service-header .service-price-large {
    color: var(--white);
}

.service-price-large {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
}

.service-body {
    padding: 32px;
}

.service-body h2 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.service-body > p {
    color: var(--gray-600);
    margin-bottom: 24px;
}

.service-features {
    margin-bottom: 24px;
}

.service-features li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    color: var(--gray-700);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: 700;
}

.comparison-section {
    padding: 60px 20px;
    background: var(--gray-50);
}

.comparison-section h2 {
    text-align: center;
    margin-bottom: 40px;
}

.comparison-table-wrapper {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.comparison-table th,
.comparison-table td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid var(--gray-200);
}

.comparison-table th {
    background: var(--gray-100);
    font-weight: 600;
    color: var(--gray-700);
}

.comparison-table td:first-child {
    font-weight: 500;
    color: var(--gray-800);
}

.comparison-table td:not(:first-child) {
    color: var(--gray-600);
    text-align: center;
}

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

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

.order-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.order-info h2 {
    margin-bottom: 16px;
}

.order-info > p {
    color: var(--gray-600);
    margin-bottom: 32px;
}

.order-benefits {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.benefit-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.benefit-item span {
    color: var(--gray-700);
    font-weight: 500;
}

.order-form {
    background: var(--gray-50);
    padding: 32px;
    border-radius: var(--radius-xl);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--gray-700);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 1rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    background: var(--white);
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.form-checkbox input[type="checkbox"] {
    margin-top: 4px;
    width: 18px;
    height: 18px;
}

.form-checkbox label {
    margin-bottom: 0;
    font-weight: 400;
}

@media (min-width: 768px) {
    .order-wrapper {
        flex-direction: row;
        align-items: flex-start;
    }

    .order-info {
        flex: 1;
        position: sticky;
        top: 100px;
    }

    .order-form {
        flex: 1.2;
    }
}

.faq-section {
    padding: 60px 20px;
    background: var(--gray-50);
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 40px;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.faq-item h3 {
    font-size: 1.125rem;
    margin-bottom: 12px;
    color: var(--gray-800);
}

.faq-item p {
    color: var(--gray-600);
}

@media (min-width: 768px) {
    .faq-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}

.contact-main {
    padding: 60px 20px;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-card {
    background: var(--gray-50);
    padding: 28px;
    border-radius: var(--radius-lg);
}

.contact-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
}

.contact-icon svg {
    width: 100%;
    height: 100%;
}

.contact-card h3 {
    font-size: 1.125rem;
    margin-bottom: 12px;
}

.contact-card p {
    color: var(--gray-600);
    margin-bottom: 4px;
}

.contact-card .text-muted {
    color: var(--gray-500);
    font-size: 0.875rem;
}

.contact-map {
    flex: 1;
}

.map-placeholder {
    background: var(--gray-100);
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 100%;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder svg {
    width: 100%;
    height: 100%;
}

@media (min-width: 768px) {
    .contact-grid {
        flex-direction: row;
    }

    .contact-info {
        flex: 1;
    }

    .contact-map {
        flex: 1.5;
    }
}

.contact-departments {
    padding: 60px 20px;
    background: var(--gray-50);
}

.contact-departments h2 {
    text-align: center;
    margin-bottom: 40px;
}

.departments-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.department-card {
    flex: 1 1 calc(50% - 12px);
    min-width: 250px;
    background: var(--white);
    padding: 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.department-card h3 {
    font-size: 1.125rem;
    margin-bottom: 8px;
}

.department-card p {
    color: var(--gray-600);
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.faq-contact {
    padding: 60px 20px;
}

.faq-contact-content {
    max-width: 800px;
    margin: 0 auto;
}

.faq-contact h2 {
    margin-bottom: 32px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-list .faq-item {
    background: var(--gray-50);
}

.thanks-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 140px 20px 60px;
}

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

.thanks-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 32px;
}

.thanks-icon svg {
    width: 100%;
    height: 100%;
}

.thanks-content h1 {
    margin-bottom: 16px;
    color: var(--secondary);
}

.thanks-message {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: 40px;
}

.order-summary {
    background: var(--gray-50);
    padding: 24px;
    border-radius: var(--radius-lg);
    text-align: left;
    margin-bottom: 40px;
}

.order-summary h3 {
    font-size: 1.125rem;
    margin-bottom: 16px;
    color: var(--gray-800);
}

.order-summary p {
    margin-bottom: 8px;
    color: var(--gray-600);
}

.order-summary strong {
    color: var(--gray-800);
}

.thanks-next-steps {
    text-align: left;
    margin-bottom: 40px;
}

.thanks-next-steps h3 {
    font-size: 1.125rem;
    margin-bottom: 16px;
}

.steps-list {
    counter-reset: steps;
    list-style: none;
}

.steps-list li {
    counter-increment: steps;
    position: relative;
    padding-left: 40px;
    margin-bottom: 12px;
    color: var(--gray-600);
}

.steps-list li::before {
    content: counter(steps);
    position: absolute;
    left: 0;
    top: 0;
    width: 28px;
    height: 28px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 600;
}

.thanks-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
}

.thanks-contact {
    color: var(--gray-500);
    font-size: 0.95rem;
}

.legal-page {
    padding: 140px 20px 60px;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h1 {
    margin-bottom: 16px;
}

.legal-updated {
    color: var(--gray-500);
    margin-bottom: 40px;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--gray-800);
}

.legal-section h3 {
    font-size: 1.125rem;
    margin-top: 24px;
    margin-bottom: 12px;
    color: var(--gray-800);
}

.legal-section p {
    color: var(--gray-600);
    margin-bottom: 12px;
}

.legal-section ul,
.legal-section ol {
    margin-left: 24px;
    margin-bottom: 16px;
}

.legal-section li {
    color: var(--gray-600);
    margin-bottom: 8px;
    list-style-type: disc;
}

.legal-section ol li {
    list-style-type: decimal;
}

.cookies-table-wrapper {
    overflow-x: auto;
    margin: 20px 0;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    overflow: hidden;
}

.cookies-table th,
.cookies-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--gray-200);
    font-size: 0.95rem;
}

.cookies-table th {
    background: var(--gray-100);
    font-weight: 600;
    color: var(--gray-700);
}

.cookies-table td {
    color: var(--gray-600);
}

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

@media (max-width: 767px) {
    .hero-visual {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 100%;
        max-width: 300px;
        margin: 40px auto 0;
    }

    .stats-ribbon .container {
        flex-direction: column;
        gap: 24px;
    }

    .stat-item {
        width: 50%;
    }
}
