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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #0a1828 0%, #1a2332 50%, #0a1828 100%);
    color: #ffffff;
    overflow-x: hidden;
}

.header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 24, 40, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 247, 255, 0.1);
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #00f7ff;
    letter-spacing: -0.5px;
    cursor: pointer;
}

.nav {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

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

.nav a:hover {
    color: #00f7ff;
}

.nav-cta {
    padding: 0.7rem 1.5rem;
    background: #00f7ff;
    color: #0a1828 !important;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

.nav-cta:hover {
    background: #00d4ff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 247, 255, 0.3);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 4rem 4rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 247, 255, 0.15) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: 3.8rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.highlight {
    color: #00f7ff;
    position: relative;
}

.hero-text p {
    font-size: 1.25rem;
    color: #b8c5d6;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-text p strong {
    color: #00f7ff;
    font-weight: 600;
}

.cta-group {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: #00f7ff;
    color: #0a1828;
}

.btn-primary:hover {
    background: #00d4ff;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 247, 255, 0.4);
}

.hero-visual {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.code-container {
    position: relative;
    width: 100%;
    height: 100%;
    perspective: 1000px;
}

.code-window {
    position: absolute;
    background: rgba(15, 30, 45, 0.9);
    border: 1px solid rgba(0, 247, 255, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    animation: float 6s ease-in-out infinite;
}

.code-window:nth-child(1) {
    top: 10%;
    right: 10%;
    width: 350px;
    animation-delay: 0s;
}

.code-window:nth-child(2) {
    top: 45%;
    right: 25%;
    width: 320px;
    animation-delay: 2s;
}

.code-window:nth-child(3) {
    top: 70%;
    right: 5%;
    width: 300px;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotateX(5deg); }
    50% { transform: translateY(-20px) rotateX(-5deg); }
}

.window-header {
    display: flex;
    gap: 6px;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(0, 247, 255, 0.2);
}

.window-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #00f7ff;
    opacity: 0.6;
}

.window-title {
    font-size: 0.75rem;
    color: #00f7ff;
    margin-bottom: 0.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.code-line {
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    color: #b8c5d6;
    margin: 0.4rem 0;
    opacity: 0;
    animation: fadeIn 0.5s forwards;
}

.code-line:nth-child(1) { animation-delay: 0.1s; }
.code-line:nth-child(2) { animation-delay: 0.2s; }
.code-line:nth-child(3) { animation-delay: 0.3s; }
.code-line:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeIn {
    to { opacity: 1; }
}

.code-keyword {
    color: #00f7ff;
    font-weight: 600;
}

.code-string {
    color: #00ff88;
}

.features {
    padding: 6rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.features h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 800;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.feature-card {
    background: rgba(15, 30, 45, 0.6);
    border: 1px solid rgba(0, 247, 255, 0.2);
    border-radius: 12px;
    padding: 2.5rem;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #00f7ff, #00ff88);
    transform: scaleX(0);
    transition: transform 0.4s;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: #00f7ff;
    box-shadow: 0 20px 50px rgba(0, 247, 255, 0.2);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 247, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #00f7ff;
    font-weight: 700;
}

.feature-card p {
    color: #b8c5d6;
    line-height: 1.7;
    font-size: 1rem;
}

.feature-card p strong {
    color: #00f7ff;
    font-weight: 600;
}

.metric {
    display: inline-block;
    color: #00f7ff;
    font-weight: 700;
    font-size: 1.1rem;
}

/* Neue Expertise-Sektion */
.expertise-section {
    padding: 8rem 8rem;
    background: linear-gradient(135deg, #0f1e2d 0%, #0a1828 100%);
    border-top: 1px solid rgba(0, 247, 255, 0.2);
    border-bottom: 1px solid rgba(0, 247, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.expertise-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 247, 255, 0.08) 0%, transparent 70%);
    /*top: -200px;*/
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}

.expertise-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.expertise-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 800;
    color: #ffffff;
}

.expertise-subtitle {
    text-align: left;
    color: #b8c5d6;
    font-size: 1.15rem;
    margin-bottom: 3rem;
    max-width: 700px;
    /*margin-left: auto;*/
    /*margin-right: auto;*/
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.expertise-card {
    background: rgba(10, 24, 40, 0.6);
    border: 1px solid rgba(0, 247, 255, 0.2);
    border-radius: 12px;
    padding: 2.5rem;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.expertise-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #00f7ff, #00ff88);
    transform: scaleY(0);
    transition: transform 0.4s;
}

.expertise-card:hover {
    border-color: #00f7ff;
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 247, 255, 0.2);
}

.expertise-card:hover::before {
    transform: scaleY(1);
}

.expertise-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.expertise-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #00f7ff;
    font-weight: 700;
}

.expertise-card p {
    color: #b8c5d6;
    line-height: 1.7;
    font-size: 1rem;
}

.services {
    padding: 6rem 4rem;
    background: rgba(15, 30, 45, 0.4);
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
}

.services h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.services-intro {
    color: #b8c5d6;
    font-size: 1.15rem;
    margin-bottom: 4rem;
    max-width: 700px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.service-card {
    background: rgba(10, 24, 40, 0.6);
    border: 1px solid rgba(0, 247, 255, 0.15);
    border-radius: 12px;
    padding: 2.5rem;
    transition: all 0.4s;
    position: relative;
}

.service-card:hover {
    border-color: #00f7ff;
    transform: translateX(8px);
    box-shadow: -8px 0 30px rgba(0, 247, 255, 0.15);
}

.service-number {
    position: absolute;
    top: -15px;
    right: 30px;
    font-size: 5rem;
    font-weight: 900;
    color: rgba(0, 247, 255, 0.08);
    line-height: 1;
}

.service-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(0, 247, 255, 0.1);
    border: 1px solid rgba(0, 247, 255, 0.3);
    border-radius: 20px;
    font-size: 0.75rem;
    color: #00f7ff;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-badge.new {
    background: rgba(0, 255, 136, 0.1);
    border-color: rgba(0, 255, 136, 0.3);
    color: #00ff88;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 700;
}

.service-card p {
    color: #b8c5d6;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.service-tag {
    padding: 0.4rem 1rem;
    background: rgba(0, 247, 255, 0.1);
    border: 1px solid rgba(0, 247, 255, 0.3);
    border-radius: 20px;
    font-size: 0.85rem;
    color: #00f7ff;
    font-weight: 500;
}

.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10rem 4rem 6rem;
    position: relative;
}

.main-content::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 247, 255, 0.08) 0%, transparent 70%);
    top: 0;
    left: -200px;
    pointer-events: none;
}

.footer {
    background: rgba(10, 24, 40, 0.95);
    border-top: 1px solid rgba(0, 247, 255, 0.2);
    padding: 4rem 4rem 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

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

.footer-brand h3 {
    font-size: 1.8rem;
    color: #00f7ff;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-brand p {
    color: #b8c5d6;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-brand .contact-info {
    color: #b8c5d6;
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-brand .contact-info a {
    color: #00f7ff;
    text-decoration: none;
    transition: opacity 0.3s;
}

.footer-brand .contact-info a:hover {
    opacity: 0.8;
}

.footer-column h4 {
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

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

.footer-column a {
    color: #b8c5d6;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #00f7ff;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 247, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #b8c5d6;
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: #b8c5d6;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: #00f7ff;
}

.info-grid {
    display: grid;
    gap: 2rem;
}

.info-item {
    padding: 1.5rem 1rem;
    border-bottom: 1px solid rgba(0, 247, 255, 0.1);
    transition: all 0.3s;
}

.info-item:last-child {
    border-bottom: none;
}

.info-item:hover {
    /*padding-left: 1rem;*/
    border-left: 3px solid #00f7ff;
}

.info-label {
    font-size: 0.85rem;
    color: #00f7ff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    display: block;
}

.info-value {
    font-size: 1.15rem;
    color: #ffffff;
    font-weight: 500;
    line-height: 1.6;
}

.info-value a {
    color: #00f7ff;
    text-decoration: none;
    transition: opacity 0.3s;
}

.info-value a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 3rem;
    padding: 1rem 2rem;
    background: transparent;
    color: #00f7ff;
    border: 2px solid #00f7ff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.back-link:hover {
    background: rgba(0, 247, 255, 0.1);
    transform: translateX(-5px);
}

@media (max-width: 1200px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-visual {
        height: 400px;
    }

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

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

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

.imprint-container {
    background: rgba(15, 30, 45, 0.6);
    border: 1px solid rgba(0, 247, 255, 0.2);
    border-radius: 16px;
    padding: 4rem;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.imprint-container {
    padding: 2.5rem 2rem;
}

.imprint-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #00f7ff, #00ff88);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    position: sticky;
    top: 120px;
}

.contact-info h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    line-height: 1.1;
}

.highlight {
    color: #00f7ff;
}

.contact-info p {
    font-size: 1.15rem;
    color: #b8c5d6;
    line-height: 1.7;
    margin-bottom: 3rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(15, 30, 45, 0.4);
    border: 1px solid rgba(0, 247, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s;
}

.contact-item:hover {
    border-color: #00f7ff;
    transform: translateX(8px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 247, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-item-content {
    flex: 1;
}

.contact-item-label {
    font-size: 0.85rem;
    color: #00f7ff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.contact-item-value {
    color: #ffffff;
    font-size: 1.05rem;
    line-height: 1.6;
}

.contact-item-value a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item-value a:hover {
    color: #00f7ff;
}

.form-container {
    background: rgba(15, 30, 45, 0.6);
    border: 1px solid rgba(0, 247, 255, 0.2);
    border-radius: 16px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #00f7ff, #00ff88);
}

.form-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #ffffff;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-input,
.form-textarea {
    width: 100%;
    background: rgba(10, 24, 40, 0.8);
    color: #ffffff;
    padding: 1rem 1.25rem;
    border: 1px solid rgba(0, 247, 255, 0.2);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #7a8a9a;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #00f7ff;
    box-shadow: 0 0 0 3px rgba(0, 247, 255, 0.1);
}

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

.checkbox-group {
    display: flex;
    align-items: start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.checkbox-input {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: #00f7ff;
}

.checkbox-label {
    color: #b8c5d6;
    font-size: 0.9rem;
    line-height: 1.6;
    flex: 1;
}

.checkbox-label a {
    color: #00f7ff;
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.submit-btn {
    width: 100%;
    padding: 1.25rem 2rem;
    background: #00f7ff;
    color: #0a1828;
    border: none;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {
    background: #00d4ff;
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 247, 255, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

.response-message {
    display: none;
    padding: 1.25rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    font-weight: 500;
}

.response-message.success {
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    color: #00ff88;
}

.response-message.error {
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid rgba(255, 68, 68, 0.3);
    color: #ff4444;
}

.required-note {
    color: #7a8a9a;
    font-size: 0.9rem;
    margin-top: 1.5rem;
    text-align: center;
}

.intro-text {
    font-size: 1.3rem;
    color: #00f7ff;
    font-weight: 600;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.lead-paragraph {
    font-size: 1.15rem;
    color: #b8c5d6;
    line-height: 1.8;
    margin-bottom: 4rem;
    padding: 2rem;
    background: rgba(0, 247, 255, 0.05);
    border-left: 4px solid #00f7ff;
    border-radius: 8px;
}

.company-section {
    margin: 3rem 0;
    padding: 2.5rem;
    background: rgba(10, 24, 40, 0.4);
    border: 1px solid rgba(0, 247, 255, 0.15);
    border-radius: 12px;
    transition: all 0.4s;
    position: relative;
}

.company-section::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(180deg, #00f7ff, #00ff88);
    transform: scaleY(0);
    transition: transform 0.4s;
}

.company-section:hover {
    border-color: #00f7ff;
    transform: translateX(8px);
    box-shadow: -8px 0 30px rgba(0, 247, 255, 0.15);
}

.company-section:hover::before {
    transform: scaleY(1);
}

h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

h2::before {
    content: '';
    width: 50px;
    height: 50px;
    background: rgba(0, 247, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.company-section:nth-child(3) h2::before {
    content: '🚀';
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.company-section:nth-child(4) h2::before {
    content: '💬';
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.company-section p {
    color: #b8c5d6;
    line-height: 1.8;
    font-size: 1.05rem;
}

.strengths-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
    margin-bottom: 3rem;
}

.strength-card {
    padding: 1.5rem;
    background: rgba(0, 247, 255, 0.05);
    border: 1px solid rgba(0, 247, 255, 0.2);
    border-radius: 10px;
    transition: all 0.3s;
}

.strength-card:hover {
    background: rgba(0, 247, 255, 0.08);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 247, 255, 0.1);
}

.strength-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.strength-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #00f7ff;
    margin-bottom: 0.5rem;
}

.strength-desc {
    font-size: 0.95rem;
    color: #b8c5d6;
    line-height: 1.6;
}

.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 247, 255, 0.3), transparent);
    margin: 3rem 0;
}

.hp-field {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
    white-space: nowrap;
    border: 0;
    padding: 0;
    margin: 0;
}

@media (max-width: 768px) {
    .header {
        padding: 1rem 2rem;
    }

    .nav {
        display: none;
    }

    .hero {
        padding: 6rem 2rem 2rem;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text p {
        font-size: 1.1rem;
    }

    .features {
        padding: 4rem 2rem;
    }

    .expertise-section {
        padding: 4rem 2rem;
    }

    .services {
        padding: 4rem 2rem;
    }

    .code-window {
        width: 90% !important;
        left: 5% !important;
        right: auto !important;
    }
}