/* ── Reset & Base ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Source Sans 3', 'Source Sans Pro', system-ui, sans-serif;
    background: #0a0c10;
    color: #b8bcc5;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    line-height: 1.7;
    overflow-x: hidden;
    overflow-y: scroll;
    -webkit-font-smoothing: antialiased;
}

::selection { background: #d4a843; color: #0a0c10; }

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 28px;
}

.highlight { color: #d4a843; }

h1, h2, h3, h4, .logo {
    font-family: 'JetBrains Mono', 'IBM Plex Mono', monospace;
    font-weight: 700;
    letter-spacing: 0.02em;
}

h1 { font-size: clamp(2.2rem, 5vw, 4rem); line-height: 1.15; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); margin-bottom: 48px; text-align: center; }

.section-title::after {
    content: '';
    display: block;
    width: 48px;
    height: 2px;
    background: #d4a843;
    margin: 14px auto 0;
}

.section {
    padding: 100px 0;
}

.section-dark {
    background: #0e1117;
    border-top: 1px solid #1a1e28;
    border-bottom: 1px solid #1a1e28;
}


/* ── Navbar ── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 18px 0;
    background: rgba(10, 12, 16, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(212, 168, 67, 0.08);
    transition: background 0.4s;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 1.15rem;
    color: #d4a843;
    text-decoration: none;
    letter-spacing: 0.12em;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo::before {
    content: '';
    display: inline-block;
    width: 28px;
    height: 28px;
    background: url('images/Merlin_Gold.png') center/contain no-repeat;
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 28px;
}


.nav-links a {
    color: #7a7f8a;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: #d4a843;
    transition: width 0.3s;
}

.nav-links a:hover { color: #d4a843; }
.nav-links a:hover::after { width: 100%; }

.lang-toggle {
    background: transparent;
    border: 1px solid rgba(212, 168, 67, 0.4);
    color: #d4a843;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.72rem;
    padding: 6px 14px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.lang-toggle:hover {
    background: rgba(212, 168, 67, 0.12);
    border-color: #d4a843;
}

.lang-toggle .flag {
    font-size: 1.1rem;
    vertical-align: middle;
    line-height: 1;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: #b8bcc5;
    border-radius: 1px;
    transition: all 0.3s;
}

/* ── Hero ── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background:
        radial-gradient(ellipse at 30% 40%, rgba(212, 168, 67, 0.04) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 70%, rgba(15, 27, 45, 0.8) 0%, transparent 50%),
        linear-gradient(170deg, #0a0c10 0%, #0f1b2d 40%, #0a0c10 100%);
    overflow: hidden;
    padding-left: 0;
    justify-content: flex-start;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    padding-top: 80px;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content .hero-tag {
    display: inline-block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #d4a843;
    border: 1px solid rgba(212, 168, 67, 0.3);
    padding: 6px 14px;
    margin-bottom: 28px;
    background: rgba(212, 168, 67, 0.05);
}

.hero h1 { margin-bottom: 20px; }

.hero-sub {
    font-size: 1.1rem;
    color: #7a7f8a;
    max-width: 480px;
    margin-bottom: 36px;
    font-weight: 400;
    line-height: 1.8;
}

.hero-visual {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-graphic {
    width: 100%;
    max-width: 420px;
    aspect-ratio: 1;
    border: 1px solid rgba(212, 168, 67, 0.15);
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-graphic::before {
    content: '';
    position: absolute;
    inset: 15%;
    border: 1px solid rgba(212, 168, 67, 0.1);
    border-radius: 50%;
}

.hero-graphic::after {
    content: '';
    position: absolute;
    inset: 30%;
    border: 1px solid rgba(212, 168, 67, 0.06);
    border-radius: 50%;
    animation: radar-pulse 4s ease-in-out infinite;
}

.hero-graphic .center-dot {
    width: 8px;
    height: 8px;
    background: #d4a843;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(212, 168, 67, 0.4);
}

.hero-graphic .ring-label {
    position: absolute;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.6rem;
    color: rgba(212, 168, 67, 0.35);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.hero-graphic .ring-label.top { top: 8px; }
.hero-graphic .ring-label.right { right: 8px; transform: rotate(90deg); }
.hero-graphic .ring-label.bottom { bottom: 8px; }
.hero-graphic .ring-label.left { left: 8px; transform: rotate(-90deg); }

@keyframes radar-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.6; }
}

.btn-primary {
    display: inline-block;
    padding: 13px 36px;
    border: 1px solid #d4a843;
    color: #d4a843;
    background: transparent;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 2px;
}

.btn-primary:hover {
    background: rgba(212, 168, 67, 0.1);
    box-shadow: 0 0 30px rgba(212, 168, 67, 0.08);
}

.btn-primary:active {
    background: rgba(212, 168, 67, 0.18);
}

.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2.5s infinite;
    opacity: 0.35;
}

.scroll-arrow {
    display: block;
    width: 16px;
    height: 16px;
    border-right: 1.5px solid #d4a843;
    border-bottom: 1.5px solid #d4a843;
    transform: rotate(45deg);
    margin: 0 auto;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

/* ── Page Header (inner pages) ── */
.page-header {
    padding: 140px 0 0;
    text-align: center;
}

.page-header h1 {
    margin-bottom: 0;
}

/* ── About ── */
.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: start;
}

.about-grid p {
    color: #7a7f8a;
    margin-bottom: 16px;
    font-size: 1.05rem;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.stat {
    text-align: left;
    padding: 20px 24px;
    border-left: 2px solid rgba(212, 168, 67, 0.2);
    background: rgba(14, 17, 23, 0.6);
    transition: border-color 0.3s;
}

.stat:hover {
    border-left-color: #d4a843;
}

.stat-num {
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.8rem;
    font-weight: 700;
    color: #d4a843;
    margin-bottom: 2px;
}

.stat span:last-child {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #5a5f6a;
}

/* ── Cards (Services) ── */
.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.card {
    background: rgba(14, 17, 23, 0.8);
    border: 1px solid #1a1e28;
    padding: 32px 24px;
    transition: all 0.35s;
    position: relative;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #d4a843;
    transition: width 0.4s;
}

.card:hover {
    border-color: rgba(212, 168, 67, 0.2);
    background: rgba(14, 17, 23, 1);
}

.card:hover::before {
    width: 100%;
}

.card-icon {
    width: 36px;
    height: 36px;
    border: 1.5px solid rgba(212, 168, 67, 0.4);
    position: relative;
    margin-bottom: 20px;
    transform: rotate(45deg);
}

.card-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: #d4a843;
}

.card h3 {
    font-size: 0.9rem;
    margin-bottom: 10px;
    color: #e0e2e8;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.card p {
    font-size: 0.88rem;
    color: #6a6f7a;
    line-height: 1.7;
}

/* ── Products ── */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.product-card {
    background: rgba(14, 17, 23, 0.8);
    border: 1px solid #1a1e28;
    overflow: hidden;
    transition: all 0.35s;
    position: relative;
}

.product-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.product-card-link h3,
.product-card-link p {
    color: inherit;
}

.product-card:hover {
    border-color: rgba(212, 168, 67, 0.2);
}

.product-img {
    width: 100%;
    aspect-ratio: 1920 / 988;
    
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0e1117 0%, #131820 100%);
    border-bottom: 1px solid #1a1e28;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.product-placeholder {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.65rem;
    color: rgba(212, 168, 67, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.product-card h3 {
    font-size: 1rem;
    color: #e0e2e8;
    margin: 24px 28px 10px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.product-card p {
    font-size: 0.9rem;
    color: #6a6f7a;
    margin: 0 28px 28px;
    line-height: 1.65;
}

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

/* ── Product Detail Pages ── */
.product-hero {
    margin-bottom: 48px;
}

.product-hero-img {
    width: 100%;
    aspect-ratio: 1920 / 988;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0e1117 0%, #131820 100%);
    border: 1px solid #1a1e28;
}

.product-hero-img img {
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.product-hero-effector {
    background: linear-gradient(135deg, #131820, #0e1117);
}

.product-hero-software {
    background: linear-gradient(135deg, #0e1117, #0f1b2d);
}

.product-placeholder-lg {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.2rem;
    color: rgba(212, 168, 67, 0.15);
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.product-detail-content {
    text-align: center;
}

.product-detail-content h2 {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.1rem;
    color: #e0e2e8;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 16px;
}

.product-detail-content > p {
    color: #8a8e98;
    line-height: 1.75;
    margin-bottom: 40px;
}

.product-features {
    margin-bottom: 36px;
    text-align: left;
    display: inline-block;
}

.product-detail-content .product-features-wrapper {
    display: flex;
    gap: 48px;
    justify-content: center;
    margin-bottom: 36px;
}

.product-features-wrapper .product-features {
    margin-bottom: 0;
}

.product-features h3 {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.82rem;
    color: #d4a843;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 14px;
    text-align: center;
}

.product-features ul {
    list-style: none;
    padding: 0;
}

.product-features li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 10px;
    color: #8a8e98;
    line-height: 1.6;
    font-size: 0.92rem;
}

.product-features li::before {
    content: '›';
    position: absolute;
    left: 0;
    color: #d4a843;
    font-weight: 700;
}

.cta-box {
    background: rgba(14, 17, 23, 0.6);
    border: 1px solid #1a1e28;
    padding: 32px;
    margin-top: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.cta-box p {
    color: #6a6f7a;
    font-size: 0.92rem;
    margin: 0;
}

.cta-box .btn-primary {
    flex-shrink: 0;
}

/* ── Steps (How It Works) ── */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    text-align: left;
    position: relative;
}

.steps::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 60px;
    right: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 168, 67, 0.15), transparent);
}

.step {
    padding-top: 0;
}

.step-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    font-weight: 700;
    color: #d4a843;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.step-num::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(212, 168, 67, 0.15);
}

.step h3 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: #e0e2e8;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.step p {
    font-size: 0.88rem;
    color: #6a6f7a;
    line-height: 1.7;
}

/* ── Industries ── */
.industry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.industry-item {
    text-align: left;
    padding: 28px 24px;
    border: 1px solid #1a1e28;
    background: rgba(14, 17, 23, 0.6);
    transition: all 0.3s;
    position: relative;
}

.industry-item:hover {
    border-color: rgba(212, 168, 67, 0.2);
}

.industry-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #d4a843;
    transition: width 0.4s;
}

.industry-item:hover::after {
    width: 100%;
}

.industry-icon {
    display: block;
    margin-bottom: 14px;
}

.industry-icon::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #d4a843;
    transform: rotate(45deg);
}

.industry-item h4 {
    font-size: 0.85rem;
    color: #e0e2e8;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.industry-item p {
    font-size: 0.8rem;
    color: #5a5f6a;
    line-height: 1.6;
}

/* ── Customer Sections ── */
.customer-sections {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 64px;
}

.customer-block {
    background: rgba(14, 17, 23, 0.6);
    border: 1px solid #1a1e28;
    padding: 32px 28px;
}

.customer-block h3 {
    font-size: 0.9rem;
    color: #e0e2e8;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 12px;
}

.customer-block p {
    color: #6a6f7a;
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.customer-list {
    list-style: none;
    margin-bottom: 16px;
}

.customer-list li {
    position: relative;
    padding-left: 16px;
    color: #6a6f7a;
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 4px;
}

.customer-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 5px;
    height: 5px;
    background: #d4a843;
    transform: rotate(45deg);
}

.customer-note {
    font-size: 0.8rem;
    color: #4a4f5a;
    font-style: italic;
    border-top: 1px solid #1a1e28;
    padding-top: 12px;
    margin-top: 12px;
    margin-bottom: 0;
}

.customer-link {
    text-decoration: none;
    display: block;
    cursor: pointer;
}

.customer-link:hover {
    border-color: rgba(212, 168, 67, 0.3);
}

.customer-link-label {
    display: inline-block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    font-weight: 600;
    color: #d4a843;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 8px;
}

/* ── Detail Pages ── */
.detail-content {
    max-width: 740px;
    margin: 0 auto;
}

.detail-content > p {
    color: #6a6f7a;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 24px;
}

.detail-content h3 {
    font-size: 1rem;
    color: #e0e2e8;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-top: 40px;
    margin-bottom: 12px;
}

.detail-list {
    list-style: none;
    margin-bottom: 20px;
}

.detail-list li {
    position: relative;
    padding-left: 16px;
    color: #6a6f7a;
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 4px;
}

.detail-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 5px;
    height: 5px;
    background: #d4a843;
    transform: rotate(45deg);
}

.detail-list-ordered {
    counter-reset: detail-counter;
}

.detail-list-ordered li {
    counter-increment: detail-counter;
    padding-left: 28px;
}

.detail-list-ordered li::before {
    content: counter(detail-counter) '.';
    position: absolute;
    left: 0;
    top: 0;
    width: auto;
    height: auto;
    background: none;
    transform: none;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.82rem;
    font-weight: 700;
    color: #d4a843;
}

.cta-box {
    margin-top: 48px;
    padding: 32px;
    border: 1px solid #1a1e28;
    background: rgba(14, 17, 23, 0.6);
    text-align: center;
}

.cta-box p {
    color: #6a6f7a;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.info-box {
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 20px 24px;
    border-left: 2px solid rgba(212, 168, 67, 0.3);
    background: rgba(14, 17, 23, 0.6);
}

.info-box p {
    color: #6a6f7a;
    font-size: 0.88rem;
    line-height: 1.7;
    font-style: italic;
}

@media (max-width: 768px) {
    .customer-sections {
        grid-template-columns: 1fr;
    }
}

/* ── Contact Wizard ── */
.wizard-progress {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 56px;
}

.wizard-step {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-bottom: 2px solid #1a1e28;
    color: #4a4f5a;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transition: color 0.3s, border-color 0.3s;
}

.wizard-step.active {
    color: #d4a843;
    border-bottom-color: #d4a843;
}

.wizard-step.done {
    color: #3a7c5f;
    border-bottom-color: #3a7c5f;
}

.wizard-step-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    font-weight: 700;
    background: #141820;
    border: 1px solid #1a1e28;
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.wizard-step.active .wizard-step-num {
    background: rgba(212, 168, 67, 0.15);
    border-color: rgba(212, 168, 67, 0.4);
}

.wizard-step.done .wizard-step-num {
    background: rgba(58, 124, 95, 0.15);
    border-color: #3a7c5f;
}

.wizard-panel {
    display: none;
    max-width: 700px;
    margin: 0 auto;
}

.wizard-panel.active {
    display: block;
}

.wizard-question {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1rem;
    color: #e0e2e8;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 12px;
    text-align: center;
}

.wizard-hint {
    color: #6a6f7a;
    font-size: 0.95rem;
    text-align: center;
    margin-bottom: 24px;
}

/* Option Cards */
.wizard-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 32px;
}

.wizard-option {
    background: rgba(14, 17, 23, 0.6);
    border: 1px solid #1a1e28;
    padding: 28px 24px;
    text-align: left;
    cursor: pointer;
    transition: border-color 0.3s, background 0.3s;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-family: inherit;
    color: inherit;
}

.wizard-option:hover {
    border-color: rgba(212, 168, 67, 0.25);
    background: rgba(212, 168, 67, 0.03);
}

.wizard-option.selected {
    border-color: #d4a843;
    background: rgba(212, 168, 67, 0.06);
}

.wizard-option-icon {
    font-size: 1.4rem;
    margin-bottom: 4px;
}

.wizard-option-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.82rem;
    color: #e0e2e8;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.wizard-option-desc {
    font-size: 0.88rem;
    color: #6a6f7a;
    line-height: 1.5;
}

/* Fields */
.wizard-fields {
    margin-top: 32px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 14px;
}

.form-group label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: #6a6f7a;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.form-group input {
    width: 100%;
    padding: 13px 16px;
    background: rgba(14, 17, 23, 0.8);
    border: 1px solid #1a1e28;
    border-radius: 2px;
    color: #b8bcc5;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.3s;
    outline: none;
}

.form-group input:focus {
    border-color: rgba(212, 168, 67, 0.4);
}

/* Textarea */
.wizard-textarea {
    width: 100%;
    padding: 13px 16px;
    background: rgba(14, 17, 23, 0.8);
    border: 1px solid #1a1e28;
    border-radius: 2px;
    color: #b8bcc5;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.95rem;
    resize: vertical;
    outline: none;
    transition: border-color 0.3s;
}

.wizard-textarea:focus {
    border-color: rgba(212, 168, 67, 0.4);
}

/* Summary */
.wizard-summary {
    background: rgba(14, 17, 23, 0.6);
    border: 1px solid #1a1e28;
    padding: 28px;
    margin: 24px 0;
    font-size: 0.92rem;
    color: #8a8e98;
    line-height: 1.7;
}

.wizard-summary .summary-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.72rem;
    color: #6a6f7a;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 16px;
    margin-bottom: 4px;
}

.wizard-summary .summary-label:first-child {
    margin-top: 0;
}

.wizard-summary .summary-value {
    color: #d4a843;
}

/* Nav Buttons */
.wizard-nav {
    display: flex;
    justify-content: space-between;
    max-width: 700px;
    margin: 40px auto 0;
}

.wizard-nav .btn-secondary {
    padding: 12px 28px;
    background: transparent;
    border: 1px solid #1a1e28;
    color: #6a6f7a;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    cursor: pointer;
    transition: border-color 0.3s, color 0.3s;
}

.wizard-nav .btn-secondary:hover {
    border-color: #6a6f7a;
    color: #b8bcc5;
}

.wizard-nav .btn-primary {
    padding: 12px 28px;
}

.wizard-nav .btn-primary[disabled] {
    opacity: 0.35;
    cursor: not-allowed;
}

.consent-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    color: #6a6f7a;
    margin-bottom: 24px;
}

.consent-checkbox input {
    margin-top: 3px;
    accent-color: #d4a843;
}

.consent-checkbox a {
    color: #d4a843;
    text-decoration: underline;
}

@media (max-width: 640px) {
    .wizard-options {
        grid-template-columns: 1fr;
    }
    .wizard-step-label {
        display: none;
    }
    .wizard-step {
        padding: 10px 12px;
    }
}

/* ── Footer ── */
.footer {
    background: #080a0e;
    border-top: 1px solid #141820;
    padding-top: 56px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    padding-bottom: 40px;
    text-align: center;
}

.footer-brand h3 {
    font-size: 1rem;
    color: #d4a843;
    margin-bottom: 8px;
    letter-spacing: 0.1em;
}

.footer-brand p {
    color: #4a4f5a;
    font-size: 0.88rem;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 0.7rem;
    color: #7a7f8a;
    margin-bottom: 14px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.footer-links ul {
    list-style: none;
    display: grid;
    grid-template-columns: auto auto;
    column-gap: 24px;
    row-gap: 6px;
    justify-content: center;
}

.footer-links a {
    color: #4a4f5a;
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #d4a843;
}

.footer-contact p {
    color: #4a4f5a;
    font-size: 0.88rem;
    margin-bottom: 4px;
}

.footer-bottom {
    text-align: center;
    padding: 16px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.footer-bottom p {
    color: #22252b;
    font-size: 0.7rem;
    letter-spacing: 0.02em;
}

/* ── Cookie Banner ── */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(10, 12, 16, 0.95);
    backdrop-filter: blur(12px);
    border-top: 1px solid #1a1e28;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 0.82rem;
    color: #6a6f7a;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-banner p {
    margin: 0;
}

.cookie-banner a {
    color: #d4a843;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-banner-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    background: transparent;
    border: 1px solid rgba(212, 168, 67, 0.4);
    color: #d4a843;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 600;
    font-size: 0.7rem;
    padding: 7px 18px;
    cursor: pointer;
    border-radius: 2px;
    letter-spacing: 0.05em;
    transition: all 0.3s;
    flex-shrink: 0;
}

.cookie-btn:hover {
    background: rgba(212, 168, 67, 0.1);
    border-color: #d4a843;
}

.cookie-btn-decline {
    border-color: rgba(106, 111, 122, 0.3);
    color: #6a6f7a;
}

.cookie-btn-decline:hover {
    border-color: #6a6f7a;
    background: rgba(106, 111, 122, 0.08);
}

/* ── Consent Checkbox ── */
.consent-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 18px;
    font-size: 0.8rem;
    color: #6a6f7a;
    cursor: pointer;
}

.consent-checkbox input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    min-width: 16px;
    border: 1px solid #1a1e28;
    border-radius: 2px;
    background: rgba(14, 17, 23, 0.8);
    cursor: pointer;
    position: relative;
    margin-top: 2px;
    padding: 0;
}

.consent-checkbox input[type="checkbox"]:checked {
    background: #d4a843;
    border-color: #d4a843;
}

.consent-checkbox input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    top: 1px;
    left: 5px;
    width: 4px;
    height: 8px;
    border: solid #0a0c10;
    border-width: 0 1.5px 1.5px 0;
    transform: rotate(45deg);
}

.consent-checkbox a {
    color: #d4a843;
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* ── Legal Pages ── */
.legal-body {
    max-width: 740px;
    margin: 0 auto;
    text-align: left;
}

.legal-body h3 {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.05rem;
    color: #e0e2e8;
    margin-top: 44px;
    margin-bottom: 14px;
}

.legal-body h4 {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.82rem;
    color: #d4a843;
    margin-top: 28px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.legal-body p {
    color: #6a6f7a;
    margin-bottom: 18px;
    line-height: 1.8;
    font-size: 0.92rem;
}

.legal-body strong {
    color: #b8bcc5;
}

.legal-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 6px;
}

.legal-links a {
    color: #2e3138;
    text-decoration: none;
    font-size: 0.7rem;
    transition: color 0.3s;
    letter-spacing: 0.02em;
}

.legal-links a:hover {
    color: #d4a843;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .hamburger { display: flex; }
    .lang-toggle { margin-right: 12px; font-size: 0.7rem; padding: 5px 10px; }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: rgba(10, 12, 16, 0.98);
        padding: 24px;
        gap: 18px;
        border-bottom: 1px solid #1a1e28;
    }

    .nav-links.active { display: flex; }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-sub { margin-left: auto; margin-right: auto; }

    .hero-visual { display: none; }

    .about-grid,
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .about-grid { text-align: center; }
    .stat { text-align: center; border-left: none; border-top: 2px solid rgba(212, 168, 67, 0.2); padding-top: 20px; }
    .stat:hover { border-top-color: #d4a843; border-left-color: transparent; }

    .footer-brand, .footer-links, .footer-contact { text-align: center; }

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

    .steps {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .steps::before { display: none; }

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .section { padding: 64px 0; }

    .cookie-banner {
        flex-direction: column;
        gap: 10px;
        padding: 12px 16px;
    }

    .cookie-banner-actions {
        width: 100%;
        justify-content: center;
    }
}

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