/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --logo-dark-blue: #1E3A8A;
    --logo-medium-blue: #3B82F6;
    --logo-bright-cyan: #06B6D4;
    --logo-light-cyan: #67E8F9;
    --logo-accent-teal: #22D3EE;
    --dark-navy: #0F172A;
    --medium-navy: #1E293B;
    --light-navy: #334155;
    --white: #ffffff;
    --light-gray: #f8fafc;
    --medium-gray: #94a3b8;
    --text-light: #e2e8f0;
    --text-cyan: #a5f3fc;
    --gradient-primary: linear-gradient(135deg, var(--logo-dark-blue) 0%, var(--logo-medium-blue) 50%, var(--logo-bright-cyan) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--logo-bright-cyan) 0%, var(--logo-light-cyan) 100%);
    --gradient-hero: linear-gradient(135deg, var(--dark-navy) 0%, var(--medium-navy) 50%, #1a2332 100%);
    --gradient-accent: linear-gradient(90deg, var(--logo-bright-cyan), var(--logo-light-cyan));
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    --shadow-glow: 0 0 30px rgba(6, 182, 212, 0.4);
    --shadow-glow-strong: 0 0 40px rgba(34, 211, 238, 0.5);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background: var(--gradient-hero);
    overflow-x: hidden;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 16px;
    background: var(--logo-bright-cyan);
    color: var(--dark-navy);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    transition: top 0.3s ease;
    z-index: 1001;
}

.skip-link:focus {
    top: 16px;
}

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

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(6, 182, 212, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo {
    height: 75px;
    width: auto;
    background: transparent;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.company-name {
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--white);
    letter-spacing: -0.025em;
    white-space: nowrap;
    margin-bottom: 0.2rem;
}

.tagline {
    display: flex;
    flex-direction: column;
}

.tagline-line {
    font-weight: 700;
    font-size: 1.2rem;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.025em;
    white-space: nowrap;
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--logo-light-cyan);
    text-shadow: 0 0 8px rgba(103, 232, 249, 0.5);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

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

.nav-link.lang-switch {
    border: 1px solid var(--logo-bright-cyan);
    border-radius: 8px;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.nav-link.lang-switch:hover {
    background: rgba(6, 182, 212, 0.12);
    color: var(--logo-light-cyan);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 105vh;
    display: flex;
    align-items: center;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
}

.coming-hero {
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
    background: var(--gradient-hero);
    padding: clamp(3.75rem, 14vh, 7rem) 0 clamp(3.5rem, 11vh, 7rem);
}

.coming-content {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(1.2rem, 3vh, 2.3rem);
}

.coming-visual {
    width: clamp(220px, 28vw, 280px);
    height: clamp(220px, 28vw, 280px);
    display: grid;
    place-items: center;
    position: relative;
    filter: drop-shadow(0 20px 35px rgba(6, 182, 212, 0.35));
    transform: translateY(calc(-1 * clamp(1.9rem, 5vh, 3.6rem)));
    margin-bottom: clamp(1.35rem, 4vh, 3rem);
}

.coming-visual .dynamic-visual {
    width: 100%;
    height: 100%;
}

.coming-title {
    font-size: clamp(2.4rem, 5vw, 3.4rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2em;
    line-height: 1.05;
}

.coming-title .accent {
    color: var(--white);
    display: block;
}

.coming-title .glow-text {
    display: block;
    color: #88e7ff;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(136, 231, 255, 0.7),
                 0 0 20px rgba(34, 211, 238, 0.6),
                 0 0 35px rgba(14, 116, 144, 0.45);
}

.coming-subtitle {
    font-size: 1.15rem;
    color: var(--text-cyan);
    line-height: 1.8;
    margin-top: clamp(1.35rem, 4.8vh, 3.2rem);
    position: relative;
    letter-spacing: 0.1em;
    text-shadow: 0 0 12px rgba(103, 232, 249, 0.5),
                 0 0 22px rgba(34, 211, 238, 0.35);
    animation: electricGlow 6s ease-in-out infinite;
}

.coming-subtitle::before,
.coming-subtitle::after {
    content: '';
    position: absolute;
    left: 50%;
    pointer-events: none;
}

/* Lightning bolt that triggers the electric effect */
.coming-subtitle::before {
    top: calc(-140% - 0.5rem);
    width: 2px;
    height: 190%;
    background: linear-gradient(180deg, rgba(165, 243, 252, 0) 0%, rgba(165, 243, 252, 0.85) 45%, rgba(6, 182, 212, 0.95) 100%);
    transform: translateX(-50%) scaleY(0.25);
    opacity: 0;
    filter: drop-shadow(0 0 20px rgba(125, 211, 252, 0.6));
    animation: lightningStrike 7s linear infinite;
}

/* Electric field glow that lingers after the strike */
.coming-subtitle::after {
    top: 50%;
    width: clamp(180px, 40vw, 320px);
    height: clamp(140px, 28vw, 220px);
    transform: translate(-50%, -50%) scale(0.65);
    background: radial-gradient(circle at 50% 35%, rgba(59, 130, 246, 0.25), transparent 55%),
                radial-gradient(circle at 50% 65%, rgba(34, 211, 238, 0.35), transparent 70%);
    opacity: 0;
    mix-blend-mode: screen;
    animation: electricField 7s ease-in-out infinite;
}

.ellipsis {
    display: inline-block;
    min-width: 1.5ch;
    margin-left: 0.2ch;
    text-align: left;
}

.ellipsis::after {
    content: '';
    display: inline-block;
    white-space: pre;
    animation: dots 1.8s steps(1, end) infinite;
}

@keyframes dots {
    0%, 20% { content: ''; }
    40% { content: '.'; }
    60% { content: '..'; }
    80%, 100% { content: '...'; }
}

@keyframes electricGlow {
    0%, 12%, 82%, 100% {
        text-shadow: 0 0 12px rgba(103, 232, 249, 0.5), 0 0 22px rgba(34, 211, 238, 0.35);
        filter: none;
    }
    13% {
        text-shadow: 0 0 18px rgba(125, 211, 252, 0.7), 0 0 30px rgba(34, 211, 238, 0.55), 0 0 42px rgba(14, 116, 144, 0.4);
        filter: brightness(1.1);
    }
    14%, 16% {
        text-shadow: 0 0 28px rgba(191, 219, 254, 0.85), 0 0 46px rgba(56, 189, 248, 0.6);
        filter: drop-shadow(0 0 18px rgba(34, 211, 238, 0.35));
    }
    17% {
        text-shadow: 0 0 20px rgba(56, 189, 248, 0.65), 0 0 36px rgba(8, 145, 178, 0.55);
        filter: brightness(0.95);
    }
    46% {
        text-shadow: 0 0 10px rgba(34, 211, 238, 0.4), 0 0 16px rgba(8, 145, 178, 0.35);
        filter: none;
    }
    47%, 48% {
        text-shadow: 0 0 34px rgba(165, 243, 252, 0.9), 0 0 52px rgba(34, 211, 238, 0.7), 0 0 72px rgba(8, 145, 178, 0.45);
        filter: brightness(1.2);
    }
    49% {
        text-shadow: 0 0 16px rgba(103, 232, 249, 0.6), 0 0 30px rgba(34, 211, 238, 0.45);
        filter: none;
    }
}

@keyframes lightningStrike {
    0%, 62%, 100% {
        opacity: 0;
        transform: translateX(-50%) scaleY(0.25) skewX(-4deg);
    }
    63% {
        opacity: 1;
        transform: translateX(-50%) scaleY(1.15) skewX(-2deg);
    }
    64% {
        opacity: 0.4;
        transform: translateX(-50%) scaleY(0.85) skewX(-6deg);
    }
    65% {
        opacity: 0.9;
        transform: translateX(-50%) scaleY(1.3) skewX(-3deg);
    }
    66% {
        opacity: 0;
        transform: translateX(-50%) scaleY(0.3) skewX(-6deg);
    }
}

@keyframes electricField {
    0%, 60%, 100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.6);
        filter: blur(0px);
    }
    63% {
        opacity: 0.75;
        transform: translate(-50%, -50%) scale(1.05);
        filter: blur(1.5px);
    }
    66% {
        opacity: 0.45;
        transform: translate(-50%, -50%) scale(0.85);
        filter: blur(0.5px);
    }
    72% {
        opacity: 0.25;
        transform: translate(-50%, -50%) scale(1.1);
        filter: blur(1.8px);
    }
    78% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.7);
        filter: blur(0px);
    }
}

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

    .coming-subtitle::before,
    .coming-subtitle::after {
        animation: none;
        opacity: 0;
    }
}

.imprint {
    padding: 3rem 0;
    background: rgba(15, 23, 42, 0.92);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.imprint .imprint-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.8;
    text-align: center;
}

.imprint h2 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--white);
    cursor: pointer;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.imprint-toggle-icon {
    font-size: 0.95rem;
    transition: transform 0.3s ease;
}

.imprint.is-open .imprint-toggle-icon {
    transform: rotate(180deg);
}

.imprint h2:focus-visible {
    outline: 2px solid var(--logo-bright-cyan);
    outline-offset: 4px;
}

.imprint-intro {
    margin: 1rem auto 0;
    max-width: 620px;
    text-align: center;
    font-size: 0.95rem;
    color: rgba(226, 232, 240, 0.88);
}

.imprint-intro a {
    color: rgba(165, 243, 252, 0.9);
    text-decoration: underline;
}

.imprint .imprint-list {
    display: grid;
    grid-template-columns: minmax(140px, 220px) 1fr;
    gap: 0.25rem 1.5rem;
}

.imprint .imprint-details {
    overflow: hidden;
    transition: max-height 0.4s ease;
    width: 100%;
    max-width: 680px;
    margin: 0 auto;
    text-align: left;
}

.imprint-note {
    margin-top: 1.5rem;
    font-size: 0.95rem;
}
.imprint-note a {
    color: var(--logo-light-cyan);
    text-decoration: none;
}
.imprint-note a:hover {
    text-decoration: underline;
}

.imprint .imprint-list dt {
    font-weight: 600;
    color: var(--text-cyan);
}

.imprint .imprint-list dd {
    margin: 0;
}

.imprint a {
    color: var(--logo-light-cyan);
    text-decoration: none;
}

.imprint a:hover {
    text-decoration: underline;
}

.imprint-privacy ul {
    list-style: disc;
    padding-left: 1.3rem;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

@media (max-width: 768px) {
    .imprint {
        padding: 2.5rem 0;
    }

    .imprint .imprint-content {
        padding: 0 1.4rem;
    }

    .imprint h2 {
        font-size: 1.25rem;
        flex-wrap: wrap;
        text-align: center;
    }

    .imprint .imprint-list {
        grid-template-columns: 1fr;
        gap: 0.35rem 0;
        text-align: left;
    }

    .imprint .imprint-list dt {
        font-weight: 600;
    }

    .imprint .imprint-list dd {
        margin-bottom: 0.4rem;
    }

    .imprint .imprint-details {
        max-width: 100%;
        padding: 0 0.2rem;
    }

    .imprint-privacy ul {
        padding-left: 1rem;
    }
}

@media (max-width: 480px) {
    .imprint .imprint-content {
        padding: 0 1rem;
    }

    .imprint-intro {
        font-size: 0.9rem;
    }

    .imprint-privacy h3 {
        font-size: 1.05rem;
    }

    .imprint-privacy h4 {
        font-size: 0.95rem;
    }

    .imprint-privacy p,
    .imprint-privacy li {
        font-size: 0.9rem;
    }
}

.imprint a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .imprint {
        padding: 2.5rem 0;
    }

    .imprint .imprint-content {
        padding: 0 1.5rem;
    }

    .imprint dl {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .imprint dt {
        margin-top: 1rem;
    }

    .imprint dt:first-of-type {
        margin-top: 0;
    }
}

.coming-hero .hero-buttons {
    justify-content: center;
    gap: 1.25rem;
}

.coming-hero .hero-buttons .btn {
    min-width: 200px;
    justify-content: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%232563eb" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    z-index: 1;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 600px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.title-line {
    display: block;
    color: var(--white);
}

.title-line.accent {
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(103, 232, 249, 0.3);
    filter: drop-shadow(0 0 10px rgba(34, 211, 238, 0.4));
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-cyan);
    margin-bottom: 1rem;
    line-height: 1.65;
    font-weight: 400;
    letter-spacing: -0.005em;
}


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

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

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow-strong), var(--shadow-lg);
    background: var(--gradient-secondary);
}

.btn-secondary {
    background: transparent;
    color: var(--logo-bright-cyan);
    border: 2px solid var(--logo-bright-cyan);
}

.btn-secondary:hover {
    background: var(--logo-light-cyan);
    color: var(--dark-navy);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow-strong);
    border-color: var(--logo-light-cyan);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.dynamic-visual {
    position: relative;
    width: 350px;
    height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
    transform-style: preserve-3d;
    animation: rotate-visual 30s linear infinite;
}


@keyframes rotate-visual {
    from { transform: rotateY(0deg); }
    to { transform: rotateY(360deg); }
}

.visual-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-image: url('../images/image.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    animation: pulse-ring 4s ease-in-out infinite;
    border: 2px solid rgba(6, 182, 212, 0.3);
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.3), inset 0 0 15px rgba(6, 182, 212, 0.2);
}

@keyframes pulse-ring {
    0%, 100% { 
        transform: scale(1); 
        opacity: 0.4; 
        box-shadow: 0 0 15px rgba(6, 182, 212, 0.3), inset 0 0 15px rgba(6, 182, 212, 0.2);
    }
    50% { 
        transform: scale(1.05); 
        opacity: 0.6; 
        box-shadow: 0 0 25px rgba(6, 182, 212, 0.5), inset 0 0 25px rgba(6, 182, 212, 0.3);
    }
}

.visual-core {
   display: none;
}


/* Services Section */
.services {
    padding: 7rem 0;
    background: var(--medium-navy);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-accent);
    opacity: 0.8;
}

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

.section-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.3rem;
    color: var(--text-cyan);
    max-width: 650px;
    margin: 0 auto 0.5rem;
    font-weight: 400;
    letter-spacing: -0.005em;
    line-height: 1.6;
}


.services-grid {
    display: grid;
    gap: 4rem;
}

.service-category {
    background: var(--dark-navy);
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 28px;
    padding: 3.5rem;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
}

.service-category:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
    border-color: var(--logo-bright-cyan);
}

.category-title {
    font-size: 2.2rem;
    font-weight: 800;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    text-align: center;
    letter-spacing: -0.02em;
}

.category-subtitle {
    font-size: 1.1rem;
    color: var(--text-cyan);
    max-width: 800px;
    margin: 0 auto 2.5rem;
    font-weight: 400;
    text-align: center;
    line-height: 1.6;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--light-navy);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 188, 212, 0.2);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-glow-strong);
    border-color: var(--logo-light-cyan);
    background: rgba(6, 182, 212, 0.08);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--logo-bright-cyan);
}

.service-icon svg {
    stroke: var(--logo-bright-cyan);
}

.service-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--logo-light-cyan);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.service-card p {
    color: var(--medium-gray);
    line-height: 1.6;
}

/* About Section */
.about {
    padding: 7rem 0;
    background: linear-gradient(135deg, var(--dark-navy) 0%, var(--medium-navy) 100%);
    color: var(--white);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-accent);
    opacity: 0.8;
}

.about .section-title {
    color: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-features {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.feature {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.feature h4 {
    color: var(--logo-light-cyan);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature h4 svg {
    width: 20px;
    height: 20px;
    stroke: var(--logo-light-cyan);
    flex-shrink: 0;
}

.feature p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.about-stats {
    display: grid;
    gap: 2rem;
}

.stat {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Contact Section */
.contact {
    padding: 7rem 0;
    background: var(--light-navy);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-accent);
    opacity: 0.8;
}

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

.contact-subtitle {
    font-size: 1.3rem;
    color: var(--text-cyan);
    margin-bottom: 3rem;
    font-weight: 400;
    letter-spacing: -0.005em;
    line-height: 1.6;
}

.contact-details {
    display: grid;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--dark-navy);
    border: 1px solid rgba(0, 188, 212, 0.2);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
}

.contact-icon {
    font-size: 1.5rem;
    width: 50px;
    text-align: center;
    color: var(--logo-bright-cyan);
}

.contact-icon svg {
    stroke: var(--logo-bright-cyan);
}

.contact-item h4 {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: var(--medium-gray);
}

.contact-form {
    background: var(--dark-navy);
    border: 1px solid rgba(6, 182, 212, 0.3);
    padding: 3.5rem;
    border-radius: 28px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-accent);
    opacity: 0.6;
}

.form {
    display: grid;
    gap: 1.5rem;
}

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

.form input,
.form select,
.form textarea {
    padding: 1rem;
    border: 2px solid rgba(0, 188, 212, 0.2);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
    background: var(--light-navy);
    color: var(--white);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

select#service {
    background: var(--light-navy) !important;
    background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 4 5"><path fill="%2367E8F9" d="M2 0L0 2h4zm0 5L0 3h4z"/></svg>') !important;
    background-repeat: no-repeat !important;
    background-position: right 1rem center !important;
    background-size: 12px !important;
    padding: 1rem !important;
    padding-right: 3rem !important;
    border: 2px solid rgba(0, 188, 212, 0.2) !important;
    border-radius: 12px !important;
    font-size: 1rem !important;
    font-family: inherit !important;
    color: var(--white) !important;
    cursor: pointer !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    outline: none !important;
}

select#service:focus {
    border-color: var(--logo-bright-cyan) !important;
    box-shadow: 0 0 0 3px rgba(0, 188, 212, 0.1) !important;
    background-color: var(--light-navy) !important;
}

select#service option {
    background-color: var(--light-navy) !important;
    color: var(--white) !important;
    padding: 0.5rem !important;
}

/* Additional fallbacks */
.form select {
    background: var(--light-navy) !important;
    color: var(--white) !important;
    border: 2px solid rgba(0, 188, 212, 0.2) !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
}

.form select::-webkit-inner-spin-button,
.form select::-webkit-outer-spin-button {
    -webkit-appearance: none !important;
    margin: 0 !important;
}

.form select::-ms-expand {
    display: none !important;
}

.form input:focus,
.form select:focus,
.form textarea:focus {
    outline: none;
    border-color: var(--logo-bright-cyan);
    box-shadow: 0 0 0 3px rgba(0, 188, 212, 0.1);
}

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

.form-submit {
    margin-top: 1rem;
}

/* Footer */
.footer {
    background: var(--dark-navy);
    color: var(--white);
    padding: 4rem 0 1.5rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-accent);
    opacity: 0.9;
}

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

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.footer-company-name {
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--white);
    letter-spacing: -0.025em;
}

.footer-logo {
    height: 120px;
    width: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    background: transparent;
}

.footer-tagline {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    font-size: 1.1rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
}

.footer-column h4 {
    color: var(--logo-light-cyan);
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--logo-light-cyan);
    text-shadow: 0 0 8px rgba(103, 232, 249, 0.4);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-logo {
        gap: 12px;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 90px;
        flex-direction: column;
        background-color: var(--dark-navy);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-md);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .tech-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }
    
    .tech-item {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .btn {
        min-width: 200px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .nav-logo {
        gap: 8px;
    }
    
    .tagline {
        font-size: 0.9rem;
    }
    
    .logo {
        height: 50px;
    }
    
    .service-category {
        padding: 2rem 1rem;
    }
    
    .contact-form {
        padding: 2rem 1rem;
    }
    
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.hero-content,
.hero-visual {
    animation: fadeInUp 0.8s ease forwards;
}

.hero-visual {
    animation-delay: 0.2s;
}

/* Scroll animations */
@media (prefers-reduced-motion: no-preference) {
    .service-card,
    .feature,
    .stat {
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.6s ease;
    }
    
    .service-card.in-view,
    .feature.in-view,
    .stat.in-view {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background: var(--dark-navy);
    color: var(--text-light);
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow-xl);
    z-index: 2000;
    transition: bottom 0.5s ease-in-out;
}

.cookie-banner.show {
    bottom: 0;
}

.cookie-banner p {
    margin: 0;
    margin-right: 1.5rem;
}

.cookie-banner .btn {
    padding: 0.8rem 1.5rem;
    flex-shrink: 0;
}
.cta {
    padding: 4rem 0;
    background: rgba(6, 182, 212, 0.12);
    border-top: 1px solid rgba(103, 232, 249, 0.2);
    border-bottom: 1px solid rgba(103, 232, 249, 0.2);
}

.cta-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
    text-align: left;
}

.cta-text h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.cta-text p {
    max-width: 640px;
    color: var(--text-light);
}

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

.cta .btn-primary {
    background: var(--gradient-primary);
    border: none;
}

.cta .btn-primary:hover {
    filter: brightness(1.1);
}

.coming-nav {
    position: fixed;
    bottom: clamp(1.2rem, 3vw, 2.5rem);
    right: clamp(0.75rem, 2vw, 2rem);
    display: flex;
    align-items: center;
    gap: 0.85rem;
    z-index: 150;
}

.coming-nav .container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.85rem;
    margin: 0;
    padding: 0;
}

.coming-nav-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 1.4rem;
    border-radius: 999px;
    border: 1px solid rgba(103, 232, 249, 0.35);
    background: rgba(15, 23, 42, 0.6);
    color: var(--text-light);
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.coming-nav-link:hover {
    background: rgba(103, 232, 249, 0.22);
    border-color: rgba(103, 232, 249, 0.65);
    transform: translateY(-1px);
}

.coming-nav-icon {
    width: 46px;
    height: 46px;
    padding: 0;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.45);
    background: #0A66C2;
    box-shadow: 0 16px 32px rgba(10, 102, 194, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.coming-nav-icon img {
    width: 28px;
    height: 28px;
    display: block;
}

.coming-nav-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 36px rgba(10, 102, 194, 0.35);
}

.coming-lang {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.coming-lang-toggle {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(103, 232, 249, 0.45);
    background: radial-gradient(circle at 32% 28%, rgba(59, 130, 246, 0.55), rgba(15, 23, 42, 0.95));
    color: var(--text-light);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 16px 32px rgba(8, 47, 73, 0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
    padding: 0;
    appearance: none;
    outline: none;
    position: relative;
}

.coming-lang-toggle img {
    width: 22px;
    height: 22px;
    display: block;
}

.coming-lang-toggle .lang-current {
    position: absolute;
    bottom: 4px;
    right: 6px;
    padding: 0.05rem 0.32rem;
    border-radius: 6px;
    background: rgba(15, 23, 42, 0.82);
    color: rgba(226, 232, 240, 0.96);
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.coming-lang-toggle:hover,
.coming-lang-toggle:focus-visible,
.coming-lang-toggle.is-open {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.65);
    box-shadow: 0 20px 40px rgba(8, 47, 73, 0.45);
    background: radial-gradient(circle at 35% 30%, rgba(103, 232, 249, 0.65), rgba(15, 23, 42, 0.92));
}

.coming-lang-toggle:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(103, 232, 249, 0.35), 0 18px 38px rgba(8, 47, 73, 0.45);
}

.coming-lang-menu {
    position: absolute;
    right: 0;
    bottom: 58px;
    min-width: 146px;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    border-radius: 14px;
    border: 1px solid rgba(103, 232, 249, 0.35);
    background: rgba(15, 23, 42, 0.94);
    backdrop-filter: blur(12px);
    box-shadow: 0 20px 40px rgba(8, 47, 73, 0.45);
    opacity: 0;
    transform: translateY(8px) scale(0.97);
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: 200;
}

.coming-lang-menu.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.coming-lang-option {
    padding: 0.45rem 0.6rem;
    border-radius: 10px;
    color: rgba(226, 232, 240, 0.95);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.78rem;
    transition: background 0.2s ease, transform 0.2s ease;
}

.coming-lang-option:hover,
.coming-lang-option:focus-visible {
    background: rgba(30, 64, 175, 0.25);
    transform: translateY(-1px);
    outline: none;
}

.coming-lang-option.is-active {
    background: rgba(103, 232, 249, 0.18);
    box-shadow: inset 0 0 0 1px rgba(103, 232, 249, 0.35);
}

.cookie-banner[hidden] {
    display: none;
}

.cookie-banner {
    position: fixed;
    left: clamp(0.75rem, 4vw, 2rem);
    bottom: clamp(1rem, 3vw, 2rem);
    width: min(460px, 92vw);
    z-index: 400;
}

.cookie-banner__content {
    background: rgba(15, 23, 42, 0.92);
    border: 1px solid rgba(103, 232, 249, 0.35);
    border-radius: 18px;
    padding: 1.35rem 1.5rem;
    box-shadow: 0 26px 52px rgba(8, 47, 73, 0.55);
    backdrop-filter: blur(14px);
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    color: var(--text-light);
    font-size: 0.93rem;
    line-height: 1.55;
}

.cookie-banner__text strong {
    display: block;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(226, 232, 240, 0.98);
}

.cookie-banner__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.cookie-banner__button {
    border: none;
    border-radius: 999px;
    padding: 0.55rem 1.4rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cookie-banner__button--accept {
    background: var(--gradient-secondary);
    color: var(--dark-navy);
    box-shadow: 0 16px 32px rgba(45, 212, 191, 0.35);
}

.cookie-banner__button--decline {
    background: rgba(15, 23, 42, 0.65);
    color: rgba(226, 232, 240, 0.9);
    border: 1px solid rgba(103, 232, 249, 0.35);
}

.cookie-banner__button:hover,
.cookie-banner__button:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 18px 36px rgba(8, 47, 73, 0.35);
    outline: none;
}

.cookie-banner__link {
    margin-left: auto;
    color: rgba(165, 243, 252, 0.9);
    text-decoration: underline;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.imprint-body {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.imprint-divider {
    height: 1px;
    width: 100%;
    background: rgba(148, 163, 184, 0.25);
}

.imprint-privacy {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: rgba(226, 232, 240, 0.92);
}

.imprint-privacy h3 {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(241, 245, 249, 0.95);
}

.imprint-privacy h4 {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(186, 230, 253, 0.95);
}

.imprint-privacy p,
.imprint-privacy li {
    font-size: 0.92rem;
    line-height: 1.6;
}

.imprint-privacy ul {
    list-style: disc;
    padding-left: 1.3rem;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.imprint-privacy a {
    color: rgba(165, 243, 252, 0.92);
    text-decoration: underline;
}

.privacy-reset-consent {
    align-self: flex-start;
    border-radius: 999px;
    border: 1px solid rgba(103, 232, 249, 0.45);
    background: transparent;
    color: rgba(203, 213, 225, 0.9);
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.35rem 1rem;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.privacy-reset-consent:hover,
.privacy-reset-consent:focus-visible {
    background: rgba(56, 189, 248, 0.2);
    color: var(--white);
    outline: none;
}

.coming-contact-toggle {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(45, 212, 191, 0.45);
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.3) 0%, rgba(14, 116, 144, 0.8) 100%);
    color: var(--text-light);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 18px 34px rgba(13, 148, 136, 0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
    padding: 0;
    outline: none;
    position: relative;
}

.coming-contact-toggle img {
    width: 22px;
    height: 22px;
    display: block;
}

.coming-contact-toggle:hover,
.coming-contact-toggle:focus-visible,
.coming-contact-toggle.is-open {
    transform: translateY(-2px);
    border-color: rgba(103, 232, 249, 0.75);
    box-shadow: 0 22px 40px rgba(13, 148, 136, 0.45);
    background: linear-gradient(135deg, rgba(45, 212, 191, 0.45) 0%, rgba(14, 165, 233, 0.85) 100%);
}

.coming-contact-toggle:focus-visible {
    box-shadow: 0 0 0 3px rgba(103, 232, 249, 0.35), 0 18px 38px rgba(13, 148, 136, 0.35);
}

.coming-contact-panel {
    position: fixed;
    right: clamp(0.75rem, 2vw, 2rem);
    bottom: clamp(1.2rem, 3vw, 2.5rem);
    width: min(340px, 92vw);
    padding: 1.45rem 1.4rem;
    border-radius: 18px;
    border: 1px solid rgba(103, 232, 249, 0.28);
    background: linear-gradient(160deg, rgba(15, 23, 42, 0.94) 0%, rgba(15, 23, 42, 0.86) 100%);
    box-shadow: 0 28px 54px rgba(8, 47, 73, 0.45);
    backdrop-filter: blur(18px);
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(18px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 140;
    overflow: hidden;
}

.coming-contact-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: rgba(15, 23, 42, 0.65);
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
    z-index: 1;
}

.coming-contact-panel.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.coming-contact-panel.has-status::before {
    opacity: 1;
}

.coming-contact-panel.has-status .coming-contact-form {
    filter: blur(1px);
    opacity: 0.4;
    transition: filter 0.25s ease, opacity 0.25s ease;
}

.coming-contact-form {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    color: var(--text-light);
    flex: 1 1 auto;
    z-index: 2;
}

.coming-contact-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
}

.coming-contact-copy {
    font-size: 0.88rem;
    line-height: 1.5;
    color: rgba(226, 232, 240, 0.85);
}

.coming-contact-field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.coming-contact-field--hidden {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.coming-contact-consent {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.78rem;
    line-height: 1.45;
    color: rgba(226, 232, 240, 0.9);
}

.coming-contact-consent input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 0.25rem;
}

.coming-contact-consent a {
    color: rgba(165, 243, 252, 0.92);
    text-decoration: underline;
}

.coming-contact-consent label {
    cursor: pointer;
}

.field-label {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 600;
    color: rgba(165, 243, 252, 0.85);
}

.coming-contact-field input,
.coming-contact-field textarea {
    width: 100%;
    border-radius: 12px;
    border: 1px solid rgba(148, 163, 184, 0.3);
    background: rgba(15, 23, 42, 0.55);
    color: var(--text-light);
    padding: 0.6rem 0.75rem;
    font-size: 0.95rem;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.coming-contact-field textarea {
    resize: vertical;
    min-height: 120px;
}

.coming-contact-field input:focus,
.coming-contact-field textarea:focus {
    border-color: rgba(103, 232, 249, 0.6);
    background: rgba(15, 23, 42, 0.72);
    box-shadow: 0 0 0 3px rgba(103, 232, 249, 0.35);
    outline: none;
}

.coming-contact-submit {
    align-self: center;
    padding: 0.65rem 1.65rem;
    border-radius: 999px;
    border: none;
    background: var(--gradient-secondary);
    color: var(--dark-navy);
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.coming-contact-submit:hover,
.coming-contact-submit:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 18px 36px rgba(45, 212, 191, 0.35);
    outline: none;
}

.coming-contact-privacy {
    font-size: 0.7rem;
    line-height: 1.4;
    color: rgba(148, 163, 184, 0.85);
    text-align: center;
}

.coming-contact-privacy a {
    color: rgba(165, 243, 252, 0.9);
    text-decoration: underline;
}

.coming-contact-status {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1.2rem;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: rgba(226, 232, 240, 0.95);
    opacity: 0;
    transform: scale(0.98);
    transition: opacity 0.24s ease, transform 0.24s ease;
    z-index: 3;
    pointer-events: none;
}

.coming-contact-status.is-visible {
    opacity: 1;
    transform: scale(1);
}

.coming-contact-status.is-sending {
    color: rgba(125, 211, 252, 0.95);
}

.coming-contact-status.is-success {
    color: rgba(134, 239, 172, 0.98);
}

.coming-contact-status.is-error {
    color: rgba(252, 165, 165, 0.95);
}

@media (max-width: 640px) {
    .coming-nav {
        top: 1rem;
        right: 1rem;
        bottom: auto;
    }

    .coming-nav .container {
        gap: 0.7rem;
    }

    .coming-nav-icon {
        width: 42px;
        height: 42px;
    }

    .coming-nav-icon img {
        width: 24px;
        height: 24px;
    }

    .coming-contact-toggle {
        width: 42px;
        height: 42px;
    }

    .coming-contact-toggle img {
        width: 22px;
        height: 22px;
    }

    .coming-lang-toggle {
        width: 42px;
        height: 42px;
    }

    .coming-lang-toggle .lang-current {
        font-size: 0.52rem;
    }

    .coming-lang-menu {
        top: 54px;
        bottom: auto;
        right: 0;
        transform: translateY(-6px) scale(0.97);
    }

    .coming-lang-menu.is-visible {
        transform: translateY(0) scale(1);
    }

    .coming-contact-panel {
        top: calc(3.8rem + env(safe-area-inset-top, 0px));
        bottom: calc(0.9rem + env(safe-area-inset-bottom, 0px));
        right: clamp(0.75rem, 4vw, 1.25rem);
        left: clamp(0.75rem, 4vw, 1.25rem);
        width: auto;
        padding: 1.05rem clamp(1rem, 4vw, 1.3rem);
        padding-bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
        transform: translateY(12px);
        max-height: none;
        height: auto;
        overflow-x: hidden;
        overflow-y: auto;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
    }

    .coming-contact-form {
        gap: 0.7rem;
    }

    .coming-contact-submit {
        width: 100%;
    }

    .coming-contact-status {
        padding: 0.3rem 1rem;
        font-size: 0.8rem;
    }
}

@media (max-height: 780px) and (min-width: 641px) {
    .coming-contact-panel {
        bottom: clamp(0.75rem, 2vw, 2rem);
        max-height: calc(100vh - 3.8rem);
    }

    .coming-contact-form {
        gap: 0.7rem;
    }

    .coming-contact-copy {
        font-size: 0.85rem;
    }

    .coming-contact-field textarea {
        min-height: 100px;
    }
}

@media (max-height: 640px) and (min-width: 641px) {
    .coming-contact-panel {
        bottom: clamp(0.5rem, 2vw, 1.6rem);
        max-height: calc(100vh - 3.1rem);
        padding: 1.1rem 1.15rem;
    }

    .coming-contact-title {
        font-size: 1rem;
    }

    .coming-contact-copy {
        font-size: 0.82rem;
        line-height: 1.4;
    }

    .coming-contact-form {
        gap: 0.6rem;
    }

    .coming-contact-field input,
    .coming-contact-field textarea {
        padding: 0.5rem 0.7rem;
    }

    .coming-contact-field textarea {
        min-height: 84px;
    }

    .coming-contact-submit {
        padding: 0.55rem 1.4rem;
    }

    .coming-contact-status {
        padding: 0.85rem 0.9rem;
        font-size: 0.8rem;
    }

    .coming-contact-consent {
        flex-direction: column;
        align-items: flex-start;
        font-size: 0.74rem;
    }
}

/* Signature landing page */
body.signature-page {
    background: var(--light-gray);
    color: var(--medium-navy);
}

.signature-header {
    background: var(--white);
    border-bottom: 1px solid rgba(148, 163, 184, 0.25);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 200;
}

.signature-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 2rem;
}

.signature-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.signature-brand img {
    height: 58px;
    width: auto;
    border-radius: 14px;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    padding: 0.25rem 0.5rem;
    border: 1px solid rgba(148, 163, 184, 0.25);
}

.signature-brand-text {
    display: flex;
    flex-direction: column;
}

.signature-brand-text span {
    font-weight: 600;
    color: var(--dark-navy);
}

.signature-brand-text small {
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.72rem;
    color: var(--medium-gray);
}

.signature-nav {
    display: flex;
    gap: 1rem;
}

.signature-nav a {
    text-decoration: none;
    color: var(--medium-navy);
    font-weight: 600;
    padding: 0.55rem 1.15rem;
    border-radius: 999px;
    border: 1px solid transparent;
    transition: all 0.2s ease;
}

.signature-nav a:hover {
    border-color: rgba(37, 99, 235, 0.35);
    color: var(--logo-dark-blue);
}

.signature-main {
    padding: 4rem 2rem 6rem;
    max-width: 1100px;
    margin: 0 auto;
}

.signature-main h1 {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    color: var(--logo-dark-blue);
    margin-bottom: 1rem;
}

.signature-main p.lead {
    max-width: 720px;
    margin-bottom: 2.5rem;
    color: var(--light-navy);
    font-size: 1.05rem;
}

.signature-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.signature-card {
    background: var(--white);
    border-radius: 18px;
    box-shadow: var(--shadow-lg);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    border: 1px solid rgba(148, 163, 184, 0.25);
    width: min(100%, 760px);
}

.signature-card h2 {
    font-size: 1.35rem;
    color: var(--logo-medium-blue);
}

.signature-meta {
    font-size: 0.9rem;
    color: var(--medium-gray);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.signature-preview {
    background: var(--white);
    border-radius: 14px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    padding: 1.5rem;
}

.signature-preview table {
    width: 100%;
    border-collapse: collapse;
}

.signature-preview td {
    vertical-align: top;
    font-size: 0.95rem;
    color: var(--medium-navy);
}

.signature-preview td:first-child {
    width: 140px;
}

.signature-preview img {
    display: block;
    width: 100%;
    height: auto;
}

.signature-preview p {
    margin: 0;
    line-height: 1.5;
}

.signature-preview p + p {
    margin-top: 0.35rem;
}

.signature-preview a {
    color: var(--logo-medium-blue);
    text-decoration: none;
    font-weight: 500;
}

.signature-preview a:hover {
    text-decoration: underline;
}

.signature-preview span[style*="color:#1E3A8A;"] {
    font-weight: 600;
}

.signature-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.copy-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.4rem;
    border-radius: 999px;
    border: none;
    background: var(--gradient-primary);
    color: var(--white);
    font-weight: 600;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.copy-button:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

.copy-button:active {
    transform: translateY(0);
}

.copy-feedback {
    font-size: 0.85rem;
    color: var(--medium-gray);
}

.copy-feedback.is-visible {
    color: var(--logo-medium-blue);
    font-weight: 600;
}

.signature-code-block {
    width: 100%;
    margin-top: 1rem;
    border-radius: 12px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    background: rgba(248, 250, 252, 0.65);
    padding: 1rem 1.25rem;
}

.signature-code-block summary {
    list-style: none;
    cursor: pointer;
    font-weight: 600;
    color: var(--logo-medium-blue);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.signature-code-block summary::-webkit-details-marker {
    display: none;
}

.signature-code-block summary::before {
    content: '\25BC';
    font-size: 0.75rem;
    transition: transform 0.2s ease;
}

.signature-code-block[open] summary::before {
    transform: rotate(180deg);
}

.signature-code {
    width: 100%;
    min-height: 180px;
    border: none;
    border-radius: 10px;
    padding: 1rem;
    font-family: 'Fira Code', 'SFMono-Regular', Menlo, Monaco, Consolas, monospace;
    font-size: 0.85rem;
    background: var(--white);
    color: var(--medium-navy);
    margin-top: 1rem;
    resize: vertical;
}

.signature-footnote {
    margin-top: 3rem;
    background: var(--white);
    padding: 1.75rem 2rem;
    border-radius: 16px;
    border: 1px solid rgba(148, 163, 184, 0.25);
    box-shadow: var(--shadow-md);
    color: var(--light-navy);
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .signature-header .container {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .signature-nav {
        width: 100%;
        justify-content: flex-start;
    }
}

@media (max-width: 640px) {
    .signature-preview table,
    .signature-preview tbody,
    .signature-preview tr,
    .signature-preview td {
        display: block;
        width: 100% !important;
    }

    .signature-preview td {
        padding: 0 !important;
    }

    .signature-preview td + td {
        margin-top: 1.1rem;
    }

    .signature-preview td:first-child {
        border-right: none !important;
        text-align: center;
    }

    .signature-preview td:last-child {
        border-left: none !important;
        padding-left: 0 !important;
    }

    .signature-preview img {
        max-width: 120px;
        margin: 0 auto;
    }
}

@media (max-width: 540px) {
    .signature-main {
        padding: 3rem 1.25rem 4rem;
    }

    .signature-card {
        padding: 1.5rem;
    }

    .signature-preview {
        padding: 1.1rem;
    }

    .signature-brand img {
        height: 52px;
    }
}
