* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Century Schoolbook', 'New Century Schoolbook', 'Century Old Style', 'Century Gothic', Century, 'Times New Roman', serif;
}

:root {
    --pumpkin: #FF7518;
    --pumpkin-light: #FF8C42;
    --pumpkin-dark: #E85D04;
    --pumpkin-bright: #FF6B35;
    --pumpkin-red: #D84315;
    --pumpkin-yellow: #FFA726;
    --pumpkin-orange: #FF8A50;
    --pumpkin-deep: #BF360C;
    --turquoise: #40E0D0;
    --purple: #9B59B6;
    --white: #FFFFFF;
    --white-off: #FAFAFA;
    --black: #000000;
}

html {
    height: 100%;
    min-height: 100%;
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    line-height: 1.6;
    color: var(--black);
    background-image: url('background.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    overflow-x: hidden;
    position: relative;
    margin: 0;
    padding: 0;
}

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

/* Header */
.header {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 250, 250, 0.95) 100%);
    padding: 1.5rem 0;
    border: none;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(255, 117, 24, 0.1);
}

.header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 117, 24, 0.3), rgba(255, 117, 24, 0.5), rgba(255, 117, 24, 0.3), transparent);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.logo-text {
    font-family: Arial, sans-serif;
    font-size: 1.75rem;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--black);
    letter-spacing: 0.05em;
}

.logo-dot {
    font-family: Arial, sans-serif;
    text-transform: uppercase;
    color: var(--black);
}

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

.nav-link {
    font-family: Arial, sans-serif;
    color: var(--black);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, color-mix(in srgb, var(--pumpkin-red) 98%, var(--purple) 2%) 0%, color-mix(in srgb, var(--pumpkin-yellow) 98%, var(--turquoise) 2%) 100%);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--black);
}

.nav-link:hover::after {
    width: 100%;
}

.lawyer-link {
    text-decoration: underline;
    color: inherit;
}

.lawyer-link:hover {
    color: var(--black);
}

/* Cycling Hero Section */
.cycling-hero-section {
    padding: 4rem 0 0 0;
    margin-top: 80px;
    background: transparent;
    position: relative;
    z-index: 2;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cycling-hero-container {
    text-align: center;
    width: 100%;
}

.cycling-hero-text {
    font-family: Arial, sans-serif;
    font-size: clamp(0.83rem, 2vw, 1.67rem);
    font-weight: 900;
    text-transform: uppercase;
    color: var(--white);
    letter-spacing: 0.1em;
    line-height: 1.2;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.cycling-hero-text.fade-out {
    opacity: 0;
}

/* Intro Section */
.intro-section {
    padding: 4rem 0;
    background: transparent;
    position: relative;
    z-index: 2;
}

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

.intro-text {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    line-height: 1.8;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.intro-text:last-child {
    margin-bottom: 0;
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: transparent;
    position: relative;
    z-index: 2;
}


.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--white);
    letter-spacing: -0.02em;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.service-card {
    background: linear-gradient(135deg, var(--white) 0%, var(--white-off) 100%);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(255, 117, 24, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: none;
    text-align: center;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, color-mix(in srgb, var(--pumpkin-red) 98%, var(--purple) 2%) 0%, var(--pumpkin) 50%, color-mix(in srgb, var(--pumpkin-yellow) 98%, var(--turquoise) 2%) 100%);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(255, 117, 24, 0.2);
    background: linear-gradient(135deg, var(--white-off) 0%, var(--white) 100%);
}

.service-icon {
    margin-bottom: 2rem;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-code,
.icon-ai {
    font-size: 3rem;
    font-weight: 900;
    color: var(--black);
    letter-spacing: 0.1em;
}

.service-name {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.service-description {
    font-size: 1.1rem;
    color: var(--black);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.service-btn {
    width: 100%;
    padding: 1.25rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    background: linear-gradient(135deg, color-mix(in srgb, var(--pumpkin-red) 98%, var(--purple) 2%) 0%, var(--pumpkin) 50%, color-mix(in srgb, var(--pumpkin-yellow) 98%, var(--turquoise) 2%) 100%);
    color: var(--black);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.service-btn:hover {
    background: linear-gradient(135deg, color-mix(in srgb, var(--pumpkin-yellow) 98%, var(--turquoise) 2%) 0%, var(--pumpkin) 50%, color-mix(in srgb, var(--pumpkin-red) 98%, var(--purple) 2%) 100%);
    transform: scale(1.02);
    box-shadow: 0 8px 20px rgba(255, 117, 24, 0.4);
}

/* Process Section */
.process-section {
    padding: 6rem 0;
    background: transparent;
    position: relative;
    z-index: 2;
}


.process-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.section-title-large {
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    font-size: 4rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 1rem;
    opacity: 1;
    line-height: 1;
}

.step-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.step-description {
    font-size: 1.1rem;
    color: var(--white);
    line-height: 1.8;
}

/* Contact Form Section */
.contact-section {
    padding: 6rem 0;
    background-image: url('background.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    color: var(--white);
    position: relative;
    z-index: 2;
}

.contact-section .section-title {
    color: var(--white);
    margin-bottom: 3rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.contact-message {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--white);
}

.contact-email {
    font-size: 1.5rem;
    margin: 1rem 0;
}

.email-link {
    color: var(--black);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.8rem;
    padding: 1rem 2rem;
    display: inline-block;
    background: linear-gradient(135deg, color-mix(in srgb, var(--pumpkin-yellow) 98%, var(--turquoise) 2%) 0%, var(--pumpkin) 50%, color-mix(in srgb, var(--pumpkin-red) 98%, var(--purple) 2%) 100%);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(255, 117, 24, 0.3);
    transition: all 0.3s ease;
}

.email-link:hover {
    background: linear-gradient(135deg, color-mix(in srgb, var(--pumpkin-yellow) 98%, var(--turquoise) 2%) 0%, var(--pumpkin) 50%, color-mix(in srgb, var(--pumpkin-red) 98%, var(--purple) 2%) 100%);
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(255, 117, 24, 0.4);
    text-decoration: none;
}

.contact-note {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem 1.5rem;
    font-size: 1rem;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.8) 100%);
    color: var(--black);
    transition: all 0.3s ease;
    font-family: inherit;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(0, 0, 0, 0.5);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.95) 100%);
    box-shadow: 0 0 0 3px rgba(255, 117, 24, 0.3), inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: var(--white);
    color: var(--black);
}

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

.submit-btn {
    padding: 1.5rem 3rem;
    font-size: 1.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, color-mix(in srgb, var(--pumpkin-red) 98%, var(--purple) 2%) 0%, var(--pumpkin) 50%, color-mix(in srgb, var(--pumpkin-yellow) 98%, var(--turquoise) 2%) 100%);
    color: var(--black);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 1rem;
}

.submit-btn:hover {
    background: linear-gradient(135deg, color-mix(in srgb, var(--pumpkin-yellow) 98%, var(--turquoise) 2%) 0%, var(--pumpkin) 50%, color-mix(in srgb, var(--pumpkin-red) 98%, var(--purple) 2%) 100%);
    transform: scale(1.02);
    box-shadow: 0 8px 24px rgba(255, 117, 24, 0.4);
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background: transparent;
    position: relative;
    z-index: 2;
}


.faq-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border: none;
    border-bottom: 2px solid;
    border-image: linear-gradient(90deg, transparent, rgba(255, 117, 24, 0.2), transparent) 1;
    overflow: hidden;
}

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

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

.faq-arrow {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    color: var(--white);
}

.faq-item.active .faq-arrow {
    transform: rotate(90deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
}

.faq-answer p {
    padding: 0 0 1.5rem 0;
    color: var(--white);
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, 
        var(--pumpkin-deep) 0%, 
        color-mix(in srgb, var(--pumpkin-red) 98%, var(--purple) 2%) 40%, 
        color-mix(in srgb, var(--pumpkin) 98%, var(--turquoise) 2%) 70%, 
        color-mix(in srgb, var(--pumpkin-yellow) 98%, var(--purple) 2%) 100%);
    padding: 4rem 0;
    color: var(--black);
    font-family: Arial, sans-serif;
}

.footer-content {
    text-align: center;
}

.footer-title {
    font-family: Arial, sans-serif;
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: 1rem;
}

.footer-credit {
    font-family: Arial, sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    color: var(--black);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.footer-disclaimer {
    font-family: Arial, sans-serif;
    font-size: 0.875rem;
    text-transform: uppercase;
    color: var(--black);
    line-height: 1.6;
    margin-top: 2rem;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }

    .nav {
        flex-wrap: wrap;
        justify-content: center;
    }

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

    .process-steps {
        grid-template-columns: 1fr;
    }

    .container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .service-card {
        padding: 2rem;
    }

    .contact-form {
        gap: 1rem;
    }
}

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

.service-card,
.step {
    animation: fadeInUp 0.6s ease-out;
}

.step:nth-child(2) {
    animation-delay: 0.1s;
}

.step:nth-child(3) {
    animation-delay: 0.2s;
}

/* Live Data Sidebar */
.live-data-sidebar {
    position: fixed;
    right: 1rem;
    top: 100px;
    width: 140px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.5) 0%, rgba(250, 250, 250, 0.5) 100%);
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 999;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 117, 24, 0.2);
}

.live-data-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    text-align: right;
}

.data-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    text-align: right;
}

.data-label {
    font-family: 'Dialog', 'DialogInput', 'SansSerif', sans-serif;
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.6);
    letter-spacing: 0.05em;
    text-align: right;
}

.data-value {
    font-family: 'Dialog', 'DialogInput', 'SansSerif', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--black);
    word-break: break-word;
    line-height: 1.2;
    text-align: right;
}


@media (max-width: 1200px) {
    .live-data-sidebar {
        display: none;
    }
}
